Show HN Today: Top Developer Projects Showcase for 2025-03-09
SagaSu777 2025-03-10

Explore the hottest developer projects on Show HN for 2025-03-09. Dive into innovative tech, AI applications, and exciting new inventions!

Summary of Today's Content

Hacker News Product Analysis

Today's Hottest Product Highlight - Product Name: Evolving Agents Framework - Highlight: This framework provides a dynamic approach to AI agent creation, allowing agents to evolve, communicate, and collaborate to solve complex tasks efficiently, and deciding on reusing, evolving, or creating new agents based on the task at hand.

Quick Summary Most Hot Category: AI and Open Source Keywords with Most Likes: AI, Framework, Open Source, Chrome Extension, Tool Most Popular Product: Evolving Agents Framework, 124

Technical Trends AI Agents, Open Source, No-code, Chrome Extension, API, LLM, AI, Automation, SaaS, Rust, JSON, C, Svelte, S3, SQL, Redis, MongoDB, Blockchain, NFT.

Project Distribution - AI & Machine Learning: 40% - Development Tools/Frameworks: 30% - Utilities/Extensions: 15% - Content & Media: 15%

Trend Insights The data indicates a strong trend towards AI-driven solutions, particularly in agent-based systems and tools that facilitate automation. Open-source projects remain popular, reflecting a community focus on collaborative development. There's also a noticeable increase in no-code solutions and Chrome extensions, suggesting a push towards accessibility and ease of use. Blockchain and NFT related projects are also beginning to appear.

Top 1. Introducing the Evolving Agents Framework: a cutting-edge platform designed to enhance the development and adaptation of intelligent agents. Harnessing advanced algorithms and machine learning techniques, this framework empowers users to create dynamic agents that evolve in response to their environment, improving efficiency and performance in real-time applications. Perfect for researchers and developers looking to push the boundaries of artificial intelligence. (Likes: 124, Comments: 21)

Top 2. Discover a free SVG website that allows users to create and customize scalable vector graphics effortlessly. Perfect for designers and developers looking to enhance their projects with high-quality visuals. Try it now and elevate your web presence! (Likes: 44, Comments: 24)

Top 3. A searchable Vim cheat sheet that allows users to easily access and favorite commands, available as an open-source project. (Likes: 24, Comments: 3)

Top 4. Introducing a robust JSON and JSON5 parser developed with MISRA C compliance, ensuring high standards of safety and reliability in C programming. Ideal for developers seeking to enhance their projects with solid data format handling while maintaining adherence to industry best practices. (Likes: 6, Comments: 2)

Top 5. Wordazzle: Elevate your eloquence with AI-powered mastery of elegant words. (Likes: 4, Comments: 4)

Top 6. StreakHunter: Effortlessly monitor and maintain your daily ProductHunt streak, ensuring you never miss a day and stay engaged with the community! (Likes: 4, Comments: 1)

Top 7. Discover the groundbreaking integration of Wikimedia and Large Language Models (LLMs) that revolutionizes access to knowledge. Enhance your information retrieval experience with advanced AI capabilities and contribute to a collaborative knowledge ecosystem. Unleash the power of open-source information with this unique synergy, facilitating learning and innovation like never before. (Likes: 2, Comments: 3)

Top 8. Show HN: Fresh Data for AI - An open-source platform providing up-to-date datasets to enhance AI model training and performance. (Likes: 4, Comments: 1)

Top 9. Discover a Mac app that lets you effortlessly watch and manage your favorite YouTube playlists and channels all in one place! (Likes: 4, Comments: 1)

Top 10. Introducing the first legal AI API designed to revolutionize the legal industry by providing advanced artificial intelligence solutions for legal professionals. Streamline your workflow, enhance productivity, and leverage cutting-edge technology to transform legal research, document analysis, and case management. Experience the future of law with unparalleled efficiency and accuracy. (Likes: 5, Comments: 0)

1. Show HN: Evolving Agents Framework

Show HN: Evolving Agents Framework - Project Screenshot

URL: https://github.com/matiasmolinas/evolving-agents

Author: matiasmolinas

Description: Hey HN,

I've been working on an open-source framework for creating AI agents that evolve, communicate, and collaborate to solve complex tasks. The Evolving Agents Framework allows agents to:

Reuse, evolve, or create new agents dynamically based on semantic similarity Communicate and delegate tasks to other specialized agents Continuously improve by learning from past executions Define workflows in YAML, making it easy to orchestrate agent interactions Search for relevant tools and agents using OpenAI embeddings Support multiple AI frameworks (BeeAI, etc.) Current Status & Roadmap This is still a draft and a proof of concept (POC). Right now, I’m focused on validating it in real-world scenarios to refine and improve it.

Next week, I'm adding a new feature to make it useful for distributed multi-agent systems. This will allow agents to work across different environments, improving scalability and coordination.

Why? Most agent-based AI frameworks today require manual orchestration. This project takes a different approach by allowing agents to decide and adapt based on the task at hand. Instead of always creating new agents, it determines if existing ones can be reused or evolved.

