Show HN Today: Top Developer Projects Showcase for 2025-01-08
SagaSu777 2025-01-09

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

Summary of Today's Content

Today's Product Highlights

  • Product Name: Atlas of Space
  • Highlight: An interactive Solar System explorer that provides intuitive understanding of celestial bodies' scale, speed and orientation through browser-based Newtonian physics simulation.

Quick Summary

  • Most Popular Category: Developer Tools & AI
  • Top Keywords: AI, Browser Automation, Space Visualization
  • Most Popular Product: Atlas of Space (556 points)

Technology Trends

  • AI-powered automation tools
  • Browser-based physics simulations
  • WebGPU applications
  • LLM integrations
  • Open-source development

Project Distribution

  • Developer Tools: 35%
  • AI/ML Applications: 25%
  • Educational Tools: 15%
  • Productivity Tools: 15%
  • Gaming/Entertainment: 10%

Trend Insights

  • Strong focus on AI integration across different domains
  • Growing interest in browser-based complex applications
  • Emphasis on educational and visualization tools
  • Rise of open-source alternatives to commercial solutions
  • Increased attention to developer productivity and automation tools
  • Emergence of WebGPU as a platform for complex graphics applications

The analysis shows a clear trend toward AI-powered tools and browser-based applications, with a particular emphasis on developer productivity and educational resources. The high engagement with Atlas of Space suggests continued interest in interactive educational tools that make complex concepts more accessible.

Top 1. Discover "Atlas of Space," an interactive and immersive guide that takes you on a journey through the wonders of the universe. Explore detailed maps, stunning visuals, and insightful information about celestial bodies, constellations, and cosmic phenomena. Perfect for astronomy enthusiasts and curious minds alike, this resource offers a unique perspective on the vastness of space. Dive into the cosmos and expand your knowledge with this captivating atlas! (Likes: 556, Comments: 108)

Top 2. Introducing Stagehand: An innovative open-source browser automation framework powered by AI, designed to streamline your web testing and automation processes with ease and efficiency. (Likes: 188, Comments: 36)

Top 3. Introducing a revolutionary tool for monitoring and analyzing wildfires in Los Angeles using satellite technology. This innovative platform provides real-time insights, enhancing safety and response efforts while promoting environmental awareness. Perfect for researchers, emergency services, and concerned citizens alike. (Likes: 76, Comments: 29)

Top 4. Illuminate your nights with Belshazzar's Clock, a stunning luminous paint night clock that adds a magical touch to any room. Experience the beauty of glowing craftsmanship while keeping track of time in style. Perfect for creating a serene ambiance, this clock is a must-have for decor enthusiasts! (Likes: 66, Comments: 16)

Top 5. Introducing an innovative proxy manager designed specifically for fans of Magic, Yu-Gi-Oh, and Pokémon trading card games. This cardstock-free solution streamlines the process of creating and managing proxies, making gameplay more accessible and enjoyable. Perfect for players looking to enhance their collection without the hassle of physical cards. (Likes: 44, Comments: 38)

Top 6. Introducing the Counting Tap Toy: A delightful and engaging tool designed to enhance counting skills while providing endless fun. Perfect for kids and curious minds, this interactive toy encourages learning through play, making numbers enjoyable to explore. Ideal for classrooms, playrooms, or home use, it transforms counting from a chore into an exciting adventure! (Likes: 28, Comments: 17)

Top 7. Introducing a revolutionary extension for the macOS dock that enhances functionality and user experience, addressing common frustrations and limitations. Transform your dock into a powerful tool tailored to your needs, making navigation easier and more efficient. Perfect for users seeking a customized workflow and improved accessibility. (Likes: 12, Comments: 3)

Top 8. Effortlessly monetize your website by selling advertisement spots with an easy-to-use Sponsor-button, allowing sponsors to connect directly with your audience. (Likes: 4, Comments: 9)

Top 9. Introducing Weco AI Functions – a powerful text-to-agent development tool designed to streamline your workflow and enhance productivity. Transform text commands into intelligent agents effortlessly, empowering developers to create responsive applications with ease. Unlock the potential of AI-driven automation and elevate your coding experience with Weco! (Likes: 10, Comments: 3)

Top 10. Flows is an innovative tool that seamlessly integrates Google Colab with Notion, specifically designed to streamline AI workflows. (Likes: 11, Comments: 2)

1. Show HN: Atlas of Space

Show HN: Atlas of Space - Project Screenshot

URL: https://atlasof.space/

Author: pieix

Description: Hello HN! Sharing a recent side project of mine, the Atlas of Space, that I built out to explore the Solar System.

As a long-time space nerd, I realized recently that I didn't have a good intuition on the scale, speed, and relative orientation of the celestial bodies around us. So over the break I built out a kind of spatial Wikipedia to click around and learn about planets, moons, asteroids, and other bodies orbiting the Sun.

The physics is all simulated in the browser using simple Newtonian mechanics. There's a lot left to do from here, including modeling objects in non-Keplerian orbits and replaying different spacecraft missions.

Hope you have fun clicking around, and curious to hear what I should improve next!

Popularity: 556 points | 108 comments


2. Show HN: Stagehand – an open source browser automation framework powered by AI

Show HN: Stagehand – an open source browser automation framework powered by AI - Project Screenshot

