Qualitywolf2 3 hours ago

Yup, first project is a US Dollar currency converter tool online.

daemonologist 2 days ago

Lots of "information extraction" tools - basically taking in a bunch of documents and other natural language material and pulling out a few key pieces of structured data. This isn't 100% reliable but is useful as a first pass (where a human can investigate further) or a backstop (against a human missing something important and obvious but buried in a long file or huge volume of files).

I also put together a half-baked web extension to try to steer the Youtube algorithm. It basically scrolls through shorts and tries to watch+like high quality content and skip+dislike junk (and worse) to scrub it out of the feed as much as possible. It's only looking at the transcript and a couple of thumbnails, so it's not super accurate, but in the short term it's been working pretty well. I figure that Google can probably tell that it's not a human though, and might disregard its inputs (or ban me) in the long term. Time will tell.

ejlanor 3 days ago

Curious to know this too.

I miss the pre LLM days on HN when hype was spread around various topics instead of it just being about AI.

  • farseer 3 days ago

    On HN, AI has diluted the hype around bitcoin so that is a net positive.

roland35 2 days ago

I've built a lot of useful things with AI!

- A pretty full features terminal UI application that works well with my company's quirky hosted jira which is nice and fast. Used to and tview.

- Simple game to learn c++, ecs, and game dev. Basically making a rougelike co-op scorched earth tank game.

- Lots of little bits of wezterm, neovim, and zsh stuff to help my workflows. Things like a wezterm project selector, a fzf function to connect to remote hosts, etc

- Converted my resume to latex. Made it way easier to apply to jobs.

- Heavy planning and refactoring for apps at work

  • xcubic 11 hours ago

    Can you share more regarding the first point?

    What are the features? What do you like about it?

  • zigmig 2 days ago

    Interesting! How does "Converted my resume to latex. Made it way easier to apply to jobs" work, in what sense was it easier to apply for jobs? I would love some insight here. Thanks

mesotron_dev 2 days ago

I generate unit tests, comments, and more. A critical aspect is well-defined system instructions. Defining system instructions and prompts with XML formatting provides significant benefits. Think of LLMs as a force multiplier for most use cases. Upload the codebase and generate comments, unit tests, functional tests, mc/dc tests, etc. What follows is a matter of review and edits to outputs. Never unquestioningly trust, and instead, slowly train and refine models for any given project, as this approach tends to reap rewards in my experience.

koladev32 a day ago

some stuff i built using AI - a personal trading manager: automatically reads signals from telegram, send the signal to an openai agent using gpt-4o with a custom MCP server I built for decision making and order placement - a monitoring system on my home servers: claude code runs every5 minutes and update sql records regarding some monitoring metrics. it can also warn me if there is an issue vie email (using resend).

currently i'm working on a dashboard for remote jobs tracking and curation. im planning to use a scrapper and then a model that will curate and record the jobs with useful information for people who wants to apply

perilunar 2 days ago

Yes. I've build a couple of tools for myself as experiments. Nothing fancy, just CRUD apps in PHP & SQLite. Worked really well. I'm pretty weak on SQL and databases, and i was able to get them set up and working in one shot. Saved me days of farting around.

slowlab a day ago

I used Coding Agent to create an interactive screen for a small demo. I use it every time I do a demo, and it's very useful.

incomingpain 2 days ago

I have. The advent of "reasoning" llms means you can trust them with judgments.

Chatgpt basically invented it in september of 2024. We are only coming up on the concept's 1st birthday. Open source options have only been out for 6 months.

I highly recommend using these for your own purposes.

darthrupert 3 days ago

I have used coding agents with great success. So in some way I'm building useful things using AI, and the people who created those agents absolutely created something extremely useful.

ishita159 2 days ago

I think people in the content business have probably seen the most significant boost from AI, so far.

sky2224 2 days ago

People are missing the point of the question. OP is asking if you've built a tool that uses AI without it just being a standard chat wrapper, not if you've built something with code generated from an AI model.