Live data from Hacker News

Ask HN: What are tools you have made for yourself since the advent of AI?

news.ycombinator.com

381–390 of 913 posts

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#381
post #379

I created a realtime lead generator that scraps Reddit and then looks for the people that seem like they would like to buy something that im selling.

Nice. I'm curious about Reddit scraping. Did you have to do anything special for that? Also curious if you know anything about scraping Twitter.

Looking into twitter right now, it seems like the way to do it is with headless browsers, but they usually cost money.

For reddit there used to be the json endpoints that you could just fetch, and you can batch your subreddits, so its nice end easy. They have just killed those...old.reddit still works, but i fear like the days are numbered there as well.

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#383
- Day logger quarterly goal management and daily goal tracking system with multiple checkins, voice transcript task dump, jibberish to apple reminders, daily recommendations based on activity and goal tracking and always on dashboard.

- Snubnosed mandarin app. Vibecoded anki and tinder-like character game for mandarin which allows new vocab to be added on the fly. Also accurate text to speech for tones.

- What did I learn? Tweet summarize that takes all favored tweets and assembles into weekly categories and allows deep research on certain topics.

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#384
Too many to count. Most recently, an Alfred workflow for opening my IntelliJ projects either in an an IDE or terminal that also comes with an integrated build task runner, so I can quickly discover and run build tasks even when I don’t have a project opened anywhere.

https://github.com/DavidSeptimus/alfred-jetbrains-launcher

Mostly, I use it to quickly open projects in cmux, but I use it for switching between git worktrees in IntelliJ too.

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#385
Mostly for myself (stripe isn't actually even hooked up anymore afaik), but a Mandarin language learning app: https://nextword.app .

Deepseek v4 pro does a pretty good job of actually adhering to the word restrictions.

Most language learning content is "slop" anyway -- so might as well generate slop that's at least a little interesting.

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#387
- web scraper for events my wife and I would like for date night

- a stateless dashboard for work that collects from 6 other APIs

- a refactor of a huge function with 8-deep indentation into readable small functions

- a road trip game for my kids where you take photos of things from the car

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#389
I've got really comfy `just` scripts for generating Clang "intermediaries" in my CMake project. I can generate `.ii` files which get formatted and edited in a manner making them directly recompilable, along with `.ll`, `.bc`, and `.s` files. All the above are per-translation unit or post-LTO and I can constrain the output to specific functions or files, and the LLVM bitcode can take optimization passes or optimization levels to very easily introspect how my work in this codebase optimizes.

I've also got a clang-repl wrapper for this codebase that is very easy to use and makes interactive programming much easier for me.

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#390
I've used AI for a number of Emacs-related utilities and configs. Just today I created a script to reproduce the particular combination of MSYS2 packages I use for my newer on Windows setup - the hard part being to get native comp working. Small, but it's the sort of rarely used convenience I wouldn't have written up in the past.

https://github.com/egorelik93/Doom-Emacs-Config/blob/master/...

Post reply on HN