You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this awesome tool! We can't wait to use it for our future consistent presentations 💪
Problem
There is one important missing feature in Googe slides and that's why for the latest conference presentations we went for MDX Deck + CodeSurfer
The missing feature is dynamic code highlights, zoom-in, zoom-out transition so you can explain line by line what you are changing. We did this presentation on GoDays and FOSDEM and the feedback was extremely positive. The audience could follow the code much easier and we could explain more than just using static slides with limited size.
The tradeoff was enormous though. The MDX Deck has some bugs and it's extremely tedious to set up, use, and build. Especially if you are not a frontend developer - you are essentially building a website. It's brittle, impossible to make it work for all projector resolutions etc, generating PDF's is impossible and you cannot link to one slide. We wrote more CSS than content 🤦
How to solve it?
So we are looking for another solution that will give us dynamic code, zoom in, zoom outs, and dynamic highlight transformations.
Do you think it will be possible to add some pseudo markdown components that will allow doing so? Do you think it is possible? Would you accept such a contribution? We are happy to help, just we definitely need some pointers 🤗
Proposal
The idea would be to base on markdown code blocks with code surfer FOCUS:
`` `go 2:3,4[2:3]
Line1
Line2
Line3
`` `
This will highlight line 2 3 and second, third and fourth character of line 4.
Then we would need some way of describing which slides would be part of the transformation e.g.:
`` `go 2 <slide204>
Line1
Line2
newline
`` `
This will focus our code block on line 2, and animate removal of line3 and animate addition of newline. What to animate will be based on diff from code block on slide 204.
I think with just this simple logic we could achieve a lot and generate Google slides with code and transformations which will add, remove, change fonts etc..
Hello 👋
Thanks for this awesome tool! We can't wait to use it for our future consistent presentations 💪
Problem
There is one important missing feature in Googe slides and that's why for the latest conference presentations we went for
MDX Deck
+ CodeSurferThe missing feature is dynamic code highlights, zoom-in, zoom-out transition so you can explain line by line what you are changing. We did this presentation on GoDays and FOSDEM and the feedback was extremely positive. The audience could follow the code much easier and we could explain more than just using static slides with limited size.
You can see the code and effect here: https://github.com/kakkoyun/are-you-testing-your-observability
The tradeoff was enormous though. The MDX Deck has some bugs and it's extremely tedious to set up, use, and build. Especially if you are not a frontend developer - you are essentially building a website. It's brittle, impossible to make it work for all projector resolutions etc, generating PDF's is impossible and you cannot link to one slide. We wrote more CSS than content 🤦
How to solve it?
So we are looking for another solution that will give us dynamic code, zoom in, zoom outs, and dynamic highlight transformations.
Do you think it will be possible to add some pseudo markdown components that will allow doing so? Do you think it is possible? Would you accept such a contribution? We are happy to help, just we definitely need some pointers 🤗
Proposal
The idea would be to base on markdown code blocks with code surfer FOCUS:
This will highlight line 2 3 and second, third and fourth character of line 4.
Then we would need some way of describing which slides would be part of the transformation e.g.:
This will focus our code block on line 2, and animate removal of line3 and animate addition of newline. What to animate will be based on diff from code block on slide 204.
I think with just this simple logic we could achieve a lot and generate Google slides with code and transformations which will add, remove, change fonts etc..
Sounds doable? 🤔 Thanks for help in advance!
cc @kakkoyun
The text was updated successfully, but these errors were encountered: