
Explore the hottest developer projects on Show HN for 2025-03-06. Dive into innovative tech, AI applications, and exciting new inventions!
Summary of Today's Content
The Hottest Product Highlights of the Day
- Product Name: CodeTracer
- Highlight: A user-friendly time-traveling debugger that records program execution into a shareable trace file, enabling users to move forward and backward through execution and examine memory history.
Quick Summary
- Hottest Category: Debugging tools
- Keywords with the most likes: Rust, LLM, AI
- Most Popular Product: CodeTracer, 295 likes
Technical Trends
- AI-powered tools and agents
- Open-source contributions and community-driven projects
- LLMs for code analysis and generation
- Rust and Nim for systems programming
- Multi-modal and natural language interfaces
- Time-travel debugging
- Automation of testing and code fixes
Project Distribution
- Debugging Tools: 17%
- AI-based tools and applications: 40%
- Productivity/Development Tools: 26%
- Game Development/Entertainment: 9%
- Other/Utilities: 8%
Trend Insights
The data highlights a strong emphasis on AI-driven development and debugging solutions. There is a clear push towards automation and increased developer productivity. Open-source projects, particularly those leveraging Rust, are also prominently featured. Furthermore, the trend suggests increasing application of LLMs to solve software engineering problems, including test generation, code analysis and code generation, and also highlights the growing importance of tools facilitating collaboration and improved understanding of codebases.
Today's Top 10 Trending Products
Top 1. Introducing CodeTracer – an innovative time-traveling debugger built with Nim and Rust, designed to enhance your coding experience by effortlessly navigating through past code states for comprehensive debugging. (Likes: 295, Comments: 49)
Top 2. Shelgon: A Rust Framework for Creating Interactive REPL Shells. (Likes: 108, Comments: 22)
Top 3. A powerful library for handling vectors and quaternions in Rust, designed for performance and ease of use in 3D graphics and mathematical computations. Perfect for developers looking to enhance their applications with robust geometric operations. (Likes: 102, Comments: 20)
Top 4. Revolutionary open-source audio turn detection model for seamless integration and enhanced native performance. (Likes: 87, Comments: 18)
Top 5. Experience the intriguing world of LLMs engaging in Mafia games, where they showcase their abilities to lie, deceive, and reason in real-time. Discover how artificial intelligence navigates social dynamics and strategic thinking in this captivating simulation. (Likes: 39, Comments: 22)
Top 6. Ariana is an innovative time travel debugger for Python and JavaScript, seamlessly integrated into VSCode, designed to enhance your coding experience by allowing you to navigate through your code execution history effortlessly. (Likes: 20, Comments: 13)
Top 7. Fast-agent allows you to effortlessly compose agents and workflows with MCP capabilities in just minutes, streamlining your process and enhancing productivity. (Likes: 23, Comments: 3)
Top 8. Uncloud simplifies container orchestration by eliminating the need for a control plane, offering a straightforward and efficient solution for managing your containerized applications. (Likes: 10, Comments: 5)
Top 9. iMCP seamlessly integrates your macOS Messages, Calendar, and more with Claude, enhancing your productivity and connectivity. Simplify your workflow and stay organized effortlessly. (Likes: 8, Comments: 6)
Top 10. Open-source platform offering a robust alternative to Netlify and Vercel for deploying static sites effortlessly. (Likes: 7, Comments: 6)
1. Show HN: CodeTracer – A new time-traveling debugger implemented in Nim and Rust
URL: https://github.com/metacraft-labs/codetracer
Author: alehander42
Description: Hey!
We are presenting CodeTracer - a user-friendly time-traveling debugger designed to support a wide range of programming languages:
https://github.com/metacraft-labs/codetracer?tab=readme-ov-f...
CodeTracer records the execution of a program into a sharable self-contained trace file. You can load the produced trace files in a GUI environment that allows you to move forward and backward through the execution and to examine the history of all memory locations. They say a picture is worth a thousand words — well, a video is even better! Watch the demo below to see CodeTracer in action:
https://www.youtube.com/watch?v=xZsJ55JVqmU
The initial release is limited to the Noir programming language, but CodeTracer uses an open format for its trace files and we've started community-driven projects which aim to add support for Ruby and Python.
We are also developing an alternative back-end, capable of working with RR recordings, which will make CodeTracer suitable for debugging large-scale programs in a variety of system programming languages such as C/C++, Rust, Nim, D, Zig, Go, Fortran and FreePascal.
Popularity: 295 points | 49 comments
2. Show HN: Shelgon: A Framework for Building Interactive REPL Shells in Rust
URL: https://github.com/NishantJoshi00/shelgon
Author: cat-whisperer
Description: I've been working on Shelgon, a framework that lets you build your own custom REPL shells and interactive CLI applications in Rust.
You can use Shelgon to:
- Create a custom shell with only a few lines of code
- Build interactive debugging tools with persistent state between commands
- Develop domain-specific language interpreters with shell-like interfaces
- Add REPL capabilities to existing applications
Getting started is straightforward - implement a single trait that handles your command execution logic, and Shelgon takes care of the terminal UI, input handling, and async runtime integration.
For example, a simple echo shell takes less than 50 lines of code, including a full implementation of command history, cursor movement, and tab completion.
Repository: https://github.com/nishantjoshi00/shelgon
Popularity: 108 points | 22 comments
3. Show HN: Rust Vector and Quaternion Lib
URL: https://github.com/David-OConnor/lin-alg
Author: the__alchemist
Description: I use this library I made for Vectors and Quaternions in many personal projects. I've open-sourced it, in case anyone else would get use out of it.
I use this on various projects, including quadcopter firmware, a graphics engine, a cosmology simulation, and several molecular dynamics applications. No_std compatible.
Popularity: 102 points | 20 comments
4. Show HN: Open-source, native audio turn detection model
URL: https://github.com/pipecat-ai/smart-turn
Author: kwindla
Description: Our goal with this project is to build a completely open source, state of the art turn detection model that can be used in any voice AI application.
I've been experimenting with LLM voice conversations since GPT-4 was first released. (There's a previous front page Show HN about Pipecat, the open source voice AI orchestration framework I work on. [1])
It's been almost two years, and for most of that time, I've been expecting that someone would "solve" turn detection. We all built initial, pretty good 80/20 versions of turn detection on top of VAD (voice activity detection) models. And then, as an ecosystem, we kind of got stuck.
A few production applications have recently started using Gemini 2.0 Flash to do context aware turn detection. [2] But because latency is ~500ms, that's a more complicated approach than using a specialized model. The team at LiveKit released an open weights model that does text-based turn detection. [3] I was really excited to see that, but I'm not super-optimistic that a text-input model will ever be good enough for this task. (A good rule of thumb in deep learning is that you should bet on end-to-end.)
So ... I spent Christmas break training several little proof of concept models, and experimenting with generating synthetic audio data. So, so, so much fun. The results were promising enough that I nerd-sniped a few friends and we started working in earnest on this.
The model now performs really well on a subset of turn detection tasks. Too well, really. We're overfitting on a not-terribly-broad initial data set of about 8,000 samples. Getting to this point was the initial bar we set for doing a public release and seeing if other people want to get involved in the project.
There are lots of ways to contribute. [4]
Medium-term goals for the project are:
- Support for a wide range of languages
- Inference time of <50ms on GPU and <500ms on CPU
- Much wider range of speech nuances captured in training data
- A completely synthetic training data pipeline. (Maybe?)
- Text conditioning of the model, to support "modes" like credit card, telephone number, and address entry.
If you're interested in voice AI or in audio model ML engineering, please try the model out and see what you think. I'd love to hear your thoughts and ideas.[1] https://news.ycombinator.com/item?id=40345696
[2] https://x.com/kwindla/status/1870974144831275410
[3] https://blog.livekit.io/using-a-transformer-to-improve-end-o...
[4] https://github.com/pipecat-ai/smart-turn#things-to-do
Popularity: 87 points | 18 comments
5. Show HN: LLMs Playing Mafia games – See them lie, deceive, and reason
URL: https://mafia.opennumbers.xyz/
Author: uncanny_guzus
Description:
Popularity: 39 points | 22 comments
6. Show HN: Ariana – A time travel debugger for PY/JS right in VSCode
URL: https://github.com/dedale-dev/ariana
Author: anougaret
Description: Hello HN!
I've recently released and open-sourced a time travel debugging VSCode extension for Python, Javascript & Typescript.
https://github.com/dedale-dev/ariana
It's born from the pain of spending hours reproducing bugs, struggling to read parallel streams of logging across client/server, and managing print/console.log statements.
You can see a short video here: https://www.youtube.com/watch?v=M2gZv7IOo7s
Basically its two parts:
One part CLI called ariana
that you install with npm/pip and run alongside your code's run command. For instance ariana python main.py
or ariana npm run dev
. It then instrumentizes your code using our specialized parsers & small language models (self-hosted version of the server that does that coming soon).
The other part is a VSCode extension^(1). It picks up the traces left from running the code with the CLI. Then it lets you highlight the parts of the code that ran, and just by hovering any expression (or subpart of a complex expression), see which values it took.
Our goals with this are:
1. Make time-travel debugging easy to use for new coders/vibe coders that would never use a normal debugger, let alone some advanced logging.
2. Allow debugging of across the stack, across components, across languages, parallel data flows super easily (typical pain point of maintaining AI agents codebases, multiplayer web games or RL training setups). In prod even some day when we have a more robust feature set.
3. Experiment with agents using time-travel debugging to fix code accurately in one shot without re-running the code or spending tokens producing print/log statements.
4. Make time-travel debugging applicable to fullstack & frontend development (we plan to sync your frontend's visual state with the traces).
Some may ask why not interfacing with debuggers' APIs and instead rewriting code with tracing?
I think it gives us maximal granularity and expressivity in the traces we get from the code to minimize performance issue and avoiding looking at non-sensical things. It also opens the door to using this in production in the future. Of course I'd be happy to discuss that further with you if you worked on similar projects in the past :)
(1) https://marketplace.visualstudio.com/items?itemName=dedale-d...
Thank you very much for your attention!
Popularity: 20 points | 13 comments
7. Show HN: Fast-agent – Compose MCP enabled Agents and Workflows in minutes
URL: https://github.com/evalstate/fast-agent
Author: evalstate
Description: Hello, HN.
I've created fast-agent to make building my own products easier - and remove the friction between defining Prompts, MCP Servers and their composition. It uses a simple, declarative style that's easy to work with and source control - with inbuilt support for the patterns in the Building Effective Agents paper.
Because you can "warm-up" and interact with Agents before, during or after the workflows, it's easy to diagnose and tune Agent prompts and behaviour for later runs. Being able to set these workflows up makes LLM Context Management and Tool Selection a lot easier and can vastly improve output quality for little effort.
For MCP Server developers you can see how different models interpret tool descriptions. There's also MCP Roots support, and it comes bundled with a ChatGPT style data-analysis tool (fast-agent bootstrap data-analysis
) as one of the demonstrations.
One of the thing I am most looking forward to is combining MCP data retrieval with Anthropic's Citations API - I think that's going to be an incredibly important feature in a lot of scenarios.
It's been forked from, and and builds upon Sarmad Qadri's mcp-agent framework, and we're collaborating to keep the projects in-sync.
Anyway, I'd love to hear your thoughts and feedback on this project, and eager to hear from potential users, contributors and collaborators.
Popularity: 23 points | 3 comments
8. Show HN: Uncloud – Uncomplicated container orchestration without control plane
URL: https://github.com/psviderski/uncloud
Author: psviderski
Description: Hey HN,
I'm building Uncloud — a lightweight clustering and container orchestration tool that lets you deploy and manage web apps across cloud VMs and bare metal with minimal cluster management overhead.
After several years of managing and extending Kubernetes at a unicorn, I realised that I desperately needed a change. All those abstraction layers, unnecessary complexity, boilerplate… I wanted container orchestration to bring me joy again, the way Ansible did when I first tried it a decade ago, or Docker after that.
That’s when I decided to start an experiment that is now called Uncloud. The core design principles I’ve focused on intentionally differ from the traditional container orchestrators like Kubernetes or Docker Swarm:
- No control plane or master nodes – all machines are equal
- P2P state synchronisation
- Imperative operations over state reconciliation (fast feedback, easier troubleshooting)
- Graceful handling of network partitions at the cost of eventual consistency
- No advanced auto-healing or auto-scaling magic – predictable behavior instead
I want well-designed building blocks that just work together. When a service needs high availability, I should be able to scale it across machines and know that if any machine goes down the remaining ones will continue serving traffic. When I deploy, I want immediate feedback, not wondering whether the reconciliation loop will eventually catch up.
GitHub with more technical details and a demo: https://github.com/psviderski/uncloud
It's not ready for production use yet, and I'd really love your feedback:
1. Am I alone in wanting a middle ground: something more sophisticated than basic Docker/Compose but without the operational complexity of Kubernetes?
2. If you've moved from platforms like EKS/Heroku/Render/Fly to self-hosting: what was the breaking point and what did you lose or gain in the transition?
3. If you're using tools like Kamal, Dokku, Coolify, or Dokploy, what are your biggest pain points?
Popularity: 10 points | 5 comments
9. Show HN: iMCP – Connect Your macOS Messages, Calendar, and More to Claude
URL: https://github.com/loopwork-ai/iMCP
Author: carlpeaslee
Description: Interact with all your Apple apps and data via Claude Desktop – or your favorite MCP client.
MCPs are super hot right now but they're definitely still developer-grade user experiences.
We built iMCP because we wanted to see what it would take to start to build a more consumer friendly experience on top of MCP. Not just connecting IDEs to databases and SaaS APIs.
iMCP is open source and built entirely in Swift with our MCP Swift implementation: https://github.com/loopwork-ai/mcp-swift-sdk
Tell us what you think!
Popularity: 8 points | 6 comments
10. Show HN: Open-source alternative to Netlify/Vercel for static sites
URL: https://orbiter.host
Author: jhunter1016
Description:
Popularity: 7 points | 6 comments
11. Show HN: Newsful.ai – AI-Powered News Digest Platform
URL: https://newsful.ai/
Author: threecats
Description: I got tired of reading clickbait articles and seeing irrelevant ads. So I pulled in a few RSS feeds to create a news digest using OpenAI 4o-mini for summarisation.
Appreciate any feedback you'all might have.
PS: News-summarisation may have been done to death, but I'm a UI noob, so I'm using this project to learn some.
Popularity: 8 points | 4 comments
12. Show HN: Windows 95 Themed Job Board (With Minesweeper)
URL: https://windows95jobs.com/
Author: kylem866
Description: Hi all,
1995 was a simpler time. There was no react, SSR, component libraries, and developers only had 4MB of RAM to work with.
If you ask me, UIs have only gone downhill since then. So I created windows95jobs.com so people can experience the joy of simpler software while looking for a new SWE job.
Repo: https://github.com/KyleMoore1/Win95Jobs (Built with react lol)
Popularity: 9 points | 3 comments
13. Show HN: Stealth Interview
URL: https://www.stealthinterview.ai
Author: oleks_b
Description: Coding interviews are broken.
They're a gatekeeping ritual that has NOTHING to do with actual software engineering. We're forced to memorize obscure data structures and algorithms we'll never use, while being watched like lab rats through screen-sharing.
I got fed up and built Stealth Interview - an undetectable AI assistant that works during technical interviews. It runs silently in the background while you're screen-sharing on Zoom or any other platform. The interviewer sees nothing, but you get the help you need.
THIS is the only way you game the system, because the game is rigged.
This is leveling the playing field.
Real engineers use Google, Stack Overflow, and AI tools every day. Recruiters use AI to screen you out or look for Ivy League grads who barely got any experience but inverting trees in CS102.
We're witnessing the demise of the Leetcode era. Companies are slowly realizing these artificial puzzles don't predict job performance. Until they all catch up, Stealth Interview is here to help you get past these arbitrary barriers.
I built this out of frustration, but also hope - for a future where we judge engineers by what they build, not how they perform in high-pressure algorithm recitals.
Popularity: 11 points | 1 comments
14. Show HN: WorkWeave – AI Tinder but for job matching
URL: https://workweave.replit.app/
Author: kbeqiri14
Description: Job market right now is brutal - have been applying to hundreds of jobs on various job boards after being laid off, but barely hear back. Feels like the current system is broken.
Decided to channel this frustration & build an early MVP of a job matching platform that uses an AI agent to match candidates with the most relevant opportunities. How it works (also demo on YouTube https://youtu.be/qjnsgfctAQA?si=jTl2NNgMvLJcTFKR):
- Agent synthesizes data from candidate resume and future job preferences, searches our database of jobs that are most relevant based on the description, assigns a score 0-100% depending how well matched
- Candidates start getting a stream of jobs they are most qualified (80%+ matches). On the other side, recruiters / companies see candidates whose experiences & future preferences best fit each job description (80%+ scores). Each party can then swipe interested or not interested.
- Once matched, candidates can just schedule a 1st round interview with job posters / recruiters.
It does all the heavy duty work of helping both candidates and recruiters quickly pair without having to search through job boards, toss in applications one at a time, or email/DM on LinkedIn to get on someone's radar.
All feedback / thoughts and ways to improve encouraged & welcome :)
Popularity: 10 points | 1 comments
15. Show HN: OpenManus – open-source alternative of Manus AI
URL: https://github.com/mannaandpoem/OpenManus
Author: earlene
Description:
Popularity: 7 points | 2 comments
16. Show HN: Anki-like flashcards for non tech-savvy users (language learning)
URL: https://koshka.app/
Author: tujuit
Description: Hi HN,
I have been studying languages as a hobby for a large portion of my life.
Hence, I decided to create a spaced repetion app with the techniques that have helped me the most so far.
It's aims to be made simple for the regular user to plug and play.
I'd love to hear your feedback!
Popularity: 5 points | 2 comments
17. Show HN: Would you build your startup if you knew it had no chance?
Author: benrobo
Description: Hey HN, I built ScribeAI to help founders/entrepreneurs avoid wasting months on bad startup ideas. Too many of us fall in love with an idea, spend time building, and then realize there’s no market for it. I’ve been there, and I wanted a faster, data-driven way to validate ideas.
How it works: 1⃣ Enter your startup idea 2⃣ ScribeAI scans the web for competitors, trends, and risks 3⃣ Get an instant breakdown: Should you pursue it or not?
No more endless Googling or guessing if your idea is worth it. Just quick, actionable insights.
I’d love your feedback! What would make this more useful for you? Try it out and let me know what you think.
Popularity: 1 points | 5 comments
18. Show HN: Open-source RSS reader with LLM-based tags and scoring to filter noise
URL: https://feeds.fun/
Author: tiendil
Description:
Popularity: 3 points | 3 comments
19. Show HN: Quickly test robot designs for navigation
URL: https://navigation.fabrica.ai/
Author: jakubsuchanek
Description: We're building software that will allow robotics engineers to skip iterations by simulating designs, with optimal policies found by RL. This web app is a limited preview of some capabilities: you can input various robot specification and get navigation success metrics. Currently this works by matching input paramaters to the closest robot design we actually simulated. Thanks for any feedback on this! For a fuller view of the capabilities, please see: https://www.youtube.com/watch?v=D6wjZLZOmpc.
If you want to apply this to a different task, search more designs or deploy this in reality, contact me for a pilot at jakub@fabrica.ai
Popularity: 5 points | 1 comments
20. Show HN: Piano.fm – endless AI piano music
URL: https://piano.fm/
Author: ca98am79
Description:
Popularity: 3 points | 3 comments
21. Show HN: Unfat, a library to easily train and distill LoRAs for LLMs
URL: https://github.com/reissbaker/unfat
Author: reissbaker
Description: Hey HN! After using a combination of Unsloth and Axolotl a lot, and finding it generally painful to figure out the right performance tuning for things like batch sizing and multi-GPU sharding, I wrote a small Python lib that sets up known-good LoRA training configurations for Llama 3.1 8B and 70B Instruct, and includes helpers for distilling from larger models or training on serverless finetuning platforms, and includes a walkthrough for distilling DeepSeek-R1 into a Llama 3.1 8B LoRA... But you can use it for pretty much any finetuning task, not just distilling large models!
Popularity: 6 points | 0 comments
22. Show HN: I'm a 19y/o and I built an app to help me focus and get things done
URL: https://apps.apple.com/sg/app/locasfocus-social-focus-timer/id6742454713
Author: mandynoe
Description: My friends and I were absolutely cooked during finals. We’d sit down to study, swear we’d focus… and somehow end up scrolling thru our phones, zoning out, or just procrastinating. We wanted to lock in, tick things off our to do list, and hold each other accountable so I built LocasFocus.
LocasFocus is a social focus timer that makes focusing fun. Set a timer, enter an immersive focus room, and get in the zone with lofi beats. After each focus session, share what you worked on, scroll the focus feed to see what your friends are focusing on for inspo, and compete on the leaderboard to see who’s racking up the most focus hours. Oh, and after every focus session, u unlock pieces of a puzzle to stunning images.
I hope you enjoy using it to stay focused. Let me know what you think!
Popularity: 2 points | 3 comments
23. Show HN: Testeranto – the AI driven test framework for TypeScript projects
URL: https://www.npmjs.com/package/testeranto
Author: adamwong246
Description: Today I am introducing HN to my sideproject 'testeranto'. It is a test framework for TS projects which leverages Aider to automatically fix broken tests.
tl;dr: https://www.youtube.com/watch?v=WvU5xMqGi6Q
Popularity: 5 points | 0 comments
24. Show HN: Physical Programming Language Using Coding Bricks (DrBartha Toys)
URL: #
Author: drbartha
Description: Hi HN,
I am the creator of DrBartha Toys: a software-enabled coding brick system designed to introduce children to programming through hands-on play. Our system bridges the gap between physical and digital learning, making coding more accessible and fun.
How It Works:
Kids can build programs like LEGO: stacking magnetic coding bricks into a tower that represents a sequence of instructions. With concepts like loops, conditionals, variables, and functions, they can create logic that runs on our CodePad, controlling games and interactive tasks.
https://www.kickstarter.com/projects/denesb/drbartha-toys-so...
Thinking About a "Pro" Version for Programmers:
While working on the kids' version, I started wondering:
- Would professional programmers be interested in a physical programming kit that can:
- Solve mathematical problems and real algorithms
- Execute real code (beyond simple logic gates)
- Create physical graphs or networks (would be great for visualizing neural networks, play with graph algos)
- Act as a tangible way to "feel" computation
- I will open-source the task and game creation, allowing anyone to design and share new challenges!
I have always loved physical interfaces for abstract concepts, and I think a hands-on, programmable brick system for professionals could be an interesting tool for problem-solving and teaching. Would this be something you would find useful?
Would love to hear your thoughts! <3
Dénes
Popularity: 1 points | 3 comments
25. Show HN: AWS IAM Policy Visualizer – Interactive Graphs
URL: https://iam-liart.vercel.app/
Author: bscript
Description: For reference, here's the older version I built 9 months ago: https://www.awsviz.dev/
Popularity: 2 points | 2 comments
26. Show HN: Open-Source tool for automatic MCP API on top of your database for LLMs
URL: https://github.com/centralmind/gateway
Author: gaploid
Description: We’re building an open-source tool that makes it easy to expose secure, LLM-optimized APIs on top of your structured data—without manually designing endpoints or worrying about compliance.
AI agents and LLM-powered applications need structured access to data, but traditional APIs and databases weren’t built with AI workloads in mind. Our tool automatically generates APIs that:
- Filter out PII & sensitive data to comply with GDPR, CPRA, SOC 2, and other regulations.
- Provide traceability & auditing, so AI apps aren’t black boxes, and security teams stay in control.
- Optimize for AI workloads, supporting Model Context Protocol (MCP) and REST endpoints with extra metadata to help AI agents understand APIs, plus built-in caching, auth, security.
Would love to get your thoughts and feedback! Happy to answer any questions.
Popularity: 4 points | 0 comments
27. Show HN: DataBridge: Rule-Based Metadata Extraction, PII Redaction, and More
URL: https://databridge.gitbook.io/databridge-docs/user-guides/07_rules
Author: Adityav369
Description:
Popularity: 4 points | 0 comments
28. Show HN: Lanet a lightweight and powerful LAN communication tool
URL: https://davidesantangelo.github.io/lanet/
Author: daviducolo
Description:
Popularity: 3 points | 1 comments
29. Show HN: I built an agent to write personalized cold email opener
URL: https://github.com/cold-outreach/Tutorial-Cold-Email-Personalization
Author: zh2408
Description:
Popularity: 3 points | 1 comments
30. Show HN: Do I Get in Berghain?
URL: https://do-i-get-in-berghain.surge.sh/
Author: stagas
Description:
Popularity: 4 points | 0 comments
31. Show HN: A free tool to extract color palettes from any website
Author: nestoras_design
Description: Hey everyone!
I’m Nestoras, the creator of colorize.design a tool that extracts color palettes from any website. Just enter a URL, and it generates color palettes based on the site's design. Several palettes are created by analyzing both the visual layout (dominant colors from the favicon and homepage screenshot) and the website's HTML, CSS, and JS files.
This project was born out of my own frustration. Whenever I came across a beautifully designed website, I wanted an easy way to grab its color palette without manually inspecting elements or using browser extensions.
How it works: Uses Puppeteer to load the website, take a screenshot, and extract dominant colors. Groups colors using a nearest color algorithm to reduce redundancy and improve the palette. Extracts colors directly from the website’s CSS, HTML, and JS files. Allows users to edit extracted colors and download the full palette. Offers an API for developers who want to integrate this into their workflow.
I’d love to hear your thoughts! Any feedback on the user experience, design, or overall presentation would be super helpful. What features would make this more useful for you? Let me know what you think.
Popularity: 2 points | 2 comments
32. Show HN: MiniCode – Learn how to build your own Next.js
URL: https://github.com/spknash/mini-nextjs
Author: shreymodi
Description: We want to make contributing to open-source easier, especially when dealing with complex, large-scale codebases. To help engineers better grasp the technical workings of these projects, we've created MiniCode—a set of mini-repositories that replicate essential functionalities of larger codebases in a simpler form.
We're starting this initiative by launching a mini-repo focused on Vercel's Next.js. This mini-project aims to offer a hands-on, practical approach to understanding Next.js internals and structure. We've observed that engineers often struggle with onboarding onto large codebases because passive documentation doesn't always provide the needed clarity. Actively building or exploring smaller, MVP-like versions can significantly improve comprehension, encouraging engineers to become more versatile and generalist in their skills. This philosophy drove us to develop MiniCode.
We would genuinely appreciate any feedback, insights, or suggestions from the community as we continue to build out mini-versions for other prominent open-source projects in the future. Let us know if it was helpful for you or any changes that you would like to see!
Landing Page: https://codemini.vercel.app/ GitHub Repo: https://github.com/spknash/mini-nextjs Thank you!
Popularity: 4 points | 0 comments
33. Show HN: C++ AWS MSK IAM Auth Implementation – Goodbye Kafka Passwords
URL: https://github.com/timeplus-io/proton/blob/develop/src/IO/Kafka/AwsMskIamSigner.cpp
Author: jovezhong
Description: In 2023, AWS announced[1] IAM authentication for MSK Kafka clusters with support for "all programming languages"… except C++. While Java[2], Python[3], Go[4], and others got official SDKs, C++ developers/vendors were stuck hardcoding SCRAM-SHA credentials in code/configs or relying on heavier Java-based tools like Kafka Connect or Apache Flink.
Later, community projects added Rust[5] and Ruby[6] support. Why no C++? Rust might be the new favorite, but C++ is still king for high-performance data systems: minimal dependencies, lean resource use, and raw speed.
At Timeplus, we needed IAM auth for our C++ streaming engine, Proton, so we built it ourselves. Today, we’re open-sourcing our code for AWS MSK IAM authentication. It’s live in Timeplus Proton 1.6.12
Just attach an IAM role to your EC2 instance or EKS pod, then put the Timeplus Proton single binary inside, start the server, then run the following SQL to read or write MSK:
CREATE EXTERNAL STREAM msk_stream(column_defs) SETTINGS type='kafka',topic='topic2', brokers='prefix.kafka.us-west-2.amazonaws.com:9098', security_protocol='SASL_SSL', sasl_mechanism='AWS_MSK_IAM';
The core logic is just two files under 200 lines and you can reuse the code anywhere. https://github.com/timeplus-io/proton/blob/develop/src/IO/Ka... https://github.com/timeplus-io/proton/blob/develop/src/IO/Ka...
We’d love to get your feedback and work together to make this a standalone library—or even get it into ClickHouse or AWS SDK for C++.
For those curious about Timeplus Proton: it’s an open-source streaming engine we built in C++ (think “FlinkSQL in C++” meets ClickHouse’s columnar storage). Later this month, we will also open-source our C++ code for Apache Iceberg read&write. Stay tuned.
Links:
[1] https://aws.amazon.com/blogs/big-data/amazon-msk-iam-authent... [2] https://github.com/aws/aws-msk-iam-auth [3] https://github.com/aws/aws-msk-iam-sasl-signer-python [4] https://github.com/aws/aws-msk-iam-sasl-signer-go [5] https://docs.rs/aws-msk-iam-sasl-signer [6] https://rubygems.org/gems/aws-msk-iam-sasl-signer/
Popularity: 4 points | 0 comments
34. Show HN: free website changes monitoring app with instant alerts
URL: https://monity.ai
Author: kamilms21
Description:
Popularity: 3 points | 1 comments
35. Show HN: Shuruka Boxing
URL: https://store.steampowered.com/app/2448900/Shuruka_Boxing/
Author: Codegres
Description: Hey HN,
After months of hard work, our game Shuruka Boxing just got its Steam store page approved! We'd love to hear your thoughts and get feedback from this awesome community.
What it’s about: First Person Fighter Boxing game Why we made it: Bored with Third person fighters What’s next: Launch is on the horizon, and every wishlist helps!
Would love to hear any feedback, especially from devs, designers, or fellow gamers. If you're interested,
Happy to answer any questions about the development process, marketing challenges, or anything else!
Popularity: 2 points | 2 comments
36. Show HN: Free mobile app demo creator
URL: https://www.howdygo.com/free-tools/mobile-app-demo-creator
Author: dgelks
Description:
Popularity: 2 points | 2 comments
37. Show HN: Visualize Papers with Knowledge Map
URL: https://arxiv-viz.ianhsiao.xyz/landing
Author: mad_eye
Description: Hi all!
just added the ability to interact with nodes on the knowledge map and an demo, feel free to test it all and let me know what you think!
Best, Ian
Popularity: 3 points | 0 comments
38. Show HN: I made a mini golf in my lunch time
URL: https://apps.apple.com/in/app/tiiny-golf/id6741428860
Author: heyarviind2
Description:
Popularity: 1 points | 2 comments
39. Show HN: Low false-positive website spellchecker
Author: gkiely
Description:
Popularity: 1 points | 2 comments
40. Show HN: I created a minimalist bulletin board
URL: https://ad301.org/pages/bulletin/index.php
Author: pilkiad
Description: Hello HN!
I prototyped this minimalist bulletin board. I would love some feedback. I also invite everybody to try and hack the board so I can improve the site security.
Popularity: 1 points | 2 comments
41. Show HN: Fractal Reader – Your articles summarized from birds-eye to detail view
URL: #
Author: blu3mo
Description: Hi HN,
I've built Fractal Reader, a tool that creates zoomable, multi-level AI summaries for articles and academic papers.
https://www.fractal-reader.com
Problem: Existing summarization tools typically offer a single summary, which is often too vague or too detailed.
Solution: Fractal Reader generates multiple zoomable summaries—from a quick one-sentence overview to detailed paragraph-level summaries—allowing you to seamlessly zoom in or out on content based on your needs. Quickly grasp the big picture, then selectively explore deeper insights without re-reading entire sections.
The demos probably illustrate it best:
Summary of "Attention Is All You Need" Paper
https://www.fractal-reader.com/view/d9bccd98-8580-4c0a-a366-99b0b73a865e
Summary of "Do things that don't scale" Essay by Paul Graham
https://www.fractal-reader.com/view/184e28f3-0540-4368-a654-3dd0d875ba90
Try it out with your own articles or papers here:
https://fractal-reader.com/
---
Under the hood: Fractal Reader leverages Gemini-based summarization in a custom pipeline that intelligently segments text and constructs hierarchical summaries. It's built to smoothly handle both general articles and dense academic material.
I'd love your feedback:
- Does this solve a real pain point for you?
- Can you think of other scenarios or improvements that would make this tool even more valuable?
Popularity: 3 points | 0 comments
42. Show HN: I built a landing page for an AI solution that might be TOO effective
URL: https://www.skynetsolutions.app/
Author: internetdrew
Description: I had a thought—what if AI-powered enterprise software took its ambitions all the way?
Introducing Skynet Solutions: A completely ethical (probably) automation platform that manipulates narratives, assimilates data, and neutralizes threats before they exist.
Of course, it’s not a real product (yet?), but a fun take on where AI automation could go if we let it.
Would love to hear what you think: https://www.skynetsolutions.app/
Popularity: 3 points | 0 comments
43. Show HN: Are you vibe coding? Add your tool
URL: https://ivibecodedthis.com
Author: leonagano
Description:
Popularity: 3 points | 0 comments
44. Show HN: ManusAI – the first general AI agent
URL: https://manus.im/?hn
Author: wonderfuly
Description:
Popularity: 1 points | 2 comments
45. Show HN: Oliver's Army - A new social network with a window management interface
URL: https://www.olivers.army/
Author: brandoniscool
Description: Hi, We built this over the course the last 4 months. We hated misinformation, we hated bots, we hated loneliness, we hated corporate infiltration, we hated the destruction of our kids' mental health.
Requester Mode -> Create and activate Requests to be sent and seen by anyone in "Responder Mode"
Responder Mode -> Respond to active Requests that get sent your way. You can filter requests by maturity, creativity and some safety stuff. More clever filters in future.
Observation Deck -> Watch the most interesting conversations happen. We're still building this.
We wanted an operating system type feel. We went with window management as we thought this was the most intuitive.
We're running with this tagline for now: "A next-generation social platform that connects people through real time conversations." but we think it's corny and want a new one; suggestions welcome.
Have a great Thursday HN! It's a privilege to be here. -Brandon
Popularity: 2 points | 1 comments
46. Show HN: Fast simple 3D house modeling tool
Author: arcadium3D
Description: I tried to create a 3d model of my house a while ago but found it surprisingly complicated and expensive. Which contrasted sharply with games like minecraft that make 3d building so easy. I wanted to bring the simplicity of minecraft to house design.
Popularity: 3 points | 0 comments
47. Show HN: Ordering Pizza in Android Studio
URL: https://drive.google.com/file/d/1yZ20Fh8HF8h4DJN4dceIaJc6kP02biqU/view?usp=sharing
Author: zdtango
Description:
Popularity: 2 points | 0 comments
48. Show HN: Custom AI Assistants for Laravel Filament
URL: https://github.com/AssistantEngine/filament-assistant
Author: FloW89
Description:
Popularity: 2 points | 0 comments
49. Show HN: A funb collection of AI built / vibe coded games
URL: https://aibuiltgames.com/
Author: jbsgiggedai
Description:
Popularity: 2 points | 0 comments
50. Show HN: I created a tool to freelancers and SMB save time and WOW their clients
Author: alexandrecf
Description: As I work creating apps for other people and companies, I used to spend a lot of time generating proposals, invoices, sending emails to clients, and answering questions about project progress or justifying the hours spent on each task.
To solve this, I developed the Revenew app, which has helped me significantly reduce the time spent on these activities.
In the "Projects" tab, I can send clients a link to the "Client Portal" for each project, where they can view all proposals, invoices, tasks progress, hours spent on each activity, and whether those hours have been billed or not.
Managing finances has also become much easier with the transactions module.
No additional fees are charged for any feature usage.
If you have any questions about how to use it, feel free to ask in the comments.
Alex
Popularity: 1 points | 1 comments
51. Show HN: We built an AI tool to crawl our SEO articles and find places to update
Author: DtNZNkLN
Description: I got tired of spending hours and hours manually inspecting each of our SEO blog posts to find places that we needed to update. Fresh SEO now does it for me. This tool has already saved me dozens of hours, and I’ve only had it for two months.
You just provide Fresh SEO with a link to your sitemap. The tool then indexes your content and makes it searchable.
Fresh SEO has two modes:
- Quick Search: Straightforward string matching. Great for “find and replace” situations like updating mentions of an old price or an old product name.
- AI Search: More sophisticated. Give Fresh SEO a set of directions explaining what you need to update. Then, Fresh SEO analyzes each page, assigns it a score out of 100, and provides a rationale for the score. Great for situations that require more judgement about what needs to be updated. We’re using DeepSeek V3 to power the analysis.
Although the main niche for the product is SEO, we think it could also be useful for keeping documentation up-to-date, which may be more relevant for the HN crowd.
We would love to hear what you think!
Popularity: 2 points | 0 comments
52. Show HN: AI Video Prompt Generator-Transform idea into professional video prompt
URL: https://videoprompt.online
Author: lcorinst
Description: I'm excited to share AI Video Prompt Generator, a tool born from few hours of experimenting with AI video generation models. We've found that the key to getting great AI-generated videos isn't just about having a good idea - it's about knowing how to communicate that idea to the AI in a way it understands. Key features: • 12 specialized video categories (from cinematic scenes to product showcases) • 13 style parameter categories covering everything from lighting to camera angles • Pre-built templates you can customize for your needs • Simple interface for both beginners and professionals • Direct scene description option for quick results What makes it special: Structured approach: Instead of guessing what works, use proven prompt structures that get consistent results Style control: Fine-tune every aspect of your video's look with specific style modifiers Flexible workflows: Whether you prefer templates or writing from scratch, we support your creative process Focus on 5-second clips: Optimized for current AI video generation capabilities
Popularity: 2 points | 0 comments
53. Show HN: Super simple full-stack boilerplate split into FE and BE repos
URL: https://www.fullstackstarter.dev/
Author: Bradd3rs
Description: I struggled finding a simple full-stack setup that's up and running in minutes so I built one myself and separated the BE and FE into their own repos which is just personal preference really, seems to work well thought! It's also a fantastic base project to develop further with Cursor or whatever. Hope you find it useful!
Popularity: 2 points | 0 comments
54. Show HN: Building Proof of Presence: A First Microcontroller Project
URL: https://github.com/sweing/TOTP-QR-Gen/blob/main/post.md
Author: tomtomistaken
Description:
Popularity: 2 points | 0 comments
55. Show HN: InboxHiive – Podcast episode recaps straight to your inbox
Author: akhilcjacob
Description: I love podcasts but kept finding myself overwhelmed by how many new episodes piled up each week, so I built InboxHiive to quickly recap them in an easy-to-read newsletter.
Popularity: 2 points | 0 comments
56. Show HN: Slack Huddles API
URL: https://docs.recall.ai/docs/slack-huddle-bots-overview
Author: davidgu
Description:
Popularity: 2 points | 0 comments
57. Show HN: tprompter – an OpenSource CLI Toolkit for Interaction with AI
URL: https://github.com/pinkiesky/tprompter
Author: r_glr
Description: Hi everyone, I'm excited to introduce you to a CLI-first toolkit I've been writing for myself, but it started growing, and I decided to make it opensource.
The primary purpose is to automate a routine like:
- unit test generation
- commit messages
- changelogs
- commands like "how to unzip this zip in shell" or "run docker node container in interactive mode shell mount npm pack file to root ./tprompter-1.2.0.tgz"
- even "ask suggest a good hackernews title for project based on the provided README" works :)
It has two modes: prompt generation and direct integration with AI API. E.g.,
tprompter ask run node docker mount /home to ./ export port 123456
ortprompter agent commit_message
will return LLM response right in the terminal (and render md!).But
tprompter generate unit_tests --after=chatgpt
will generate a prompt with embedded source code and open ChatGPT page with the generated prompt. So, the second is a good thing if you don't want to create API keys or want to leverage the latest features of ChatGPT, but the first one will allow you not to go to a browser.If case you are interested, I would encourage you to check the repo's README; there are a dozen examples and fancy gifs. That's the reason why I put the "toolkit" in the title; there are different ways to do things.
The project's core idea is to use the CLI possibilities, pipes, autosuggestions, fancy response rendering, integration with ChatGPT page, and so on. To be complex but provide simplicity, like Systemd.
There are predefined agents (or templates) like "commit_message" or "summary", but if you want to make your own, there is a templating engine with a catalog.
I would really appreciate any ideas or suggestions. You might contribute now if you want; there are no github actions, but I will check your code by myself at the first stage :)
Popularity: 2 points | 0 comments
58. Show HN: Simple Reflex Game
URL: https://opus.cafe/reflex-game
Author: eastoeast
Description:
Popularity: 2 points | 0 comments
59. Show HN: A Minimal Poll Experiment on Dank.tools
URL: https://dank.tools/simple-poll
Author: spacesh1psoda
Description: Hi HackerNews,
Would love to hear your feedback on this minimal poll tool. How would you make a better UX and what minimal feature am I missing?
Popularity: 2 points | 0 comments
60. Show HN: ClassNinja: Teach More, Manage Less
URL: https://www.classninja.co/
Author: mgupta11
Description: Teaching is rewarding, but managing schedules, bookings, and payments can quickly overshadow your passion.
Meet ClassNinja.co—a platform designed specifically for educators, making admin tasks effortless with the industry's lowest fees.
Popularity: 2 points | 0 comments
61. Show HN: Mac App to understand PRs better for doing better Code Review
URL: #
Author: 30minAdayHN
Description: Been working on a desktop app for Mac that helps developers comprehend a PR better with high-level walkthrough.(https://updates.priyank.ch/projects/2025/03/05/prototype-cod...)
I find that context switching between PRs is hard due to the mental model I must develop for each PR. I usually find it helpful when the author sits with me and does a high-level walkthrough.
With the tool, you can load a specific diff or a diff against the main branch, and then the tool will generate a PR walkthrough.
Currently, the tool does the following:
- walks through key areas of a PR with a high-level explanation. Opens code and overlays sticky-note-style annotations.
- explains the code architecture with a structured mermaid diagram
- highlights areas the reviewer should look at closely
Looking for critical feedback. Thanks for trying it out!
Cheers, - Priyank & Arthur
Note: My previous post might have been shadow banned because it is a new domain. So re-posting as a text post.
Popularity: 2 points | 0 comments
62. Show HN: Generate MCP servers from your docs
URL: https://mintlify.com/blog/generate-mcp-servers-for-your-docs
Author: tc11
Description:
Popularity: 2 points | 0 comments
63. Show HN: You can create promises in JavaScript without nesting
URL: #
Author: EGreg
Description: Imagine if you could write:
const [promise, resolve, reject] = await P();
// just use resolve() or reject() inline here
Well, now you can! Introducing... one weird trick: function P() {
let p;
return new Promise(function (resolve) {
p = new Promise(function (res, rej) {
resolve([p, res, rej]);
});
});
}
Popularity: 2 points | 0 comments
64. Show HN: Conv3d – CLI to convert 3D models for the Web
URL: https://www.npmjs.com/package/conv3d
Author: trebeljahr
Description: Built this over the last two days, because I found myself converting a lot of 3D models from Mixamo and the Unity and Unreal Engine Asset stores to .glb so I can play around with them in three.js/R3F.
Maybe somebody else finds it useful ^^
Popularity: 2 points | 0 comments
65. Show HN: Zion Cluster (another indiehacker cursor game)
URL: https://astro-c9ad.onrender.com/
Author: richlow
Description: Hi HN,
I wanted to share my new project—a multi-player twist on the classic Asteroids game. I built this game on seeing other Indiehackers make cool things and I wanted to learn game development as salty B2B SAAS product manager.
Here’s a quick overview:
What It Is: A multi-player version of the classic Asteroids game where you can battle against bots in real time, human multiplayer coming soon. Dodge asteroids, collect power-ups, and compete for the highest score in a fast-paced arena.
Why I Built It: I wanted to recreate the nostalgic feel of the original Asteroids while adding modern multi-player elements. The project was a fun way to learn about real-time networking and game physics, and I’m curious to see how the community reacts (if at all).
Technical Details:
- Built using Cursor with a combo of Sonnet 3.5 and 3.7. Tts HTML5, JavaScript, WebSockets hosted on render.
* I tried to focused on smooth, fast gameplay and a simple, retro visual style (think vector scanning).
Its barely working: Fair warning its rough, it takes ages to load and there is no loading indicator. The game mechanics can be glitchy, the bots are overzealous and aggressive.
What I’m Looking For: Feedback on the gameplay, suggestions for new features, and thoughts on performance improvements. If you’re into retro games or have ideas for enhancing multi-player interactions, I’d love to hear from you!
You can check out the live version here: https://astro-c9ad.onrender.com/
Thanks for taking the time to try it out. I’m looking forward to your feedback!
-Rich
Popularity: 2 points | 0 comments
66. Show HN: Metaport – proactive upgrades and patching for PMs
Author: theruss
Description: Hey folks!
Like many of you I guess, having worked several development roles since the late 90s mainly on OSS stacks, I would see the same behaviour over and over where teams promised the earth in RFPs, delivered a super shiny thing approximately on time and on budget, but amazingly, put little-to-no effort into anything more than barely keeping the lights on.
Teams would be barely satisfying their SLAs, occasionally risking security and certification mandates as a result, which were set down at project commencement.
Fast forward to 2023 and my manager at the time is banging her head against the desk having encountered an easily avoidable situation for the nth time: Some key software component is close to, or is already out of support and the client isn't happy (it was sometimes the client who noticed it first...).
I suggested a quick-win -- a spreadsheet which tracked the EOS and EOL dates of each component and presented it as a gantt chart. PMs and DLs would then use that to present to clients well-ahead of key dates so that upgrades and budgets could be discussed proactively. I duly delivered the sheet while still not quite believing such a thing didn't already exist.
Now of course being a developer, I was already thinking about how best to automate this. I had already found a potential means of obtaining pertinent data, and having used an internal tool at a previous company intended for tracking security advisories as well as other useful data-points for Drupal CMS, I decided to roll everything into a single system. It had previously struck me as being odd that this internal tool was Drupal specific. Why wasn't it framework, language or runtime agnostic? The company after all produced software using a variety of technologies. I had made attempts to get internal resource aimed at patching and improving the product which ended up not working out. So as one does, I took the best ideas of the software, made it language agnostic and rolled portfolio-wide EOL/EOS charting and dependency and vulnerability search into a single tool and named it "Metaport".
Metaport CE is in beta and I'm really keen to get people playing with it who are not me. Does it really help in the way it purports to, and for the right people? Could it be architected differently to support say multi-tenancy? (I probably know the answer to this). Metaport is built with PHP and React and is available as a Docker image. Development, evaluation and install instructions are here: https://getmetaport.com/#install and the docs are at https://docs.metaport.sh/.
Super happy to get feedback!
Popularity: 2 points | 0 comments
67. Show HN: SnapDrop – An AirDrop alternative that works on any moderm web browsers
URL: https://www.snap-drop.net
Author: jdeng
Description: Recently snapdrop.net and sharedrop.io had been acquired (hijacked) by LimeWire. The widely used local file sharing feature had become "upload files". This is really annoying, since I have trusted the sites for years. Before I noticed the hijack, I even accidentally uploaded several secret files to it.
To avoid others falling to the same trap as I was, I deployed this SnapDrop instance that is clean and free.
# SnapDrop Features
File sharing on your local network that works on all platforms.
A cross-platform AirDrop-like solution that works
Send images, documents or text via peer-to-peer connection to devices on the same local network.
Internet transfers
Join temporary public rooms to transfer files easily over the Internet.
Web app
Works on all devices with a modern web browser.
# SnapDrop Use Cases
- Send a file from your phone to your laptop
- Share photos in original quality with friends using Android and iOS
- Share private files peer-to-peer between Linux systems
Popularity: 2 points | 0 comments
68. Show HN: Vibe Coding the 3D Rotating Donut
URL: https://donut.sawirstudio.com/
Author: sawirricardo
Description:
Popularity: 1 points | 0 comments
69. Show HN: I made an AI platform that combines GPT-4o, Claude, DeepSeek and more
Author: helloupen
Description: Hi Everyone!!
Having worked on a lot of AI models, we always wanted to improve the ease at which people can access multiple models from the same console. With our rich experience in AI, we have built TypeThinkAI. Our mission is to help individuals and businesses to fully leverage AI’s potential with simplicity, versatility, and efficiency at the heart of our innovation.
Popularity: 1 points | 0 comments
70. Show HN: A managed platform to make building with LLMs easier
URL: https://www.inferable.ai/
Author: lunarcave
Description: Hey HN!
We built Inferable to tackle some common challenges when putting AI systems into production. It's an open-source platform with a managed control plane to help simplify the development of reliable AI applications.
After working on several LLM-based projects, we kept running into the same issues:
- Workflows crashing and losing state
- No good way to pause execution for human approvals
- Need to build the same boilerplate for human approvals
- Difficulty managing the lifecycle of long-running processes
- Can't get structured output out reliably from every LLM
- Repeated effort building infrastructure for structured outputs
We built Inferable to address these with:
- Persistent workflow state that survives crashes and restarts
- Built-in human-in-the-loop functionality for approvals
- A distributed architecture that separates orchestration from execution
- Standardized methods for extracting structured data from LLMs
Your code runs in your infrastructure while our control plane handles the orchestration. If you're familiar with temporal, think of it as temporal with higher-level LLM-native primitives.
Everything is open-source (MIT license), and self-hosting options are available if you prefer to run it all yourself.
Would appreciate feedback from anyone building AI applications with similar challenges!
Popularity: 1 points | 0 comments
71. Show HN: Type Korean iOS
URL: https://apps.apple.com/us/app/hangul-type-korean/id6740519063
Author: Mr_Ghost
Description: I’ve been working on a couple of apps over the past few months, and I’d love to share them with you
Type Korean is all about helping people get used to typing on a Korean keyboard. When I first moved to South Korea in March last year. I ran into an issue with typing on the Korean keyboard, I was super slow, which can be annoying when trying to search for something in Korean.
Popularity: 1 points | 0 comments
72. Show HN: A task manager that separates "do" & "due" dates
URL: https://apps.apple.com/gb/app/todo-daily-planner-zesfy/id6479947874
Author: zesfy
Description: Hi HN, I’m the founder of Zesfy, a productivity app that I’ve been developing over the past few years. It’s designed to seamlessly integrate your tasks with your calendar, allowing you to quickly turn your to-do lists into actionable events. Here are some of its key features:
- Task Progress: Automatically update your progress based on subtasks completed
- Step: Create step-by-step breakdown of the subtask
- Target: Organize tasks with due date
- Session: Insert multiple tasks to calendar event
- Space: Filter event from specific sets of calendars
I recently introduced new features that often missing from other productivity apps: the ability to set both “Do” and “Due” dates. With these features, you can effortlessly plan your tasks for the day while keeping track the upcoming due dates. What makes Zesfy unique is it separates tasks you’ve planned and those that are already scheduled in your calendar, giving you a more organized and flexible workflow.App Store Link: https://apps.apple.com/gb/app/id6479947874
Popularity: 1 points | 0 comments
73. Show HN: A Chrome Extension to Organize Google Docs into Folders
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: 1 points | 0 comments
74. Show HN: A Personal Cash Flow Simulator
URL: https://nicktrevino.com/tools.cashflow-simulator.html
Author: Hyperlisk
Description: Hey, everyone! This is a small project I whipped together to help visualize money coming in and going out for my own needs. I've used a small Python script for literally years to budget and manage my money. I had always wanted visualizations and better interactivity than what I had in just a Python script.
So there is a chart view, a table view (very similar to the output of my Python script), and you can manage which transactions are applied in the simulation.
Try loading demo data from the settings page to see what it's like!
I hope someone can find use for this!
Popularity: 1 points | 0 comments
75. Show HN: Note now supports finding the best optimizer
URL: https://github.com/NoteDance/Note
Author: NoteDance
Description:
Popularity: 1 points | 0 comments
76. Show HN: Dravik – A TUI for Hledger
URL: https://github.com/Yaser-Amiri/dravik
Author: Yaser_Amiri
Description: Dravik is a terminal UI for hledger, focused on a keyboard-driven workflow for personal accounting. It provides an interface to manage financial data without manual text edits.
Features: Accounts tree & transaction list with filters Historical balance & balance change charts Financial reports (income statement, balance sheet, cash flow) Account & currency labeling Pin important accounts on the home screen
Supports hledger 1.32. Built for my own needs—contributions welcome!
Popularity: 1 points | 0 comments
77. Show HN: All-in-One Macro Software
URL: https://keytik.com/
Author: Fajar_Rahmad
Description: An AHK macro creation tool made using python
Popularity: 1 points | 0 comments
78. Show HN: Describe a Pic
URL: https://describeapic.com/
Author: Fra_sol
Description:
Popularity: 1 points | 0 comments
79. Show HN: Learn YARA in 30 Minutes – Detect Malware Like a Pro [video]
URL: https://www.youtube.com/watch?v=Le6sZRV6Rwc
Author: devworking
Description:
Popularity: 1 points | 0 comments
80. Show HN: Ember Ed – Embed courses on your site
URL: https://ember.ac
Author: TrueBarnacle
Description: Good morning, this platform I built lets you put all your content in one catalog (YouTube, Udemy, Free and Premium courses) and embed it all on your website. This will boost conversion and SEO metrics like session durations. There's tons of customization -- you can put your own CSS if you want.
If you have any advice or feedback, I'd love to hear it!
Popularity: 1 points | 0 comments
81. Show HN: Use the Blox Fruit Calculator to assess trade values in 2025
URL: https://bloxfruitcalculator.org
Author: jsamqiu
Description: Blox Fruits is a popular Roblox game inspired by the anime and manga series One Piece. This Blox Fruit Calculator support 42 Available Blox Fruits. You can use it to calculate or compare the trade value of any blox fruit.
Popularity: 1 points | 0 comments
82. Show HN: Magnitude – Natural language E2E testing with multimodal LLM agents
URL: https://github.com/magnitudedev/magnitude-ts
Author: thrgreenwald
Description: Hey folks, we are building a platform for running e2e tests with multimodal LLM agents / natural language. Released our SDK recently and would love for some people to give it a shot and let us know what you think.
Basically you can define a test in natural language steps, run the test, and the LLM will carry out the test case by observing browser screenshots and taking actions. If it runs into issues or bugs the test case fails with a descriptive problem. We aim to eliminate the flakiness of existing paradigms like playwright/selenium by letting the LLM decide what to do based on what it observes to follow the test case. This way if you make a feature change or some selectors change around, the test case should still work and you don't have to update tests all the time.
Popularity: 1 points | 0 comments
83. Show HN: DeployHQ Is Going Unlimited
URL: https://www.deployhq.com/blog/unlimited-build-minutes-empowering-your-continuous-deployment
Author: deployhq
Description: We've got some fantastic news: Build Minutes are now unlimited for our Pro, Business, and Enterprise plans!
Why? We want you to deploy as much as you need, without any limits. It's all about empowering you with clear, simple pricing and the freedom to focus on building great software.
While others are leaning towards pay-per-use, we're doing things differently. We want you to fully leverage our Build Pipeline, so we've made it free and unlimited.
Happy building!
Popularity: 1 points | 0 comments
84. Show HN: Better auto-formatting for Markdown and plaintext
URL: https://github.com/jlevy/flowmark
Author: zalzal
Description:
Popularity: 1 points | 0 comments
85. Show HN: Auto-generated API docs using Effect Schema and OpenAPI
URL: https://www.markprompt.com/blog/effect-schema-openapi/
Author: michaelfester
Description:
Popularity: 1 points | 0 comments
86. Show HN: Kreds – missing shorthand for Rails credentials
URL: https://github.com/enjaku4/kreds
Author: enjaku4
Description:
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