Example Use Case: Let’s say you need an invoice analysis agent. Instead of manually configuring one, our framework: Checks if a similar agent exists (e.g., a document analyzer) Decides whether to reuse, evolve, or create a new agent Runs the best agent and returns the extracted information

Here's a simple example in Python:

import asyncio from evolving_agents.smart_library.smart_library import SmartLibrary from evolving_agents.core.llm_service import LLMService from evolving_agents.core.system_agent import SystemAgent

async def main(): library = SmartLibrary("agent_library.json") llm = LLMService(provider="openai", model="gpt-4o") system = SystemAgent(library, llm)

    result = await system.decide_and_act(
        request="I need an agent that can analyze invoices and extract the total amount",
        domain="document_processing",
        record_type="AGENT"
    )

print(f"Decision: {result['action']}")  # 'reuse', 'evolve', or 'create'
print(f"Agent: {result['record']['name']}")

if name == "main": asyncio.run(main())

Next Steps Validating in real-world use cases and improving agent evolution strategies Adding distributed multi-agent support for better scalability Full integration with BeeAI Agent Communication Protocol (ACP) Better visualization tools for debugging Would love feedback from the HN community! What features would you like to see?

Repo: https://github.com/matiasmolinas/evolving-agents

Popularity: 124 points | 21 comments


2. Show HN: I built a free SVG Web site

Show HN: I built a free SVG Web site - Project Screenshot

URL: https://websvg.com/

Author: emson

Description: This has been an experiment to see if I could create everything using scripts and AI. If AI couldn't do it I'd get it to create the code such as API calls and so on. This websvg.com site was completely created using these AI tools. Including the DNS being applied, the Cloudflare Pages were automatically set up and the the web site was a Svelte 5 application generated by v0.dev and Cursor. Every image was generated in Midjourney and converted to SVG. I have now taken all of these scripts and can create a similar landing or directory site in less than a minute, provided I have the data. Anyway it's been fun.

Popularity: 44 points | 24 comments


3. Show HN: Searchable Vim Cheat Sheet with Favorites (Open-Source)

Show HN: Searchable Vim Cheat Sheet with Favorites (Open-Source) - Project Screenshot

URL: https://nvim-cheatsheet.vercel.app/

Author: lil_csom

Description:

Popularity: 24 points | 3 comments


4. Show HN: I built a JSON and JSON5 parser with MISRA C conformance

Show HN: I built a JSON and JSON5 parser with MISRA C conformance - Project Screenshot

URL: https://railgunlabs.com/judo/

Author: hgs3

Description: Hello everyone. I built Judo: a JSON(5) parser with MISRA C conformance.

For those who don't know, JSON5 is an unofficial extension of JSON that incorporates features from ECMAScript 5.1 (ES5). I designed Judo to be customizable, so you can stick with standard JSON if you'd prefer.

About me: I'm a solo developer and I quit my Big Corp job to pursue my passion for software development. Judo is my 5th commercial release.

Popularity: 6 points | 2 comments


5. Show HN: Wordazzle – Become eloquent by mastering elegant words, powered by AI

Show HN: Wordazzle – Become eloquent by mastering elegant words, powered by AI - Project Screenshot

URL: https://wordazzle.com

Author: creature_x

Description: Wordazzle was born from my desire to learn as many elegant words as possible. The devil truly is in the details, and what constitutes "elegant" isn't exactly trivial to pin down. After a lot of prompt-tweaking, temperature fiddling, and experimenting with different AI models, I'm quite satisfied with the output, which I humbly present to HackerNews(again).

Hope someone else finds this useful!

Popularity: 4 points | 4 comments


6. Show HN: StreakHunter – Track your ProductHunt daily streak

Show HN: StreakHunter – Track your ProductHunt daily streak - Project Screenshot

URL: https://www.streakhunter.com/

Author: lenjee

Description: Hey HN,

I recognized that many makers & hunters on Product Hunt have a little small pain. Sometimes they forget that Product Hunt exists for one day and then booooom, 303 Streak gone...

I know that streaks are important to some people and not to others.

For those people to whom it is important, I have the solution

I launched today my tool, Streak Hunter, and this simple small tool solves this problem for you by sending you daily email reminders, tracking it inside the web app, and even more!

I would really like to get your feedback on Streak Hunter!

Popularity: 4 points | 1 comments


7. Show HN: Wikimedia and LLM

Show HN: Wikimedia and LLM - Project Screenshot

URL: https://llm.jonathanpagel.com/

Author: jcmp

Description: Hi! I built this tool that uses the Wikimedia image corpus to enhance LLM-generated text. I originally made it to help explain mathematical concepts during my exam period, but of course, I only finished it once my exams were already over. Anyway, I think there's value in having images alongside text explanations, and since relying solely on AI-generated images isn't so ideal, Wikimedia is a great resource. You can check out an example answer here [1]. If my API key reaches its limit, you'll need your own key to continue using the tool. However, it's completely free, has no ads, requires no sign-up, and if you'd rather not insert your own key, feel free to copy the code from my GitHub or ask Cursor to code it for you.

Popularity: 2 points | 3 comments


8. Show HN: Fresh Data for AI (Open Source)

Show HN: Fresh Data for AI (Open Source) - Project Screenshot

URL: https://github.com/cocoindex-io/cocoindex

Author: badmonster

Description:

Popularity: 4 points | 1 comments


9. Show HN: I built a Mac app to watch YouTube playlists and channels

Show HN: I built a Mac app to watch YouTube playlists and channels - Project Screenshot

URL: https://limstack.com/limtuber

Author: limboy

Description: I like YouTube, but not the AD, recommendations, and other distractions. So I built a Mac app for myself to address that. It turned out pretty well, and I'd like to share it with you.

Popularity: 4 points | 1 comments


Show HN: The first legal AI API - Project Screenshot

URL: https://docs.isaacus.com/quickstart

Author: ubutler

Description: Hey HN, Over the past couple months, we, a team of Aussie legal and AI experts, have been working on building a new type of legal AI company — a company that, instead of trying to automate legal jobs, is trying to automate legal tasks.

We want to make lawyers’ lives easier, not replace them.

We’ve been laser-focused on building small and efficient yet still highly accurate, specialized models for some of the most time-consuming and mundane legal tasks lawyers have to perform. Stuff like running through a thousand contracts just to locate any clauses that would allow you to get out early.

We just finished training our first set of models, focused on document and clause classification, probably the most common problem we see come up. Our benchmarks show our models to be far more accurate and almost more efficient than their closest general-purpose competitors.

Today, we’re making those models publicly available via the Isaacus API, the world’s first legal AI API.

Our models don’t require any finetuning because they’re zero-shot classifiers — you give them a description of what you’re looking for (for example, “This is a confidentiality clause.”) and they pop out a classification score.

Because our models are so small, which they have to be to be able to process reams of legal data at scale, they can sometimes be a bit sensitive to prompts. To help with that, however, we’ve preoptimized an entire library of prompts, including what we call, universal templates, which let you plug in your own arbitrary descriptions of what you’ve looking for.

We’ve made our prompt library available via the Isaacus Query Language or IQL. Another world first — it’s a brand-new AI query language designed specifically for using AI models to analyze documents.

You can invoke query templates using the format “{IS <query_template_name>}”. You can also chain queries together using Boolean and mathematical operators, like so: “{This is a confidentiality clause.} AND {IS unilateral clause}”.

We think our API is pretty neat and we hope you will too.

This is just the beginning for us — over the course of this year, we’re planning on releasing text extraction and embedding models as well as a second generation of our Kanon legal foundational model.

Below are some links for your convenience.

- Quickstart guide: https://docs.isaacus.com/quickstart

- Announcement: https://isaacus.com/blog/the-worlds-first-legal-ai-api

- Docs: https://docs.isaacus.com/home

- Sign up: https://platform.isaacus.com/accounts/signup/

- LinkedIn: https://www.linkedin.com/company/isaacus/

- Email: hello@isaacus.com

Popularity: 5 points | 0 comments


11. Show HN: Check out my new egg-citing game for the brain

Show HN: Check out my new egg-citing game for the brain - Project Screenshot

URL: https://vidzert.com/chicken-tetris

Author: vidzert

Description:

Popularity: 4 points | 1 comments


12. Show HN: I built a jiu jitsu gym database

Show HN: I built a jiu jitsu gym database - Project Screenshot

URL: https://jiujitsunearme.org

Author: martentamm

Description:

Popularity: 1 points | 3 comments


13. Show HN: A full open-source Choose Your Own Adventure generator (cyoa.dev)

Show HN: A full open-source Choose Your Own Adventure generator (cyoa.dev) - Project Screenshot

URL: https://www.cyoa.dev/

Author: tnachen

Description: Hey HN!

Ivan and I (Tim) from Essence VC been working on a new open source project to build a new Choose Your Own Adventure story generator, that creates each story with images, storyline, music, etc.

We built the project using Restate.dev (a new durable framework) for the story workflow, Modal for running the diffusion models, AWS S3 for storage, etc. The whole project is done in Python as well.

Love to have you try it out and also fork the project and see if you want to continue building stuff around it. Our goal is to learn how simple or hard is it to build this, but also have a playground to make something fun as well :)

Popularity: 4 points | 0 comments


14. Show HN: A Chrome Extension to Organize Google Docs into Folders

Show HN: A Chrome Extension to Organize Google Docs into Folders - Project Screenshot

URL: https://chromewebstore.google.com/detail/folder-manager-for-google/jgikcdimpmdoofakjbggakjhbpidjbeo

Author: dark_vapour

Description: Hey HN,

I built a Chrome extension called Folder Manager for Google Docs that lets you organize your Google Docs into folders, something Google Docs (surprisingly) still doesn’t support natively.

Why I Built This

I use Google Docs a lot, but managing documents inside Drive is slow and frustrating. There’s still no proper way to organize documents into folders, quickly move files. I searched for existing solutions but couldn’t find anything simple and effective, so I decided to build one.

How It Works

- Collapsible sidebar to quickly organize your Google Docs into folders