URL: https://github.com/browserbase/stagehand

Author: hackgician

Description: Hi HN! I’m Anirudh — longtime lurker, first time poster, and I couldn’t be more excited to show you Stagehand.

Stagehand is a TypeScript project that extends Playwright with three simple AI methods — act, extract, and observe. We’d love for you to try it out using the command below:

    npx create-browser-app --example quickstart
Here’s a sample workflow:

    const stagehand = new Stagehand();
    await stagehand.init();

// Stagehand overrides the Playwright Page and Context classes
const { page, context } = stagehand

await page.goto("instadash.com") // Regular Playwright

// Take action on the page
await page.act({ action: "click on taqueria cazadores" })

// Extract relevant data from the page
const { price } = await page.extract({
    instruction: "extract the price of the super burrito",
    schema: z.object({
        price: z.number()
    })
})

We built Stagehand because we loved building browser automations using Playwright and Selenium, but we grew frustrated at how cumbersome it is to just get started and write simple browser automations. These frameworks, while incredibly powerful, are built for QA testing and are thus notoriously prone to fail if there are minor changes in the UI or underlying DOM structure.

The goal of Stagehand is twofold:

1. Make browser automations easier to write 2. Make browser automations more resilient to DOM changes.

We were super energized by what we’ve been seeing with vision-based computer use agents. We think with a browser, you can provide even richer data by leveraging the information in the DOM + a11y tree in addition to what’s rendered on the page. However, we didn’t want to go so far as to build an agent, since we wanted fine-grained control over each step that an agent can take.

Therefore, the happy medium we built was to extend the existing powerful functionalities of Playwright with simple and extensible AI APIs that return the decision-making power back to the developer at each step.

Check out our docs: https://docs.stagehand.dev

We’d love for you to join and give us feedback on Slack as well: https://stagehand.dev/slack

Popularity: 188 points | 36 comments


3. Show HN: LA Wildfire Satellite Analysis

Show HN: LA Wildfire Satellite Analysis - Project Screenshot

URL: https://github.com/xingyzt/fire

Author: xingyzt

Description:

Popularity: 76 points | 29 comments


4. Show HN: Belshazzar's Clock, luminous paint night clock

Show HN: Belshazzar's Clock, luminous paint night clock - Project Screenshot

URL: https://blog.karliner.net/projects/belshazzars-clock/

Author: mkarliner

Description:

Popularity: 66 points | 16 comments


5. Show HN: Cardstock- Free TCG Proxy Manager for Magic, Yugioh, & Pokemon

Show HN: Cardstock- Free TCG Proxy Manager for Magic, Yugioh, & Pokemon - Project Screenshot

URL: https://cardstock.denta.co

Author: adenta

Description: Trading cards are awesome, but paying $30 for some cardboard isn’t. I’ve upscaled 60,000 cards from the entire catalog of Yugioh, Magic, Pokemon, & a newer game, https://elestrals.com. I've made it easy to build a decklist, download it, and then print at home. Modern inkjet printers got really good when nobody was looking. While it’s clear they’re not real cards, the upscaling makes them look great for casual play (these are not tournament legal). It’s totally free, give it a try!

Supplies: https://cardstock.denta.co/kb/supplies Printer Settings: https://cardstock.denta.co/kb/settings Instructions: https://cardstock.denta.co/kb/instructions

Overview: I built Cardstock because I had some scripts to do this lying around, and wanted to explore the new Rails 8 magic. Kamal 2 (kamal-deploy.org/) is a game changer, SQLite in production is fine, and the database backed solid family of gems work like a charm.

Compute: I am renting a box on https://hetzner.com located in VA for $15/mo. This box has 8 gigs of ram and 2 vCPU's. This is such a deal compared to compute prices on https://render.com.

Kamal 2: This thing is amazing. Kamal gives me everything I could want (easy console access, easy shell access, a way to manage secrets, a way to see my logs, and letsencrypt support for DNS), all without a PaaS tax. The best part is the accessories feature: https://kamal-deploy.org/docs/commands/accessory/. I am running my main app with two accessories: Meilisearch(https://meilisearch.com) and OpenObserve (https://openobserve.ai). Instead of paying Algolia to host search infrastructure and sentry to host monitoring infrastructure, I’m hosting my own OSS without any fanfare.

