Nigeria No1. Music site And Complete Entertainment portal for Music Promotion WhatsApp:- +2349077287056
Friday, 28 February 2025
Show HN: Start GPT threads in ChatGPT (& other sites) https://bit.ly/41Cm9KO
Show HN: Start GPT threads in ChatGPT (& other sites) I noticed current LLM chat apps don't support threads for follow questions, but instead they're one long conversation. Often when I'm digging into a topic and GPT responds with a book, I want to ask follow-ups in "side chats" that I'd prefer to be inline and in context rather than jumping to bottom of the page, so I created GPT threads. It's a chrome extension where you can highlight some text and start a chat focusing on that text and incorporating surrounding context. You can have multiple threads on a page, and the extension has configurability like surrounding context size, response lengths, chat box positioning. I've found it useful for other sites too to quickly ask questions about news articles, docs, or HN threads! Downloadable in Chrome web store: https://bit.ly/3XLSblt... https://bit.ly/41AYWsl March 1, 2025 at 03:01AM
Show HN: a Rust library for creating hierarchical state machines https://bit.ly/3Xn5oRm
Show HN: a Rust library for creating hierarchical state machines I've come to prefer modeling state machines with nested states, but implementing them by hand requires a large amount of error-prone boilerplate that obscures the important logic of the state machine. I found that the existing offerings in the Rust ecosystem - while inspiring - lacked a number of features that I was looking for, so I spent the last few months building moku. Feedback is welcome! https://bit.ly/41jRmkM March 1, 2025 at 12:30AM
Show HN: Torii – a framework agnostic authentication library for Rust https://bit.ly/41f7hRc
Show HN: Torii – a framework agnostic authentication library for Rust https://bit.ly/43gwVb2 March 1, 2025 at 12:16AM
Thursday, 27 February 2025
Show HN: Multi-View Stereo Software for Rapid 3D Model Generation from 2D Images https://bit.ly/3DnbBpv
Show HN: Multi-View Stereo Software for Rapid 3D Model Generation from 2D Images cuda-multi-view-stereo (CUMVS) is a C++/CUDA library for Multi-View Stereo. This project currently supports depth map estimation using PatchMatch algorithms. CUMVS achieves a speed increase of more than 5x compared to ACMM, a leading implementation of PatchMatch MVS. Here is the demo movie: https://youtu.be/g9v9b5uP68I https://bit.ly/41bzus8 February 28, 2025 at 01:16AM
Show HN: Hexle: A powerful way to search for papers and connect your ideas https://bit.ly/4ijEDFy
Show HN: Hexle: A powerful way to search for papers and connect your ideas Hi all, I find literature searches to be slow and despite all the tools nowadays, it is difficult to map out vast areas of research and then connect my ideas to what I’m trying to do (e.g. writing a review, learning something new, planning a new project, assignments, etc). Some of my peers and teachers also found this to be a problem so I built this MVP app to help people not only leverage AI search capabilities but also go on to connect their ideas, map out research projects, cite various results and organise their “stream of consciousness” as they work. I’d love to get some feedback on it - please feel free to post it either in this thread or email me at hexleteam@gmail.com. Many thanks from Sydney, Australia :) https://bit.ly/4iivOvx February 27, 2025 at 11:46PM
Show HN: SuperMassive – Fast durable, in-memory, distributed key-value database https://bit.ly/4kiiyZx
Show HN: SuperMassive – Fast durable, in-memory, distributed key-value database Hey hn! I hope you're all doing well. I’d like to share a new open-source database I’ve designed and written called SuperMassive. SuperMassive is a scalable, distributed, in-memory key-value database designed from the ground up to allow for high concurrency, fast writes, fault tolerance, and durability while remaining simple to use and efficiently scalable. The idea for SuperMassive comes from its name.. I wanted to build a key-value database that can scale infinitely, remain durable, be self-healing, consistent, and blazing fast. I also wanted to simplify sharding and replication compared to existing distributed KV stores and their protocols. SuperMassive is built to be simple yet powerful. It consists of just one multiplatform supported binary that can run in multiple modes(cluster, primary node, or replica). Nodes function as shards of your data. The design emphasizes minimal configuration, high performance, and automatic failover. While SuperMassive is still in its early stages (v1.0.2b), I’d love to hear your thoughts on the design, its architecture, and any feedback you may have :D Features~~ ~ Highly scalable Scale horizontally with ease. Simply add more nodes to the cluster. ~ Distributed Data is distributed across multiple nodes in a sharded fashion. ~ Robust Health Checking System Health checks are performed on all nodes, if any node is marked unhealthy we will try to recover it. ~ Smart Data Distribution uses a sequence-based round-robin approach for distributing writes across primary nodes. This ensures that all primary nodes get an equal share of writes. ~ Automatic Fail-over Automatic fail-over of primary nodes on write failure. If a primary node is unavailable for a write, we go to the next available primary node. ~ Parallel Read Operations Read operations are performed in parallel. ~ Consistency Management Timestamp-based version control to handle conflicts. The most recent value is always returned, the rest are deleted. ~ Fault-tolerant Replication and fail-over are supported. If a node goes down, the cluster will continue to function. ~ Self-healing Automatic data recovery. A node can recover from a journal. A node replica can recover from a primary node via a check point like algorithm. ~ Cluster Authentication with basic like auth. ~ Simple Protocol Simple protocol PUT, GET, DEL, INCR, DECR, REGX, STAT, RCNF, PING. ~ Async Node Journal Operations are written to a journal asynchronously. This allows for fast writes and recovery. ~ Multi-platform Linux, Windows, MacOS https://bit.ly/41CnAJq https://bit.ly/41z0enW - Alex https://bit.ly/41z0enW February 27, 2025 at 09:31AM
Wednesday, 26 February 2025
Show HN: Libredesk – Open-source customer support desk. Single binary app https://bit.ly/4gVaDyJ
Show HN: Libredesk – Open-source customer support desk. Single binary app Libredesk is a 100% free and open-source customer support desk, the backend is written in Go and the frontend is in Vue JS with ShadnCN for UI components. Unlike many "open-core" alternatives that lock essential features behind enterprise plans, Libredesk is fully open-source and plans to always stay this way. It's in alpha (v0.1.0) right now, but there’s a working demo available. I built this because I wanted a truly open and self-hosted alternative to platforms like Chatwoot, Intercom, and Zendesk. Would love feedback, suggestions, and thoughts from the community. GitHub: https://bit.ly/43damDQ Demo: https://bit.ly/3XkKthX https://bit.ly/43damDQ February 24, 2025 at 12:05PM
Show HN: Telescope – an open-source web-based log viewer for logs in ClickHouse https://bit.ly/3QFUd2c
Show HN: Telescope – an open-source web-based log viewer for logs in ClickHouse Hey everyone! I’m working on Telescope - an open-source web-based log viewer designed to make working with logs stored in ClickHouse easier and more intuitive. I wasn’t happy with existing log viewers - most of them force a specific log format, are tied to ingestion pipelines, or are just a small part of a larger platform. Others didn’t display logs the way I wanted. So I decided to build my own lightweight, flexible log viewer - one that actually fits my needs. Check it out: Video demo: https://www.youtube.com/watch?v=5IItMOXwugY GitHub: https://bit.ly/41eJ7pT Live demo: https://bit.ly/41eJ7WV Discord: https://bit.ly/41A4eUU https://bit.ly/41eJ7pT February 26, 2025 at 09:28AM
Show HN: LLM-Tetris-A Classic Tetris Game in Go, 95% AI-Generated https://bit.ly/4ifyKJl
Show HN: LLM-Tetris-A Classic Tetris Game in Go, 95% AI-Generated I built a console-based Tetris game in Go using LLM for code generation. 95% of the code was AI-generated using ChatGPT4o and continue.dev in VSCode. The project was inspired by Harper Reed’s post on AI-assisted development, and I used his prompting method to guide the process. https://bit.ly/3QzOhbb February 26, 2025 at 12:34PM
Show HN: Anatomy of AI Prompt Viral Image Generator – One Shotted with Cursor https://bit.ly/4ii7078
Show HN: Anatomy of AI Prompt Viral Image Generator – One Shotted with Cursor I saw that the image of "An anatomy of an o1 prompt" that was originally created by Ben Hylak ( https://bit.ly/3XeAGd9 ) was going viral around the internet and was being used by others to show off their own prompts I thought it would be cool to try and make this into a tool, give kudos to the original creator Ben and see how easy it would be to do this all with Cursor and the latest Claude model https://bit.ly/3XiQbR7 February 26, 2025 at 11:04AM
Show HN: I gave my API a JSON homepage https://bit.ly/3QDdmlD
Show HN: I gave my API a JSON homepage https://bit.ly/4h0S3oS February 26, 2025 at 10:06AM
Tuesday, 25 February 2025
Show HN: I created a language called AntiLang – breaking all the conventions https://bit.ly/4hRjkLK
Show HN: I created a language called AntiLang – breaking all the conventions AntiLang is an interpreted programming language written in Go. The basic idea of this is to keep all the logical parts of a language same, but reverse the structure of it. The idea for this project came when I was having a long midnight conversation with my friend and thought of writing such a weird language. The initial draft was far worse than the current implementation; we thought of reversing the brackets and the language would be read from bottom to top. I'm happy that I dropped that idea Technical details: As the interpreter is written in Golang, I compiled it to WASM, and the whole interpreter is running in the browser. For the editor, I'm using Monaco, the same library that powers the text editor in VSCode. I learnt how to build it while reading "Write an Interpreter in Go" by Thorsten Ball. The project is opensourced - https://bit.ly/41xK6Dc - do give it a star if you like the project. https://bit.ly/3D9kwLm February 23, 2025 at 08:00PM
Monday, 24 February 2025
Show HN: While the world builds AI Agents, I'm just building calculators https://bit.ly/4gRZIWs
Show HN: While the world builds AI Agents, I'm just building calculators I figured I needed to work on my coding skills before building the next groundbreaking AI app, so I started working on this free tool site. Its basically just an aggregation of various commonly used calculators and unit convertors. Link: https://bit.ly/4gVjW1C Tech Stack: Next, React, Typescript, shadcn UI, Tailwind CSS Would greatly appreciate your feedback on the UI/UX and accessibilty. I struggled the most with navigation. I've added a search box, a sidebar, breadcrumbs and pages with grids of cards leading to the respective calculator or unit convertor, but not sure if this is good enough. https://bit.ly/4gVjW1C February 22, 2025 at 09:27AM
Show HN: I made a 100% web-based screen recorder inspired by Screen Studio https://bit.ly/4bdyrfK
Show HN: I made a 100% web-based screen recorder inspired by Screen Studio https://bit.ly/41u2mNv February 25, 2025 at 02:21AM
Show HN: URnetwork – Decentralized VPN Replacement https://bit.ly/3QwwIbQ
Show HN: URnetwork – Decentralized VPN Replacement I spent the last 1.5 years working out how to scale a decentralized network safely and efficiently to millions of users. URnetwork is a market for network capacity, where each connection races to find the best provider on the network. This means users have many IP addresses that continually cycle, and users can directly connect to each other, which is great for privacy when some minimum conditions are met. Because the world already has a bunch of hardware and network capacity that can be used, the challenges were to design a protocol to make it safe to use and participate, fast and reliable, and to set up the right encryption bar for safe peer to peer data. You can try the apps on iOS and Android and see if they work better than your current VPN. The source is here https://bit.ly/3QvX3qP About me, I was an early engineer at Palantir, former YC founder, and spent the last decade building global infrastructure. I'm interested in truly free, transparent, private, available, and secure networks that reward people to contribute what they have. Ease of use and safety to participate has been a big focus for me. https://bit.ly/3QTppLT February 24, 2025 at 10:17PM
Show HN: RadiaCode – Python Library for RadiaCode-10x Radiation Detectors https://bit.ly/436PGNN
Show HN: RadiaCode – Python Library for RadiaCode-10x Radiation Detectors Hi HN, I want to show you my project: RadiaCode, a Python library to interface with RadiaCode-10x radiation detectors and spectrometers. With RadiaCode, you can: - Collect real-time radiation measurements - Analyze spectra for insightful data interpretation - Control device settings via USB or Bluetooth - Explore a web interface example for remote monitoring It's available on PyPI, open-sourced under the MIT License, and you can find the code with examples on GitHub. https://bit.ly/41uBm0s February 24, 2025 at 11:52AM
Sunday, 23 February 2025
Show HN: HelixDB, Open-Source Hybrid Graph-Vector Database https://bit.ly/4gX1KEy
Show HN: HelixDB, Open-Source Hybrid Graph-Vector Database Hey HN! A friend and I have been working on HelixDB, a graph-vector database, part-time at university. We're super excited to release the first version of our Graph Database! Helix is being built to incorporate both graph and vector types for building RAG and other AI applications. This release introduces our graph DB, our new query language, HelixQL, and our CLI tool to help run Helix. You can install helix locally by running `curl -sSL https://bit.ly/435znkx | bash` We'd love you guys to play around with it and hear what you think. https://bit.ly/3ENZWjU February 24, 2025 at 03:44AM
Show HN: I Built a Free Appointment Scheduler for Small Businesses https://bit.ly/4buCFQB
Show HN: I Built a Free Appointment Scheduler for Small Businesses https://bit.ly/4kcja2P February 23, 2025 at 02:42PM
Show HN: Wake – AI Motivation Quotes iOS app. [Lifetime subscription giveaway] https://bit.ly/4icL3WK
Show HN: Wake – AI Motivation Quotes iOS app. [Lifetime subscription giveaway] Hello everyone, Given the challenging times, inflation, career, politics and war etc., it's important to take care of our mindset and mental health. Wake app can help with the daily dose of boost, I developed this motivation app in similar format as tiktok/Instagram reels etc., with background videos and music, so that the app can hold the attention span. Important: You need to select $0.00 Lifetime option in the paywall and complete the free purchase in order to get the lifetime subscription. Features: - Add lock screen, home screen or today quote widgets. - AI feature to get more context on quotes and authors you like to further boost motivation. - Apple Watch companion app - Comes in three flavors that you can choose from - Motivation, Affirmation and Inspiration - Quote reminders & many more Tip: If you have trouble falling asleep and are type of person who uses phone on the bed. Try using the Wake app instead of instagram/tiktok etc. Please feel free to provide any feedback and support us in the app. https://apple.co/4bbIbai February 23, 2025 at 12:46PM
Saturday, 22 February 2025
Show HN: We made a Meta Quest3 see through walls https://bit.ly/4i9Ta6B
Show HN: We made a Meta Quest3 see through walls https://bit.ly/41poh8G February 23, 2025 at 03:54AM
Show HN: AI-native browser game that users can craft unlimited 3D items https://bit.ly/4iaD4cL
Show HN: AI-native browser game that users can craft unlimited 3D items Most games have limits. You can only use preset features, need coding for customization & adding mods, require expensive extra devices. We wanted to remove those barriers. That’s why we are building space zero—a browser based 3D world powered by AI. We plan to build players can freely mix items to generate unexpected creations with unique properties and sounds. Also the world itself is dynamically generated, evolving endlessly. I uploaded a demo version I’ve been working on for the past month! I hope to get any feedbacks or comments :) https://bit.ly/3D52Ikw February 19, 2025 at 10:24AM
Show HN: I Built a Visual Workflow Automation Platform – FlowRipple https://bit.ly/4gQEcRP
Show HN: I Built a Visual Workflow Automation Platform – FlowRipple FlowRipple is designed to streamline and automate business processes with ease. Whether you're a developer, business owner, or marketer, our platform lets you build custom workflows that can be triggered by events from your applications, webhooks, or on a schedule. We’ve just gone live and are offering an exclusive Early Access Program with some incredible perks to get you started. https://bit.ly/437FzrZ February 22, 2025 at 03:20PM
Show HN: LLM 100k portfolio management benchmark https://bit.ly/4bdVQxV
Show HN: LLM 100k portfolio management benchmark PoC for something some the potential to yield some interesting results eventually. https://bit.ly/3Xg4TbQ February 22, 2025 at 08:07AM
Friday, 21 February 2025
Show HN: An open-sourced TypeScript agent framework https://bit.ly/3D096tg
Show HN: An open-sourced TypeScript agent framework https://bit.ly/413ha4p February 21, 2025 at 11:15PM
Show HN: Visually parse an entire YouTube video frame by frame https://bit.ly/4i7qXx3
Show HN: Visually parse an entire YouTube video frame by frame https://bit.ly/4i9IdSi February 21, 2025 at 10:30PM
Show HN: Animate Anyone – Generate Character Animations from a Single Image https://bit.ly/3CXuort
Show HN: Animate Anyone – Generate Character Animations from a Single Image Hello Hacker News , We just launched Animate Anyone AI, an AI-powered SaaS tool that transforms static character images into dynamic animations. Our goal is to make animation creation faster and smarter, providing an efficient solution for creators, game developers, and filmmakers. Key Features: Image-to-Video Animation – Generate smooth animations from a single character image Consistent Character Details – Maintain facial features, clothing, and style accuracy Pose-Guided Motion Control – Precisely control character movements Smooth Temporal Transitions – Ensure natural motion with advanced time modeling DeepGPU (AIACC) Acceleration – Boost generation speed and reduce wait times Use Cases: Gaming & Film – Create animated characters without traditional frame-by-frame animation Virtual Influencers & Digital Humans – Generate AI-driven character videos Social Media & Short Videos – Produce creative content instantly Fashion & Dance Animation – Bring static photos to life with movement Try out Animate Anyone : https://bit.ly/41nbbc2 https://bit.ly/41nbbc2 February 21, 2025 at 08:47AM
Thursday, 20 February 2025
Show HN: Builders. Join forces. Ship cool stuff https://bit.ly/4hOguHb
Show HN: Builders. Join forces. Ship cool stuff https://bit.ly/4gM9n0N February 21, 2025 at 12:33AM
Show HN: Qute Spring Boot starter as a Thymeleaf alternative templating engine https://bit.ly/4b6SmNv
Show HN: Qute Spring Boot starter as a Thymeleaf alternative templating engine https://bit.ly/4i75GUp February 20, 2025 at 09:53PM
Wednesday, 19 February 2025
Show HN: Encrypt any file in your PC with this little app https://bit.ly/3QocqRU
Show HN: Encrypt any file in your PC with this little app File Encrypter (v1.1) is a basic way (not really ment for real world use) that allows you to encrypt / decrypt many types of files in your computer. It alters each byte that constitutes each file you choose to modify, making it unreadable. https://bit.ly/3CZ6b3W February 20, 2025 at 03:00AM
Show HN: Make your logo liquid metal (open source) https://bit.ly/438INfb
Show HN: Make your logo liquid metal (open source) Good morning!! We thought the Apple liquid metal invite was so cool. How fun would it be if everyone could see their logo in liquid? So we made an app to let you make your logo in liquid. Just drag in your logo and see. To play with your logo: https://bit.ly/4gPFYm8 Repo: https://bit.ly/4hLUVqE (We think you're gonna love it!) https://bit.ly/4gPFYm8 February 19, 2025 at 09:11PM
Tuesday, 18 February 2025
Show HN: Vakyume – a PDF2C++ engine that doesn't suck https://bit.ly/4in86yv
Show HN: Vakyume – a PDF2C++ engine that doesn't suck A geek's sucky Odyssey in AI's shadow through the realm of the metaprogramming hungry ghosts https://bit.ly/430tfd4 February 19, 2025 at 06:23AM
Show HN: Subtrace – Wireshark for Docker Containers https://bit.ly/4124xGF
Show HN: Subtrace – Wireshark for Docker Containers Hey HN, we built Subtrace ( https://bit.ly/431BXI9 ) to let you see all incoming and outgoing requests in your backend server—like Wireshark, but for Docker containers. It comes with a Chrome DevTools-like interface. Check out this video: https://www.youtube.com/watch?v=OsGa6ZwVxdA , and see our docs for examples: https://bit.ly/4hGMqx3 . Subtrace lets you see every request with full payload, headers, status code, and latency details. Tools like Sentry and OpenTelemetry often leave out these crucial details, making prod debugging slow and annoying. Most of the time, all I want to see are the headers and JSON payload of real backend requests, but it's impossible to do that in today's tools without excessive logging, which just makes everything slower and more annoying. Subtrace shows you every backend request flowing through your system. You can use simple filters to search for the requests you care about and inspect their details. Internally, Subtrace intercepts all network-related Linux syscalls using Seccomp BPF so that it can act as a proxy for all incoming and outgoing TCP connections. It then parses HTTP requests out of the proxied TCP stream and sends them to the browser over WebSocket. The Chrome DevTools Network tab is already ubiquitous for viewing HTTP requests in the frontend, so we repurposed it to work in the browser like any other app (we were surprised that it's just a bunch of TypeScript). Setup is just one command for any Linux program written in any language. You can use Subtrace by adding a `subtrace run` prefix to your backend server startup command. No signup required. Try for yourself: https://bit.ly/4hGMqx3 https://bit.ly/4b7haF6 February 19, 2025 at 12:29AM
Show HN: A GPU-accelerated binary vector index https://bit.ly/41jo1bh
Show HN: A GPU-accelerated binary vector index This is a vector index I built that supports insertion and k-nearest neighbors (k-NN) querying, optimized for GPUs. It operates entirely in CUDA and can process queries on half a billion vectors in under 200 milliseconds. The codebase is structured as a standalone library with an HTTP API for remote access. It’s intended for high-performance search tasks—think similarity search, AI model retrieval, or reinforcement learning replay buffers. The codebase is located at https://bit.ly/4165Jc1 . https://bit.ly/411L8pr February 17, 2025 at 01:45AM
Monday, 17 February 2025
Show HN: TimeRetain – A browser-based personal time tracker, no sign-up needed https://bit.ly/4jZRqP1
Show HN: TimeRetain – A browser-based personal time tracker, no sign-up needed Hi HN, I built TimeRetain: a time tracker for individuals that runs 100% in your browser. No sign up, no personal data stored, and free while I’m working on the beta. Click the white demo banner to check it out quickly :) I’m using it to track my hours at work (e.g., overtime, and what I’ve done so I come prepared for stand up). In 2023 I launched it here [1], but with a back-end. After I became interested in local-first, I realized JS could handle everything Postgres did - so I ported it. Time data now never leaves your browser and the app will ping you to run an export from time to time. I also followed up on some of the feedback in the previous thread (it now has a pause button, a dedicated data export page, no longer relies on a working back-end, and I fixed the spacing in the name). It’s not a true local first app just yet (e.g., it's not a PWA, and backing up using the File System API is on my list), but I plan on making it one should it gain some traction. One of the other things I might add is encrypted at rest storage and sync of events, for which the foundation is done (it’s event-based and events are ordered using a HLC timestamp in IndexedDB). I wonder, though: is multi-device sync even necessary? I would much rather prefer not to store any personal data at all, even if it’s encrypted. Do you need sync? And if so, what would be your ideal solution? Would love to hear your thoughts in general. Thank you! [1] https://bit.ly/3CYaIR1 https://bit.ly/3J4Asiy February 17, 2025 at 11:57AM
Show HN: Compete in casual mini-games (iOS app – free) https://bit.ly/4b74yO4
Show HN: Compete in casual mini-games (iOS app – free) It is called "ink." It is a casual mini-games style app where you can compete on a weekly leaderboard, have fun, spend some time, and compete with friends. https://apple.co/42UsqCK February 18, 2025 at 12:31AM
Show HN: Generic and variadic printing library in C https://bit.ly/3QomieE
Show HN: Generic and variadic printing library in C I was making a printf wrapper with some extra features when I thought "hey, now that C has _Generic, is there any way to combine that with varargs?". The closest solution I found online was this: https://bit.ly/3dFmlAl Which works, but only under GCC (since it uses an extension instead of _Generic) and its not very robust in general. So, I rolled my own, with a different macro hack and I think it came out reasonably well. Its not documented yet, because I'm unsure about the interface, but extending it with user structs is also possible without editing the header. (Example in 'example-user-type.c'.) https://bit.ly/40Xohv8 February 17, 2025 at 10:54PM
Show HN: Klipy – AI GIFs, Clips, GIFs, Memes and Stickers API with Monetization https://bit.ly/4gKh87s
Show HN: Klipy – AI GIFs, Clips, GIFs, Memes and Stickers API with Monetization Hey HN, Over the past two years, my co-founder and I have been building https://bit.ly/42YDcHY — an API of 10m+ GIFs, AI GIFs, Clips, Stickers, and Memes, focused on efficiency and monetization. Unlike GIPHY/Tenor, our goal was to create a cost-efficient infrastructure that allows platforms to integrate GIFs seamlessly while generating revenue for content creators and platforms - and keeping the API free forever, unlike GIPHY. The process is straightforward: * Platforms integrate our API and enable our Revenue API (optional) * Ads are placed between content, ensuring high CTRs while maintaining a UX-friendly experience * This unlocks new exclusive ad inventory for the market, allowing apps to generate more revenue than traditional ad placements Currently, our infrastructure handles 4 billion requests per month (content API requests + revenue API requests to and from ad networks) while keeping server costs under $1500. We've already integrated with several platforms, including Ridmik, Fleksy, iMe Messenger, and others. Additionally, we’re live on Slack, Canva, Figma, Integrately, and RapidAPI, with bigger names coming soon. I'd be happy to provide a lifetime free API key to anyone interested in integrating our features, with or without the revenue API. * API Docs: https://bit.ly/42Ygm3i * Demo Video: https://youtu.be/HOwNz_kXBSc P.S. Our goal after next funding round is to develop an AI model that generates short and long-form media content for various purposes. If you’re interested in collaborating, let’s chat! Would love to hear your thoughts and feedback! https://bit.ly/42YDcHY February 18, 2025 at 12:47AM
Show HN: I listed all component libraries for any frameworks https://bit.ly/4kdjxKO
Show HN: I listed all component libraries for any frameworks I quit my dev job 2 years ago to work on projects I actually care about. I built a CRM for philanthropy as a nonprofit, and on the side, I tinker with fun projects to learn new languages and sharpen my skills. Recently, I was looking for new component libraries to use, but I realized… there’s no single platform showcasing ALL component libraries across frameworks—especially independent, bootstrapped ones. No wonder so many projects default to MUI, DaisyUI, and other mainstream options. So, I decided to fix that. I collected 75+ libraries for React, Vue, Angular, Svelte, Rails, Nuxt, and more, then categorized them by features like Dark Mode support, Accessibility, and Customizability. If you've built a component library, you can submit it for free. After launch, users requested more frameworks—so I automated the process with Make, letting me add new libraries in under an hour. Hope you'll find new libraries to try on for your next projects and let me know if you know more or want to see new frameworks added to it https://bit.ly/4k53IWy February 17, 2025 at 08:08AM
Sunday, 16 February 2025
Show HN: Switch2Cursor – Smoothly Switch Between JetBrains IDEs and Cursor https://bit.ly/4b2fP2q
Show HN: Switch2Cursor – Smoothly Switch Between JetBrains IDEs and Cursor I've developed a JetBrains IDE plugin that enables developers to quickly switch between JetBrains IDEs and Cursor Editor. Key features: - Maintains cursor position sync for seamless context switching - Keyboard shortcuts (Mac: Option+Shift+P/O, Win: Alt+Shift+P/O) - Supports all JetBrains IDEs (2022.3+) - Open source Background: With the growing popularity of Cursor Editor, many developers frequently switch between JetBrains IDEs and Cursor. This plugin addresses the efficiency issues that arise from constant switching. Feel free to try it out and provide feedback! https://bit.ly/4b2fPPY February 17, 2025 at 06:43AM
Show HN: Fastimer, runtime-agnostic timer traits and utils for Async Rust https://bit.ly/3WZXv4g
Show HN: Fastimer, runtime-agnostic timer traits and utils for Async Rust https://bit.ly/430LAH0 February 17, 2025 at 12:43AM
Show HN: B2B SaaS Go-to-Market Checklist https://bit.ly/41jDbgP
Show HN: B2B SaaS Go-to-Market Checklist https://bit.ly/4i19N4s February 16, 2025 at 11:40PM
Show HN: I made a desk toy for people in long-distance relationships https://bit.ly/3Qrub2B
Show HN: I made a desk toy for people in long-distance relationships Hello Hacker News! I've spent the last 6 months or so designing and building this, The Attention Button. It's an IoT desk toy that lets you send a quick nudge to whoever you hold dear, letting them know you're thinking of them. Like a direct line to their attention. It is my first major electronics project and I have learnt so much making it. I'd love to hear what you guys think! https://bit.ly/4b431bV February 16, 2025 at 04:55AM
Saturday, 15 February 2025
Show HN: The news in the last 30, 14, 7, 3, or 1 days https://bit.ly/3EFzyJ6
Show HN: The news in the last 30, 14, 7, 3, or 1 days I made this for when I come back from vacation and want to catch up on news. It's a bit of a simplistic LLM transformation on headlines and URLs that I store from RSS feeds. So it bugs out sometimes. But I think it might be useful to me. You can check out some of the prompts in the "debug" links. What do you think? https://bit.ly/4hFKV2a February 16, 2025 at 06:54AM
Show HN: Tech Brief – AI enhanced news reading https://bit.ly/3QjC768
Show HN: Tech Brief – AI enhanced news reading I built this because I wanted it, and I now use it every day. It's a simple news site that gathers and summarises tech content and discussions, across multiple sources, providing tight, easily digestable summaries along with some simple tooling to support reading workflows. 1) Hourly updated homepage with the latest tech news across the web. 2) A simple < 3 min "News of the Hour", every hour, audio clip. 3) Summaries of HackerNews and Product Hunt, incl. comments and sentiment (more to come). 3) GitHub login with AI summaries of any releases made to your starred repos. 4) Read/Unread article status. 5) Simple swipe interface and keyboard support. 6) Simple Bookmark/Readling List, and Favourite tags (logged in) No Tracking. Fast. Mobile Friendly. Easy sharing. https://tech.brief.page/ February 16, 2025 at 01:28AM
Show HN: Blunderchess.net – blunder for your opponent every five moves https://bit.ly/41h0Qy8
Show HN: Blunderchess.net – blunder for your opponent every five moves blunderchess.net is an open source, peer-to-peer chess app where every five moves, players each get to make one blunder-move for their opponent https://bit.ly/4hXSUaL February 16, 2025 at 01:22AM
Show HN: Letting LLMs Run a Debugger https://bit.ly/4b2Bpnp
Show HN: Letting LLMs Run a Debugger Hey HN, I just built an experimental VSCode extension called LLM Debugger. It’s a proof-of-concept that lets a large language model take charge of debugging. Instead of only looking at the static code, the LLM also gets to see the live runtime state—actual variable values, function calls, branch decisions, and more. The idea is to give it enough context to help diagnose issues faster and even generate synthetic data from running programs. Here’s what it does: * Active Debugging: It integrates with Node.js debug sessions to gather runtime info (like variable states and stack traces). * Automated Breakpoints: It automatically sets and manages breakpoints based on both code analysis and LLM suggestions. * LLM Guidance: With live debugging context, the LLM can suggest actions like stepping through code or adjusting breakpoints in real time. I built this out of curiosity to see if combining static code with runtime data could help LLMs solve bugs more effectively. It’s rough around the edges and definitely not production-ready I’m not planning on maintaining it further. But I thought it was a fun experiment and wanted to share it with you all. Check out the attached video demo to see it in action. Would love to hear your thoughts and any feedback you might have! Cheers. https://bit.ly/3EAtLVg February 12, 2025 at 10:54AM
Friday, 14 February 2025
Show HN: Lightweight and robust CLI color converting utility https://bit.ly/4hF9Xi0
Show HN: Lightweight and robust CLI color converting utility I started this project because I found myself converting between Hex and RGB a lot. As I was frequently visiting various color picker websites, I began thinking more and more about how color conversions even work in the first place. What is a color space? Using any random color-picker online to go from RBG<->Hex works plenty fine, but, I think CLI tools are cool. I'm still pretty new to the Linux scene, and I really enjoy finding random command line programs to play with. I searched around a bit on Github and the AUR and couldn't find any CLI color conversion utilities, which I honestly found surprising (maybe I didn't look hard enough). I decided I'd really enjoy trying to make a simple command line program for RGB<->Hex, and the scope slowly expanded. I could see myself expanding it (maybe including more color formats, suggesting complementary colors) but for now, unless people discover ways to break it or offer any pull requests, I think I'll be moving on to other projects. It has no dependencies besides Python, and can be easily installed on mac/linux (see the README for more). I'm not certain how you'd set it up as a command line program on Windows, but you can just use Python in cmd to use the script anyway! https://bit.ly/4gKzwgr February 15, 2025 at 12:31AM
Show HN: VimLM – A Local, Offline Coding Assistant for Vim https://bit.ly/4jZQ3zF
Show HN: VimLM – A Local, Offline Coding Assistant for Vim VimLM is a local, offline coding assistant for Vim. It’s like Copilot but runs entirely on your machine—no APIs, no tracking, no cloud. - Deep Context: Understands your codebase (current file, selections, references). - Conversational: Iterate with follow-ups like "Add error handling". - Vim-Native: Keybindings like `Ctrl-l` for prompts, `Ctrl-p` to replace code. - Inline Commands: `!include` files, `!deploy` code, `!continue` long responses. Perfect for privacy-conscious devs or air-gapped environments. Try it: ``` pip install vimlm vimlm ``` [GitHub]( https://bit.ly/4i0lEzs ) https://bit.ly/4i0lEzs February 15, 2025 at 12:34AM
Thursday, 13 February 2025
Show HN: I made a tiny book using a pen-plotter and AI https://bit.ly/41eoRpF
Show HN: I made a tiny book using a pen-plotter and AI Hey HN, I want to share a personal project: I made a tiny pen-plotted book for my wife. I did everything myself—drawings (with some help from Midjourney), plotting, cutting, and binding. I even used a 3D printer to make a helper tool. It's absolutely over-engineered, but I enjoyed it a lot. Multi-disciplinary projects, especially those with a physical output, are a lot of fun for me. The post covers the process in detail, but if you're interested in anything specific, let me know. Cheers! https://bit.ly/4gIVFLQ February 10, 2025 at 06:52PM
Show HN: HackerVoice – An Experimental AI Podcast Covering Hacker News https://bit.ly/4hOowQ2
Show HN: HackerVoice – An Experimental AI Podcast Covering Hacker News Hey HN: What it does: HackerVoice automatically generates a daily podcast summarizing the top five trending Hacker News topics using AI. How it works: Uses a combination of Gemini and GPT-4o to analyze and summarize trending topics. Leverages OpenAI’s text-to-speech (TTS) engine to generate natural-sounding narration. Runs on an automated schedule (cron job at 16:00 UTC daily). Episodes are available for listening at: https://bit.ly/4hXtXvQ . https://bit.ly/4hXtXvQ February 14, 2025 at 01:35AM
Show HN: Dockershrink – AI Assistant to reduce the size of Docker images https://bit.ly/4gEY8XR
Show HN: Dockershrink – AI Assistant to reduce the size of Docker images For the past few months, I've been hacking around a project I call Dockershrink. It automates a simple task: Take a Dockerfile and optimize its code with the goal of reducing the size of the final Docker image. People don't realize that we can apply some very basic techniques to reduce, for eg, a 2GB image down to just ~100MB: - Multistage builds with light-weight base image for final stage - Remove unused dependencies - Optimizations specific to the tech stack And I feel like I've already done this optimization for my personal projects and backend apps at my job(s) a couple of times. The project currently uses GPT-4o (open source so you can run it locally) and only works for Nodejs projects. There are a couple of reasons why I think dockershrink can be better than using just Vanilla LLM or Github Copilot/Cursor: - Image optimization can benefit from a lot of custom prompting, especially when you have insights about specific tech stacks. Describing techniques deeply in the prompt gave better results than simply asking the LLM to "optimize code for bloat reduction". - A RAG approach will be truly beneficial. I plan on giving dockershrink access to up-to-date documentations of Docker, Bash and all programming languages out there. Additionally, it can be given a few suitable chunks of code to enhance the context. - Analysing custom base images: most orgs have their customized base images. Adding context about these can further help Dockershrink make better decisions. Try it out - "brew install dockershrink" Happy to hear your thoughts! https://bit.ly/4b3seTQ February 13, 2025 at 11:45PM
Show HN: Minimalist black and white drawing generator https://bit.ly/41gjmqF
Show HN: Minimalist black and white drawing generator https://bit.ly/4hzaceB February 13, 2025 at 03:55PM
Show HN: RAG Engine – Connect external data to LLM in minutes https://bit.ly/4gAw2Nf
Show HN: RAG Engine – Connect external data to LLM in minutes https://bit.ly/4k8jLCW February 13, 2025 at 03:15PM
Wednesday, 12 February 2025
Show HN: Make Easy Async Rust (Mea), runtime-agnostic primitives https://bit.ly/3EzsayS
Show HN: Make Easy Async Rust (Mea), runtime-agnostic primitives https://bit.ly/4hxvg5a February 13, 2025 at 01:49AM
Show HN: Auto rename downloads by AI and with your own naming rules https://bit.ly/42TpFkZ
Show HN: Auto rename downloads by AI and with your own naming rules Hii HN! We've built a Chrome extension called Cantrips.ai that auto generates meaningful filenames for pdf, txt, and docs downloads. It has tailored formats for major file types like papers, books, financial reports, etc. For example, a paper is always formatted as download date - title - first author's last name - area, so the filename would be 20250208 - Attention Is All You Need - Vaswani - LLM instead of 1706.03762 from arXiv. We are also developing a feature where users can add or adjust their file naming preferences. For example, if you like underscores and download meeting memos a lot, you can add meeting memos = interviewee's name_company_position_topic_date. The reason to build this extension is that my desktop is buried with meaningless and odd filenames, so I often can't find which is the one I want. I have to go to that website and download it again, sometimes the repetition number amounting over (10). More importantly, I desperately want my desktop/finder to look tidy. It feels great when everything is organized, but I don't want to handle the renaming in the mid of my research (and I become a bit lazy later :< Note that the extension hasn't supported downloads from some websites like Github due to technical complications. As a first-time dev, I just realized even a small tool can take much time... but we assume a similar preference feature can be applied to other productivity tools like folder organization or website bookmarks. Happy to get suggestions and learn if you really need such tools. If you want to try the extension, here's the link: https://chromewebstore.google.com/detail/cantripsai-auto-ren... https://chromewebstore.google.com/detail/cantripsai-auto-rename-do/fnaemmlnchphilapbdjejjlhoomcpblk February 12, 2025 at 11:48PM
Tuesday, 11 February 2025
Show HN: I Applied to Y Combinator for the 3rd Time in a Row https://bit.ly/3WZV1mb
Show HN: I Applied to Y Combinator for the 3rd Time in a Row Join Open Community on Discord: https://bit.ly/3CKrMgu Follow on LinkedIn: https://bit.ly/4hUjd1n Follow me: https://bit.ly/4gKWiow https://www.youtube.com/watch?v=5gBU_MK5fqE February 12, 2025 at 06:18AM
Show HN: A lightweight and flexible open source bastion https://bit.ly/4huXpK3
Show HN: A lightweight and flexible open source bastion OneTerm is a simple, lightweight and flexible enterprise-class bastion host, designed and developed based on 4A compliant, i.e. Authen, Authorize, Account, and Audit, which ensures the security and compliance of the system through strict access control and monitoring features. https://bit.ly/4jN04Ae February 12, 2025 at 03:08AM
Show HN: HypeBridge – Your Dedicated AI-Agent Driven Influencer Marketing Agency https://bit.ly/4gxTivj
Show HN: HypeBridge – Your Dedicated AI-Agent Driven Influencer Marketing Agency https://bit.ly/4gB77cE February 11, 2025 at 10:02PM
Monday, 10 February 2025
Show HN: Wordle Charts – insights about Wordle you don't need https://bit.ly/3EHwFr2
Show HN: Wordle Charts – insights about Wordle you don't need Hello HN! I'm a big fan of Wordle and I originally got this idea from seeing people gripe about Wordle suddenly being "harder" than usual. Wondering if this was true, I set out to snoop around the NYT's publicly available data, which gave me some pretty cool insights. I've put some of them on this simple site made with React and Claude. There's a grand total of 7 visualizations, with some fun little touches here and there. My favorite is probably "Clairvoyant Guesses," which shows some (to put it nicely) suspicious day-to-day guessing patterns. There's also a fun little easter egg when you type "cat" and then enter a word into the "Find Word:" box. Let me know if you have any suggestions, and any feedback at all :) Github Repo: https://bit.ly/3EzdeAT... https://bit.ly/4gEQKvs February 7, 2025 at 06:45PM
Show HN: WhisperCat – An Audio Recorder and Transcription Tool https://bit.ly/4aR9nv3
Show HN: WhisperCat – An Audio Recorder and Transcription Tool Hi HN, I wanted to share my first open-source project with you all: WhisperCat . WhisperCat is a small desktop application for recording audio and transcribing it using OpenAI's Whisper API. I built this because I needed something simple and reliable for my own transcription workflows, and now I'm hoping it might be useful to others as well. It's still pretty early stage, but it works well for basic audio recording and transcription tasks. What It Does: Lets you record audio with your preferred microphone. Transcribes audio files automatically via Whisper (OpenAI's transcription API). Supports global hotkeys for recording (e.g., CTRL + R or a custom sequence like triple ALT). Runs in the background (system tray) when minimized. Has a basic microphone testing feature to help you pick the right device. Shows desktop notifications for events (e.g., when recording starts or errors happen). Platforms: WhisperCat is available for Windows and Linux , and there’s also an experimental macOS build you can try if you’re feeling adventurous: Experimental macOS Build You can download the latest release here: https://bit.ly/4jQy2E6 Feedback is welcome! https://bit.ly/4aTxqJD February 10, 2025 at 08:41PM
Show HN: Small back end server to render PNG from VueJS widgets https://bit.ly/4aXyxrN
Show HN: Small back end server to render PNG from VueJS widgets In my company we need to send Discord or WhatsApp messages (eg. alert about something, etc), which cannot unfortunately embed HTML widgets, but I wanted to make it possible to show a "card-like" component with colors, graphs, etc I coded a small backend which lets you mount a VueJS widget (it would work with React too), pass it props from the POST/GET parameters, render it to PNG and send it back You can see an example here: https://bit.ly/4hwLGdW https://bit.ly/3EqJrtW February 10, 2025 at 08:24AM
Sunday, 9 February 2025
Show HN: Infinite Horizontal Array of Text Editors https://bit.ly/4huGMxU
Show HN: Infinite Horizontal Array of Text Editors I made this app to write books chapter by chapter, while taking & browsing through temporary notes for each chapter. The leftmost sidebar is the list of chapters. The sidebar to the right of that is the list of editors in the current chapter. The UI & UX are a bit weird, but they have a basic logic to them. https://bit.ly/4hvV7u5 February 10, 2025 at 02:25AM
Show HN: Ricotta – Language Learning to Replace Anki https://bit.ly/4aQNmwo
Show HN: Ricotta – Language Learning to Replace Anki I’ve been tinkering with Ricotta for about a year now and I'm happy to announce it’s ready to for others to use officially. Largely the time has been spent making the project a framework to spin up newer projects quickly which I can share details around if anyone is interested. The app was born out of my frustration with Duolingo drilling me on words I knew. I moved on to creating custom Anki cards and found myself spending ages creating decks. It’s free, uses spaced repetition under the hood, and focuses on helping you learn what you want to without a course structure. I'd love to hear your thoughts or even feature requests: https://bit.ly/4aReE5Q https://bit.ly/4aReE5Q February 6, 2025 at 11:02PM
Saturday, 8 February 2025
Show HN: Open-source self-hosted AI voice interviewer platform for Hiring https://bit.ly/4aTWzUs
Show HN: Open-source self-hosted AI voice interviewer platform for Hiring https://bit.ly/4gwPHxI February 9, 2025 at 06:15AM
Show HN: Tiny library for more beautiful Python outputs https://bit.ly/4jT7i62
Show HN: Tiny library for more beautiful Python outputs Just a few super minimal conveniences, in case anyone finds them useful. It was one of those cases where the standard libs seem to make things too complicated so you write it yourself. https://bit.ly/3CLaSOL February 9, 2025 at 02:18AM
Show HN: Stock Analysis Feels Broken – Here's My Take on Fixing It https://bit.ly/3CwJZy5
Show HN: Stock Analysis Feels Broken – Here's My Take on Fixing It Stock analysis tools are powerful, but I’ve always run into three challenges: 1/ Too much data, hard to digest – Plenty of insights, but filtering what truly matters is time-consuming. 2/ No clear buy/sell decisions – You get the data, but figuring out what to do next is missing. 3/ No way to build a personal strategy – Most tools use preset metrics, but does not help to invest your own way. As a result, I often fall back on stock price and following others' opinions—not ideal. So, I built https://bit.ly/42MIPcr (v0) to simplify key data, let you set your own rules, and turn them into buy/sell/hold decisions. Would this actually help investors, or am I just solving my own problem? Curious to hear from you: Which of these challenges resonate with you? What do you find useful, confusing, or missing? https://bit.ly/42MIPcr February 9, 2025 at 12:00AM
Show HN: Predict LLM Predictions https://bit.ly/4hy5RZa
Show HN: Predict LLM Predictions https://bit.ly/4aOFeMI February 8, 2025 at 08:14AM
Friday, 7 February 2025
Show HN: Create effortless animation for Product Hunt launch https://bit.ly/4hOfPoL
Show HN: Create effortless animation for Product Hunt launch As I was preparing for PH launch, I had to create multiple gif, so I productized and created this website whether with a few click you can upload your product logo and create beautiful, professional animation. Kept this repo open source so that it grows as more people use it for launch! - Code: https://bit.ly/4hLQ749 - Website: https://bit.ly/3Q8MVE5 https://bit.ly/3Q8MVE5 February 8, 2025 at 05:39AM
Show HN: AutoResearch.pro – Open/src AI presentation generator free PPTX exports https://bit.ly/4hLNcbQ
Show HN: AutoResearch.pro – Open/src AI presentation generator free PPTX exports https://bit.ly/4hO6Nbl February 7, 2025 at 11:28PM
Show HN: Play with real quantum physics in your browser https://bit.ly/3WRb0mq
Show HN: Play with real quantum physics in your browser I wanted to make the simplest app to introduce myself and others to quantum computing. Introducing, Schrödinger's Coin. Powered by a simple Hadamard gate[0] on IBM quantum, with this app you can directly interact with a quantum system to experience true randomness. Thoughts? Could you see any use cases for yourself of this? Or, does it inspire any other ideas of yours? Curious what others on HN think! [0] https://bit.ly/4hPQBpV... https://bit.ly/42FR3TA February 4, 2025 at 07:24PM
Show HN: Shifting Tic Tac Toe https://bit.ly/42MHSAW
Show HN: Shifting Tic Tac Toe https://bit.ly/415AuPE February 7, 2025 at 11:31AM
Thursday, 6 February 2025
Show HN: TextQuery – Analyze Raw Data Locally (CSV, JSON, XLSX) Using SQL https://bit.ly/4hDZTp8
Show HN: TextQuery – Analyze Raw Data Locally (CSV, JSON, XLSX) Using SQL https://bit.ly/3TcamgG February 7, 2025 at 06:36AM
Show HN: LangGraph and CrewAI in One Framework of Frameworks https://bit.ly/3EvF5Sr
Show HN: LangGraph and CrewAI in One Framework of Frameworks https://bit.ly/4hNqDn3 February 7, 2025 at 03:09AM
Show HN: I built a tool to create polls on Bluesky https://bit.ly/3Cr3uYQ
Show HN: I built a tool to create polls on Bluesky Hey everyone. I’ve been missing polls on Bluesky for a while and got curious about how to make it work. So, I put together a little tool called blueskypolls.xyz as a workaround that lets you create polls for your posts. It’s not perfect, but it gets the job done! Here’s how it works: • You can create polls with multiple options • You can also create polls as a reply to a post • It even supports custom emojis if you want to make things a bit more fun • You can also setup a poll end date • You can see results of each of your polls with some beautiful graphs One thing to note: the tool requires your an app password to work, not your main account password. App passwords are specifically for connecting third-party tools and can be managed in your Bluesky account settings. It’s a safer way to use tools like this without sharing your main password. If you’ve been wishing for polls on Bluesky, this might be something you’d find useful. I’d love to hear your thoughts or if there’s something you think could make it better. https://bit.ly/3Cr3vMo February 6, 2025 at 07:52AM
Wednesday, 5 February 2025
Show HN: Stop sending files to sketchy servers and convert any file offline https://bit.ly/4grv8Tf
Show HN: Stop sending files to sketchy servers and convert any file offline Hey HN! I made How to Convert. Here's the problem I had and the solution I thought of: Problem When you search "How to convert PNG to ICO" on Google, you get a bunch of shady looking "free" results that send your data to unknown servers. The same is true for almost any conversion you are trying to do. So what do I want? I want something I can trust completely. AKA locally running, doesn't send my files or data anywhere and built by an independent developer building in public. Solution How to Convert Privacy-first: Files stay on your device and it works offline. Wide compatibility: Works with nearly any file type in an all-in-one app. If your file type is not yet supported, submit an issue to get it added! Unlimited use: One purchase, infinite access. Runs anywhere: Runs on Mac, Windows, Linux or the Web. https://bit.ly/4gyliyW February 6, 2025 at 06:36AM
Show HN: Former – open-source Cursor for SQL https://bit.ly/4hpB14K
Show HN: Former – open-source Cursor for SQL Hey everyone, Elliott and Matty here. We’ve built Former, an open source AI-first SQL Editor. The repo is available at https://bit.ly/4aSsBjN and our home page is https://bit.ly/432FN3Z . We built Former to provide an AI-first development environment for working with data. We’ve seen incredible applications of AI to the software engineering space with Cursor, Windsurf, and others, but we believe that focussing on a product just for data teams is needed for their unique workflows. Former is starting as a full SQL editor experience with an embedded AI that has all the context needed for accurate SQL generation. We currently support Cursor features like Cmd+K (inline AI edit) and Cmd+L (AI chat with apply). It’s true, Cursor is already useful for writing SQL, but our advantage is in providing context and functionality specific to the data domain, which we believe will enable us to eventually build something far more powerful for data teams than Cursor. In the long term we see room for an AI coworker that helps you complete all of your data analyst/engineer tasks, but “Cursor for SQL” seems like a good start. Security is obviously a major consideration for a product that tries to combine AI and data. After speaking to dozens of data analysts and engineers, we found there is a wide spectrum from people who aren't even allowed to use AI at work, to people who will happily send the contents of their entire database to OpenAI. We settled on a middle ground of sending SQL + DB schema to 3rd party AIs, but a privately hosted AI is easy to setup for someone who doesn't want to have anything leave their own infrastructure. You can access the source code (MIT Licence) and self-host at https://bit.ly/4aSsBjN We would love any raw feedback. We'd especially love to know what is required to have you start using this tool in your daily workflow. Let us know what you think! Discord for direct feedback/contact: https://bit.ly/3CtJBjP https://bit.ly/4aSsBjN February 6, 2025 at 04:41AM
Show HN: PulseBeam – Simplify WebRTC by Staying Serverless https://bit.ly/410LZrw
Show HN: PulseBeam – Simplify WebRTC by Staying Serverless WebRTC’s capabilities are amazing, but the setup headaches (signaling, connection/ICE failures, patchwork docs) can kill momentum. That’s why we built PulseBeam—a batteries-included WebRTC platform designed for developers who just want real-time features to work. What’s different? Built-in Signaling Built-in TURN Time limited JWT auth (serverless for production or use our endpoint for testing) Client and server SDKs included Free and open-source core If you’ve used libraries like PeerJS, PulseBeam should feel like home. We’re inspired by its simplicity. We’re currently in a developer-preview stage. We provide free signaling like PeerJS, and TURN up to 1GB. Of course, feel free to roast us https://bit.ly/411MhhM February 5, 2025 at 11:46PM
Tuesday, 4 February 2025
Show HN: Tool to backup GitHub repos to local mirrors; (also self hostable) https://bit.ly/4hlXPm0
Show HN: Tool to backup GitHub repos to local mirrors; (also self hostable) https://bit.ly/4hHnYeG February 5, 2025 at 05:26AM
Show HN: Compare salaries, tax, & living costs globally https://bit.ly/3Q6Hxl0
Show HN: Compare salaries, tax, & living costs globally Hi HN - Like many in tech, I've thought about relocating to different cities. But comparing salaries, income tax, housing costs, and overall cost of living is hard. It's hard to know where you'd actually save up more money. So I built a site to make it easier. It's my first HN project, hope you find it useful. Any feedback is appreciated, thanks! https://bit.ly/3Q4l4ot February 5, 2025 at 03:50AM
Show HN: Gave Claude LSD SQL https://bit.ly/4aOuwpq
Show HN: Gave Claude LSD SQL LSD SQL is a DSL for the web that can self-correct as an LLM traverses the internet. Here's what it looks like now that Claude is connected to the internet similar to OpenAI's Deep Researcher. Want to be a Claudestine Chemist? Follow the quickstart instructions in the README to get started! https://bit.ly/4aOuxcY Check out @getlsd on Twitter to see some of our other work or see our website to view the docs https://bit.ly/4aOuxtu https://bit.ly/4aOuxcY February 3, 2025 at 09:11AM
Show HN: CoPlay – Enabling In-Room Xbox Gaming for Children's Hospitals https://bit.ly/4hkQ3ZF
Show HN: CoPlay – Enabling In-Room Xbox Gaming for Children's Hospitals Hey everybody, My name is Brady. I'm the creator of CoPlay. Think of it as an MDM/fleet management for xbox accounts and devices. Pediatric hospitals want to allow their patients to play and connect with friends, family and other patients but they have lacked the tools to facilitate and manage this in the past. A friend and I found this problem while volunteering at our local children's hospital. We are now in 6 pediatric hospitals across the US. Yup, it's a niche. But it's a cool niche. I'm sharing this to get feedback, answer questions, contribute to this amazing community and most importantly, HOPEFULLY FIND SOMEONE THAT CAN GET US CONNECTED TO SOME OF THE HIGHER UPS AT MICROSOFT/XBOX. If you have any connections at all please reach out. We believe there is an opportunity for a beautiful partnership there. Sorry for shouting ;) https://bit.ly/413i1Da February 4, 2025 at 09:38PM
Monday, 3 February 2025
Show HN: I recreated a circular timer with Orbit https://bit.ly/3EzpoJN
Show HN: I recreated a circular timer with Orbit https://bit.ly/4gtKarN February 4, 2025 at 04:57AM
Show HN: Looking for work is a full time job – So I created this tool https://bit.ly/4hk47m8
Show HN: Looking for work is a full time job – So I created this tool https://bit.ly/4hrBpzS For anyone currently stuck in the grind of endlessly applying for jobs, I completely understand your frustration. I’ve been job hunting for the past four months, and it’s been painfully repetitive and time-consuming. Applying via LinkedIn often feels like throwing your resume into a sea of 1,000+ other applicants, even with daily alerts turned on. What worked better for me was following founders, recruiters, VCs and other key connections. I’d wait for them to post about roles to their network and apply directly by sending them a DM. This strategy landed me a few interviews, more than going via traditional application portals. To make this process less manual, I built a tracker that highlights posts from people sharing roles with their private networks. It’s 100% free, so feel free to check it out if you’re in the job market! https://bit.ly/4hrBpzS February 4, 2025 at 01:45AM
Show HN: GateOMatic – Ring 10 phones at once from your gate/buzzer instead of 1 https://bit.ly/4hHE3kr
Show HN: GateOMatic – Ring 10 phones at once from your gate/buzzer instead of 1 Hi guys, I’m the maker of GateOMatic. GateOMatic makes old-school gate buzzers smarter by letting up to 10 phones ring at the same time when someone enters your gate code. No more missed visitors or deliveries because the call went to the wrong person. You get a local phone number assigned to you account that forwards all the calls. You can enable of disable any phones in your account instantly from the dashboard. Right now we are offering 50% off forever! Please check it out and let me know how it works https://bit.ly/3WJZtFA February 4, 2025 at 01:29AM
Show HN: Open-source version of OpenAI's Deep Research https://bit.ly/4gkvL0U
Show HN: Open-source version of OpenAI's Deep Research Last night, OpenAI launched Deep Research, a tool for AI-powered deep web searches. In a few hours, I built an open-source alternative using Next.js, Firecrawl, and Vercel's AI SDK. Instead of using a fine-tuned version of o3, this method uses Firecrawl's extract + search with a reasoning model to deep research the web. The system is built using Vercel’s AI SDK for handling requests and streaming data, with an agent-based approach that manages search, extraction, and analysis. It uses Firecrawl to find and extract structured data, which is then processed through a progressive analysis system to refine and summarize results. The process follows an iterative cycle: Firecrawl’s /search API finds relevant URLs, /extract pulls structured data, and a planning function determines what to look for next. A research state tracker keeps track of findings, summaries, and progress while enforcing depth (maxDepth) and time limits to stay within Vercel’s function execution time constraint. The results stream into a live UI, showing search progress, sources, and key insights. The cycle continues until enough information is collected or limits are reached, producing a final structured summary. This was a pretty fast built and I wanna keep iterating on it. Would love to hear your thoughts. https://bit.ly/3Q2dtqx February 3, 2025 at 11:19PM
Show HN: Audio Samples of Microsoft Edge Text-to-Speech Voices https://bit.ly/3WLKoDr
Show HN: Audio Samples of Microsoft Edge Text-to-Speech Voices https://bit.ly/4hZrdyr February 3, 2025 at 12:26PM
Show HN: Made a tiling manager Linux-XFCE to roughly copy Snap-Layout in Windows https://bit.ly/42G7iA6
Show HN: Made a tiling manager Linux-XFCE to roughly copy Snap-Layout in Windows Title says all that needs to said about it, admittedly it is stupid to "copy" any Windows feature in Linux but here we are...it is not exactly made for use by extensive audience but just a rough work of it would love any suggestion/critique on it ... https://bit.ly/4gFXWI1 February 3, 2025 at 05:43AM
Sunday, 2 February 2025
Show HN: I Built a Platform to Buy and Sell GitHub Repositories https://bit.ly/4jFLhr6
Show HN: I Built a Platform to Buy and Sell GitHub Repositories Hey HN, I built a platform that allows developers to buy and sell GitHub repositories using private forking. The idea is to help indie developers, open-source maintainers, and teams monetize their work while ensuring buyers get fully functional projects with minimal hassle. Many developers create great projects but lack the time or resources to maintain them. Instead of letting them fade away, why not sell them to someone who wants to continue the work? Here is how it works: - Sellers list theis GitHub repos in the platform - Buyers purchase repos - Buyers automatically added as collaborators and can fork the repo Check it out here: https://bit.ly/4jGN5A4 https://bit.ly/40KxNS6 February 3, 2025 at 01:37AM
Show HN: SeekMyDomain – AI-Powered Domain Name Suggestions in Seconds https://bit.ly/4hFZVg5
Show HN: SeekMyDomain – AI-Powered Domain Name Suggestions in Seconds Hello HN community, I’m excited to introduce SeekMyDomain.com, a tool designed to simplify the process of finding the perfect domain name for your projects. Key Features: - AI-Driven Suggestions: Describe your project, and our AI generates relevant and available domain names within seconds. - Instant Availability Check: Ensures that the suggested domain names are currently available for registration. - User-Friendly Interface: A clean and intuitive design makes the search process straightforward and efficient. Whether you’re launching a new startup, creating a personal blog, or developing a niche website, SeekMyDomain.com aims to make the domain selection process hassle-free. I would love to hear your feedback and answer any questions you might have. Thank you for checking it out! Luiz https://bit.ly/3PXxbUt February 2, 2025 at 12:20PM
Show HN: Modest – musical harmony library for Lua https://bit.ly/3PYMewS
Show HN: Modest – musical harmony library for Lua This is a project I've been building in my spare time over the past few months. It's a library that provides methods for working with musical harmony ‒ intervals, notes, chords. For example, it can parse almost any chord symbol (Fmaj7, CminMaj9, etc) and turn it into notes, or it can identify a chord from a given set of notes. I started this project with the idea of using formal grammar to parse chord symbols. I wanted to use it instead of a hand-written parser, which is the common approach among similar libraries. Lua caught my attention because of Lpeg, a Parsing Expression Grammar library that is both fast and easy to use. An additional motivation for using Lua was the lack of comparable libraries for it, even though the language is commonly used in audio programming. However, despite being a Lua library, the project itself is written in Fennel — a "lispy" language that transpiles to Lua. Fennel has features that make writing code for the Lua platform much more pleasant: a concise syntax, macros, and destructuring — a feature Lua sorely lacks! In the process, I definitely learned a lot about music theory, although my new knowledge is quite one-sided. By working on this library, I know a thing or two about types and structure of chords, but I learned almost nothing about their composition and transformation. Perhaps these will be the directions I explore next in the project. https://bit.ly/3CzYFw6 February 2, 2025 at 11:32AM
Saturday, 1 February 2025
Show HN: I built a full mulimodal LLM by merging multiple models into one https://bit.ly/3CutmD5
Show HN: I built a full mulimodal LLM by merging multiple models into one https://bit.ly/3CvRmWo February 2, 2025 at 08:14AM
Show HN: Val Town Projects https://bit.ly/3QkyRHT
Show HN: Val Town Projects Hello! We at Val Town have spent the last couple months redesigning our product around a new core primitive: Val Town Projects. Why: Our prior core primitive, a "val", was too small. A val is just a single hosted JavaScript file. Users kept bumping up against rough edges managing lots of disparate vals. What: A Val Town Project is a group of vals, files, and folders, versioned collectively. They support branches, forks, and merges. How: We made the sacrilegious decision to not build on git. We instead built a simplified system that works directly in our postgres database. Our dream is that Val Town Projects will unlock a new kind of collaboration, and we hope you all make amazing things with it! https://bit.ly/3PZoUzd January 31, 2025 at 07:55PM
Subscribe to:
Posts (Atom)