- Easily move and manage documents without digging through Drive

- Pin folders for faster access

I built this primarily for myself, but after using it for a couple of months, I realized others might find it useful too. It’s still a work in progress, and I’d love to hear your feedback—especially on features or improvements you’d like to see!

Give it a try and let me know what you think. Happy to answer any questions!

Popularity: 3 points | 0 comments


15. Show HN: Fusio 5.2 released – open-source API management platform

Show HN: Fusio 5.2 released – open-source API management platform - Project Screenshot

URL: https://github.com/apioo/fusio

Author: k42b3

Description:

Popularity: 3 points | 0 comments


16. Show HN: Daylight – track sunrise / sunset times in your terminal

Show HN: Daylight – track sunrise / sunset times in your terminal - Project Screenshot

URL: https://github.com/jbreckmckye/daylight

Author: jbreckmckye

Description:

Popularity: 2 points | 1 comments


17. Show HN: Translate Japanese Manga and Korean Manhwa with Chrome Extension

Show HN: Translate Japanese Manga and Korean Manhwa with Chrome Extension - Project Screenshot

URL: https://pawakalabs.com/products/fakey/

Author: adibzaini

Description: If you are a manga or manhwa lover, you must understand the feeling of waiting for your favourite series being translated into English or sometimes your native language.

Now, you can translate them in real-time with Fakey Chrome extension!

Popularity: 2 points | 1 comments


18. Show HN: SpeakBrightly - Become a Confident Speaker with Targeted Feedback

Show HN: SpeakBrightly - Become a Confident Speaker with Targeted Feedback - Project Screenshot

URL: https://speakbrightly.com

Author: speakbrightly

Description: Hey HN,

We’ve been passionate about public speaking for as long as we can remember. Personally, I (one of the creators) have loved presenting ever since 6th grade, and in college, I was president of my Toastmasters chapter. Another creator was among the highest-rated public speakers at one of the world's largest companies. Over the years, our team has seen how great speaking skills can open doors — whether it’s giving a talk, pitching an idea, or just leading a meeting with confidence.

That’s why we built SpeakBrightly.com, an AI-powered public speaking coach that helps you become a confident and effective public speaker. It does so by providing structured feedback on your delivery, clarity, and engagement. Our goal is to make high-quality speaking coaching accessible to anyone.

Here are some interesting technical tidbits for the other builders out there :)

  • Align feedback with explicit examples: Early on, we noticed that AI-generated feedback was too vague (even when scoring against a detailed rubric). But by forcing the evaluation to reference explicit examples from the speech, we significantly improved usefulness and accuracy.
  • Preprocess audio to get the best results from GPT-4o: Downsampling MP3s to 16kHz before sending them to the audio model dramatically improved transcription quality and feedback accuracy.
  • Process audio in two stages: We found that generating an initial report with the audio model and then feeding the transcription plus the audio model’s report into a text-only model provided the most precise and actionable insights.

    We’re excited to finally share this with the world! If you’ve ever wanted better feedback on your speaking skills, we’d love for you to try it out and let us know what you think.

Popularity: 3 points | 0 comments


19. Show HN: I researched system design questions so you don't have to

Show HN: I researched system design questions so you don't have to - Project Screenshot

URL: https://systemdesign.io

Author: seestraw

Description:

Popularity: 3 points | 0 comments


20. Show HN: A No-Nonsense Discord Timestamp Generator

Show HN: A No-Nonsense Discord Timestamp Generator - Project Screenshot

URL: https://dank.tools/discord-time-tag

Author: spacesh1psoda

Description: Looking for some tips on improvements, am I missing a feature or could I improve the UX somehow?

Thanks!

Popularity: 3 points | 0 comments


21. Show HN: Transform your text into bold, irreverent Brat Font designs

Show HN: Transform your text into bold, irreverent Brat Font designs - Project Screenshot

URL: https://bratfont.com

Author: jsamqiu

Description: This website provides a Brat Font Generator, which can generate three classic Brat styles of text, namely Brat Standard Green, Brat Completely Different Green and Brat Deluxe White. At the same time, you can also find various fancy unicode fonts here.

Popularity: 3 points | 0 comments


22. Show HN: Basketball Statistics Research Assistant

Show HN: Basketball Statistics Research Assistant - Project Screenshot

URL: https://basketball.offbynone.ai/

Author: IanGallacher

Description: Our goal is to build tooling to eliminate hallucinations for data-driven queries.

We have built a demo that showcases an application of this technology - natural language basketball statistic search. https://basketball.offbynone.ai

This enables asking data-driven questions in ways that have never been possible before.

Try asking it things like "If Shaq scored half as many points, which victories turn into defeats?" or "Of the players who have missed half their shots, who has played in the most games?" These questions are unanswerable by current LLM technology, even when enhanced by RAG.

The tooling we have built works from URLs or uploaded files. It auto-detects the structure and semantic meanings of the data into a blueprint. This blueprint is used to import the data into a mongo database. Additionally, it uses the blueprint to convert human-language questions into database queries.

