Tuesday, 3 December 2024

Show HN: A 5th order motion planner with PH spline blending, written in Ada https://bit.ly/49k5MVA

Show HN: A 5th order motion planner with PH spline blending, written in Ada https://bit.ly/3ZAeoUx December 4, 2024 at 07:25AM

Show HN: Belief.garden – a social network for civil discussion https://bit.ly/3BcRQjq

Show HN: Belief.garden – a social network for civil discussion Hi! Initially, belief.garden was a questionnaire on various civil discussion and philosophical topics, where one could create a profile. I made this site a few months ago, and today I added public discussions, notifications, a global activity feed, and a moderation system, which actually makes it a social network. Please take a look and tell me what you think https://bit.ly/49jR8xy December 4, 2024 at 04:16AM

Monday, 2 December 2024

Show HN: Yeet a cube, an example of AI-powered UX https://bit.ly/4fUye2O

Show HN: Yeet a cube, an example of AI-powered UX A web app that lets you yeet a cube with a natural language request rather than by pressing a button. The code is available at https://bit.ly/3D7xVD1 The AI part is done as a plugin that defines the yeet function and is uploaded to asterai.io which hosts the AI agent. Messages are received in the front-end and decoded with protobuf. Once the yeet request is identified a function is called to yeet the cube with three.js. So this example is serverless (hosted on vercel and asterai for the AI agent), meaning there's no need to manage any server code to implement AI-powered UX use cases such as this (very important) one. https://bit.ly/4gc4xtE December 3, 2024 at 04:18AM

Show HN: Book and change flights with one email https://bit.ly/4fUVeyq

Show HN: Book and change flights with one email Hi there, TLDR; I built an inbox simulator so you can try BonBook in 15s, without sharing your email. Earlier this year I was flying 2-3 times per month and found booking and changing flights a hassle. So I decided to fix it. BonBook lets you find, book and change flights with one email. It can also auto-find flights for events you’re attending. Over the last few days, I built a simulator that lets you interact with BonBook without sharing your email. It responds with real flights and each response includes a link to compare w/ Google. https://bit.ly/3OzEvEW December 3, 2024 at 03:31AM

Show HN: Copper – Open-Source Robotics in Rust with Deterministic Log Replay https://bit.ly/4ggAO2N

Show HN: Copper – Open-Source Robotics in Rust with Deterministic Log Replay https://bit.ly/4gfOET1 December 3, 2024 at 01:58AM

Show HN: Open-sourced (road) traffic counting application https://bit.ly/41l3C6d

Show HN: Open-sourced (road) traffic counting application I was developing/selling this application under Roadometry, but sales are getting slow and I'd prefer to make it available for free. This is a desktop Windows application which can be used for counting road traffic. https://bit.ly/3AWXXbK https://www.youtube.com/@roadometry2011 The application uses Multiple Hypothesis Tracking (MHT) combined with Darknet Yolo. I trained the network myself. I have a tool-chain for building a video-based training set including associations, but it's quite complex to use. I never ended up training a network to perform association, but I think a combined detector/associator network is the next step. https://bit.ly/4fWVuNy December 2, 2024 at 11:53PM

Sunday, 1 December 2024

Show HN: Steel.dev – An open-source browser API for AI agents and apps https://bit.ly/4gg2LaP

Show HN: Steel.dev – An open-source browser API for AI agents and apps https://bit.ly/3AUGdOc November 26, 2024 at 02:34PM

Show HN: Spacebar Clicker https://bit.ly/4eTgR0T

Show HN: Spacebar Clicker The best tool to improve typing speed and reaction time https://bit.ly/3ZxaeNw December 1, 2024 at 07:08AM

Saturday, 30 November 2024

Show HN: Letmecheckyour.site – AI tool to audit your content and provide tips https://bit.ly/3B8iIRO

Show HN: Letmecheckyour.site – AI tool to audit your content and provide tips https://bit.ly/3CPFhuN December 1, 2024 at 02:28AM

Show HN: DailyPings – Like HN, but for maker's daily progress https://bit.ly/3ZxwtTa

Show HN: DailyPings – Like HN, but for maker's daily progress DailyPings ( https://bit.ly/41hCRQ5 ) is a HN-inspired platform where makers share their daily progress. Key features: - Three posts per day limit to encourage quality updates - HN-style upvote system - No comments, just pure progress sharing - Email verification Tech stack: - Next.js 15 App Router - TypeScript - Prisma ORM - PostgreSQL - NextAuth.js - Tailwind CSS - Geist Mono font - Deployed on Coolify The idea came from wanting a distraction-free space for makers to share their daily progress, similar to how HN works for tech news. The three posts per day limit is intentional - it encourages users to share their most meaningful updates rather than constant micro-updates. I'd love to get feedback from the HN community, especially on: 1. The minimalist approach 2. The daily post limit concept 3. Future features you'd like to see This is my first Show HN. The platform is live and ready for users. https://bit.ly/41hCRQ5 December 1, 2024 at 01:18AM

Friday, 29 November 2024

Show HN: Gogo installs your shell tools https://bit.ly/49e2jro

Show HN: Gogo installs your shell tools Trying to be as friction-less as possible, allowing you go quickly gather your favorite command-line tools in a new environment. And keep them updated too. This is an open-source, personal project, hope someone else finds it useful. https://bit.ly/49e2jYq November 30, 2024 at 12:40AM

Show HN: It took me 5() months to build a Plausible alternative https://bit.ly/41a0HNy

Show HN: It took me 5() months to build a Plausible alternative After months of using Google Analytics I realized only about 50% of people accepted my cookie-popup. I had months of incorrect data for my website. I started looking for alternatives and eventually found Plausible, which is great (and open-source). Problem is, I didn't feel like paying 9$ a month to see the amount of visitors on a website i didn't even earn anything on, it was just a hobby project. Eventually I started making my own web analytics. Which actually isn't that hard. It took me about a month of working on my spare time every now and then. Being GDPR compliant basically means to not save any personal identifiers. At first I thought it would be easy since something like a public IP adress can't count as a personal identifier right? I was very wrong. How it works: When a user visited my website I saved the IP and Header for 24 hours. Then if they visited again I checked the combination of IP and Header against the ones saved in my DB. If they were the same I simply added 1 view to my data. If they weren't the same I added 1 unique daily user and 1 view. That's in short how it works. A few weeks later I realized if I had this problem then other would also have it. So I started working on Simplytics.dev. I had to do a lot of new stuff and re-build my code from the ground-up twice. Small things like OAuth was completely new to me and took up a lot of time. But eventually I got here and just launched something that with the knowledge I have today wouldn't even take a third of the time recreating today. It's my first real "Launch" and it feels really good finally creating something AND publishing it. Instead of a montly fee I opted to make it a pay-once service. Right now it's priced at 49$ but I'll see how it works out. If you got any questions on how it works Id love to answer them. November 25, 2024 at 04:35PM

Thursday, 28 November 2024

Show HN: Indentation-based syntax for Clojure https://bit.ly/49euTsD

Show HN: Indentation-based syntax for Clojure https://bit.ly/419vpGv November 25, 2024 at 09:29AM

Show HN: A word guessing game based on text vector embeddings and cos-similarity https://bit.ly/49afDNo

Show HN: A word guessing game based on text vector embeddings and cos-similarity Try to find the secret word that computer holds, by guessing and getting feedback in form of how similar your guess to the secret is. The fewer attempts the better. There is also a hint and a give-up button. Thank you, please give it a try ) https://bit.ly/3CL803U November 29, 2024 at 12:11AM

Show HN: Reportobello – Typst-Based PDF Generator API https://bit.ly/3B5wdBz

Show HN: Reportobello – Typst-Based PDF Generator API https://bit.ly/4eTmEDw November 28, 2024 at 09:15AM

Show HN: myphotos.site – Google photos to a website in 60 seconds https://bit.ly/3Z7koml

Show HN: myphotos.site – Google photos to a website in 60 seconds Hey HN! My friend and I love taking pictures on our phones, and we were looking for a super simple way to share them with the world. Google Photos albums are nice, but the result isn't slick enough and lacks customization options (embed, custom domain). That's why we built myphotos.site - a micro SaaS that allows anyone to create a slick, minimal gallery website from Google Photos. Galleries can be iframe-embedded for those looking for full customization. One thing we haven't solved yet - many Google Photos users (myself included) do not have images pre-organized in albums, so the fact that technically it takes 60 seconds to build a website doesn't take into account that you have to spend time picking the right images. Would love to some feedback/ideas from hobbyist photographers here! https://bit.ly/417vj1V November 28, 2024 at 12:02PM

Wednesday, 27 November 2024

Show HN: Voice-Pro – AI Voice Cloning Magic: Transform Any Voice in 15 Seconds https://bit.ly/3Z6MbU5

Show HN: Voice-Pro – AI Voice Cloning Magic: Transform Any Voice in 15 Seconds Imagine creating a podcast where Mark Zuckerberg interviews Elon Musk – using their actual voices? What sounds like science fiction is now reality. Voice-Pro is an open-source Gradio WebUI that breaks the boundaries of audio manipulation. Powered by cutting-edge Whisper engines, this tool turns voice replication into child's play. Key Features: - Zero-shot Voice Cloning - Voice Changer with 50+ Celebrity Voices - YouTube Audio Downloading - Vocal Isolation - Multi-Language Text-to-Speech (Edge-TTS, F5-TTS) - Multi-Language Translation - Powered by Whisper Engines (Whisper, Faster-Whisper, Whisper-Timestamped) Video Demos: 1. Voice-Pro Usage Tutorial: https://youtu.be/z8g8LMhoh_o 2. Voice Cloning Celebrity Podcast Demo: https://youtu.be/Wfo7vQCD4no 3. Full Demo Playlist: https://www.youtube.com/playlist?list=PLwx5dnMDVC9Y7dAjm9r26... Whether you're a content creator, developer, or audio experiment enthusiast, Voice-Pro provides a user-friendly interface to push the boundaries of audio manipulation. GitHub: https://bit.ly/4ibvoYw https://bit.ly/4ibvoYw November 28, 2024 at 03:37AM

Show HN: SF Search – iPhone app for searching SF Symbols by drawing https://bit.ly/3CJsQ3U

Show HN: SF Search – iPhone app for searching SF Symbols by drawing Hello HN, first-time poster, long-time lurker. Sometimes I found it really hard to find a specific icon in Apple's SF Symbols library, so I made a pretty simple iPhone app that lets you make a drawing to search symbols similar to it. It also works on Macs with Apple Silicon. I used Create ML to train the image classifier that generates the suggestions. The app is completely free and you can download it here: https://ift.tt/Nm4AxCH I'd love any feedback that you might have. Hope that you find the app useful! https://apple.co/498rhs8 November 28, 2024 at 12:01AM

Show HN: I build and deployed AI Food Recipe Assistant quickly https://bit.ly/3VdycKT

Show HN: I build and deployed AI Food Recipe Assistant quickly I created an AI Foof Recipe Assistant using GPT 3.5, DALL E 3, etc. Building was quite fun and easy, but deploying AI applications can be challenging. Whether you’re a developer working on a side project or part of a team building the following big AI product, you need a reliable and easy way to get your app into production. That's why I am always looking for the best hosting platforms that can simplify my workflow to deploy Apps as easily as possible, and this guide is for the same: https://bit.ly/3Ou2s0y... https://bit.ly/4eNFsnQ November 27, 2024 at 03:38AM

Tuesday, 26 November 2024

Show HN: Yoyo is a Livewire/Htmx alternative for vanilla php https://bit.ly/496uhWb

Show HN: Yoyo is a Livewire/Htmx alternative for vanilla php https://bit.ly/3ZaXXgl November 27, 2024 at 04:13AM