
Explore the hottest developer projects on Show HN for 2025-01-14. Dive into innovative tech, AI applications, and exciting new inventions!
Summary of Today's Content
Today's Product Highlights
- Product Name: WASM-powered codespaces for Python notebooks on GitHub
- Highlight: Innovative solution enabling seamless execution of Python notebooks directly from GitHub in a WebAssembly-powered environment with filesystem integration
Quick Summary
- Most Hot Category: Development Tools
- Top Keywords: AI, Python, WebAssembly, Open Source
- Most Popular Product: WASM-powered codespaces (179 points)
Technology Trends
- WebAssembly (WASM)
- AI/ML Integration
- Open Source Development
- Cloud-Native Tools
- Browser-Based Development
Project Distribution
- Development Tools: 35%
- AI/ML Projects: 25%
- Productivity Tools: 20%
- Web Applications: 15%
- Others: 5%
Trend Insights
- Strong emergence of WebAssembly as a platform for complex development tools
- Growing focus on AI-powered developer productivity tools
- Increasing demand for browser-based development environments
- Rising interest in open-source alternatives to commercial services
- Trend toward decentralized and privacy-focused solutions
Key recommendations:
- Invest in WebAssembly capabilities
- Focus on developer experience and productivity
- Prioritize open-source development
- Consider browser-based solutions for traditional desktop applications
- Integrate AI capabilities thoughtfully rather than as a gimmick
Today's Top 10 Trending Products
Top 1. Introducing an innovative blocklist designed to enhance your online experience by effectively filtering out spam and harmful websites from search results. Safeguard your browsing and enjoy cleaner, more relevant search results with this essential tool. (Likes: 153, Comments: 65)
Top 2. WASM-powered codespaces for seamless Python notebook development on GitHub, enhancing productivity and collaboration. (Likes: 179, Comments: 24)
Top 3. Discover the cutting-edge tool that predicts value likelihoods for OpenAI structured outputs, enhancing data analysis and decision-making processes. Perfect for developers and researchers aiming to leverage AI's potential for structured data interpretation. (Likes: 101, Comments: 36)
Top 4. "Simplex: Streamline your browser workflows effortlessly by combining code and natural language for seamless automation." (Likes: 90, Comments: 27)
Top 5. A streamlined solution for effortless Docker hosting, providing an intuitive interface and seamless deployment for developers. Perfect for enhancing productivity and simplifying container management. (Likes: 56, Comments: 59)
Top 6. Revolutionize your AR experience with our custom-built editor designed to simplify the creation process. Say goodbye to the pain points in making augmented reality content and easily bring your ideas to life! (Likes: 13, Comments: 1)
Top 7. Introducing an innovative open-source tool designed for efficient document extraction, perfect for developers and researchers looking to streamline their data processing workflow. This robust solution harnesses the power of community-driven collaboration, ensuring continuous improvement and adaptability to various document formats. Experience enhanced productivity with advanced features that simplify the extraction process, making it an essential addition to your toolkit. (Likes: 10, Comments: 1)
Top 8. Sculptor is a powerful Python library designed for extracting structured data from Large Language Models (LLM), offering a seamless and efficient solution for developers and data scientists. With its open-source MIT license, Sculptor simplifies the process of handling complex data structures, making it an essential tool for modern data manipulation and analysis. (Likes: 9, Comments: 0)
Top 9. A powerful tool designed to transform your SaaS idea into actionable AI coding steps, streamlining the development process and enhancing productivity. (Likes: 1, Comments: 6)
Top 10. Decentralized robot and object orchestration system for innovative automation solutions. (Likes: 6, Comments: 0)
1. Show HN: A blocklist to remove spam and bad websites from search results
URL: https://github.com/popcar2/BadWebsiteBlocklist
Author: popcar2
Description: Hi HN!
I've been fed up with search results so much that I decided to make a giant blocklist to remove garbage links by using uBlacklist.
I browsed other blocklists and wasn't very satisfied from what exists now; the goal of this one is to be super organized and transparent, explaining why each site was blocked via issues. Contributions welcome!
Even though around 100 domains are blocked so far, I already noticed a big improvement in casual searches. You'd be surprised how some AI generated websites can dominate the #1 page on DuckDuckGo.
Popularity: 153 points | 65 comments
2. Show HN: WASM-powered codespaces for Python notebooks on GitHub
URL: https://docs.marimo.io/guides/publishing/playground/#open-notebooks-hosted-on-github
Author: mscolnick
Description: Hi HN!
Last year, we shared marimo [1], an open-source reactive notebook for Python with support for execution through WebAssembly [2].
We wanted to share something new: you can now run marimo and Jupyter notebooks directly from GitHub in a Wasm-powered, codespace-like environment. What makes this powerful is that we mount the GitHub repository's contents as a filesystem in the notebook, making it really easy to share notebooks with data.
All you need to do is prepend 'marimo.app' to any Python notebook on GitHub. Some examples:
- Jupyter Notebook: https://marimo.app/github.com/jakevdp/PythonDataScienceHandb...
- marimo notebook: https://marimo.app/github.com/marimo-team/marimo/blob/07e8d1...
Jupyter notebooks are automatically converted into marimo notebooks using basic static analysis and source code transformations. Our conversion logic assumes the notebook was meant to be run top-down, which is usually but not always true [3]. It can convert many notebooks, but there are still some edge cases.
We implemented the filesystem mount using our own FUSE-like adapter that links the GitHub repository’s contents to the Python filesystem, leveraging Emscripten’s filesystem API. The file tree is loaded on startup to avoid waterfall requests when reading many directories deep, but loading the file contents is lazy. For example, when you write Python that looks like
python<p>with open("./data/cars.csv") as f: print(f.read())<p># or<p>import pandas as pd pd.read_csv("./data/cars.csv")<p>
behind the scenes, you make a request [4] to https://raw.githubusercontent.com/<org>/<repo>/main/data/car....
Docs: https://docs.marimo.io/guides/publishing/playground/#open-no...
[1] https://github.com/marimo-team/marimo
[2] https://news.ycombinator.com/item?id=39552882
[3] https://blog.jetbrains.com/datalore/2020/12/17/we-downloaded...
[4] We technically proxy it through the playground https://marimo.app to fix CORS issues and GitHub rate-limiting.
Popularity: 179 points | 24 comments
3. Show HN: Value likelihoods for OpenAI structured output
URL: https://arena-ai.github.io/structured-logprobs/
Author: ngrislain
Description:
Popularity: 101 points | 36 comments
4. Show HN: Simplex: Automate browser workflows using code and natural language
URL: https://www.simplex.sh/playground
Author: marcon680
Description: Simplex is an SDK that provides low-level functions you can use to create reliable web automations using code and natural language.
Here's a quick video to show you how it works: https://www.loom.com/share/8d27d0f9e0f34c77a81b0ac770151c12
A couple weeks ago, we needed a way to automatically find 3D assets from the internet for one of our work contracts. We didn’t need an AI to choose all the steps for us autonomously — we knew generally what the flow to find items should be and just needed some intelligence to handle different webpage formats.
Playwright couldn’t easily generalize to the different sites we wanted to search over and Claude computer use was tough to use — it was slow, expensive, struggled to click on the correct web elements, and there was no way to correct its actions if it failed at step 20 of our workflow.
So we built a vision-based solution using vision language models that sits on top of Playwright. In our SDK, building a function that can universally search websites is as easy as this:
from simplex import Simplex
simplex = Simplex(api_key="api_key")
def search(website, search_query):
simplex.goto(website)
simplex.click("the search bar")
simplex.type(search_query)
simplex.press_enter()
search("mit.edu", "alyssa p hacker")
You can play around with what we’ve built and see a few more examples at https://simplex.sh/playground.We'd love feedback!
Popularity: 90 points | 27 comments
5. Show HN: Simple Docker Hosting
URL: https://sliplane.io
Author: jonas_scholz
Description: Hey HN!
We launched sliplane.io, where deploying Docker containers is super simple and wallet-friendly.
With our Pay-per-Server approach, you can host as many containers as you want on each server at a set price - no huge surprise bills, just straightforward Docker hosting.
You simply connect your Github repository and we do the rest that you expect from a PaaS, SSL by default, automatic deployments, backups of your storage etc. Pricing starts at 9€/month for 2vCPU, 2GB RAM, 40 GB Disk, 2 TB Egress.
Cheers, Jonas
Popularity: 56 points | 59 comments
6. Show HN: Making AR experiences is still painful – had to make my own editor
Author: boriskourt
Description: Hey HN!
My co-founder and I have spent over a decade building mixed reality projects and have been growing more and more frustrated with the process. From the number of tools needed, to client sign-off, to the complex esoteric tech stacks. And especially how slow the iteration loop is when dealing with interactivity and UX.
Two years ago we decided to stop whining and fix the fundamental issues. Ordinary Objects [0] was built with our core needs for AR prototyping: a very tight iteration loop between editor and real device, real-time interactivity while editing and clear and concise flow management + mapping. There are many things that layered on to make all of that possible: making it multi-user from the ground up, handling assets without a fuss, and building up a new interaction language.
From a technical standpoint we wanted to be native on the all of the platforms that we support, and do that as quickly as possible. Two years ago the best tool to achieve that was Unity, and I believe that is still the case today. Everything else is inside our custom C# Redux implementation. Our multi-user needs are very different from games, and it helped a lot to learn from Figma's technical notes to implement our pseudo eventual consistency setup. Its been super nice to be multi-user from the get go, we've been able to explore much more functionality this way.
Once the core churn eases up a bit more we will be open sourcing this particular C# Redux setup. As it has nothing to do with any engine code.
The website has some quick examples of how the design tool works [0]. But if you want to view a more complete prototype here is something Gregor, my co-founder, put together recently [1].
Over the past year we've been testing with closed groups, and have been excited by what everyone is making. Now we are ready to open it up for all of you to try! Give it a spin and let me know what you think! And happy to answer any questions here :)
[1]: https://www.linkedin.com/posts/onlinegregor_mixedreality-spo...
Popularity: 13 points | 1 comments
7. Show HN: Open-Source Document Extraction Tool
URL: https://github.com/harishdeivanayagam/rowfill
Author: harishd30
Description: Hi, I'm building an open-source self-hostable document extraction tool powered by LLM.
There are popular data extraction tools and OCR tools in the market. None of them are open source.
Most accounting firms, law firms, insurance, back office, and real-estate folks would like to use a tool like this.
You can add PDF documents, Images, and audio files and create columns to answer questions on documents or extract information into tabular format.
Access to repo: https://github.com/harishdeivanayagam/rowfill Screenshots: https://github.com/harishdeivanayagam/rowfill/tree/master/sc...
Sample use-case: You can upload your invoices or receipts, create custom columns, and click Start Run. The data would be automatically extracted.
Popularity: 10 points | 1 comments
8. Show HN: Sculptor – Python library for LLM structured data extraction (MIT)
URL: https://github.com/lightning-rod-labs/sculptor
Author: bturtel
Description: I built Sculptor after repeatedly seeing founders try to hire data scientists for a task that ultimately boiled down to extracting structured data from unstructured text (customer records, social posts, websites, etc) using an LLM API. We ended up reinventing this pattern internally at least three times in the past year, so I published Sculptor as a streamlined, open-source solution:
- Simple schema-based extraction, with parallelization and type validation.
- Multi-step pipelines with filtering or transforms between steps.
- Configure everything in YAML/JSON for easy reuse.
It’s MIT licensed and on PyPI — feedback welcome!
Popularity: 9 points | 0 comments
9. Show HN: I built a tool that helps break down your SaaS idea into AI coder steps
Author: juarasw
Description: After struggling to effectively use AI coding tools (Cursor, Bolt, ChatGPT) on larger projects, I realized the problem wasn't the AI - it was the lack of planning out exactly what all the features will be in advance, and how everything will work/look.
I discovered, if I really thought things through, in details (what features, what the frontend will look like, etc.), I would get way better results. (Making proper product requirements documentation)
The tool is simple:
- Describe what you want to build
- Get a clear and structured breakdown of
- features and components
- Use the documentation as a guide and as context for the AI.
Example: Instead of asking "build me a blog", it helps you break it down into:
- Core features
- Sub-components
- Architecture decisions
- Frontend descisions
- etc.
This structure helps me get much better results from AI tools (like bolt.new, Cursor, Lovable, etc.), regardless of which one I'm using. The AI suggestions are more accurate because I'm giving them better context.
I built it for my own projects but figured others might find it useful. You can try it at doc.onlift.co (pay-per-use since it uses AI APIs).
If you decide to use it, let me know what you think of the results!
Popularity: 1 points | 6 comments
10. Show HN: Decentralized robots (and things) orchestration system
URL: https://docs.p2p.industries
Author: hannesfur
Description: Hi HN, we build an open-source operating system extension for orchestrating robot swarms fully decentralized.
This first beta version allows you to create fully decentralized robot swarms. The system will set up a wireless mesh network and run a p2p networking stack on top of it, such that nodes can interact with each other through various abstractions using our SDKs (Rust, Python, TypeScript) or a CLI.
We hope this is a step toward better inter-robot communication (and a fun project if you have a few Raspberry Pis lying around).
Our mesh network is created by B.A.T.M.A.N.-adv and we’ve combined this with optimized decentralized algorithms. To a user, it becomes very easy to write decentralized applications involving several peers since we’ve abstracted away much of the complexity. Our system currently offers several orchestration primitives (Key-Value Store, Pub-Sub, Discovery, Request-Response, Mesh Inspection, Debug Services, etc.)
Internally, everything except the SDKs is written in Rust, building on top of libp2p. We use gRPC to communicate between the SDKs and the CLI, so libraries for other languages are possible, and we welcome contributions (or feedback).
The C++ SDK and a ROS package that should feel natural to roboticists are in the works. Soon we also want to support a collaborative SLAM and a distributed task queue.
We’d love to hear your thoughts! :)
Popularity: 6 points | 0 comments
11. Show HN: Turn YouTube Videos into AI-Generated Notes in Seconds
Author: sohombh
Description: i use youtube every day for things like tutorials, recipes, philosophy, podcasts, etc. i enjoy learning visually but it's nice to have something to read and learn from as well.
so i built this tool that turns youtube videos into AI-generated notes.
main features:
- inline citations to jump directly to the relevant part of the video just like how Perplexity cites sources
- share notes with anyone
- save notes as PDF or markdown
here's a demo for a 1.5 hour podcast episode with Satya Nadella discussing AI:
youtube link - https://www.youtube.com/watch?v=9NtsnzRFJ_o&ab_channel=Bg2Po...
notes link - https://swiftnotes.ai/?url=https%3A%2F%2Fwww.youtube.com%2Fw...
would love to get some feedback on this
Popularity: 2 points | 4 comments
12. Show HN: Generate your authentic and realistic Chinese name
Author: seedgou
Description: Generate authentic and realistic Chinese names that closely resemble real-life naming conventions.
Popularity: 5 points | 1 comments
13. Show HN: Darker Hacker News
URL: https://jandom.github.io/hacker-news-dark-mode/
Author: jandom
Description: I've needed this badly for so long... There are a few Show HN to stale repos/heroku apps... Chrome Extensions but those don't work for me (Safari on Mobile).
So in the spirit of building something people want, here is a very barbaric mirror via GHA and a scraping script.
Popularity: 3 points | 2 comments
14. Show HN: Subjects – a minimalistic productivity app for students
URL: https://eyen.fr/subjects/
Author: akachalo
Description: Hello HN,
I’m thrilled to share Subjects, a productivity app designed to help students streamline their timetables, homework, and grades, all in one place. The app focuses on providing an easy-to-use, minimalistic interface that adapts to worldwide educational systems, ensuring it’s useful for students everywhere.
Key Features:
• Timetable Planner
• Homework Tracker
• Grade Management
• Collaboration with classmates
Technical Highlights:
• Built with SwiftUI and UIKit/AppKit for seamless integration across iOS, macOS, and Vision Pro.
• Optimized for performance on Apple’s latest platforms, including features like machine learning for smart suggestions.
We’re eager to hear your feedback, whether you’re a student, educator, or productivity enthusiast. Your insights will help us improve and expand Subjects!
Website: https://eyen.fr/subjects/
App Store: https://apps.apple.com/app/apple-store/id1619679435?pt=11922...
Thank you for your time and thoughts!
Popularity: 3 points | 2 comments
15. Show HN: Dummy text for designers in a fun way
URL: https://jacksthoughts.art/
Author: Gik
Description:
Popularity: 2 points | 3 comments
16. Show HN: LLM Thematic Generalization Benchmark
URL: https://github.com/lechmazur/generalization
Author: zone411
Description:
Popularity: 5 points | 0 comments
17. Show HN: I made a system to create any MVP in 30 days
URL: https://numadic.com/build-mvp
Author: vedantkunte
Description:
Popularity: 1 points | 4 comments
18. Show HN: Open Agent Social Interaction Simulations (Oasis) with 1M Agents
URL: https://github.com/camel-ai/oasis
Author: pkkkzip
Description:
Popularity: 4 points | 0 comments
19. Show HN: Automatic Reindexing in Minima RAG
URL: https://github.com/dmayboroda/minima
Author: dmayboroda
Description: Added an ability for automatic reindexing files inside Minima RAG containers.
Popularity: 2 points | 2 comments
20. Show HN: Maestro – A Modular All-in-One Kitchen Appliance – Beta Available
URL: https://twitter.com/connor_kapoor/status/1879280401522491772
Author: connorkapoor
Description: Hey HN,
I’m Connor, and I’ve been working on Maestro, a modular kitchen appliance that combines a blender, food processor, stand mixer, and more into one device. This is my first hardware product, and I’m launching it in beta to get feedback from early users.
What is Maestro? It’s a single, compact device with a modular design, allowing you to swap attachments for different tasks like mixing, chopping, blending, and more. The base unit houses a powerful motor and a planetary gearbox that adjusts speed and torque based on the task. It’s designed to reduce countertop clutter and eliminate the need for multiple single-purpose appliances.
Why I Built This: I love cooking but found my kitchen overcrowded with appliances I used very little but still wanted to keep around for when i did need them. I wanted a solution that was versatile, compact, and futureproof. Over the past year, I prototyped a device that could handle multiple kitchen tasks efficiently. This project started as a personal solution and grew into something I wanted to share.
What’s Different? Modularity: One base, multiple attachments, and future expandability. Performance: A universal motor and a multi-speed gearbox provide the right torque for every job. We can hit 10,000+ rpm for blending, and go as low as 10 rpm for mixing, which is the widest range of any available appliance to date.
How to Try It We’ve launched the beta program, where you can test the Maestro and share feedback to help refine the final version. For now, you can explore the details and join the beta here: https://mykitchenlab.com/blog/maestro-beta-launch
Backstory and Journey This is a fully bootstrapped project. I 3D-printed the prototypes, developed the mechanical design, and worked through iterations to balance power and versatility. This included many iterations of universal motor speed control, which is a very finnicky thing to get right. Hardware is tough, and I’ve learned a lot about design, manufacturing, and user feedback along the way.
I’ve also documented some of the process and shared technical details here: Previous HN Posts: https://news.ycombinator.com/item?id=40964411 https://news.ycombinator.com/item?id=40729528
I’d love to hear your thoughts! Whether it’s feedback on the design, technical questions, or suggestions for improvement, I’m all ears. Hardware is a journey, and I appreciate the input of the HN community to make Maestro even better.
Popularity: 2 points | 2 comments
21. Show HN: I created a system to build any MVP in 30 days
URL: https://numadic.com/build-mvp
Author: vedantkunte
Description:
Popularity: 2 points | 1 comments
22. Show HN: Another ELF Analysis Toolkit
URL: https://github.com/M3rcuryLake/Nyxelf
Author: M3rcurylake
Description: Nyxelf simplifies static and dynamic analysis of ELF binaries, enabling you to extract valuable insights effortlessly. And can be used for vulnerability assessments, unpacking, syscall tracing, and memory analysis.
Popularity: 3 points | 0 comments
23. Show HN: I built an Open source App to learn tech terms in three words
URL: https://github.com/rohitg00/threetechwords
Author: rohitghumare
Description: TechMind - "Learn Any Tech Terms in Three Words"
100% Open-Source
Try out: https://threetechwords.com
Demo: https://ghumare64.medium.com/learn-tech-in-three-words-62d4d...
GitHub: http://github.com/rohitg00/threetechwords
I would love to see your "Stats Cards"
Popularity: 2 points | 1 comments
24. Show HN: 2 min. site to write a birthday poem for your distant friend
URL: https://thebirthdaypoem.com
Author: yonatanhoran
Description:
Popularity: 1 points | 2 comments
25. Show HN: I made a TikTok for short-form videos on Reddit
Author: cezary
Description: The app uses the Reddit api, it autoplays videos and you can scroll for the next video. Routes mirror Reddit's, so /r/FunnyAnimals will pull up videos from that sub. Works on both desktop and mobile.
Built it to see if using the TikTok interface would improve watching this type of content on Reddit.
Popularity: 1 points | 2 comments
26. Show HN: I wrote a script to move my Apple Music MP3 playlists to Android
URL: https://bulmash.com/code/moving-apple-music-mp3-playlists-to-android/
Author: burgerguyg
Description:
Popularity: 3 points | 0 comments
27. Show HN: HN-Daily Podcast – Recapping Last 24 Hours Top Stories
URL: https://hackernews-daily.thepodcastcollective.com/
Author: rolandpeelen
Description: Hey HN!
Started out with an idea over the holidays to start building a system that creates daily digests of content I follow as a podcast, such that I can listen to it when commuting.
The first one is one that takes the top articles of HN in the last 24 hours and builds them into a podcast. It took forever to tweak it in such a way that it doesn't sound 100% AI, isn't too sensational, but also not extremely boring. I've been tweaking over the past weeks to get it just right and I'm pretty happy with what comes out of it now. I've just submitted / got them all up and running on Spotify and Apple Podcasts and so kind of - launching it?
- Apple Podcasts link: https://podcasts.apple.com/us/podcast/hackernews-daily/id179...
- Spotify Link: https://open.spotify.com/show/6WQFgIvfC2NiMCFRINre5P?si=3f71...
I have some future ideas that would make this even better for me
- Build more shows like this (next is probably a daily digest of news in and around Amsterdam - as I live there). Possibly in such a way that you could create a tailor made podcast. Like, 3 HN articles, Weather in Amsterdam, and 2 Amsterdam news articles, or something like that.
- Build some integrations, so it can be a bit more personal. Like, my current location for the weather, or maybe even my calendar for a personalized intro message.
Would love to hear your questions, thoughts, ideas, and things that can be improved!
Little Thread on X with some more info on how I built it: https://x.com/rolandpeelen/status/1879261341476942010
Popularity: 3 points | 0 comments
28. Show HN: Finbud.ai – The AI-Powered Stock Research Platform
URL: https://finbud.ai
Author: glaksmono
Description: The key value propositions:
1. Dive deep into any company’s performance with AI-driven insights and 10+ years of historical market data.
2. Quickly slice and dice key metrics, unlock advanced analysis, and discover actionable investment opportunities.
3. Technical analysis on any companies or crypto
- For crypto, you'll need to append USD to the ticker (e.g. BTCUSD, PEPEUSD, etc)
The interesting prompts (that are not in the suggested prompts): What's a good entry and exit point for NVDA for day trade
----As an engineer, I’ve always been fascinated by the blend of art and science in investing. This inspired me to create FinBud.ai, a tool that leverages AI to make stock research simpler and more accessible.
I know FinBud.ai could be a lot better with access to higher-quality datasets, but those can get pretty pricey!
Still, I wanted to get it out there early so I can build and improve it alongside our users. Discord is open.
Popularity: 1 points | 2 comments
29. Show HN: ParaGopher, a retro-style arcade game inspired by Paratrooper (1982)
URL: https://github.com/ystepanoff/ParaGopher
Author: ystepanoff
Description:
Popularity: 1 points | 1 comments
30. Show HN: Lost 2 years so I built a tool to validate ideas
URL: https://www.founderodyssey.com/
Author: 0xreskue
Description: After 5 years of entrepreneurship, I realized I spent around 2 years building products nobody wants , so I decided to build a product to help founders validate their product ideas.
I spent the last month building it and it's called FounderOdyssey.
The platform is focused on 1 goal : provide evidences of your product and business potential, with the help of useful validation tools like the Market size analyser, Reddit analyser, or Persona/interview generator.
- Follow a structured validation pattern
- Collect evidences along the project phases
- Be challenged and helped by an AI validation companion
Would love to hear your thoughts about that :)
Popularity: 2 points | 0 comments
31. Show HN: Better prompt
Author: slaily
Description: I got frustrated watching everyone focus on fancy AI frameworks while basic prompts were failing.
After spending months writing prompts, I realized that many of them were ineffective—often due to unclear instructions, missing edge cases, and ambiguous language.
Built this tool that transforms vague prompts into clearer, more effective prompts, leading to better results from large language models (LLMs).
Just input your original prompt, and the tool will give you an improved prompt version.
Popularity: 2 points | 0 comments
32. Show HN: Rednote Might Just Help You Find Your Happiness
Author: Ryyy2818
Description: There have been rumors that TikTok might face a ban soon. For many who enjoy sharing and watching short videos, this is certainly concerning news. But don't worry! We’ve found the perfect alternative for you—Rednote App!
Rednote is an innovative short video platform that’s not only easy to use but also allows you to interact with a global community while sharing your creativity. Here are a few reasons why you should download Rednote today:
Unlimited Creativity: Rednote offers a variety of editing tools to help you create more imaginative videos. Safe and Reliable: The platform prioritizes user privacy and data security, so you can use it with peace of mind. A New Community Experience: Meet new people and discover creators who share your interests. Seamless Transition: Easy to get started with a design and user experience similar to TikTok. Rather than worrying about TikTok’s future, take action now and explore the exciting world of Rednote!
Popularity: 2 points | 0 comments
33. Show HN: I built a font to image generator in 3 hours
Author: vednig
Description:
Popularity: 2 points | 0 comments
34. Show HN: Create 3D models from images
URL: #
Author: 2bit
Description: Hi HN, I’ve been working on a tool that makes 3D model creation simple. Upload one or more images, make a few variations, and generate a 3D model for animation, rendering, or 3D printing.
Any feedback, feature suggestions, or bug reports are greatly appreciated!
Popularity: 2 points | 0 comments
35. Show HN: Color Flood, Try and Beat BFS and Greedy Algorithms
URL: https://www.playcolorflood.com/
Author: EntreEden
Description:
Popularity: 2 points | 0 comments
36. Show HN: Using AI to Help Our Doctors with Fertility
URL: https://raynbowbaby.com/?couple_id=Qo75Aw
Author: guiporto
Description: My wife and I have been trying to conceive for years, so I built a project that open-sources our entire fertility journey—test results, surgeries, medication lists, Creighton Model data, and more. With AI analyzing ~100 fertility factors, I've been able to have better conversations with our doctors. I'd love to hear your thoughts or suggestions!
Popularity: 1 points | 1 comments
37. Show HN: GitInsight – Quick stats and AI roasts of your GitHub
URL: https://gitinsight.kunalb.dev/
Author: Kunal_458
Description: I was initially working on a beginner backend project on roadmap.sh to sharpen my skills. This was essentially showing an aggregated view of your GitHub activity on the CLI.
I thought, if I'm getting all the data anyway, then why not feed it to a LLM and make it roast people in multiple ways?
GitInsight shows event counts per repo and gives AI powered feedback (roasts) after ingesting all your recent commits, PRs, issues and comments along with their messages.
Please do let me know how you find it and I'm always open to feature requests!
Popularity: 2 points | 0 comments
38. Show HN: Ambrogia – Personal Health AI
URL: https://ambrogia.bio
Author: tshepom
Description:
Popularity: 1 points | 1 comments
39. Show HN: LLMpeg
URL: https://github.com/jjcm/llmpeg
Author: jjcm
Description: Inspired by the "ffmpeg by examples" comments, here's a simple script that pulls it all together. Set your OpenAI API key env var and make the script executable, and you're golden.
Popularity: 2 points | 0 comments
40. Show HN: Faangshui – Coding Interview Prep as a Quest
URL: https://faangshui.com/books/foundations/chapters/accumulators/lessons/the-art-of-accumulation
Author: nurbo
Description: I've helped many folks prepare for their coding interviews and I have noticed there is a shortage of beginner-friendly problems and explanations. This is my attempt to fill that gap. Would appreciate your feedback!
Popularity: 1 points | 0 comments
41. Show HN: Open-Source AI Resume Parser
URL: https://github.com/orasik/resume-parser
Author: Oras
Description: I wanted a resume parsing service that is cheap, flexible, and scalable without committing to monthly subscriptions. I couldn't find one, so I built one.
Resume parsing is expensive and requires monthly fees. For low volume, it can cost around $0.10 per resume. Using this API, the cost is at least 100x cheaper with no monthly commitment.
Popularity: 1 points | 0 comments
42. Show HN: Video Text Recognizer
URL: https://chromewebstore.google.com/detail/video-recognize-text/dlpaepibalnmgdoepkeoffoegmlnhacl
Author: vaskaroman
Description: I made a chrome extension to recognize texts from youtube videos
Popularity: 1 points | 0 comments
43. Show HN: AQEA – AI-Powered Test Case Generation Tool
URL: https://github.com/OuteniquaStudios/aqea
Author: jonoinorbit
Description: In Agile development, QA is often an afterthought, leading to rushed testing and lower-quality deliverables. AQEA changes this by integrating QA early into the SDLC.
- Can generate test cases directly from JSON files (exported Jira tickets) during planning meetings.
- CLI for CI/CD integration
- Built entirely for local LLMs, ensuring privacy and security.
I'd love feedback, contributions, and suggestions! How would you use this in your Agile workflows?
Popularity: 1 points | 0 comments
44. Show HN: PgDog, Load Balancer for PostgreSQL
URL: https://github.com/levkk/pgdog
Author: levkk
Description: Hi HN,
Another month on sabbatical, another Rust project for y'all to have fun with. This time, I decided to write a load balancer for PostgreSQL. It's called pgDog, and it's everything I learned about running Postgres at scale, in form of software.
pgDog can proxy hundreds of databases, split traffic between primaries and replicas, and reroute queries around hosts experiencing problems, like hardware failure. It speaks Postgres, so much like pgbouncer, and its "spiritual predecessor", PgCat, it can pool transactions and allow tens of thousands of clients to use one database.
Support for more exciting features like sharding is on the roadmap, and with its very own plugin system, pgDog can be customized to arbitrarily send queries to any database in its configuration (or even block queries and return custom results). The plugins are shared libraries loaded at runtime, so they can be written in any language that can expose a C ABI, e.g. Rust, C++, Zig, Java, Go, Ruby, Python, etc.
Documentation is on https://pgdog.dev. The project is of course free and open source software.
Cheers!
P.S. It's still early days, so if you decide to give pgDog a try in your infra, do run a few load tests first!
Popularity: 1 points | 0 comments
45. Show HN: I built an Open source App to learn tech terms in three words
URL: https://threetechwords.com/
Author: rohitghumare
Description: TechMind - "Learn Any Tech Terms in Three Words"
100% Open-Source
Try out: https://threetechwords.com
Demo: https://ghumare64.medium.com/learn-tech-in-three-words-62d4d...
GitHub: http://github.com/rohitg00/threetechwords
I would love to see your "Stats Cards"
Popularity: 1 points | 0 comments
46. Show HN: The easiest way to develop, deploy, and debug cloud apps
URL: https://defang.io/
Author: mliezun
Description:
Popularity: 1 points | 0 comments
47. Show HN: Custom AI cost and usage tracking
URL: https://llmeter.app/
Author: dr_terapeut
Description: Hi guys,
Developed firstly for my own needs since I’m using few models for content/social fully runned web https://pethood.io
(Looking investor for making saas out of that ai powered app)
It has free tier so check it out maybe you’ll find it interested for investment since there is a lot to be done yet.
Popularity: 1 points | 0 comments
48. Show HN: I created a platform to practice for your next tech interview
Author: vermaabhishek39
Description: Hey Folks,
Launching the public beta for Dobr.AI here!
Problem
There are 100 platforms to grind coding problems. But there are no platforms to practice for tech interviews. There are so many new platforms popping up for AI based interviews, but all of them are either too basic or basically a ChatGPT wrapper.
Solution
Dobr.AI is a AI powered interview environment that simulates the FAANG style interviews and allows you to practice for your upcoming interview in a realistic setting, with real-time feedback. It's built by professionals (xFAANG with years of interviewer experience).
Status
Currently it supports Coding and LLD (Machine coding) interviews. I'm adding HLD (System Design) interviews in coming weeks. And so many more interview formats in the coming months.
Popularity: 1 points | 0 comments
49. Show HN: Free no-code Discord bot maker
URL: https://kite.onl
Author: merl1n
Description: Hi HN!
I launched kite.onl, an open source no-code Discord bot maker.
It's designed to be easy to understand and powerful at the same time. With support for custom commands, event listeners, buttons, and modals it can already compete with the paid alternatives.
Popularity: 1 points | 0 comments
50. Show HN: Open Source Text2Question AI Generator: Create Quizzes from Any Text
URL: https://github.com/Miguel07Alm/text2question
Author: Miguel07Code
Description:
Popularity: 1 points | 0 comments
51. Show HN: Leaderboard.fun
URL: https://www.leaderboard.fun/
Author: moritzmoritz21
Description: Hey HN!
We launched leaderboard.fun, where the user can create leaderboards and keep track of the scores and ranking. It should be as simple as possible.
You simply create an account and boards with the names of players. You can share the board with a public link. The public boards are updating real time.
If you have any feedback let us know. We have many things planned. The next big thing is a mobile app in the app stores.
Popularity: 1 points | 0 comments
52. Show HN: I created a science-based workout tracker for iOS
URL: https://github.com/khaneja/fitwise
Author: khaneja
Description:
Popularity: 1 points | 0 comments
53. Show HN: RedNote Landing Page
Author: howardV
Description: Hi HN! I built a landing page (https://red-note.info) for RedNote, a popular content sharing platform. Tech Stack: Next.js 13 with TypeScript Tailwind CSS for styling Shadcn/UI components Optimized for performance and SEO Google Analytics integration Key features of the landing page: Responsive design that works across all devices Fast loading times with static site generation Clean, minimalist UI that highlights the app's features SEO optimized with proper meta tags and sitemap Accessibility focused The site aims to effectively communicate RedNote's key features: Easy app download and account creation process Content discovery and exploration Community engagement features Content creation tools I focused on creating a professional, performant landing page that clearly presents the app's value proposition while maintaining excellent technical standards. Would love feedback on:
- Page load performance
- Mobile responsiveness
- Content clarity and organization
- Overall design aesthetics Live site: https://red-note.info Looking forward to your thoughts and suggestions!
Popularity: 1 points | 0 comments
54. Show HN: Micro Graph Database for Python Applications
URL: https://cogdb.io/
Author: arun1729
Description:
Popularity: 1 points | 0 comments
55. Show HN: Compare Price for HDD, SSD, NAS and More
URL: https://www.bestdiskprices.com/
Author: toutoulliou
Description: Hey everyone! My name is Toutoulliou, and I’m a beginner developer passionate about building websites. To practice and improve my skills, I decided to take on a real-world project: a price comparison tool for tech products like SSDs, HDDs, NAS devices, Micro SD cards, USB drives, and more. I used Django for the backend, TailwindCSS and Flowbite for the design, and even managed the deployment myself using Docker. It was a real challenge, but so rewarding!
My website pulls data from eBay and AliExpress APIs to bring you the best deals on the market. And here’s some exciting news: integration with Amazon is in the works! The goal? To help you find the most competitive prices in just a few clicks, whether you’re looking for a high-performance SSD, a high-capacity HDD, or a Micro SD card for your camera.
In addition to the price comparison tool, I’ve added a RAID calculator to help you determine the ideal configuration based on your storage and data security needs. This is just the first step toward a suite of practical tools that I plan to expand over time.
This website is first and foremost a learning journey for me. Every line of code, every feature added is a new step in my development path. If you have suggestions or ideas for tools to integrate, feel free to share them with me!
Let me know what you think!
Popularity: 1 points | 0 comments
56. Show HN: Match HN Comments to Posts
URL: https://hn-matching-pairs.web.app/
Author: carltheperson
Description: This is my HN comment-to-post guesser game.
I posted this back in 2022. It didn’t get much buzz, so I’m posting it again. :)
I use it myself almost daily as a sort of Wordle alternative.
It’s written with SolidJS, and I remember spending quite a while on the animations.
I polished it primarily for mobile interaction.
Let me know how many flips you get!
Popularity: 1 points | 0 comments
57. Show HN: x86 Linux executable running in a Web browser with blink and exaequOS
URL: https://www.exaequos.com/
Author: baudaux
Description: Open terminal and type: blink /usr/bin/x86_64/nano
Popularity: 1 points | 0 comments
58. Show HN: Adversarial voice agents to test your voice system
URL: https://labyrinth.io/agent-demo
Author: AIOdyssey
Description: Wanted to show a cool demo on voice agents to give a taste of what we're building!
Labyrinth is a voice agents testing and simulation platform to help you reliably develop and improve the quality of your voice agents. One of our key features is the ability to create adversarial agents, which can be randomly generated to personify scenarios with your use case, or grounded off of real transcripts, and run in simulations against your own voice agent to produce synthetic conversations.
In this demo, you can get a feel for how these work, and have a manual phone conversation with some agents. Pick one of our preset scenarios or choose your own!
Let me know if you have any feedback, or if you are building voice agents and interested in testing.
Popularity: 1 points | 0 comments
59. Show HN: I made an AI Agent Framework for building Dockerized RAG AI Agents
URL: https://kdeps.com
Author: jjuliano
Description:
Popularity: 1 points | 0 comments
60. Show HN: People told me I couldn't build a no-code app that scales, so I did
URL: https://inspiro-share.vercel.app/
Author: westche2222
Description:
Popularity: 1 points | 0 comments
61. Show HN: Python-Lotion – A Lightweight Wrapper for Notion API (Beta)
URL: https://github.com/koboriakira/python-lotion
Author: koboriakira
Description: Hi HN,
I’ve started building Python-Lotion, a lightweight Python wrapper for the Notion API.
This project is currently in beta and still a work in progress. The main idea is to provide a simpler and more streamlined way to interact with the Notion API, building on top of the popular notion-client library. • GitHub: https://github.com/koboriakira/python-lotion • Why I built this: I wanted a cleaner, more intuitive interface for my own projects, and thought it might help others too. • What’s next: • Enhancing the documentation to make it more comprehensive and user-friendly. • Expanding functionality for managing blocks within pages, such as creating, updating, and organizing them more effectively. • Feedback: As this is still under development, I’d love to hear your thoughts, suggestions, or use cases that could guide future improvements!
Thanks for checking it out.
Popularity: 1 points | 0 comments
62. Show HN: An Agentic AI dataset for deepfake detection
URL: https://huggingface.co/datasets/ninamoss/sleeetview_agentic_ai_dataset
Author: ninamoss
Description: Hi HN!
Really excited for our first dataset release. We're co-founders at Mendit.ai, a small startup in the PNW, we focus on customized and explainable AI models. One thing we noticed as we were building our first product was the need for a curated dataset with diverse resolutions, lighting conditions and scenarios resembling mundane, everyday depictions of characters and objects.
We tried a number of agentic ai frameworks and landed on our own lightweight implementation that first identifies the content properties that are relevant for the use case defined in the prompt and then randomly generates content based on those properties.
An interesting takeaway from our experiments is that the latest LLMs that include reasoning in their response tend to generate noisier outputs than instruction tuned LLMs that generate the output without an in depth plan and explanation.
The dataset can be found on huggingface at: https://huggingface.co/datasets/ninamoss/sleeetview_agentic_...
Keep in mind this is only a first sample, we intend to add new content to the dataset based on community feedback on a regular basis.
Looking forward to any feedback, pointers or insights!
Popularity: 1 points | 0 comments
63. Show HN: Recursively apply patterns for pathfinding (algorithm)
Author: seveibar
Description:
Popularity: 1 points | 0 comments
64. Show HN: Laravel AI Code Analysis – Automated AST Parsing and OpenAI-Driven Docs
URL: https://github.com/wallter/laravel-ai-code-analysis
Author: wallter
Description:
Popularity: 1 points | 0 comments
65. Show HN: Explore IPEDS data with NLU interface
Author: bdod6
Description: Free for anyone with .edu or .org email address. Or request access if you'd like to try.
Popularity: 1 points | 0 comments
66. Show HN: An Android app that scans your Obsidian notes to set reminders
URL: https://play.google.com/store/apps/details?id=com.notifian&hl=en
Author: perite
Description: I'm an on and off Obsidian user who recently came back to Obsidian again. As flexible as the app is, one thing it can't do is set notifications on mobile devices. The feature seemed to be in demand on forums, reddit, etc but it's not on the Obsidian roadmap. So I figured I'd create a free app to set notifications from your Obsidian notes!
It's called Notifian and it's a "companion app" for the Obsidian Android app. It scans your Obsidian vault folder and identifies reminder properties in your notes to set:
- An initial reminder date/time
- (optional) A recurring schedule for reminders
- (optional) A "stop on" date/time, to stop scheduling reminders
It runs these scans in the background on a recurring interval and, as a bonus, it also has support for the Obsidian "tasks" plugin's task format!
The app just got out of closed testing and onto the play store, so I'd love to get more feedback on it now that it's released!
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