You can have a high degree of confidence (but as with all llm technology, not 100% confidence) in the generated answers because you can verify that the LLM isn't making up the data. You can see the queries used to fetch the data as well as the raw data fetched from the database. This approach eliminates issues with the LLM making up data, but the generated answers are only as accurate as the provided source data. For example, some of the NBA records for 3 point attempts before 1982 can be a little spotty, so questions involving percentage accuracy before that date might not be accurate. Like all LLM technology, there is also a chance that it misunderstand what you are asking for.

I'm open to feedback and questions. We are open to the possibility of open-sourcing the tooling if there is enough interest.

Popularity: 2 points | 0 comments


23. Show HN: A Daily Movie Trivia Game – Sort Films by Release Year

Show HN: A Daily Movie Trivia Game – Sort Films by Release Year - Project Screenshot

URL: https://www.movietimeliner.com/

Author: xSWExET

Description: Hi HN,

I built a daily movie trivia game inspired by Wordle. The challenge: drag movies into the correct order based on their release years.

- New timeline every day

  • Share your score with others
  • No sign-up required

    I’m a developer who loves movies and wanted to create my own take on a daily puzzle game. Would love to hear your thoughts and feedback!

Popularity: 2 points | 0 comments


24. Show HN: Reduce PNG Size

Show HN: Reduce PNG Size - Project Screenshot

URL: https://reducepngsize.com/

Author: mddanishyusuf

Description:

Popularity: 2 points | 0 comments


25. Show HN: Introducing Swiftybase – A No-Code Backend Builder

Show HN: Introducing Swiftybase – A No-Code Backend Builder - Project Screenshot

URL: https://swiftybase.com

Author: rebaz94

Description: Hey HN,

I'm Rebaz, Founder of Swiftybase. I'm excited to share Swiftybase, a no-code visual backend builder that eliminates the backend bottleneck.

I've always dreamed of building a no-code solution, and after more than 2 years of full-time work, I'm thrilled to finally show you Swiftybase. It reimagines backend development by offering a truly developer-first experience. Unlike traditional no-code tools that sacrifice power for simplicity, we deliver both:

Fully-Typed Function Stack: Enjoy IDE-like autocompletion and type safety.

250+ Production-Ready Functions: Covering everything from core operations to advanced business logic.

Deep Database Integrations: Works seamlessly with MySQL, PostgreSQL, etc., with AI features coming soon.

Full Infrastructure Control: Deploy on your own Fly.io organization with zero hidden hosting costs.

Built-in Redis Support: Execute Redis commands directly.

Built-in S3 Integration: Store files ephemerally in server or persistently with seamless S3 support.

OAuth Made Easy: Integrate authentication effortlessly with Google, Facebook, Twitch, Slack, GitHub, and more.

Effortless Email Sending & Templating: Send emails via Resend and Mailgun while customizing workflows with powerful templating features.

I'd love to hear your thoughts and feedback. Thanks for checking it out!

Try it now: https://swiftybase.com

Popularity: 2 points | 0 comments


26. Show HN: Duga, an open-source, web-based IPTV client (WIP)

Show HN: Duga, an open-source, web-based IPTV client (WIP) - Project Screenshot

URL: https://github.com/carlos-menezes/duga

Author: carlos-menezes

Description: Contributions are welcomed.

Popularity: 2 points | 0 comments


27. Show HN: Run Self-Guided N=1 Experiments

Show HN: Run Self-Guided N=1 Experiments - Project Screenshot

URL: https://apps.apple.com/us/app/reflect-track-anything/id6463800032

Author: davidanekstein

Description: We're two indie developers who created an iOS app called Reflect [0], which lets you track anything you can think of and run self-guided experiments.

We launched on Product Hunt a few weeks ago and got the #3 spot for the day [1]. We have also been sharing our own experiences running experiments with Reflect [2, 3].

[0] https://apps.apple.com/us/app/reflect-track-anything/id64638...

[1] https://www.producthunt.com/products/reflect-c052fea3-a982-4...

[2] https://waragainstentropy.substack.com/p/meditating-more-mad...

[3] https://reflectapp.substack.com/p/my-experience-with-nootrop...

Popularity: 2 points | 0 comments


28. Show HN: Fleur, open-source app store for Claude

Show HN: Fleur, open-source app store for Claude - Project Screenshot

URL: https://github.com/fleuristes/fleur

Author: vortex_ape

Description: Hey folks, we built Fleur, an open-source app store for Claude. It's the easiest way for non-technical people to discover and install MCPs.

MCPs (based on the Model Context Protocol by Anthropic) enable Claude to use tools that can do a variety of functions like searching the web, executing code, manipulating files, accessing APIs; basically interacting with things outside the conversation context.

We've been using MCPs within Claude for a while and have found them super useful. For example, with the Slack and Linear MCPs, we can ask Claude to find the last bug a customer reported in a shared slack channel, and open an issue on Linear with all the details.

While playing around with MCPs, we found that installing MCPs was not the most straightforward experience, especially for someone who doesn't have Python and Node set up on their computer. That was the motivation behind building Fleur as a desktop app to handle the complexity of installing all the right tools in the environment that the MCPs depend on.

The app itself is open-source and it runs just on your machine. Your data only goes to Anthropic when you ask Claude to do something with it.

We also have an app registry where you can submit more MCPs: https://github.com/fleuristes/app-registry. We're making sure that every MCP we add works really well because we found a ton of them which have errors and don't work out of the box.

Would love to know what you think!

Popularity: 2 points | 0 comments


29. Show HN: Rust Online Parquet Viewer

Show HN: Rust Online Parquet Viewer - Project Screenshot

URL: https://parquet-viewer.xiangpeng.systems

Author: xiangpeng

Description: View parquet files online

Popularity: 2 points | 0 comments


30. Show HN: Buildless CJS+ESM+TS+Importmaps for the Browser

Show HN: Buildless CJS+ESM+TS+Importmaps for the Browser - Project Screenshot

URL: https://github.com/stagas/buildless-require

Author: stagas

Description:

Popularity: 2 points | 0 comments


31. Show HN

Show HN - Project Screenshot

URL: https://www.drinkdrivecalc.co.uk/

Author: ynyrllw

Description: Tried out some vibe coding this Sunday - First time trying out cursor and pretty impressed with the guidance it gives and consdering alot i wouldnt have thought of and using railway

Popularity: 1 points | 1 comments


32. Show HN: Drip or Shake Dividend Strategy Comparator

Show HN: Drip or Shake Dividend Strategy Comparator - Project Screenshot

URL: https://driporshake.pages.dev/

Author: DocFeind

Description:

Popularity: 2 points | 0 comments


33. Show HN: A free, crowdsourced Airtable of system design questions

Show HN: A free, crowdsourced Airtable of system design questions - Project Screenshot

URL: https://systemdesign.io/

Author: leetsquad

Description:

Popularity: 2 points | 0 comments


34. Show HN: Retrace Extension – A Better Bookmarks Manager

Show HN: Retrace Extension – A Better Bookmarks Manager - Project Screenshot

URL: https://chromewebstore.google.com/detail/retrace-extension/amplkfldacppobiogcnjipegoekcmimc

Author: edsonresearch

Description: Retrace Extension is more than just a bookmark Manager. It offers the ability to save, store, organize, and manage specific pieces of online content including text, images, website pages, and YouTube videos. Each piece of content you save becomes a "Trace", which can be assigned to different groups, starred, archived, appended with additional notes, and searched easily within the Retrace dashboard. When a Trace is re-clicked in the dashboard, Retrace sends you directly back to the website or video and auto-scrolls to bring you precisely back to where you left off.

Popularity: 2 points | 0 comments


35. Show HN: Create AI-Generated and Customized Bedtime Stories for Your Kids

Show HN: Create AI-Generated and Customized Bedtime Stories for Your Kids - Project Screenshot

URL: https://bravekids.app/

Author: tarikguney

Description: My kids love the stories in which they are the main characters and the stories were customized for them. They now want me to put them to the bed to hear these great stories. So I decided to turn that idea into a small web app.

Popularity: 1 points | 0 comments


36. Show HN: I Built an AI That Analyzes Social Media Sentiment in Seconds

Show HN: I Built an AI That Analyzes Social Media Sentiment in Seconds - Project Screenshot

URL: https://sensefeedback.com/

Author: inspired_prgmr

Description:

Popularity: 1 points | 0 comments


37. Show HN: I built an actual AI fitness coach that can see you

Show HN: I built an actual AI fitness coach that can see you - Project Screenshot

URL: https://www.fitadvisor.app

Author: guillerp

Description: With the latest vision capabilities, AI can analyze your workout technique, provide corrections, and much more.

Popularity: 1 points | 0 comments


38. Show HN: AI Enhanced YouTube Immersion for Learning Japanese

Show HN: AI Enhanced YouTube Immersion for Learning Japanese - Project Screenshot

URL: https://www.hayailearn.com/

Author: zymeth02

Description: Hi,

I built this to help myself learn Japanese, and thought it could benefit others too. It's designed to be super customizable based on how you want to learn.

The most unique features:

  • Can show you the grammar breakdown and explanation of every subtitle seamlessly
  • Can configure such that example sentences and SRS review only use videos that you saved into album
  • it's web-based so viewable on any device

    It's still in early stages, and looking to continue improving it. Would love to get some feedback.

    Thank you!

Popularity: 1 points | 0 comments


39. Show HN: Fermi estimation game (100% written by ChatGPT o1)

Show HN: Fermi estimation game (100% written by ChatGPT o1) - Project Screenshot

URL: https://huggingface.co/spaces/skanderovitch/fermi_estimation_game

Author: skanderbm

Description: I wanted to try out ChatGPT o1 model to generate a full streamlit app, asking Fermi style of estimation questions, without looking at the code

With some simple prompts, it did a fairly good job, in about one hour

I only needed to copy paste error messages a couple of times, for it to suggest corrections

My take-away is that LLMs will empower many non-technical users to achieve their (simple / self-contained) goals with no need for external help, which makes me hopeful about their benefits to society

Popularity: 1 points | 0 comments


40. Show HN: Aesthetic Rank – AI-based physique analysis and ranking

Show HN: Aesthetic Rank – AI-based physique analysis and ranking - Project Screenshot

URL: https://aestheticrank.com/

Author: standardresul

Description: I built Aesthetic Rank, a web app that uses AI to analyze physique photos and provide detailed feedback. Upload up to 5 photos and get:

Tiered ranking system (Iron to Supreme) Detailed muscle group assessments Body ratio analysis and composition metrics Posture and symmetry evaluation "Warrior Archetype" classification Natural vs enhanced assessment

The AI processes images in under 60 seconds, providing comprehensive reports with actionable insights about genetic potential, sport recommendations, and detailed strengths/weaknesses.

Popularity: 1 points | 0 comments


41. Show HN: Pushinator – A no-code push notification service

Show HN: Pushinator – A no-code push notification service - Project Screenshot

URL: https://pushinator.com

Author: makstamoian

Description: I built Pushinator, a no-code push notification service that lets you send and receive push notifications from any kinds of automations, integrations, or UI. It’s quick to set up, requires no coding, and is free to use for now. I would love your feedback and thoughts on how it could help you!

Popularity: 1 points | 0 comments


42. Show HN: Created an app that auto-translates your app on pull request with AI

Show HN: Created an app that auto-translates your app on pull request with AI - Project Screenshot

URL: https://www.repotranslate.dev/

Author: danielkrajka

Description: Hi all,

Had a problem at a job I'm working at - the translations always took a lot of time. Decided to use LLMs to translate the app instead of human translators.

How it works?

  1. Sign in via GitLab (GitHub coming soon)
  2. Select repository
  3. Select source file
  4. Select target languages

    Whenever you make a change to the source file in a Merge / Pull request, Repo Translate pushes a commit to the same branch with the source file translated to target languages.

Popularity: 1 points | 0 comments


43. Show HN: I built Listenify to listen to blogs while doing the dishes

Show HN: I built Listenify to listen to blogs while doing the dishes - Project Screenshot

URL: https://listenify.xyz/

Author: dreamcin

Description: I built Listenify to solve a problem we faced daily: wanting to consume interesting content while commuting, exercising, or doing chores.

Popularity: 1 points | 0 comments


44. Show HN: Synology Surveillance Station API Client in Golang

Show HN: Synology Surveillance Station API Client in Golang - Project Screenshot

URL: https://github.com/RealKeyboardWarrior/synology-surveillance-station-go

Author: Keyb0ardWarr10r

Description:

Popularity: 1 points | 0 comments


45. Show HN: Auto create commit message on cursor

Show HN: Auto create commit message on cursor - Project Screenshot

URL: https://github.com/jatinsandilya/mcp-server-auto-commit

Author: zicon35

Description: Built a mcp server that analyses the changes and commits the changes automatically in a project with a clean commit message in Agent mode.

Popularity: 1 points | 0 comments


46. Show HN: A preference passport for AI agents and faster shopping

Show HN: A preference passport for AI agents and faster shopping - Project Screenshot

URL: https://benevolent-unicorn-7cd982.netlify.app/

Author: username2468

Description: I created a prototype for a "Universal Preference Passport" that stores all your detailed preferences to make shopping faster. It describes a preference profile where you store all your requirements for products (in this example, outdoor gear) and retailers and experts can recommend products that meet all of your requirements.

Why preference passports?

I always wonder why I have to re-enter the same preferences and data on multiple websites. For example: Entering the same size|color|price|shipping filters on multiple shopping sites, entering the same flight duration|luggage|budget|#stops details on multiple flight booking sites, entering the same age|height|weight|fitness goals details on every new fitness app I try. Why not store all of these preferences in one place and have the businesses pull this data to give me recommendation?

Even better, I could broadcast my preferences in gory detail and share it with retailers. It would be like reverse advertisements where I advertise my needs to businesses and they get the opportunity to win my business if their product fully meets all of my criteria. Imagine a world where advertisements were actually useful product recommendations.

Other ways these passports could be used:

- Share your preference passport with AI agents so "plan a trip" automatically becomes "plan a trip for these flight budgets | dates | #passengers | hotel ratings | types of locations to visit | budgetary requirements | noise levels | review red flags | luggage requirements | refund options | preferred flight and hotel providers

- Share your preference passport easily on Reddit, Hacker News and other "give me advice" forums so experts can tailor their advice to your needs and background

