I did several small projects for me and my family: - https://consumebefore.jose.gr/ to keep track of when the food expires once opened - https://markdowntable.jose.gr/ generates markdown tables with a link to edit the table - https://mazes.jose.gr is a simple maze generator. It never got traction inside my family, so I didn't invest much time in adding features. - https://bookmarklet.jose.gr/ a bookmarklet generator…
Ask HN: What apps have you created for your own use?
461–470 of 793 posts
Re: Ask HN: What apps have you created for your own use?
#462Sioyek: a PDF viewer optimized for reading research papers and textbooks. https://github.com/ahrm/sioyek It has a lot of niche features, but my favorite is the ability to preview or jump to references even when they are not linked in the PDF file.
Re: Ask HN: What apps have you created for your own use?
#463Re: Ask HN: What apps have you created for your own use?
#464When I was in Chinese class I developed a pencil and paper system that enabled me to memorize writing about 10 words per day. It's simple: I should be able to write a single word in about 15 seconds. I usually memorized a 20-word list at once. Set a timer for 15 sec * len(words) and speed through it looking at a list of definitions/pronunciation. Pencil down when the timer goes off. Grade harshly, a single mistake means the word is wrong. As I'm grading I rewrite each word I got wrong. Then drill again with the list of words that I got wrong again. Repeat until no words are left. Occasionally restart with the entire list.
I wrote it in Python using PyQt6 and standardizing on importing Pleco flashcard CSVs since many of them are readily available for most textbooks. I have lots of ideas and little time to improve it, but it is useful already.
Re: Ask HN: What apps have you created for your own use?
#465Many of them! I've blocked reddit and now rely on getting the top updates from the niche communities I care about: https://redditletter.com There were no "declarative" sourdough bread recipe calculator, so I built one: https://breadfriend.com . All other recipe generators are based on entering the amount of flour and water -- but what you're (usually) caring about is the ratio % and total dough size. I was curious wh…
Reddit letter looks cool but only seems to allow one category
it's a good idea to allow multiple categories directly though, but thought i'd keep it simple!
Re: Ask HN: What apps have you created for your own use?
#466Like every programmer before me, I created a to-do list app of course! However, as a programmer, I prefer trees to lists so I made a to-do tree app. I have been using it religiously every day since to manage all aspects of my life in a way that I couldn't previously with tools like Wunderlist (RIP) or didn't have the time to make work in this way like Notion. Shockingly there aren't many other options out there for t…
I don't feel like I need a tree-based to do app for my personal stuff, but I just plain don't understand how people are okay with the feature->story->task list on Azure Devops. This clearly needs to be a task tree/graph!
What I feel all those apps are missing though is dependencies. like "I can't do task E until I do C and D and those other trees". Technically Task Warrior does that, but then it shows them as a flat list... My dream app would be one that combines dependency tracking and tree-based tasks.
Re: Ask HN: What apps have you created for your own use?
#467A few years ago, my wife and I decided to adopt a rescue cat from battersea.org.uk. However, it was a frustrating experience as the staff didn't always update the website regularly, and we'd find that any suitable cats would be snapped up before we'd even seen them. I spotted that the website served its data to the frontend via an unsecured internal JSON API, so I built an Elixir app that would poll the API endpoint…