-->
Explore the hottest developer projects on Show HN for 2024-10-12. Dive into innovative tech, AI applications, and exciting new inventions!
Today’s highlights include a collection of innovative projects shared on HN. Notable mentions are “IF,” a free Typora alternative, and “NeoX Love Guru,” an AI-driven dApp for relationship advice. Developers introduced a variety of tools, such as an audio streaming library, a static site generator in Rust, and a no-code popup generator for websites. Additionally, the “Sendsheets” tool facilitates personalized email sending via Google Sheets, while “Kalla.app” brings fun to Strava activity descriptions. Noteworthy feedback and suggestions are encouraged on all projects as creators seek community input.
Author: matrixages
Description:
Popularity: 11 points | 57 comments
Author: techFFF
Description: Please Vote us! NeoX Love Guru is a cutting-edge decentralized application (dApp) that leverages the power of artificial intelligence and blockchain technology to provide personalized relationship advice. Built on the NeoX platform, our project offers users access to a diverse panel of AI-powered love gurus, each with unique perspectives and expertise. https://github.com/foxmoon/neoxloveguru
Popularity: 1 points | 1 comments
URL: https://github.com/Elijah-Bodden/Membrane
Author: neverknowing
Description:
Popularity: 6 points | 0 comments
URL: https://cmind.buzzchat.site
Author: fredabila
Description: People often ask me questions because they realize that I’m so good in tech and have everything figures out. They actually never realize that everything and every knowledge i have is sourced from the internet and achievable if they research too. Sometimes researching and finding what you’re searching for is hard especially when you don’t know how to go about it. Maybe that’s not exactly why I built CMTA (Creative Minds Think Alike) but i think of it as a resource centre that will give people access to tools to help them achieve exactly what they want.
I believe in Creativity and i believe with a little push, we can get things done. Here’s my gift to the world. Let’s make this happen
Popularity: 1 points | 0 comments
URL: https://appdistribution.firebase.google.com/pub/i/b5fcc0c2831c13f1
Author: odinize
Description: Hi everyone,
We are looking for beta testers on Android now to provide us with honest feedback on our app idea. The Android preview is brand new, so kindly give it a try.
The app allows users to generate comprehensive courses on any topic they would like to learn in any style they prefer. It will also feature a community to browse / share courses and bite-sized daily knowledge for any topic the user is interested in. A chatbot helps with questions during a course.
This (actually alpha) version provides the core feature of course generation only, while the full version will feature the above functionalities. In this limited scope you will be able to go back to a previously generated course (if any) to type in “Prev” in the topic field and hitting “Continue”. We highly encourage you to provide us with feedback via this thread or any other communication channel. You can also visit our website at https://odinize.app where you can find more information.
Thank you in advance and happy learning!
Popularity: 2 points | 0 comments
URL: #
Author: GTCHO
Description: Lexachrom Analytical Laboratory LLC and iAnthus Check it out: https://lnkd.in/eP9udDkN How We’re Helping Pharmacists Interpret Reports: In the complex world of pharmaceuticals, understanding lab reports is crucial for effective decision-making. Our LabFlow platform is designed to simplify this process for pharmacists by providing:
Clear Visualizations: We transform raw data into intuitive graphs and charts, making it easier for pharmacists to identify trends and key metrics at a glance.
Interpretation Guidelines: Each report comes with contextual explanations and interpretation tips, helping pharmacists understand what the data means for patient care and treatment decisions.
Interactive Features: Our platform allows pharmacists to interact with the data directly, offering the ability to filter results and explore different scenarios based on their specific needs.
Educational Resources: We provide supplementary materials and resources to help pharmacists stay informed about best practices in lab analysis and report interpretation.
By streamlining the report interpretation process, we empower pharmacists to make informed, data-driven decisions that enhance patient outcomes. Together, we are advancing the field of pharmacy through innovation and collaboration!
Popularity: 1 points | 1 comments
URL: https://aoo.iem.sh/
Author: spacechild1
Description: AOO is a lightweight and flexible peer-to-peer audio streaming and messaging solution. It allows to send audio and messages in real-time and on demand between network endpoints - not only in local networks, but also over the public internet!
The C/C++ library can be easily embedded in host applications or plugins. It even runs on embedded devices, such as the ESP32. In addition, the project contains a Pure Data external and a SuperCollider extension.
The following article provides a high level introduction and demonstrates some use cases: https://www.soundingfuture.com/en/article/aoo-low-latency-pe…
AOO has been in development since 2020 and it has been used in several art projects since. Now it has finally reached a stage where I feel comfortable presenting it to a larger public.
This is still a pre-release and I want to get more feedback before making a final release, so tell me what you think!
Popularity: 74 points | 12 comments
URL: https://github.com/alloc/jumpgen
Author: aleclarsoniv
Description:
Popularity: 1 points | 1 comments
Author: hudecekdev
Description: Hello! I made a simple online text to SVG converter, mainly for my own use (I was tired of launching Inkscape for such a simple task). It supports Google fonts, font size, color, line breaks, etc. It uses OpenType.js.
I am a big fan of really simple tools, which do one thing and do it well. Hopefully this is one of them.
I’ll be happy if anyone else finds it useful.
Thanks!
Popularity: 3 points | 1 comments
URL: https://www.popuppilot.com/
Author: DividePeaks
Description: Hey Hackers,
Over the last year i’ve launched a number of small start-ups and side projects. I was able to drive traffic to these projects but when it came to converting on that traffic I struggled…
One of the best ways I found to increase conversions was to implement a popup strategy for my sites. I built PopupPilot so that I could quickly generate popups and experiment with different ideas. I have found the tool useful so I am rolling it out as a little product.
Popularity: 1 points | 1 comments
URL: https://github.com/ybouane/aPulse
Author: ybouane
Description: Hey HN, Today I’ve open sourced aPulse, a very simple server-status monitoring tool that runs through a single watcher.js file (zero dependencies).
It measures latency, runs checks on the page to ensure no errors are found and provides the information in a minimalist dashboard.
It also supports notifying you through Telegram, Discord, Slack, SMS, Email… in case of outage.
Popularity: 3 points | 0 comments
URL: https://www.tomsnyder.blog/
Author: thsnyder
Description: I turned my website into a drag-and-drop experience
It’s just my personal website and blog.
I wanted to make it interesting and more interactive than I could using a website builder.
So I coded this one myself.
The drag and drop only appears on desktop.
Anyway, I hope it makes using my website a little more fun - even if it does add a bit of friction. lol.
Popularity: 4 points | 0 comments
URL: https://github.com/feelamee/sso
Author: feelamee
Description: I wrote this just for fun when saw article about sso in Rust[1]. My string can store up to 23 (excluding null-terminator) 8-bit chars without calling allocator.
Here I can mistake, but..
Curious fact: both - libstdc++[2] and libc++[3] - do access to union member without any check that it is active now.
AFAIK, this is UB in C++. But I assume that they just rely on theirs compiler features. I tried to avoid this using std::byte[]
.
But I’m still sure that there are several UB’s in my code :)
[1] https://tunglevo.com/note/an-optimization-thats-impossible-i…
[2] https://github.com/gcc-mirror/gcc/blob/d09131eea083e80ccad60…
[3] https://github.com/llvm/llvm-project/blob/4468d58080d0502a05…
Popularity: 4 points | 2 comments
Author: motyar
Description:
Popularity: 3 points | 2 comments
URL: https://github.com/404salad/blog
Author: 404salad
Description: Source: https://github.com/404salad/blog Example of it hosted: https://404salad.github.io/blog/ I plan on fleshing this out as a project, would highly appreciate all feedback and ideas.
Popularity: 1 points | 0 comments
Author: billa_baig
Description:
Popularity: 3 points | 0 comments
URL: https://www.premstats.xyz/
Author: kj3moraes
Description:
Popularity: 2 points | 1 comments
Author: Kristjan_Retter
Description: I often found myself frustrated while looking up Firebase JavaScript SDK documentation and not finding what I needed quickly, so I decided to create this little cheat sheet. Currently, it only covers Firestore client and server-side CRUD requests. I will add new topics soon, like storage, auth, setup, and cloud functions.
Feel free to contribute it is Open source
Popularity: 1 points | 0 comments
URL: https://www.bestseomarketingtools.com/domain-finder/
Author: wbemaker
Description:
Popularity: 1 points | 0 comments
URL: #
Author: molli
Description: Code: https://github.com/moritztng/hacker-league
Everyone is welcome on our Discord: https://discord.gg/bD2saQqdTG
I build in public on X: https://x.com/moritzthuening
I love you all.
Popularity: 7 points | 1 comments
URL: https://github.com/codenickycode/create-react-spa-cloudflare
Author: drumnickydrum
Description: Hi all! I built this starter script so that with a single command you can build a React app that is ready to deploy — globally and for free — to Cloudflare. It will bootstrap a pnpm monorepo with a client side React SPA deployed to Cloudflare Pages, and a server side Hono api deployed to Cloudflare Workers with KV storage. It is also prepped for Sentry error monitoring.
I omitted some critical components like a component library and routing so people can use it with their favorite tools. If you find what’s included or omitted to be odd, or see improvements for the readmes, post an issue and we can build out the most useful version.
Popularity: 4 points | 2 comments
Author: vkccchan
Description:
Popularity: 1 points | 2 comments
URL: https://anime-pfp.com/pfp/gojo
Author: ImranK
Description:
Popularity: 1 points | 0 comments
Author: justspamjustin
Description: Dotcomsnag is a free domain discovery tool that allows you to search through 40k+ domain name alternatives to find that perfoect .COM domain for your next project
Features:
- Type in a word hit enter and you’ll be instantly presented with thousands of domain name variations on that word!
- Click on a domain name to check if it’s available!
- Magic auto-check! Automatically check all the domains on your screen as you scroll! (Unlock this feature by signing up for my Maker & Productivity Newsletter)
- Maker & Productivity Tools Newsletter: I’ll send you infrequent updates on some of my favorite recent launches related to maker & productivity tools. This will include some of my own tools that I’m working on. Unsubscribe any time!
Popularity: 1 points | 2 comments
Author: peterudokaa
Description: New feature: The task at the top of your list stays pinned as you go to other browsers / windows
Prioritize your tasks and boost productivity with our free, no-account-needed Eisenhower Matrix. Break tasks into manageable subtasks and focus on what truly matters—getting more done, stress-free.
(more features included with lifetime deal).
Popularity: 1 points | 0 comments
URL: https://github.com/walkersumida/alfredworkflow-to-open-in-notion-app
Author: walkersumida
Description:
Popularity: 1 points | 0 comments
URL: https://github.com/devcontainer-community/shell-snippets
Author: sebst
Description:
Popularity: 2 points | 0 comments
URL: https://poesia.pics/
Author: krthr
Description: Hey! I love poetry and develop this small app that generates poems from images/photographies. You can also pick diff moods to influence the style of the poem.
Stack used: node (adonisjs) + sqlite
Popularity: 2 points | 2 comments
URL: https://kalla.app
Author: cybrjoe
Description: A few weeks ago I decided hack together an idea I had for automatically naming and describing my activities on Strava. A few weekend late nights later, I taught myself Vue and created kalla.app. It looks at your recent activity, your photos on your workout and even your route to generate serious, sarcastic or vibe-y descriptions.
This was all before Strava released there take, but I have some ideas for where I’d like to take some more features, so I’m pushing forward. Let me know what you’d like to see in a Strava coach!
Popularity: 4 points | 1 comments
URL: https://www.freecivx.net/
Author: roschdal
Description:
Popularity: 5 points | 1 comments
URL: https://kappmaker.com/app-ideas
Author: mirzemehdi
Description: Hey HN!
I’d like to share a side project I’ve been working on called AppIdeaHub. It’s a free tool that helps you find creative, niche-specific app ideas using AI. As a developer, I often struggle with deciding what to build next, so I created this tool to help others facing the same challenge.
No sign-up is needed—just a simple way to discover a list of ideas or shuffle for random suggestions. Each app idea includes details on development costs, potential earnings, and suggested business models.
I’d love to hear your feedback and suggestions!
Popularity: 2 points | 0 comments
URL: https://github.com/dhenry123/utdon
Author: dhenry123
Description: Self-hosted web application to monitor the obsolescence of your FOSS applications in production. UptoDateOrNot ???
Popularity: 1 points | 0 comments
URL: https://github.com/flashblaze/map
Author: FlashBlaze
Description: I wanted to play around Astro, Cloudflare Pages, Turso and Drizzle. So I made an extremely simple app to show where the visitor is from using Cloudflare location headers.
You can check it here: https://map.flashblaze.dev/
Popularity: 1 points | 0 comments
Author: tonyljx66
Description: Flux 1.1 Pro is a State of the Art Flux Model. It is a breakthrough text-to-image AI model redefining the possibilities of generative AI with its exceptional image quality, precise prompt adherence, and stunning output diversity. I have used this model to create logo and images for design. You can try out this model for free!
Popularity: 2 points | 0 comments
Author: coolastekatten
Description: hey y’all!
i’m a product leader and previous startup founder, so i send a ton of emails.
most businesses rely on google sheets as their backbone, but no tools make it easy to use sheets as a database for emails. most solutions either try to move you off sheets or are just clunky mail merge tools.
so sendsheets:
a few main use cases currently:
i use it all the time, specifically for the 20-50 recipients target
please give it a spin
Popularity: 19 points | 10 comments
URL: https://usdtqrtool.com/api-docs
Author: moonbay42
Description: As developers, we often need quick access to QR codes for cryptocurrency addresses. I’ve created a tool that generates and displays USDT QR codes directly in your terminal, eliminating the need for image-based QR codes.
Key features:
2. Simple API: Just use a curl command to get the QR code.
3. Browser support: View QR codes in your browser by replacing the address in the URL.
4. Privacy-focused: No data collection or storage.
5. Versatile: Supports ERC-20, TRC-20, BEP-20, BEP-2, Omni, and SOL networks.
How to use:
curl <a href="https://usdtqrtool.com/t/:address" rel="nofollow">https://usdtqrtool.com/t/:address</a>
<a href="https://usdtqrtool.com/g/:address" rel="nofollow">https://usdtqrtool.com/g/:address</a>
Replace :address
with your USDT address.
Example: curl <a href="https://usdtqrtool.com/t/0xdAC17F958D2ee523a2206206994597C13D831ec7" rel="nofollow">https://usdtqrtool.com/t/0xdAC17F958D2ee523a2206206994597C13...</a>
For more detailed information, you can refer to the complete user guide at: [USDT QR Code Terminal Generator: Complete User Guide](https://usdtqrtool.com/blog/usdt-qr-code-terminal-generator-…)
Try it out and let me know what you think! I’m open to feedback and suggestions for improvement.
Project link: [https://usdtqrtool.com/api-docs](https://usdtqrtool.com/api-…
In addition to the address checker, the website offers other useful USDT tools:
- [USDT QR Code Generator](https://usdtqrtool.com): Generate QR codes for USDT addresses for easy transfers.
- [USDT Converter](https://usdtqrtool.com/converter): Convert and calculate USDT to other currencies easily.
- [Random Coin Generator](https://usdtqrtool.com/random-coin): Generate random cryptocurrency addresses and private keys.
- [Top 100 Crypto Exchanges](https://usdtqrtool.com/top-crypto-exchanges): View information on the top 100 cryptocurrency exchanges.
- [USDT QR Code API](https://usdtqrtool.com/api-docs): API documentation for displaying USDT QR codes in terminal.
- [Detect Blockchain Explorer](https://usdtqrtool.com/detect-blockchain-explorer): Automatically detect and explore blockchain addresses across multiple networks.
All these tools are free and designed to provide a comprehensive online toolkit for USDT users.
Popularity: 1 points | 0 comments
URL: https://github.com/qiangyt/batchai
Author: qiangyt
Description: I often rely on ChatGPT and GitHub Copilot, but it is a little bit frustrating to constantly copy and paste between the copilot chat window and my open code files. Why not update the files directly? I also tried using Cursor, which solved the first problem, but still have to open each file individually to add them to the AI’s context.
That’s why I created batchai. The idea is simple: less copy-pasting, fewer clicks on ‘Add to Chat’ or ‘Apply.’ batchai traverses files and processing each of them. Since AI isn’t always perfect, I’ve designed it to run only on a Git directory, so we can easily diff the changes and choose to either commit or revert them.
Currently, batchai only supports code review and fixing common issues (think of it as a local AI-driven SonarQube). The next feature in progress is generating unit test code in batches, which I plan to use in a few of my personal projects (including this batchai), as they have very few unit tests. Other planned features include code explanation, comment generation, and refactoring — all of which will be handled in batches. Additionally, I’m working on enabling batchai to have an overall insight of the project’s code, such as building cross-file code symbol indexing, which should help the AI perform better.
Here are some interesting findings from testing batchai on my personal projects over the past two weeks:
It can identify issues that traditional tools, such as SonarQube, tend to miss.
It may not report all issues in one go, so I need to run it multiple times.
Due to outdated LLM training data and hallucinations, it’s crucial to confirm the changes for accuracy by myself - That’s why I make batchai work only on clean Git repository directories.
Popularity: 1 points | 0 comments
URL: https://chromewebstore.google.com/detail/mailinator-generator/ekpijhgaagcmdgiccnhbgkllefolplkj
Author: mattheld
Description: Hey HN!
I just released Mailinator Generator, a lightweight Chrome extension that makes it easy to generate and use temporary Mailinator email addresses. It’s designed to protect your primary inbox from spam when signing up for websites, coupon codes, newsletters, or free trials.
Features:
- Keeps track of where the emails were used (URLs), so you can easily revisit those sites.
- One-click access to Mailinator inboxes for each email.
- No data collection or third-party tracking—everything runs locally in your browser.
- If you’re like me and use throwaway email addresses to avoid spam, this extension could save you time!
Also on GitHub: https://github.com/MazeWebArchitect/mailinator-generator-chr…
Happy to hear your feedback and suggestions!
Popularity: 3 points | 4 comments
URL: https://www.locomotive.it.com/
Author: sergio_2024
Description: Hey HN,
I’ve made a Ruby on Rails SaaS template after 2 months of coding, as a 16 year old student.
it has:
And more!
Popularity: 1 points | 0 comments
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