- Apps, retailers and service providers can get aggregated and anonymized preference data to understand market needs and build better products (e.g: A fitness provider may learn that there's a sizeable number of people in their area looking for a semi-private offering in between group classes and personal training)

What do you think? Are there areas where a preference passport can help you get to the perfect products and services you need faster?

Popularity: 1 points | 0 comments


47. Show HN: Empyrebase – A Better Pyrebase with Firestore and Stability Fixes

Show HN: Empyrebase – A Better Pyrebase with Firestore and Stability Fixes - Project Screenshot

URL: https://github.com/emrothenberg/empyrebase

Author: emrothenberg

Description: I built Empyrebase as a modern alternative to Pyrebase, focusing on stability, modularity, and Firestore support. It keeps the simplicity of Pyrebase while improving maintainability and flexibility.

- Firestore support (missing in Pyrebase)

Popularity: 1 points | 0 comments


48. Show HN: Rust SQL to Nosql (Redis)

Show HN: Rust SQL to Nosql (Redis) - Project Screenshot

URL: https://github.com/allen-munsch/rust-sql-to-nosql

Author: allen-munsch

Description:

Popularity: 1 points | 0 comments


49. Show HN: Krep a High-Performance String Search Utility written in C

Show HN: Krep a High-Performance String Search Utility written in C - Project Screenshot

URL: https://github.com/davidesantangelo/krep/settings

Author: daviducolo

Description:

Popularity: 1 points | 0 comments


50. Show HN: Chess Using NFTs and Game Theory

Show HN: Chess Using NFTs and Game Theory - Project Screenshot

URL: https://github.com/Dyslex7c/dNFT-Quantum-Chess

Author: furfural

Description: Beyond Checkmate transforms traditional chess into a dynamic value-creation system by tokenizing chess pieces as NFTs with values that update based on move quality. The platform rewards strategic excellence and skilled gameplay through a mathematically sound economic model, creating new opportunities for chess players to earn based on their abilities.

The platform consists of three primary components:

Chess Gameplay Engine

Web-based interface Real-time move evaluation Integration with Stockfish engine Dynamic Valuation Model

Real-time position evaluation Game theory-based value updates Performance tracking metrics Blockchain Layer

SFT minting and management Smart contract integration Marketplace functionality

Popularity: 1 points | 0 comments


51. Show HN: Chrome extension to enable toggling incognito and non-incognito windows

Show HN: Chrome extension to enable toggling incognito and non-incognito windows - Project Screenshot

URL: https://github.com/Tom-stack3/incognito-identifier-extension

Author: stack3

Description: I've wanted to be able to have only one instance of my browser running, and one instance of an incognito browser running. For that, I wanted a keyboard shortcut that would toggle the lost Chrome window in the clutter of open windows I have.

In order to differentiate between the Incognito and the Regular Chrome window, I wrote this simple extension that adds a postfix to the title of Incognito tabs. This way, it's possible to recognize those windows from scripts (wmctrl, AutoHotkey).

It greatly improves my workflow, yet it's so simple, so I've decided to share it.

I've added in the README an example script I use on my Linux and Windows machines to toggle the browser windows using this extension :)

Popularity: 1 points | 0 comments


52. Show HN: I made a free directory of online indie creators

Show HN: I made a free directory of online indie creators - Project Screenshot

URL: https://creator-connection-galaxy.lovable.app/

Author: quinto_quarto

Description: i've been working on a bunch of creator-economy ideas (like this: https://news.ycombinator.com/item?id=40910913 and others) and none really worked (all tarpits), so i decided to open-source the data.

this is a free directory of all these interesting creators from YouTube, Substack, TikTok and podcasts. hope someone here gets some value from this.

i'm not technical so i vibe-coded this with lovable, which, indeed, i found lovable. it took me half a day. was fun to make. i'll probably move this database to somewhere more permanent and tinker with it more.

Popularity: 1 points | 0 comments


53. Show HN: Tool-using agents with a single fetch

Show HN: Tool-using agents with a single fetch - Project Screenshot

URL: https://www.colossalhq.com/

Author: armatav

Description: I got sick of building out tool-using agents over-and-over again - so here's a bunch you can use at-cost with a single fetch request.

Just launched on Product Hunt too!

Please let me know which other functions or agents you want added. Supports the OpenAI provider only right now.

Popularity: 1 points | 0 comments


54. Show HN: I Built ToxTex – AI-Powered API to Detect Toxic Content in Text

Show HN: I Built ToxTex – AI-Powered API to Detect Toxic Content in Text - Project Screenshot

URL: https://toxtex.xyz

Author: valart

Description:

Popularity: 1 points | 0 comments


55. Show HN: 100% Vibe Coded Typing Game (See how fast you can type)

Show HN: 100% Vibe Coded Typing Game (See how fast you can type) - Project Screenshot

URL: https://wordsmash.apsquared.co/

Author: apsquared

Description: Replica of a fun game I used to play with my kids to practice typing.

Popularity: 1 points | 0 comments


56. Show HN: Minimalist framework for building POC AI agents

Show HN: Minimalist framework for building POC AI agents - Project Screenshot

URL: https://github.com/gabriansa/explicit-agent

Author: gabrigooo

Description: AI agents, AI agents, AI agents... I was tired of bloated frameworks with hidden layers and pointless complexity. So I built a framework for building fast proof-of-concept AI agents with zero abstraction layers.

Popularity: 1 points | 0 comments


Conclusion

Today's Show HN roundup showcases a diverse range of innovative projects. From AI-powered tools to creative coding solutions, these projects reflect the dynamic nature of our tech community. Which project caught your attention the most? Let us know in the comments!

Tags: #ShowHN #TechInnovation #DeveloperProjects #AI Applications #Open Source Software