Hey, author here! Just wanted to add that you can write your slides using Markdown (most of its features are supported).
Also reposting my comment from the asciimatics post that was here yesterday:
I made this on top of asciimatics, which is awesome! I had a lot of fun making this thanks to all the effects asciimatics already has.
I was also able to extend an internal asciimatics class to add a feature for pre-recorded playable code blocks. It lets you play code in your terminal presentation like someone's typing it! You can learn more about it here: https://present.readthedocs.io/en/latest/codio.html
It's a talk about (in Brandon's words) ASCII art animation, software architecture, the mysteries of UNIX terminal settings, and the glories of Plain Text. You should totally check it out!
i gotta say, every time i see a bay area python meetup on youtube, it's always super high quality. as someone who doesnt live in the bay area, i am very jealous. please pass along my compliments to organizers and i wish i could replicate it in my city.
Same, I'm not in the bay area and found this Youtube video from 2017 only 3 months ago. https://2019.northbaypython.org/ is an awesome conference that happens there every year.
How did you do the matrix raining code in the demo? I did not see it in the examples. I use an mp4 of that as a screen saver but would love it in terminal instead!
I'm hoping for <-- effect=gol --> for a Game of Life simulation. For whatever reason, it comes up in my talks often. It seems I exude geekness acme whenever I talk about hacking and self-propagating code.
Hey! It's super cool, but can't work it out how to run this on a few environemnts. Tried Ubuntu and centos, always get ModuleNotFoundError: No module named 'dataclasses'.
Centos 8.2, Python 3.6.8, present Version: 0.4.0, pip 9.0.3. Tried with global and user install in pip. Not really a python dev, more of a user :)
I just found some issues on it on github, will try to sort it out, sorry for calling here first, just expected all dependencies to be there and didn't realized "dataclasses" could be a project name!:)
could i ask about more details on shipping this? what made you start working on it? how long did you work on it to an initial state? have you had any practical work-related side benefits of doing something like this, or is it pure hobby?
I started working on this at the Recurse Center two weeks ago.
As for practical work-related side benefits, I've neither had my open-source work weigh in on the hiring process (as everyone still asks algorithms/data structures questions) nor earned much money through it. But I love building open-source tools that would be useful for people, including me (I used `present` for a talk some days ago), so you could say it's just a hobby at this point.
Can you raise an issue with some detail on how you installed it along with the full traceback? https://github.com/vinayak-mehta/present/issues Your OS, Python version and terminal emulator details will also help.
DeckSet is great, but is quite limited in terms of allowing theme customization. If they allowed themes to be modified directly with CSS — or better, YAML/TOML/JSOn, that'd be excellent.
I've been looking very closely at Marp[1], which is a engineer-focused solution to this.
I had played with writing a pandoc filter that would add formatting escape sequences based on markdown, your tool does a better job than where I got to.
One thing I want in a tool like this is to be able to display ascii charts like from gnuplot, which is why I liked the simplicity of Shellshow. I will have to dig in to see if this is possible, if not I expect it would be easy to add.
Thanks for pointing me to Shellshow, I hadn't heard of it before, it looks cool! I'll look into it in detail sometime this week and see if I can add some of its features to `present`.
> One thing I want in a tool like this is to be able to display ascii charts like from gnuplot, which is why I liked the simplicity of Shellshow. I will have to dig in to see if this is possible, if not I expect it would be easy to add.
Would you like to open an issue and describe this feature a bit in detail? https://github.com/vinayak-mehta/present/issues For example, what should the API look like, should it pick up data from a csv file and load it up into a barchart etc. I would love to work on this when I find time!
I wrote a terminal graphics library! It might be interesting to use something like this to be able to embed graphics into terminal-based presentations:
It does not have effects, but it can do colors and has many other features one would expect from a presentation tool. It has also been around for a while, it is rather stable and written in Haskell. Many Linux distributions already have it in their repositories (https://github.com/jaspervdj/patat#installation).
Also reposting my comment from the asciimatics post that was here yesterday:
I made this on top of asciimatics, which is awesome! I had a lot of fun making this thanks to all the effects asciimatics already has.
I was also able to extend an internal asciimatics class to add a feature for pre-recorded playable code blocks. It lets you play code in your terminal presentation like someone's typing it! You can learn more about it here: https://present.readthedocs.io/en/latest/codio.html