Live data from Hacker News

Ask HN: What's the stack for your "home-cooked meal" apps?

news.ycombinator.com

31–37 of 37 posts

Re: Ask HN: What's the stack for your "home-cooked meal" apps?

#31
post #7

About 1/3 of the applications I use regularly are ones I've written myself, from the trivial to one that are very large and complex. My favorite one, though, was a simple alarm clock app I wrote (back when I used alarm clocks). It had the one thing I wanted from alarm clocks that nobody provided: every time you hit the snooze button, it snoozes for half the time you got the last time you hit the snooze. When the snoo…

Is it on the play store?

Re: Ask HN: What's the stack for your "home-cooked meal" apps?

#32

Lua and LÖVE. Talk about some of my apps in isolation: https://akkartik.name/freewheeling Demo showing me combining my apps in workflows: https://archive.org/details/akkartik-freewheeling-2023-07-06 Now I've also been getting into mobile development: https://akkartik.itch.io/carousel

Do you use zerobrane or carousel to write your apps? Why?

Re: Ask HN: What's the stack for your "home-cooked meal" apps?

#33

Lua and LÖVE. Talk about some of my apps in isolation: https://akkartik.name/freewheeling Demo showing me combining my apps in workflows: https://archive.org/details/akkartik-freewheeling-2023-07-06 Now I've also been getting into mobile development: https://akkartik.itch.io/carousel

Do you use zerobrane or carousel to write your apps? Why?

I tend to prefer editors to IDEs. Lua is a simple enough language and my codebases have been small enough that my usual Vim sufficed at the start for apps like http://akkartik.name/lines.html back in May 2022. Over time I figured out how to do live editing, and lately I build my apps 95% in https://git.sr.ht/~akkartik/driver.love. I find it to be quite a nice experience, particularly with 2 monitors. I open the app I'm working on in one monitor while running driver.love full screen in the other to make changes to it.

Carousel is for a whole new use case: building simple scripts right on my phone or tablet. Nothing else can do that as simply, I think. It's cross-platform but that's an experimental property I'm hoping to carry forward to other apps. The use case here is purely for mobile devices.

Re: Ask HN: What's the stack for your "home-cooked meal" apps?

#35

Rails, render, sqlite3. Hotwire really is incredible (coming from someone who's primarily a JS dev in the past) and makes common things way easier. The more I write ruby, it really feels like home cooking, whereas even the best JS frameworks (sveltekit + bun IMO) felt more like ...home maintenance? Plumbing?

Any good resources on using hotwire ?
Post reply on HN