scittle

Chris McCormick 2024-11-23T17:17:07.568649Z

I'm at Barcamp London today and decided to give a last minute talk. I realized I could use Scittle and josh ☝️ and I was able to build a slides app and write my slides in 15 minutes. 😂 Talk went well. Scittle is so good! https://github.com/chr15m/barcamp-whats-the-point-of-lisp https://chr15m.github.io/barcamp-whats-the-point-of-lisp

👍 4
💜 1
🎉 3
Chris McCormick 2024-11-25T08:13:07.220309Z

> navigate to the next slide from a phone? Do you mean using the phone as a kind of remote control?

teodorlu 2024-11-25T08:51:05.961889Z

No, just to view the slides from my phone. As far as I could tell, you have to go to the next slide with the keyboard?

Chris McCormick 2024-11-25T08:51:19.421459Z

Ah yes, will fix!

Chris McCormick 2024-11-25T08:51:33.114269Z

I guess I'll just make it tapping the left/right side of the page. 🤔

teodorlu 2024-11-25T08:52:04.654589Z

That would work perfectly!

Chris McCormick 2024-11-25T09:10:56.255169Z

Done. I pushed a new build with that feature, thanks for the suggestion.

Chris McCormick 2024-11-25T09:11:20.562889Z

By the way sorry to spam the channel but I packaged up the tiny scittle slideshow viewer as a separate thing anybody can use: https://github.com/chr15m/scittle-tiny-slides It's only a handful of lines of code so I'm not sure it's worth posting on #announcements etc but I thought maybe it would be useful to people here!

💯 2
🎉 1
teodorlu 2024-11-25T09:32:07.961959Z

Awesome, works great! My phone wants to try selecting text when I'm clicking around, but I'd say that's minor compared to being able to view the slides.

teodorlu 2024-11-25T09:32:47.388599Z

I'll probably try your slideshow tool next time I'm making slides for something - looking forward to then!

❤️ 1
Chris McCormick 2024-11-25T09:39:51.981399Z

Yeah I noticed the select problem too. I changed the handler to onclick instead of pointerstart but I am still seeing it. 🤔

🤔 1
teodorlu 2024-11-25T09:41:07.648649Z

Maybe an e.preventDefault() is required?

Chris McCormick 2024-11-25T09:50:46.371799Z

I think it's happening only if you click through quickly because it gets intercepted as a double-click and preventDefault doesn't seem to fix that.

👍 1
Chris McCormick 2024-11-25T09:58:48.331759Z

I suppose I should be explicitly adding areas that the user should be tapping and checking those. Wow this problem escalated quickly.

👍 1
😂 1
teodorlu 2024-11-25T10:14:38.869339Z

I propose laying it to rest! Now that I can click through from my phone, I'm happy 🙂

👍 1
teodorlu 2024-11-24T12:41:26.656059Z

Possibly annoying question: is it possible to navigate to the next slide from a phone?

teodorlu 2024-11-24T12:42:04.355979Z

Lovely how little code is required to make that slideshow viewer chef_kiss