Upscaling: To upscale the trading cards (a mandatory part of this build, scans are never high enough DPI). I am using this (https://replicate.com/nightmareai/real-esrgan) model. For upscaling every card, I've used under a hundred bucks of compute. This model was picked on a whim, but worked well enough that I didn’t compare other models.

SQLite: I used SQLite combined with Litestream (litestream.io) for my database. While I considered Postgres, I hesitated due to uncertainties around handling backups on self-hosted infrastructure. This was my first time using SQLite in production, and it was functional but with some minor annoyances. Here’s what I encountered: 1. No Default UUID Primary Key Type I had to set primary keys as strings and assign IDs manually from the application record. It’s an annoying workaround but manageable. 2. No Native Array Columns Because SQLite doesn’t support array columns, I had to use its native JSON column type, which just felt icky. If I were working with something like embeddings, this would be especially annoying, because you couldn’t enforce all the records to have the same number of dimensions. 3. Cryptic Errors At one point, a migration failed silently, leaving a cryptic error in schema.rb. The issue was resolved by rolling back the migration and redoing it, but it was once again, annoying. 4. Litestream Defaults Litestream deletes snapshots after 24 hours by default, which is far too short. When I tried to recover some data, I found it had already been deleted. Adjusting these defaults fixed the problem.

Solid Queue/Cache/Cable: The solid family of gems are all backed by the database and were a pleasure to work with. Goal was to prevent needing to reach for redis, so you have one less thing to worry about. You end up with a little more latency, which is a totally reasonable tradeoff.

Conclusions: We are moving into a post platform as a service world. Instead of buying a bespoke render.com or heroku, you just buy commodity compute and use Kamal to manage. It's like, pretty much all there, excited to see how this space matures.

Popularity: 44 points | 38 comments


6. Show HN: Counting Tap Toy

Show HN: Counting Tap Toy - Project Screenshot

URL: https://memalign.github.io/m/counting/index.html

Author: memalign

Description: Hi HN! This is a project I made for my 3-year-old who always skips “14” when counting.

In Counting Tap Toy, you can tap to count various aquatic creatures. The count is displayed and announced. My hope is that seeing and hearing the numbers will reinforce 14’s existence.

I find tapping all the fish while listening to the songs and popping sound effects to be pretty relaxing too.

Technical details: https://memalign.github.io/p/counting.html

This is the fourth “Tap Toy”, joining:

- Slice: https://memalign.github.io/m/slice/index.html

- Fireworks: https://memalign.github.io/m/fireworks/index.html

- Original: https://memalign.github.io/m/taptoy/index.html

Popularity: 28 points | 17 comments


7. Show HN: macOS dock pissed me off and I extended it

Show HN: macOS dock pissed me off and I extended it - Project Screenshot

URL: https://extradock.app/

Author: imfrankkarro

Description: Hey HN!

So the other day macOS dock system pissed me off, completely.

I’m someone who runs 2 or 3 monitors daily: one for coding, one for chat apps, and one for design tools. But macOS only gives you a single Dock, which either stays on your main screen or auto-swaps wherever your mouse is. Complete hell.

I just wanted an easy way to keep a “chat dock” on my side monitor, a “development dock” on my center monitor, and maybe another “utilities dock” somewhere else—without messing with some complex, heavy, bloated dock replacement.

So I made one. And got feedback from my friends that it's good, and I should publish it.

Popularity: 12 points | 3 comments


8. Show HN: Sell advertisement spots on your site with a Sponsor-button

Show HN: Sell advertisement spots on your site with a Sponsor-button - Project Screenshot

URL: https://sponsorapp.io/

Author: karrob

Description:

Popularity: 4 points | 9 comments


9. Show HN: Weco AI Functions- a text-to-agent dev tool

Show HN: Weco AI Functions- a text-to-agent dev tool - Project Screenshot

URL: https://www.aifunction.com/

Author: Zhengyao

Description: Hey HN, I’m Zhengyao, one of the creators of Weco AI Functions — a platform that transforms plain-English task descriptions into reusable AI endpoints that you can use as Python functions.

We take a plain-English description of your task (e.g., “get the top 10 contributors of a given GitHub repo,” “extract phone numbers from text”) and turn it into an AI-powered endpoint with structured output.

Key points:

- Schema-first: You describe the task; we propose an output schema. Refine it if you like.

  • Version control and A/B testing: Each change to your function creates a new version automatically. Compare cost, latency, or accuracy across multiple models and prompts on the same input.
  • Configurable: Tweak advanced settings like chain-of-thought or temperature. Use custom internal prompts if you want deeper control.
  • Monitoring: We log inputs/outputs and show aggregated stats, token counts, and cost in one place.

    For Python developers, simply import aifn, and use AIFunction(<your function name>) to get a regular Python function powered by AI. That’s it. If you want to integrate the function into other languages/softwares, our REST API requires just a single POST request.

    We’d appreciate any feedback or suggestions. We’re in early access, so if something’s off, let us know—this is exactly the stage where your input is super valuable. Check it out at https://aifunction.com or see our docs for more details on how it all works.

    Thanks for reading. Happy to answer questions or hear your thoughts!

Popularity: 10 points | 3 comments


10. Show HN: Flows – Google Colab meets Notion, designed for AI workflows

Show HN: Flows – Google Colab meets Notion, designed for AI workflows - Project Screenshot

URL: https://app.athina.ai/flows/templates

Author: hbamoria

Description: Hey HN!

Pretty excited to show Flows— something that we’ve been working on for past few weeks!

What is Flows?

Flows lets you create multi-step AI workflows in minutes by chaining modular blocks like:

- LLM calls

  • API calls,
  • Code execution
  • RAG
  • Document Parsing

    …and 50+ more tools.

    Why You'll Love Flows

    - Test Flows on your datasets—with thousands of rows effortlessly!

  • Deploy workflows to production and scale your AI applications.
  • Collaborate with your team or share workflows publicly.

    Which workflow would you build with Flows? Share your ideas below!

Popularity: 11 points | 2 comments


11. Show HN: Reconfigured – Video game-inspired journal for analysts

Show HN: Reconfigured – Video game-inspired journal for analysts - Project Screenshot

URL: https://reconfigured.io

Author: thesnappingdog

Description:

Popularity: 10 points | 2 comments


12. Show HN: HN client that saves time

Show HN: HN client that saves time - Project Screenshot

URL: https://hackerdigest.news/

Author: picmazing

Description: This site curates the most popular posts daily, providing concise summaries of their key discussions.

Popularity: 7 points | 2 comments


13. Show HN: Awra – AI-powered legislative bill analyzer

Show HN: Awra – AI-powered legislative bill analyzer - Project Screenshot

URL: https://www.awra.ai

Author: wcisco17

Description: I built Awra to solve a simple problem: understanding what bills in Congress actually mean for regular citizens.

What it does:

  • Explains federal bills in plain language
  • Shows state-specific impacts
  • Provides cost analysis when available
  • Uses AI to answer questions about any bill

    I've found that while tools like ChatGPT can explain bills, they often hallucinate or work with outdated information. Awra directly fetches from Congress.gov's API and uses RAG to ensure accuracy.

    Try it out: https://www.awra.ai GitHub: https://github.com/reacthor-ai/awra

    Looking for feedback, particularly on accuracy and usefulness. Would love to hear from people who regularly need to understand legislation.

Popularity: 6 points | 3 comments


14. Show HN: Zero-overhead compile-time builder pattern for Rust

Show HN: Zero-overhead compile-time builder pattern for Rust - Project Screenshot

URL: https://github.com/NishantJoshi00/buco

Author: cat-whisperer

Description:

Popularity: 6 points | 1 comments


15. Show HN: LinkTaco – open-source Pinboard, Bitly, Linktree rolled into one

Show HN: LinkTaco – open-source Pinboard, Bitly, Linktree rolled into one - Project Screenshot

URL: https://linktaco.com

Author: peterjsanchez

Description: Just wanted to share that our new 100% open source social bookmarking / link management platform is up and free to use. It's called LinkTaco and is basically Pinboard, Bitly and Linktree rolled into one. It's got quite a bit of additional features like custom domains, analytics, collaboration, external integrations, full GraphQL API, etc.

You can see the project source, mailing list, tickets, etc. here:

https://code.netlandish.com/~netlandish/links

Announcement blog post is here:

https://linktaco.com/blog/announcing-link-taco.html

Would love to get some iniital feedback!

Popularity: 3 points | 2 comments


16. Show HN: Create Custom Emojis with EmojiMaker.lol – Simple and Fun

Show HN: Create Custom Emojis with EmojiMaker.lol – Simple and Fun - Project Screenshot

URL: https://emojimaker.lol/

Author: twarezak

Description:

Popularity: 3 points | 2 comments


17. Show HN: I wrote an open-source UI for controlling the Browser with Agents

Show HN: I wrote an open-source UI for controlling the Browser with Agents - Project Screenshot

URL: https://github.com/browser-use/web-ui

Author: gregpr07

Description: Hey HN,

we are Magnus and Gregor, creators of Browser Use. We recently introduced UI on top so anyone can control the browser with a super simple UI.

Would love to hear your thoughts down below.

Popularity: 4 points | 0 comments


18. Show HN: Create detailed 3D designs from text or image prompts in minutes

Show HN: Create detailed 3D designs from text or image prompts in minutes - Project Screenshot

URL: https://www.forgecad.com/

Author: Bslou

Description:

Popularity: 1 points | 3 comments


19. Show HN: Bytescope – A simple web filter for tech and science updates

Show HN: Bytescope – A simple web filter for tech and science updates - Project Screenshot

URL: https://bytescope.io/

Author: ipster_io

Description:

Popularity: 3 points | 1 comments


20. Show HN: Using Bacalhau and DuckDB for processing remote data

Show HN: Using Bacalhau and DuckDB for processing remote data - Project Screenshot

URL: https://docs.bacalhau.org/examples/data-engineering/using-bacalhau-with-duckdb

Author: TheIronYuppie

Description:

Popularity: 2 points | 2 comments


21. Show HN: Nexpend – Track Subscriptions and Avoid Unwanted Payments

Show HN: Nexpend – Track Subscriptions and Avoid Unwanted Payments - Project Screenshot

URL: https://nexpend.com

Author: mstdayoub

Description: Hi HN!

I built Nexpend to help track subscriptions, avoid unwanted payments before they happen, and take control of recurring expenses.

I started ideation and research 2 weeks ago, wrote the first line of code 10 days ago, and now it’s live!

Popularity: 1 points | 2 comments


22. Show HN: I built a tool to help attendees connect after events

Show HN: I built a tool to help attendees connect after events - Project Screenshot

URL: https://afterlinker.com

Author: Armandopdw

Description: Hi HN,

I’ve just started my solopreneur journey and recently launched my second tool.

I have had this ideas for a few years as I attended many conferences/events/retreats. I didn’t want to constantly ask for people their socials or have a bunch of business cards.

So I built AfterLinker to make it easier to stay connected after these events.

Here’s how it works:

  1. The organizer shares a group link.
  2. Participants join and add their socials/links, which are automatically shared within the group.
  3. Everyone can easily access each other’s socials/links.

    I’d love your thoughts, feedback, or ideas for improvement!

    - Armando

Popularity: 1 points | 2 comments


23. Show HN: Currex, Pythonic currency calculator with real-time exchange rates

Show HN: Currex, Pythonic currency calculator with real-time exchange rates - Project Screenshot

URL: https://github.com/stared/currex

Author: stared

Description: Hi!

I want to share with you an early version Currex, a Pythonic currency calculator that makes working with currencies and exchange rates simple and smoots.

I often use Python as a command-line calculator. Yet, I need to go back to Google Search to convert between currencies. So, for my own convenience, I created this library that makes it easy to add, multiply and change currencies. One of the core features is autocasting - when using a few currencies, automatically convert them to the first one.

It is intended to be used in interactive Python sessions (such as Jupyter Notebook, IPython, etc.) to get ballpark estimates of prices - e.g. when traveling, buying online, etc. Personally, I use it from the command line IPython.

It is a new package, so I'm open to suggestions.

It is NOT intended to be used in production code. Every API design decision I made was to make it as simple as possible to use in interactive sessions. Some of them are consciously at odds with a tool that could be used in a library.

EVEN MORE IMPORTANT: Never use it for any important decisions - taxes, investments, etc. There is no guarantee that the exchange rates are up-to-date and correct. Note that even major players make mistakes, e.g. a Google glitch from the last year (https://www.barrons.com/news/google-glitch-undervalues-polan...). Always use the official exchange rates.

Popularity: 3 points | 0 comments


24. Show HN: Zig Obfusgator

Show HN: Zig Obfusgator - Project Screenshot

URL: https://github.com/ringtailsoftware/obfusgator

Author: trj

Description:

Popularity: 3 points | 0 comments


25. Show HN: Open-Source Computer Use AI Agent Powered by Llama

Show HN: Open-Source Computer Use AI Agent Powered by Llama - Project Screenshot

URL: https://github.com/e2b-dev/open-computer-use

Author: mlejva

Description:

Popularity: 3 points | 0 comments


26. Show HN: Obj-Editor – A simple, live 3D modelling tool to study .obj

Show HN: Obj-Editor – A simple, live 3D modelling tool to study .obj - Project Screenshot

URL: https://hmnt.itch.io/obj-editor

Author: hmntyee

Description: I worked on an interesting hobby project last year. Obj-Editor is an open-source tool that helps you visualize changes to your 3D model as you edit each vertex and face of the model.

Back when I was studying how 3D models are stored in files, I came across the problem of having to edit a simple, human-readable .obj on a text editor and start up blender for every iteration to see my changes. So I built this tool on Unity that helps you edit the raw .obj and see changes on your mesh live on side-by-side screens.

I have since grown as a dev and know that many fixes and other essential features are required to see this tool going anywhere, but I thought it's a cool little thing to showcase on here.

Popularity: 2 points | 0 comments


27. Show HN: UK Government Datasets

Show HN: UK Government Datasets - Project Screenshot

URL: https://github.com/i-dot-ai/awesome-gov-datasets

Author: crimsoneer

Description: Hey folks, we (https://ai.gov.uk/) just put out this repo of of open UK government datasets, and I thought some might be of interest to HN folks! Contributions are, of course, very welcome.

Popularity: 2 points | 0 comments


28. Show HN: Blocky: Code Snippets in Gmail

Show HN: Blocky: Code Snippets in Gmail - Project Screenshot

URL: https://chromewebstore.google.com/detail/blocky-code-blocks-in-gma/bgmfnmpghaocglclckfgaaoakmlhemje

Author: greenbeans12

Description: Hey HN, I was searching for the code snippet button in Gmail one day and turns out it just didn't exist! So I built it with this Chrome extension.

One of the underrated features of Slack or Discord is the code snippet button, which quickly formats code using strong styling.

These features never made their way over to mainstream email clients. As email is still used heavily for external communications, this is an obvious blind spot.

Blocky is ideal for customer success teams, help desks, students, and engineers who need to send small code snippets over email. Usually stuff that wouldn't bother with a Github commit.

Get it on the Chrome Web Store: https://chromewebstore.google.com/detail/blocky-code-blocks-...

Popularity: 1 points | 1 comments


29. Show HN: Free DeepSeek playground: build a small app

Show HN: Free DeepSeek playground: build a small app - Project Screenshot

URL: https://deepseek.edgeone.app/

Author: jackie_cheung

Description:

Popularity: 2 points | 0 comments


30. Show HN: Sniff – Win Clients Faster Than

Show HN: Sniff – Win Clients Faster Than - Project Screenshot

URL: https://sniff.so/

Author: yaseenammaar

Description: it's like a google but for opportunities. yeah opportunity search engine

We are collecting data from social media (X, LinkedIn, Telegram etc), daily millions of people post seeking for help

"hi i am hiring a web developer" "i need a designer for my app" "i need an assistant" etc etc

these opportunities never reach to mass audience and most importantly us.

sniff is collecting massive data every hour

The database is connected to an AI intelligent model to make perfect match

You can login to sniff and prompt "hi i am good with excel, i can design in figma and i can write well. is there any opportunity of my interest posted this week?"

Sniff will find the best match, and best alternative.

It also looks for intent of user, imagine a user posted "ah man, my app crashed again, F", it might seem like a blabber, but Sniff sees this as an opportunity for web developers, system architects, DS people, people in network etc. you get my point

Sniff is growing fast, and people lovin it.

try here: sniff.so

if you need any help, just ping me at yaseen@sniff.so

Popularity: 2 points | 0 comments


31. Show HN: Collection of AI-Conducted PM Interviews

Show HN: Collection of AI-Conducted PM Interviews - Project Screenshot

URL: https://www.toughtongueai.com/collections/6777ff4b305e81f4d9832fee/

Author: ajabhish

Description:

Popularity: 1 points | 1 comments


32. Show HN: Additive partial piano synthesis with live local Python notebook

Show HN: Additive partial piano synthesis with live local Python notebook - Project Screenshot

URL: https://shorepine.github.io/amy/piano.html

Author: grackle2

Description: Showing off our new piano synthesis mode (no samples) for our microcontroller synthesis library AMY. The doc itself is an editable python notebook, running locally on micropython with audio playback.

Popularity: 2 points | 0 comments


33. Show HN: pay-respects – RIP command errors and keep yourself in the flow

Show HN: pay-respects – RIP command errors and keep yourself in the flow - Project Screenshot

URL: https://github.com/iffse/pay-respects

Author: iffse

Description: pay-respects is a command-line utility written in Rust that tries to fix the previous command, by simply pressing F. (From the meme "Press F to pay respects").

Don't let Rust scares you. You don't even need to know how to code in order to add a new rule for suggesting fixes. Even with zero-compromises to performance, as they can be evaluated to Rust code during compilation.

Rules can be added at runtime if you don't want to recompile. The entire system is even modular, allowing to write rules in any languages that are most comfortable to you.

You can still get potential fixes even when there is no rule for the specific case you are facing thanks to the AI integration (API key included so you can try it out of the box).

The project started long ago when in a group chat people complained about the speed of thefuck (myself included). Although thefuck is the very first pioneer for tools like this, it's very slow (slower than typing sudo !!) and creates weird suggestions lately, making it completely useless.

At the end of that day, I ended up with a prototype with procedural macros to generate rules from a TOML file. I took this approach as I don't want to compromise performance, nor I want to make it hard to contribute because Rust is "hard" and takes time to write the code due to its verbose nature.

Less than a week, the project is basically done, supporting all major shells and solves all situations that I used to run into. It worked so well that there wasn't a single commit or bug report for more than a year.

You might ask why I am promoting this project now. Apparently thefuck stopped working some months ago with new Python versions and no maintainer is working to fix it. Many people who searched for an alternative have reached to my project. The tool itself works well, and people asked me to package into the distribution they use. That is not easy for me, as I don't have access to their upstream, nor I have the social network to contact respective package maintainers.

At the time of writing, pay-respects is not the first project that tries to substitute thefuck, nor the last one. But rather a unique one that stands out from all others because the approach is different from the ground up. (To be honest, I didn't even bother to study other projects before creating the project. There were only "speed" and "ease" in my mind).

Popularity: 2 points | 0 comments


34. Show HN: 3D-Fractal Game on WebGPU (Desktop Chrome)

Show HN: 3D-Fractal Game on WebGPU (Desktop Chrome) - Project Screenshot

URL: https://codefiddler.itch.io/marble-marcher

Author: grinstead

Description: Ported Marble Marcher over to WebGPU, so no download required. Open source code is on GitHub: https://github.com/grinstead/MarbleMarcherWebGPU

WebGPU is cool. It's exciting to me to see these things working with no download.

The actual js for this game is 130kb in all, though the music and sound effects bring the whole distribution to 10mb.

The original game is from CodeParade: https://www.youtube.com/watch?v=9U0XVdvQwAI

It can be a bit of a gpu buster, though it runs fine on my M1 Mac.

I'm experimenting with SolidJS+WebGPU+Vite as a game engine (https://github.com/grinstead/ambush). It's a pretty cool environment to develop in, but building everything from scratch is slow and developing at a hobbyist pace.

Popularity: 2 points | 0 comments


35. Show HN: Live Poker Hand History

Show HN: Live Poker Hand History - Project Screenshot

URL: https://pokerhandhistory.com/

Author: taeyangyou

Description:

Popularity: 2 points | 0 comments


36. Show HN: CleanTabs – auto-close the browser tabs bases on rules

Show HN: CleanTabs – auto-close the browser tabs bases on rules - Project Screenshot

URL: https://github.com/heyppen/CleanTabs

Author: onezhjp

Description: CleanTabs is a browser extension that auto discards (sleep) / closes tabs in the background, based on customizable rules. Its goal is to reduce browser memory usage and address the clutter caused by having too many open tabs.

Popularity: 1 points | 0 comments


37. Show HN: Vite-Dynamic-Proxy – Runtime Proxy Target Switching for Vite

Show HN: Vite-Dynamic-Proxy – Runtime Proxy Target Switching for Vite - Project Screenshot

URL: https://www.npmjs.com/package/vite-dynamic-proxy

Author: imvad

Description: Introducing vite-dynamic-proxy, a Vite plugin that enables dynamic proxy configuration during development.

Dynamic Proxy Targeting:

Change the proxy target by adding a debug query parameter to your application's URL.

Example: http://localhost:5173/your-app?debug=localhost:3001

Popularity: 1 points | 0 comments


38. Show HN: Sensible Purchase Framework

URL: #

Author: heidarb

Description: Hi HN,

I have been selling my things recently because I'm moving. It made me realise I could do a lot better with my consumption habits.

This is mostly a thought experiment, but I put together a flow chart for decision making around buying things.

The main goal is for it to be sensible and simple. Contributions are welcome.

Flowchart: https://github.com/heidar/sensible-purchase-framework/blob/master/flowchart.mmd

PS: Using it with AI can be quite interesting!

Popularity: 1 points | 0 comments


39. Show HN: Using ChatGPT with Gato GraphQL

Show HN: Using ChatGPT with Gato GraphQL - Project Screenshot

URL: https://gatographql.com/blog/using-chatgpt-with-gatographql-just-became-more-powerful

Author: leoloso

Description:

Popularity: 1 points | 0 comments


40. Show HN: LeetCode with Spaced Repetition

Show HN: LeetCode with Spaced Repetition - Project Screenshot

URL: https://www.ankicode.com/

Author: gordbegli

Description: Solve questions in a LeetCode like style. You’ll be shown them again at a later date determined by your pass/fail history and when you’ve used the LLM integration for help.

NeetCode’s great tutorials are embedded. AnkiCode also similarly introduces basic concepts before those that build upon them.

Enjoy!

The source code is public. Click on the logo to see it. I was trying to contribute to Tinygrad recently and tried a similar low loc style in this codebase, which may be jarring.

Popularity: 1 points | 0 comments


41. Show HN: Webpage Summarizing Bookmarklet

Show HN: Webpage Summarizing Bookmarklet - Project Screenshot

URL: https://bookmarkl.ink/ashtonmeuser/111eaf0da5a8e507f1fff99006df2b39

Author: ashtonmeuser

Description: A bookmarklet that uses ChatGPT to summarize the currently-viewed webpage. Uses some of the newer features of bookmarkl.ink[1] e.g. variable inclusion, TypeScript support.

[1] https://bookmarkl.ink

Popularity: 1 points | 0 comments


42. Show HN: Magic Cache for GitHub Actions

Show HN: Magic Cache for GitHub Actions - Project Screenshot

URL: https://runs-on.com/caching/magic-cache/

Author: crohr

Description:

Popularity: 1 points | 0 comments


43. Show HN: Market Research from Customers Reviews (To Find Pain Points)

Show HN: Market Research from Customers Reviews (To Find Pain Points) - Project Screenshot

URL: https://www.simplerowdata.com/

Author: imadbkr

Description:

Popularity: 1 points | 0 comments


44. Show HN: FormML – A DSL for building forms (like Prisma but for forms)

Show HN: FormML – A DSL for building forms (like Prisma but for forms) - Project Screenshot

URL: https://github.com/formml/formml

Author: jindongz

Description: Over the years, I’ve encountered many challenges while building complex forms from scratch - challenges that I believe are common, difficult, and yet often overlooked.

While there are many awesome tools in the ecosystem for building basic forms, like Formik and React Hook Form, there isn't yet a serious solution (to my knowledge) that specifically addresses these pain points of complex ones.

Finally, this led me to come up with my own solution FormML (Form Modeling Language) that specifically addresses "enterprise-level" form needs.

Looking forward to your thoughts and feedback!

Popularity: 1 points | 0 comments


45. Show HN: Open-Source) Memora – Bringing Human Memory to AI <We're Back Live >

Show HN: Open-Source) Memora – Bringing Human Memory to AI <We're Back Live > - Project Screenshot

URL: https://github.com/ELZAI/memora

Author: Jonathan-Okorie

Description: We had to take the repo down for a while (the fake X crypto scheme issues), and in the process, lost all our stars. But we're back!

Memora gives AI the ability to recall memories during interactions, just like humans do.

For now, it’s just text-based memories, but our vision extends to the full spectrum of human memory: emotions, audio, video.

Key Features:

Multi-tenancy for managing organizations, users, and agents

Time-stamped memories to track info over time

Scalable and developer-friendly design

Please star, fork, and contribute to help us rebuild and improve Memora!

GitHub: https://github.com/ELZAI/memora Install: pip install memora-core

Popularity: 1 points | 0 comments


46. Show HN: Best and Cheapest AI Resume Builder

Show HN: Best and Cheapest AI Resume Builder - Project Screenshot

URL: https://resumeboostai.com/

Author: balt1794

Description: Any feedback?

Popularity: 1 points | 0 comments


47. Show HN: Parseur – extract data from PDFs using the magic of LLMs

Show HN: Parseur – extract data from PDFs using the magic of LLMs - Project Screenshot

URL: https://parseur.com/

Author: joss82

Description:

Popularity: 1 points | 0 comments


48. Show HN: 300 Pages of AI-Driven Insights on Growth and Learning

Show HN: 300 Pages of AI-Driven Insights on Growth and Learning - Project Screenshot

URL: https://2472241684911.gumroad.com/l/whathow

Author: anon012012

Description: Hi HN,

GPT has reached a point where it can contribute meaningful insights—even writing books that are worth reading.

I’ve spent time (and a bit of money) systematically extracting deep insights (from the latest GPT-o1) on self-improvement in general and self-education in our rapidly changing world. The result is a free 300-page ebook titled What & How: Evolving in the Age of GPT. It explores what to know, what to do, and how to grow during these transformative times.

Here’s a sample chapter (~ randomly selected):

https://drive.google.com/file/d/1Aievf11DpE_IfzVLtYcRbp7NZSa...

And here’s the table of contents:

https://imgur.com/a/7F3aUfF

If you don't want to use Gumroad, the PDF is also free on Github:

https://github.com/Lywald/whathow/tree/main

I’m self-publishing paperback version on Amazon soon! For myself and maybe others. Before I print, I’d love some feedback!

For the curious, this is the prompt I used (it's actually fairly simple):

"""You are a brilliant writer and thinker. You write plain and clearly but juicy knowledge. You DO NOT write common sense, obvious stuff. Only low-noise, high signal. Keep on pounding the user's mind with high level abstractions, and precise details and tips, and methodologies. IT should be mindblowing, and not ordinary. You think very deeply about what you are writing. We are writing an ebook together. """

Popularity: 1 points | 0 comments


49. Show HN: StayWithMe – Make your parents digitally immortal

URL: #

Author: loboda_ro

Description: Hi HN,

Roman and Oleg here, and we want to share the StayWithMe project with you all! We build software that can make people digitally immortal. You upload your chat history from What’s App or Telegram together with a short voice recording of the person you want to clone on our website. We process your data and you get a phone number that you can call and talk to the person you cloned. you can clone yourself.

Why We Built This

Roman lost his father to cancer when he was 16, a loss that changed his life forever. His father was the person he could talk to about anything, and his death left a deep gap. It took him years to recover. But, we realized that with the technologies and skills we’ve gained, we could create a digital version of his father using old WhatsApp messages. This project is our way of keeping his memory alive and helping Roman reconnect with the bond he shared with his father.

How It Works

You can either call Roman’s clone, or fill out the form to clone a person you know (yourself as well). In the form you will have to put in basic info about the person you are cloning, upload exported chat history (whatsapp or telegram) and mp3 voice sample of how they normally talk.

After you uploaded everything the website will prompt you to select the person (out of two present in chat history) who you want to clone. It will appear on the profile page as creation in process.

Then you will have to wait for about 30 minutes (might be up to a couple of hours depending on how large your chat history is) until it will be created. Now you will activate it by clicking on it and putting your phone number you will be calling from.

When you’ll see a persona in green, meaning it is activated for usage, call the phone number provided on the profile page of the website above the list of your personas.

Tech Stack: Voice - ElevenLabs.io Facts Extraction - Kor python library LLM - GPT 4o Phone Call - Twilio Transcription - Deepgram

Demo Link: staywithme.io

all instructions are in the how it works section.

What We’d Love Feedback On

We’d love to hear your thoughts, feedback, or any questions you have! We’ll be around to respond to comments and discuss further.

What’s Next?

To help people leave a meaningful legacy, we plan to record short interviews with them. These interviews will later be used to create a digital version of the person - not just based on chat history.

Thank you for taking the time to check it out, and we are looking forward to your insights!

Popularity: 1 points | 0 comments


50. Show HN: I Built an AI-Powered Study Tool That Makes Learning Stick

Show HN: I Built an AI-Powered Study Tool That Makes Learning Stick - Project Screenshot

URL: https://syncstudy.app

Author: bukunmiadewale3

Description: Like many students, I struggled with remembering what I studied. I’d read, highlight, and take notes—only to forget everything a week later. Turns out, passive learning doesn’t work.

What does work? Active recall. Science backs it: testing yourself strengthens memory better than rereading.

So, I built SyncStudy—an AI-powered tool that generates quizzes, flashcards, and study challenges from any text, helping you master concepts faster. No more cramming. No more wasted hours. Just better learning, smarter retention.

It’s free to try, and I’d love feedback from the HN community!

syncstudy.app

What study techniques have worked best for you?

Popularity: 1 points | 0 comments


51. Show HN: Model Context Protocol (MCP) Server for ClickHouse

Show HN: Model Context Protocol (MCP) Server for ClickHouse - Project Screenshot

URL: https://github.com/ClickHouse/mcp-clickhouse

Author: cauchyk

Description:

Popularity: 1 points | 0 comments


52. Show HN: CEFA – Piano Chord Progression Practice Tool (Raylib)

Show HN: CEFA – Piano Chord Progression Practice Tool (Raylib) - Project Screenshot

URL: https://github.com/tonio-m/cefa

Author: tonio

Description: I built a minimal app for practicing jazz chord progressions. It's written using raylib and raygui. It's also very early stage and my first C++ project, so I'm very much Looking for feedback and contributors. Thank you!

Popularity: 1 points | 0 comments


53. Show HN: Could I have done better? (investment tool)

Show HN: Could I have done better? (investment tool) - Project Screenshot

URL: https://github.com/onescales/investment-comparison-tool

Author: onescales

Description: In the last 2-3 years i've spent a lot of time to understand investing better and occasionally sample and check different stocks and crypto and see how it coompares.

I built a very simple tool to see if my investments could be improved upon. In short, if i would have placed the same amount of money in a different stock or crypto for example, would i have done better?

It's open source and in-browser (using local storage), meaning investment data stays private in your browser between you and your browser (yourself). Everything is in 1 html file only which you can use or copy and change yourself. Lastly, in order to get stock and crypto prices, it does use 2 api's (Twelve Data & Alpha Vantage)

Hope it's helpful for you guys and let me know if you have any suggestions.

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