Thursday, April 24, 2025

Show HN: GitNote- Online MD note editor that syncs to GitHub https://ift.tt/75PK6Jk

Show HN: GitNote- Online MD note editor that syncs to GitHub https://ift.tt/PBWxF9z April 25, 2025 at 01:25AM

Show HN: I reverse engineered top websites to build an animated UI library https://ift.tt/JA1IHzD

Show HN: I reverse engineered top websites to build an animated UI library Looking at websites such as Clerk, I began thinking that design engineers might be some kind of wizards. I wanted to understand how they do it, so I started reverse-engineering their components out of curiosity. One thing led to another, and I ended up building a small library of reusable, animated components based on what I found. The library is built in React and Framer Motion. I’d love to hear your feedback https://reverseui.com April 24, 2025 at 11:17PM

Wednesday, April 23, 2025

Show HN: Body Controlled 3D Dino Game https://ift.tt/WjQfRs1

Show HN: Body Controlled 3D Dino Game Hey HN, I am Niko. I've built this 3D Dino Game In browser using tech like three.js and MoveNet (tensorflow). Basically, it's a normal 3D dinosaur game with a twist: you need to actually perform actions irl to avoid obstacles. Duck to crouch, jump to jump, raise left hand - go left, raise right hand - go right. Game is using your phone/laptop camera to track your body movements and perform in-game actions. PS. Game is 100% client side and I don't record/track/use/save any of your data Hope you find it worth playing. (better play on PC) It's a 100% FREE browser game with no login! Please feel welcome to DM feedback or reply or anything! https://ift.tt/80BcH4Q April 23, 2025 at 02:58PM

Tuesday, April 22, 2025

Show HN: Durable Python Workflows https://ift.tt/26SIXJU

Show HN: Durable Python Workflows https://ift.tt/5wkjYis April 23, 2025 at 04:11AM

Show HN:[Opensource] AIgr.id–Polycentric Infrastructure for Open and Plural AI https://ift.tt/XJGSg1l

Show HN:[Opensource] AIgr.id–Polycentric Infrastructure for Open and Plural AI Hey HN! I'm Kanishka Nithin, founder of AIGr.id ( https://www.aigr.id ). We’re building AIGr.id — a polycentric network of independent, modular AI that can coordinate, exchange data, and compose into higher-level intelligence — all within a decentralized and plural ecosystem. Rings collective intelligence? In simpler terms: We’re trying to make it possible for people to produce, remix, operate, distribute and consume AI systems the way we use the internet— openly, collaboratively, and without needing to centralize everything into one mega-model owned by one mega-entity. Just like internet of intelligence. Today’s AI landscape is: Centralized, resource-heavy systems demand vast funding, compute, and talent—excluding much of the world. Controlled by a few powerful actors prioritizing profit over public good. Participation is limited, deepening inequality in AI benefits. Fragmented and siloed, with no open protocols for AI coordination We believe it's time to reimagine AI as collective intelligence, as shared commons — poly-centric, collaborative, composable, inclusive, and guided by values beyond profit. What’s different about our approach is that we’re not trying to build “the one true model” — we’re trying to make it easier for people to build, remix, run, and govern their own AI systems, together. We want a world where AGI doesn’t have to be monolithic — where different models, agents, and collectives can evolve side by side, coordinate, and even argue if they need to. Plural, by design. At the core of AIGr.id is OpenOS.AI, a distributed AI operating system. It is a full stack AIOS that spans everything from low-level compute orchestration to higher-level cognition, coordination, governance and economic policy. Think of it as a programmable substrate for building and running decentralized AI systems — across any infrastructure, in any topology. Developers can use shared protocols, primitives, and templates to compose AI systems — models, agents, cognitive workflows — and plug them into running grids. These grids can be public, private, federated, or even permissionless. Each grid can maintain its own sovereignty (values, rules, trust mechanisms), but still remain interoperable with others. It's designed for a world where we expect many intelligences to coexist, rather than one model to rule them all. We’re in beta and will be kicking off more extensive scale testing during our upcoming testnet phase. If this scratches an itch for you, or just want to jam on open systems — we’d love your feedback. If you're interested in joining the testnet, you can join our discord @ https://ift.tt/nfixAUg — we’d be excited to have you involved early. Docs, GitHub, and the paper are all linked at https://www.aigr.id Curious what you think — critiques, weird use cases, edge cases, counterpoints — all welcome. Our own background is what pushed us into this problem. Before this, we were a 4-person crew running one of the largest real-time AI inference workloads in India. We were doing around 500K inferences/sec across 80–90 models simultaneously, supporting 35+ public-sector use cases — mostly video analytics. We were operating across federated and private infrastructure in real time, processing millions of frames per second. We didn’t rely on cloud providers or commercial frameworks. Our market was distorted by deprioritized infrastructure investment and choosing to grow within our earnings means the only way to survive was by being ruthlessly efficient: creating frameworks that automated end to end production, operation, distribution and maintenance life cycle of AI -- everything at scale reliably without or with minimal human intervention — so four of us could actually live our lives, too. So in a way, AIGr.id was born out of necessity. It's the system we wish we had — one that treats intelligence as something modular, networked, composable, orchestratable, shareable, and governable – in a collective way. https://www.aigr.id April 22, 2025 at 11:13PM

Monday, April 21, 2025

Show HN: I made TypeScript's type inference more strict (and smarter) https://ift.tt/MbiPZXW

Show HN: I made TypeScript's type inference more strict (and smarter) As a TypeScript developer, I often found myself wishing the type system could do more—*especially when omitting or modifying deeply nested properties* inside complex objects and arrays. For instance, what if I want to remove a deeply nested field like `user.profile.email` and also something like `user.posts[ ].meta.shares` from a type? TypeScript doesn't really provide a built-in way to do that. So I built *DeepStrictTypes* — a utility that lets you *omit deeply nested keys*, even inside arrays, with full type inference and strictness. Here’s an example: ```ts type Example = { user: { id: string; profile: { name: string; age: number; email: string; }; posts: { title: string; content: string; meta: { likes: number; shares: number; }; }[]; }; }; // Remove 'user.profile.email' and 'user.posts[ ].meta.shares' type Omitted = DeepStrictOmit< Example, 'user.profile.email' | 'user.posts[*].meta.shares' >; ``` The resulting type: ```ts { user: { id: string; profile: { name: string; age: number; }; posts: { title: string; content: string; meta: { likes: number; }; }[]; }; } ``` Works great for: - Cleaning up types for API responses - Dynamically transforming deeply nested data - Improving type safety when handling structured JSON [ https://ift.tt/X2FrN68 ]( https://ift.tt/X2FrN68 ) Would love your feedback or ideas for improvements! https://ift.tt/yFqxuiR April 22, 2025 at 09:17AM

Show HN: Prompt Coded 3D Asteroids https://ift.tt/vtdwRsq

Show HN: Prompt Coded 3D Asteroids https://ift.tt/njHsJOT April 22, 2025 at 04:25AM

Show HN: ArTok is TikTok for research papers https://ift.tt/y9jnxFW

Show HN: ArTok is TikTok for research papers Hello everyone! I always found it hard to find new research papers outside of my usual bubble. I thought a random feed (with no recommendation algorithms) might be a fun way to explore. But I also didn’t want to waste time on completely unrelated stuff — so the idea of a fast, swipeable format came to mind. Wikitok was a real inspiration! But Arxiv and Open Review APIs weren’t as robust as Wikipedia, so I pulled the papers into a Postgres backend. Right now, I’ve indexed papers from a few recent ML conferences to see if this might be useful for others too. No signups required and it’s totally free. You can mark your favorites and add text annotations, which are saved on your device. Would love to hear your feedback! https://artok.app April 22, 2025 at 12:43AM

Show HN: Open Codex – OpenAI Codex CLI with open-source LLMs https://ift.tt/xiF3XRC

Show HN: Open Codex – OpenAI Codex CLI with open-source LLMs Hey HN, I’ve built Open Codex, a fully local, open-source alternative to OpenAI’s Codex CLI. My initial plan was to fork their project and extend it. I even started doing that. But it turned out their code has several leaky abstractions, which made it hard to override core behavior cleanly. Shortly after, OpenAI introduced breaking changes. Maintaining my customizations on top became increasingly difficult. So I rewrote the whole thing from scratch using Python. My version is designed to support local LLMs. Right now, it only works with phi-4-mini (GGUF) via lmstudio-community/Phi-4-mini-instruct-GGUF, but I plan to support more models. Everything is structured to be extendable. At the moment I only support single-shot mode, but I intend to add interactive (chat mode), function calling, and more. You can install it using Homebrew: brew tap codingmoh/open-codex brew install open-codex It's also published on PyPI: pip install open-codex Source: https://ift.tt/kjmZxN5 https://ift.tt/kjmZxN5 April 21, 2025 at 11:27PM

Sunday, April 20, 2025

Show HN: TikTrotter – TikTok but for obscure travel trivia to beat doomscrolling https://ift.tt/oukqwhl

Show HN: TikTrotter – TikTok but for obscure travel trivia to beat doomscrolling I'm trying to stop doomscrolling social media, so I made a website to help me. I'm a huge traveler so I made a website that shows infinitely-scrolling obscure locations with interesting trivia in a TikTok-like manner. I've been discovering a lot of cool places in the world and dropped my social media time a lot. The website is 100% free, no ads and no sign-up. Check it out if interested, I would appreciate some feedback. Next step is to create a multiplayer trivia game where you can challenge your friends and see who knows more about the world. https://ift.tt/qm9blX3 April 20, 2025 at 09:34PM

Show HN: MidiMaker.pro – Generate structured MIDI music from text using LLMs https://ift.tt/RHN2kY3

Show HN: MidiMaker.pro – Generate structured MIDI music from text using LLMs https://midimaker.pro/ April 20, 2025 at 11:28PM

Saturday, April 19, 2025

Show HN: FlowG v0.32.0, Added support for OpenTelemetry logs collection https://ift.tt/eQ6Knu3

Show HN: FlowG v0.32.0, Added support for OpenTelemetry logs collection https://ift.tt/9jdGInR April 20, 2025 at 02:39AM

Show HN: Ibex – a cross-platform iOS backup decryption tool https://ift.tt/QFivdY4

Show HN: Ibex – a cross-platform iOS backup decryption tool ibex is a cross-platform tool designed for decrypting and extracting iOS backups. It provides forensic investigators, security researchers, and power users with the ability to access and analyze encrypted iOS backup data. It can be built and used on macOS, Linux, and Windows and is permitted to be used only with the explicit and informed consent of the backup data owner. Ibex was written in Go for straightforward compilation and to circumvent dependency issues and with the goal of enabling researchers and defenders assisting civil society victims of spyware and stalkerware Key Features - Decrypt encrypted iOS backups - Support for latest iOS versions - Cross-platform compatibility (macOS, Windows, Linux) - Automatic backup detection - Single file extraction based on filename match - Structured output organization - Detailed manifest parsing and extraction Basic Usage Examples # Run with automatic backup detection and interactive mode ibex # Specify just the backup path ibex -b /path/to/backup # Specify backup path and password ibex -b /path/to/backup -p "backup_password" # Specify custom output directory ibex -b /path/to/backup -p "backup_password" -o /path/to/output # Specify a single file for decryption and extraction ibex -b /path/to/backup -o /path/to/output --file sms.db # Specify relative path preserved output ibex -b /path/to/backup -o /path/to/output -r https://ift.tt/ebB9pYo April 19, 2025 at 11:10PM

Show HN: New world record – verified Goldbach Conjecture up to 4*10^18+7*10^13 https://ift.tt/jFCVoNG

Show HN: New world record – verified Goldbach Conjecture up to 4*10^18+7*10^13 Achieved a new world record in verifying the Goldbach Conjecture using grid computing, by extending the verification up to 4 quadrillion (4×10¹⁸) + 70 trillion (7×10¹³). My grid computing system - Gridbach is a cloud-based distributed computing system accessible from any PC or smartphone. It requires no login or app installation. The high-performance WASM (WebAssembly) binary code is downloaded as browser content, enabling computation on the user’s browser. [Website] https://gridbach.com/ [Medium] https://ift.tt/Txdo294... https://ift.tt/kdnDSxu April 19, 2025 at 11:41AM

Friday, April 18, 2025

Show HN: I made a game using mazes generated by ChatGPT https://ift.tt/JaxdUPD

Show HN: I made a game using mazes generated by ChatGPT https://ift.tt/z7XRP5E April 19, 2025 at 04:29AM

Show HN: Dirb – Directory in Bio https://ift.tt/uQ8XpDj

Show HN: Dirb – Directory in Bio Dirb lets you build a personal profile, organize links into rich, shareable lists, and automatically pull metadata and embeds. With built-in analytics, you can track clicks, views, and visits. It's made for creators, entrepreneurs, and professionals. Let me know what you think. I appreciate any feedback! https://dirb.io April 19, 2025 at 12:42AM

Thursday, April 17, 2025

Show HN: Weblook – a headless webapp screenshot tool written in Rust https://ift.tt/oC5iHuR

Show HN: Weblook – a headless webapp screenshot tool written in Rust I basically created this for another project I was working on and want a visually consistent track of changes to train a model against for web-app testing validation. https://ift.tt/XZIPdHK April 18, 2025 at 02:03AM

Show HN: HN Watercooler – listen to HN threads as an audio conversation https://ift.tt/sPapdq4

Show HN: HN Watercooler – listen to HN threads as an audio conversation Hi HN, here's something fun to play with. It takes any HN thread and turns it into an audio conversation so you can listen to the thread while doing other things. I've seen many previous attempts to turn HN threads into podcasts, but they all shared a common issue IMO: trying to reduce the very rich back-and-forth into a single-thread single-reader boring podcast. Instead, I wanted to hear the actual debate from the actual thread! So I asked Claude 3.7 to build this for me as a browser-only app. It just needs a thread URL and an Elevenlabs API key (this all remains in your browser, you can check the source code, it's only 3 files, there is no server storage of anything). To make the resulting audio experience as natural as possible, each commenter has a different voice. Commenters who appear multiple times in the thread have the same voice, and introduce themselves. A bit of context is also introduced when coming back "up" from deeply nested comments. You can play the resulting audio or download it for later listening. I'm planning to later add the ability to load multiple threads so I can have a playlist generated for listening in the gym! Any comments or improvement suggestions are appreciated! https://ift.tt/G6lQn7x April 18, 2025 at 12:24AM

Show HN: Zuni (YC S24) – AI Copilot for the Browser https://ift.tt/73P6htu

Show HN: Zuni (YC S24) – AI Copilot for the Browser Hi HN, I'm Will, and along with my co-founder George, we've built Zuni ( https://zuni.app ) - a browser extension that adds contextual AI capabilities to your browser. It understands what you're reading and working on, whether that's email, research, or anything else in your tabs. We started out building a full email client with AI built in (you might have seen that version showcased in YC’s AI Design Review - https://www.youtube.com/watch?v=DBhSfROq3wU&t=1601s ), but learned that people don't actually want to leave their existing tools - they just want them to work better. Gmail might be frustrating, but it has years of features people rely on. So we pivoted to enhance the tools people already use, rather than replace them entirely. Some specific things Zuni does today: - Analyzes emails as you read them in Gmail, identifying action items and suggesting possible responses - Lets you discuss how to handle tricky emails, almost like having a thought partner - Maintains context across your browsing session so you can ask follow-up questions naturally - Runs locally first for speed and privacy - Doesn't store chats, emails or anything sensitive in the cloud We're still early and focusing on getting the core experience right before adding more integrations. The goal is to make AI actually useful in your daily work, rather than just another "AI feature" checkbox. Would genuinely love feedback from the HN community - what would make this truly useful for your workflow? What are we missing? Happy to answer any questions about the technical implementation too. https://zuni.app April 17, 2025 at 08:45PM

Wednesday, April 16, 2025

Show HN: We made a VS Code extension to recreate a debugger experience from logs https://ift.tt/zIGldTC

Show HN: We made a VS Code extension to recreate a debugger experience from logs A month ago [1], we made an MCP server so Cursor can debug Node.js on its own. We emailed every person that starred our repository [2] and learnt that frontend devs really want to give Cursor access to browser logs, and that backend devs (our intended audience) do not use debuggers nearly as much as we thought. We interviewed friends across startups and discovered that they use logs to debug, because they can’t run services locally on their machine. The services (1) require too much disk, RAM, or CPUs to run locally, (2) have too many service dependencies (think microservices), or (3) are a faff to instantiate locally with a debugger. Instead, our friends instrument their services, deploy them to staging environments via Kubernetes, and then query the logs via data stores (think Grafana, Axiom.co, Google Cloud Logging, etc) or directly (think Kubernetes logs). We thought: "What if we could recreate a debugger-like experience from logs?". That would save them from browsing logs and trying to make sense of them outside the context of the code base. We looked into it and made a VS code extension that lets you (1) import logs, (2) go to the line of code associated with a log, and navigate up/down the probable call stack associated with a log. It's a prototype, but if you're interested in trying it out, we'd love some feedback! GitHub: github.com/hyperdrive-eng/traceback --- References: [1]: https://ift.tt/iKqmxyp [2]: 140 Github stars, 69 emails sent (the rest were bots), 19 responses received (= 28% response conversion), 4 meetings held (= 21% meeting conversion). https://ift.tt/4AiC2my April 17, 2025 at 04:37AM

Show HN: Milter in Rust to Add Headers https://ift.tt/uXIAmbK

Show HN: Milter in Rust to Add Headers Here's a milter in Rust that adds List-Unsubscribe headers. It creates a URL that has encoded email-from, rcpt-to and a HMAC SHA 256 verification hash using a shared secret key. Possibly it improves delivery of newsletters and transactional emails. https://ift.tt/5n9Ooyd April 17, 2025 at 02:22AM

Tuesday, April 15, 2025

Show HN: Particle - News, Organized https://ift.tt/xBRduWl

Show HN: Particle - News, Organized Hello HN! Particle News product engineer here. Keeping up with the news is overwhelming in an age of information overload. Particle reimagines the experience by organizing articles into comprehensive "Stories," offering clear, concise summaries to quickly grasp what matters. Today, we reached the #1 spot in "Newspapers & Magazine" on the iOS App Store—and I thought I'd share a bit of our backstory. I've been connected to this team for a long time. About 20 years ago, I shared a house with our CTO and co-founder Marcel Molina. I helped him get started with programming. Since then, Marcel has had an extraordinary career—becoming a senior staff engineer at Twitter, where he helped build foundational features like Retweets, Notifications, and Lists, and later working at Tesla on manufacturing execution systems that scaled across Gigafactories. At Twitter, Marcel worked closely with our CEO and product visionary Sara Beykpour, who led initiatives like Twitter Blue, Twitter Video, and the experimental app twttr . Sara has a background in Software Engineering and Cognitive Science from the University of Waterloo and spent over a decade at Twitter in engineering and leadership roles. In late 2022, Sara and Marcel started prototyping a news app that could reduce the cognitive and emotional burden of staying informed—by using AI to help people understand more, faster. They were soon joined by a few other former Twitter colleagues who helped shape the early concept into a working iOS application. I joined about 15 months ago to contribute across the entire stack. Since then, I've helped design and build major iOS features, rewritten our public website on Cloudflare Workers, and implemented new functionality in our Go backend, which is driven by Google Cloud's Pub/Sub architecture. What Makes Particle News Different Particle helps you navigate the news effortlessly—leveraging AI to help you understand more, faster. Some highlights: • Personalized News – Your feed is tailored to your interests. You can follow specific people, places, and things so you never miss what matters to you. • Clear Summaries – Get a quick overview or dive deeper with detailed, structured context—summarized in natural language. • Perspective Tools – Features like "Opposite Sides" and our political spectrum chart let you explore stories through multiple lenses. • Interactive Q&A – Ask questions about any story and get concise answers with sources and citations. • Audio Summaries – Use the "Play" feature to listen to your feed, specific stories, or even select articles—great for hands-free or on-the-go moments. One of the things we're most proud of is how Particle supports publishers. We've partnered with outlets like Reuters, AFP, and Fortune to host some of their content via APIs. These partners get prominent placement, and their links are highlighted in gold to stand out. This model aims to drive traffic back to publishers and reward high-quality journalism, rather than just aggregating and commodifying it. Transparency is a core value: all sources are cited, generated answers are grounded in evidence, and we take real care to prevent AI hallucinations or misleading summaries. Despite negligible marketing spend, Particle has grown to the top of its category by focusing on engagement with early users and meaningful partnerships with the media ecosystem. Coming soon: weekday mini crosswords—a new feature designed by another longtime friend of ours from 20 years back who went on to work at Twitter, lead development on Firewatch, and release his own games independently. It's incredibly fun and rewarding to be building something meaningful with old and new friends. I feel lucky every day to work alongside some of the best product, design, and engineering minds on a project we hope will help people stay engaged with democracy without burning out. https://ift.tt/fSYiRlv April 16, 2025 at 02:56AM

Show HN: I made Python project template so you don't need to spend hours on it https://ift.tt/vL5NSbd

Show HN: I made Python project template so you don't need to spend hours on it https://ift.tt/DdN7WKE April 16, 2025 at 04:34AM

Show HN: Torque – A lightweight meta-assembler for any processor https://ift.tt/OhVIc8P

Show HN: Torque – A lightweight meta-assembler for any processor Hello everyone, I've been working on this project for the past few months. Torque is a meta-assembler: instead of having an instruction set built into the assembler, you use macros to build up a small language that decribes an instruction set and then you use that to write your program. It's designed to work for any microcontroller/processor architecture, you build from the bit level upwards so there aren't any assumptions around word widths, instruction formats, or endianness. I created Torque initially to write programs for a PIC microcontroller, after running into difficulties with the official assembler. I've also used it to write programs for the Z80 processor inside an old TRS-80 computer. Let me know if you try it out or have any questions! https://ift.tt/0goBcS5 April 16, 2025 at 03:16AM

Show HN: I asked Gemini2.5 pro to create a "bro version" of a stoic book https://ift.tt/5SLWeIc

Show HN: I asked Gemini2.5 pro to create a "bro version" of a stoic book https://ift.tt/J76gK5S April 15, 2025 at 11:06PM

Monday, April 14, 2025

Show HN: ActorCore – Stateful serverless framework that runs anywhere https://ift.tt/s3QuqwD

Show HN: ActorCore – Stateful serverless framework that runs anywhere TL;DR: ActorCore is a stateful serverless framework that can be deployed to Rivet, Cloudflare, Bun, Node.js and more. It's the easiest way to build stateful, AI agent, collaborative, or local-first applications. Hey HN! A few months ago we launched Rivet Actors ( https://ift.tt/dQ2YUpP ) as an open-source alternative to Cloudflare Durable Objects. Shortly after launching, we realized our goal is not to win over existing Durable Objects developers, but rather to grow the stateful serverless ecosystem. For context – "stateful serverless" is effectively the actor model with persistent state attached. Think Lambda functions with local storage & runs indefinitely. It's a a technology that’s gaining traction to ship faster, achieve higher performance, and outscale Postgres. The most widely used implementation is Cloudflare Durable Objects. In the process of talking to developers, we kept hearing three common concerns: - Vendor lock-in: Developers are hesitant to adopt a new programming model if there's no clear off-ramp. While it's straightforward to migrate a Postgres database, stateful serverless platforms like Rivet Actors or Durable Objects can feel locked-in due to lack of viable alternatives. - Ecosystem: Choosing a well-known database like Postgres comes with a mature ecosystem. Adopting a new model means rebuilding tooling and patterns from scratch. - Conceptual gap: Many developers have spent their entire careers designing systems with intentionally separated state and compute. A model that merges the two can feel backwards at first. After hearing these concerns again and again, we came to the conclusion that the best solution was to build a framework that works with as many platforms as possible to reduce lock-in (concern #1) and grow a shared ecosystem of tools (concern #2). It turns out, we already had a battle-tested framework built on top of Rivet Actors that we’ve been using for years. (It has a long, funky history beyond Rivet in gaming I won't get into here.) Thus, we split out the framework in to a new repo, added support for four platforms (easier said than done), and called it ActorCore. It gives developers multiple platforms to choose from when adopting stateful serverless and creates a foundation for a broader, cross-platform ecosystem. However, this still leaves concern #3: the conceptual gap. While this isn't something we can solve with a framework, I personally spend ~40% of my time working on docs, content, and examples to help resolve this. ActorCore is also panning out to be community-driven as hoped, which enables more people to try and share their experience with stateful serverless. Give ActorCore a try, read the roadmap, and let us know where we can improve documentation. If you're hesitant about trying stateful serverless, I'd love to learn more in the comments. Consider giving us a star on GitHub: https://ift.tt/GpWVUu7 https://ift.tt/CwRDHy4 April 14, 2025 at 08:27PM

Sunday, April 13, 2025

Show HN: I made a math puzzle game. Hope you like it https://ift.tt/adxIq3F

Show HN: I made a math puzzle game. Hope you like it I've been playing with this for quite some time and I think it's finally ready for public consumption. All feedback welcome. https://ift.tt/w5kRahT April 11, 2025 at 11:56PM

Show HN: Cigarette – a Safari extension that hides ads on X, Reddit, & LinkedIn https://ift.tt/n8KVT47

Show HN: Cigarette – a Safari extension that hides ads on X, Reddit, & LinkedIn https://ift.tt/wGV1yri April 14, 2025 at 12:14AM

Show HN: Crystal, the most accurate U.S. gov't data search tool https://ift.tt/OKzpnHe

Show HN: Crystal, the most accurate U.S. gov't data search tool Hi everyone! We're relaunching Crystal, which lets you search and analyze 300k+ government datasets using plain English. For example, prompting "Air quality since 2020 in NYC" will find the most relevant datasets for you. We find it's way better than any search tool out there today, like data.gov. We're hoping anyone who uses public data as a resource, like researchers, consultants, journalists, etc. will find it helpful. Crystal is straightforward - it's in alpha, so there's only a few queries per person, and the app itself is in its infancy. We're invested in making this better for people, and we'd love feedback + beta signups - you can provide either via https://ift.tt/35pbhZz or down below! If you'd like to partner with us more closely or have other thoughts, please email us at cedric@crystal.info or ari@crystal.info https://ift.tt/PQtY7v9 April 13, 2025 at 11:53PM

Saturday, April 12, 2025

Show HN: AI quiz generator from any topic or book in seconds https://ift.tt/JvyjDw2

Show HN: AI quiz generator from any topic or book in seconds https://www.wiyomi.com April 10, 2025 at 10:57AM

Show HN: Downr – An All-in-One Social Media Downloader for 50 Platforms https://ift.tt/bId7TEz

Show HN: Downr – An All-in-One Social Media Downloader for 50 Platforms https://downr.org April 12, 2025 at 04:36PM

Show HN: OctAPI – Visualize API Routes Directly in VS Code https://ift.tt/KmhbkHp

Show HN: OctAPI – Visualize API Routes Directly in VS Code Started noticing issues while working with friends that I thought only I was encountering: spending too long manually adding routes to postman, getting lost looking for a single route in the sea of files and thought Hey, I can fix that (I think?) So OctAPI is a VSCode extension that automatically detects and displays API routes from a local project (currently supports Express.js, NestJS, Next.js, Koa, Flask, and FastAPI), it filters and groups them, generates a Postman export JSON file, and adds to favs. It doesn't run your code and it all stays in your machine A friend literally screamed when they were live testing it for me lol It's open source ( https://ift.tt/LJnNIAD ) and here's its landing page ( https://ift.tt/G6ObNMy ) I'm hoping to add custom tags, more frameworks support and even AI features. https://ift.tt/oeHEUMF April 13, 2025 at 01:48AM

Show HN: memEx, a personal knowledge base inspired by zettlekasten and org-mode https://ift.tt/nxC1lPv

Show HN: memEx, a personal knowledge base inspired by zettlekasten and org-mode https://ift.tt/szfmOtg April 13, 2025 at 12:32AM

Friday, April 11, 2025

Show HN: Pg_CRDT – CRDTs in Postgres Using Automerge https://ift.tt/CerG4JI

Show HN: Pg_CRDT – CRDTs in Postgres Using Automerge https://ift.tt/iE0TKG3 April 11, 2025 at 10:23PM

Atari Missile Command Game Built Using AI Gemini 2.5 Pro https://ift.tt/HS2a4cA

Atari Missile Command Game Built Using AI Gemini 2.5 Pro https://ift.tt/fp9W40M April 7, 2025 at 11:48AM

Show HN: Lunon – Instant model switching across LLMs https://ift.tt/867is5M

Show HN: Lunon – Instant model switching across LLMs Hey HN! We built Lunon to make LLM development way less of a headache. Ever wanted to see how different models handle the same prompt without all the setup hassle? That's what we fixed. Our API lets you compare Claude, GPT, Mistral and others in real-time with just a few lines of code. No more complex infrastructure or managing multiple API connections - we handle all that boring stuff behind the scenes. Plus, you can cut costs by intelligently routing requests to the right model for each task. Use the powerful (expensive) models only when you really need them. If you're building with LLMs and tired of the integration headaches, would love to hear feedback! https://lunon.com/ April 11, 2025 at 11:46PM

Thursday, April 10, 2025

Show HN: I built a tool to manage and compare credit card rewards https://ift.tt/GhxUPTX

Show HN: I built a tool to manage and compare credit card rewards This is a free tool that helps you manage and visualize your credit card rewards across different categories. You can input the cards in your wallet and see how they complement each other, spot gaps in your setup, and also see the best card to use for a given merchant. I’m also a founder at OneCard, where we’re building a smart card that’ll eventually handle all of this automatically, routing each purchase to the best card in real-time. Would love feedback from the HN community! https://ift.tt/GaX07MN April 11, 2025 at 02:54AM

Show HN: Calculate confidence score for OpenAI JSON output https://ift.tt/8qmcKjE

Show HN: Calculate confidence score for OpenAI JSON output https://ift.tt/xKG3dZu April 10, 2025 at 08:46PM

Show HN: I built an app that reduces podcast preparation effort by 95% + https://ift.tt/VFYWxjM

Show HN: I built an app that reduces podcast preparation effort by 95% + https://ift.tt/mHaKzht April 10, 2025 at 11:22PM

Wednesday, April 9, 2025

Show HN: Obelisk – a WASM-based deterministic workflow engine https://ift.tt/L4heV5C

Show HN: Obelisk – a WASM-based deterministic workflow engine A lightweight engine for durable execution / deterministic workflows I built with Rust, wasmtime and the WASM Component Model. Its main use is running reliable, long-running workflows that can automatically resume after failures. Looking for feedback on the approach and potential use cases! https://obeli.sk/ April 10, 2025 at 12:54AM

Show HN: Repo Roast – a real-time feed of the funniest comments on GitHub https://ift.tt/jTJsgWR

Show HN: Repo Roast – a real-time feed of the funniest comments on GitHub Hey HN - I'm Mason, and I'm excited to share a fun side project I've been working on recently: Repo Roast. For me, Github often feels like a serious (and sometimes soulless) place. I built this website to showcase the human, silly side of developers. Repo Roast is built on top of LLM-powered GitHub analytics tooling we’re developing internally at Merit Systems [0]. One of the historically cited weak points for LLMs has been their sense of humor. I found that with the right prompt, at scale, they mostly can _identify_ humor pretty well. We experimented with a couple of different models to tune the cost/effectiveness and eventually landed on a strategy where we have gpt-4o-mini do a very light filter pass to reduce the number of calls to GPT-4o to do the actual humor scoring. Interestingly, our first prompt attempts ended up surfacing wayyy more aggressively NSFW content, which is funny that this happens despite all the censoring that OpenAI is doing. So far we have processed the last 90 days of historical comments and continuously process new ones every hour. We theoretically can run this against a wider historical window given there is sufficient interest to justify the costs! Repo Roast is in no way intended to make you a better or more productive dev. You can use it as a leaderboard or hiring tool (if you’re looking for personality), or just a way to distract yourself! If you've had any funny Github interactions, I'd love if you shared them below. Cheers! --Mason [0] https://ift.tt/gbWsXQu https://ift.tt/yMjqRnN April 10, 2025 at 12:40AM

Show HN: Aqua Voice 2 – Fast Voice Input for Mac and Windows https://ift.tt/kSFuZUa

Show HN: Aqua Voice 2 – Fast Voice Input for Mac and Windows Hey HN - It’s Finn and Jack from Aqua Voice ( https://withaqua.com ). Aqua is fast AI dictation for your desktop and our attempt to make voice a first-class input method. Video: https://ift.tt/o3IHVuG Try it here: https://ift.tt/X6mExOb Finn is uber dyslexic and has been using dictation software since sixth grade. For over a decade, he’s been chasing a dream that never quite worked — using your voice instead of a keyboard. Our last post ( https://ift.tt/DOWXZNP ) about this seemed to resonate with the community - though it turned out that version of Aqua was a better demo than product. But it gave us (and others) a lot of good ideas about what should come next. Since then, we’ve remade Aqua from scratch for speed and usability. It now lives on your desktop, and it lets you talk into any text field -- Cursor, Gmail, Slack, even your terminal. It starts up in under 50ms, inserts text in about a second (sometimes as fast as 450ms), and has state-of-the-art accuracy. It does a lot more, but that’s the core. We’d love your feedback — and if you’ve got ideas for what voice should do next, let’s hear them! https://withaqua.com April 9, 2025 at 10:01PM

Show HN: I built a tool that deconstructs websites to reveal their tech stack https://ift.tt/E0S5bsu

Show HN: I built a tool that deconstructs websites to reveal their tech stack Hi HN, I built https://unbuilt.app to solve a problem I frequently faced as a developer: identifying the technology stack behind websites, especially those using newer frameworks and tools. While existing solutions rely on pre-saved data or signature databases, Unbuilt performs a fresh analysis by actually loading and examining the website code in real-time. This means it can detect cutting-edge technologies that often get missed by other analyzers. Technical details: - Uses Playwright to visit sites and analyze their resources - Queue-based architecture for handling concurrent requests - Optimized patterns for detecting modern frameworks (Next.js, Vite, React Compiler, etc.) - Dual-layer caching system for both performance and result sharing The tool is completely open-source and free to use. There are no premium tiers or usage limits. I built it because I believe developers deserve better tools for understanding the web ecosystem. I'd appreciate any feedback, particularly on detection accuracy and the types of technologies you'd like to see added. If you're interested in contributing, all pattern detection logic is designed to be easily extensible. Link to repo: https://ift.tt/wo0x69Z https://unbuilt.app/ April 9, 2025 at 10:57PM

Show HN: My mom was unimpressed with my blog. What do you think? https://ift.tt/j5WQ16k

Show HN: My mom was unimpressed with my blog. What do you think? I recently launched my personal tech blog and proudly showed it to my mom. Her response? "It's... fine." Now I need your brutally honest feedback! Blog URL: https://simonaking.com Github: https://ift.tt/bhscdoP PS: Every visitor gets my mom one step closer to understanding what I actually do for a living! https://simonaking.com/ April 9, 2025 at 11:30AM

Tuesday, April 8, 2025

Show HN: DrawDB – open-source online database diagram editor (a retro) https://ift.tt/bR8OtP4

Show HN: DrawDB – open-source online database diagram editor (a retro) One year ago I open-sourced my very first 'real' project and shared it here. I was a college student in my senior year and desperately looking for a job. At the time of sharing it i couldn't even afford a domain and naively let someone buy the one i had my eyes on lol. It's been a hell of a year with this blowing up, me moving to another country, and switching 2 jobs. In a year we somehow managed to hit 26k stars, grow a 1000+ person discord community, and support 37 languages. I couldn't be more grateful for the community that helped this grow, but now i don't know what direction to take this project in. All of this was an accident. But now I feel like I'm missing out on not using this success. I have been thinking of monetization options, but not sure if I wanna go down that route. I like the idea of it being free and available for everyone but also can't help but think of everything that could be done if committed full-time or even had a small team. I keep telling myself(and others) i'll do something if i meet a co-founder, but doubt and fear of blowing this up keeps back. How would you proceed? https://www.drawdb.app/ April 9, 2025 at 05:50AM

Show HN: Chat with any GitHub repository via MCP https://ift.tt/2dOwkWR

Show HN: Chat with any GitHub repository via MCP https://ift.tt/mjIOTFa April 9, 2025 at 12:00AM

Monday, April 7, 2025

Show HN: Soundscapes and Lofi Player https://ift.tt/vORX4gH

Show HN: Soundscapes and Lofi Player Hello HN! I would like to share my website which lets you play soundscapes and lofi music. All the sounds are in the public domain. GitHub repo: https://ift.tt/YXtuA7q https://ift.tt/k67XgnC April 7, 2025 at 10:56PM

Show HN: nix-mcp-servers – MCP server Nix package repo https://ift.tt/ycVsO39

Show HN: nix-mcp-servers – MCP server Nix package repo Started a collection of nix packages for some MCP servers I use. Makes installation into a NixOS-based system easy; also allows for running binaries straight from the flake on any Linux/macOS systems with nix installed. This can be convenient for MCP servers like `github-mcp-server` written in Go that aren't runnable using `uvx` or `npx`. https://ift.tt/IOv9tqC April 7, 2025 at 11:23PM

Sunday, April 6, 2025

Show HN: I created a ELI5 Blockchain glossary, with also a bit of interactivity https://ift.tt/cCYmr7B

Show HN: I created a ELI5 Blockchain glossary, with also a bit of interactivity The reason is simply that I'm learning blockchain and i found myself searching and hardly recalling terminology. So I started building a glossary (that slowly i'm making interactive) in which the terms are explained with ELI5 analogies. AI helped me with that. Hope you find it useful. You can contribute to the data set here: https://ift.tt/TUnNpx9 https://ift.tt/5QJAGpC April 6, 2025 at 10:40PM

Show HN: A fast, minimal and offline-friendly web playground https://ift.tt/MWUjAvq

Show HN: A fast, minimal and offline-friendly web playground I built a web-based HTML/CSS/JS editor focused on speed, simplicity, and offline access. No bloat — just open and start coding. What makes it different: Live Preview – Edit HTML, CSS, and JS side-by-side with instant feedback. Offline support – Works without internet. You can even install it as a PWA and use it like a native app. No Login Required – Just visit, code, and preview. Login only if you want to save/share. Savable & Shareable Links – Save scripts in the cloud and get shareable links. Customizable Editor – Themes, fonts, auto-format on save, layout tweaks, line wrapping, etc. Hotkey Support – Power user shortcuts with tooltips showing keybinds. Download as ZIP – Export your project with HTML/CSS/JS files separated. Ideal for tinkering, prototyping, teaching, or even building micro-tools. It’s intentionally simple and fast — more features coming soon. Try a sample snippet: https://ift.tt/yNQaObY https://ift.tt/Onimhj6 April 7, 2025 at 01:55AM

Show HN: Latitude.sh Databases – Simple PostgreSQL DBaaS on Bare Metal https://ift.tt/XHelCbk

Show HN: Latitude.sh Databases – Simple PostgreSQL DBaaS on Bare Metal Hi HN, Gabriel here, one of the developers at Latitude.sh (we're a bare metal cloud provider). Over the past year or so, I've been the primary developer building Latitude.sh Databases – our take on a managed PostgreSQL service. The core idea was to offer a straightforward and competitively priced option for developers who need reliable PostgreSQL without overly complex configurations, leveraging the performance benefits of running directly on bare metal. It runs on our global bare metal infrastructure. Key features we've implemented include: * Built-in monitoring & connection pooling * IP Address Whitelisting (Trusted Sources) * Automated backups configured directly to your own S3 bucket (giving you control over storage and potentially costs) * An optional integration with Supabase, allowing you to use parts of their dashboard for enhanced usability with your database. Under the hood, it's built on Kubernetes running on our bare metal servers, using the CloudNativePG operator to manage the PostgreSQL instances. We've found this operator approach works well for handling stateful database workloads in K8s, challenging the old notion that databases don't belong there. The service stemmed from internal needs and early interest gathered from a waitlist (~300 signups). It's currently live and available for use. We're launching it here on HN because we'd genuinely appreciate your feedback on: * The overall developer experience and UI simplicity. * The current feature set (especially the S3 backup and Supabase integration). * Performance perceptions (given the bare metal base). * Our pricing model's competitiveness and clarity. * Any technical aspects of the implementation (running PG on K8s/bare metal). Happy to answer any questions you have! You can check out the product page here: https://ift.tt/UTs1LMq Thanks for looking! https://ift.tt/UTs1LMq April 6, 2025 at 11:30PM

Saturday, April 5, 2025

Show HN: I Made a No-Code Excel to HTML Table Maker https://ift.tt/VCkAEOD

Show HN: I Made a No-Code Excel to HTML Table Maker I built https://ift.tt/fwGp1rm as a no-code tool for anyone who wants to turn an Excel spreadsheet into a clean, responsive, filterable HTML table. I thought it could be particularly useful for freelance developers who need to quickly display lots of data without setting up the whole backend and table logic. No coding required Supports large spreadsheets (thousands of rows) Built-in advanced data filtering & sorting. Customizable layout and styling. Instant embed code for any website. It’s free for low-traffic sites and really simple to use — upload a spreadsheet, design your table, and paste the embed code anywhere. Would love your feedback, feature requests, or any bug reports! Try it here: https://ift.tt/fwGp1rm https://ift.tt/olgQbfJ April 6, 2025 at 02:44AM

Show HN: I made an AI Platform that gamifies applying to jobs https://ift.tt/ZjWFyqU

Show HN: I made an AI Platform that gamifies applying to jobs Hi there! I've created ApplyNinja, a platform that uses AI to help jobseekers apply to jobs faster and better. What differentiates ApplyNinja from the other "auto-apply" platforms is the trained AI model behind it. It learns from your resume and the jobs you apply to, and it provides better and better results. Currently, it serves as a helper for the entire application process: - Track & Monitor job applications - Generates Resume suggestions and highlights the parts that are not so good - Auto-fixes and generates a new resume based on the suggestions - Creates Cover Letters based on your resume and the job description - Generates Company Insights, scraping user reviews from Glassdoor, Indeed etc. - Generates Salary Insights so jobseekers have a negotiation leverage - Generates Technical Interview Questions based on the Job Description On top of all of this, it provides a gamified experience, because consistency is the key in applying to jobs. Me and my friends are using it daily and manage to land approximately 5-10 interviews/month as Software Engineers. I would really love any kind of feedback. Thank you very much! https://ift.tt/9X7cF20 April 6, 2025 at 12:09AM

Show HN: Experience iPhone's "Blob Keyboard" prototype from 2005 https://ift.tt/kUnvPlC

Show HN: Experience iPhone's "Blob Keyboard" prototype from 2005 Hi HN, I teach tech design history, and one of the key stories I cover is the development of the original iPhone keyboard by Ken Kocienda. Reading about it in his book "Creative Selection" is great, but I wanted my students (and now you!) to actually feel this step in the process. So, I built a web simulator of the "Blob Keyboard", Kocienda's very first attempt at a touchscreen keyboard that actually works, from September 2005: Try the Blob Keyboard: https://ift.tt/5Cxh7bw... - Tap for the middle letter - Swipe left or right for the side letters More on the github repo: https://ift.tt/bDjJ3EU The Blob Keyboard prototype emerged during a UX crisis for iPhone team (their software keyboard just didn't work at all, fingers being too big, and the Newton failure loomed over them), highlighting how innovation is rarely a straight path. It was developed on a tethered touchscreen display codenamed "Wallaby". To make this simulator as authentic as possible, I referenced images from Kocienda's book and even got direct feedback and guidance from Ken Kocienda himself on Bluesky. What to expect (or… what not to expect): This is a reconstruction of a very early prototype with limitations reflecting that specific moment. The goal was to test first if typing with accuracy was even possible, as all the rest was moot if it failed! It's NOT QWERTY: They were still hoping to get us out of QWERTY, but then familiarity won. No Backspace: You can't delete. No Cursor Movement: The text field is just a simple display. No Caps or Numbers: Only lowercase letters. No Smooth Animations: Keys just "pop" instantly when pressed. Kocienda noted that your eye fills in the gaps, giving a sense of movement. Best Experience: While it works with a mouse/trackpad on desktop, it's designed for touchscreens to better replicate the original Wallaby hardware interaction. Use it on your phone! This project aims to provide a tangible glimpse into a turning point moment in iPhone development and the iterative nature of design. It's like stepping back in time and trying out that early demo on Kocienda's desk. I would love to hear your reactions and thoughts on experiencing this piece of UI history! What other significant prototype do you wish you could experience? April 5, 2025 at 11:50PM

Friday, April 4, 2025

Show HN: Clawtype v2.1 – a one-hand chorded USB keyboard and mouse [video] https://ift.tt/bsdXwzi

Show HN: Clawtype v2.1 – a one-hand chorded USB keyboard and mouse [video] Written in Rust (embassy), running on a SparkFun ProMicro RP2040 board, with an MPU6050 gyroscope. Based on the Chordite idea from John W. McKown ( https://ift.tt/SbukKwW... ). Intended for use with XR glasses I recently bought. Currently my typing speed is still rather slow, but my skill is graduably improving and at a noticeable pace, and I can and do some vim coding in my hobby time. I plan to try and do a wireless (BLE) version next, hopefully running off a single AA NiMH battery. The code is at: https://ift.tt/ZisCQxJ https://www.youtube.com/watch?v=N2PSiOl-auM April 5, 2025 at 04:02AM

Show HN: SwiftHive – A Swift Package Registry for Faster Builds https://ift.tt/kCswTQd

Show HN: SwiftHive – A Swift Package Registry for Faster Builds Hi HN! I've built SwiftHive, a private Swift package registry that solves several pain points with Swift's dependency management. We drastically reduce build times, ensure reproducibility, and I'm actively looking for beta testers from the community. https://ift.tt/repKP3o April 5, 2025 at 03:00AM

Show HN: DuckDB Powered SQL Editor https://ift.tt/C139UDO

Show HN: DuckDB Powered SQL Editor Hi guys, I made an SQL editor that utilizes the duckDB engine to process your queries. As a result, the speed gains are +25% when compared to using any standard editor that connects through JDBC. I built this because I work on a small data team and we can't justify an OLAP database. Postgres is amazing but, if I try to run any extremely complex queries I get stuck waiting for several minutes to see the result. This makes it hard to iterate and get through any sort of analysis. That's when I got the idea to use duckDB's processing engine rather than the small compute available on my Postgres instance. I didn't enjoy writing SQL in a Python notebook and wanted something like dBeaver that just worked, so I created soarSQL. Try it out and let me know if it has a place in your toolkit! https://soarsql.com April 5, 2025 at 01:40AM

Show HN: I made an online free tool site https://ift.tt/kiaLjJA

Show HN: I made an online free tool site Hi HN! I've created [UFreeTools]( https://ift.tt/mwQeqSv ), a collection of developer utilities (60+ tools and growing) that's completely free, ad-free, and runs entirely in the browser. No data leaves your device - everything is processed locally. ## Background As a developer, I found myself constantly searching for simple utilities like JSON formatters, UUID generators, and color pickers. Most existing options were cluttered with ads, required sign-ups, or sent data to servers. I wanted clean, fast tools that respected privacy. So I built UFreeTools as a modern SPA using Vue 3 and Vite with: - 100% client-side processing for all tools - Progressive loading with dynamic imports (only load what you use) - Dark/light theme support - Offline capability for most tools - Responsive design that works well on mobile ## Technical Details Some of the more technically interesting implementations: - *JWT Debugger*: Uses WebCrypto API for verification of all common algorithms - *Symmetric Encryption*: Implements AES-GCM/CBC/CTR with PBKDF2 key derivation - *Image Processing*: Uses Web Workers for non-blocking operations on large images ## Lessons Learned The biggest challenges were: 1. *Performance optimization*: Some tools (like image processors) needed careful optimization to handle large files without freezing the UI 2. *Browser API limitations*: Working around browser restrictions for certain crypto operations 3. *Bundle size management*: Keeping the initial load small while supporting 60+ tools ## Future Plans I'm planning to add: - Tool configurations sync via local storage - More specialized tools for developers based on feedback I built it because I needed these tools myself, and I hope others find it useful. I'd love your feedback, especially on UX, tool suggestions, or if you find any bugs! [Try UFreeTools]( https://ift.tt/mwQeqSv ) https://ift.tt/mwQeqSv April 4, 2025 at 11:26PM

Thursday, April 3, 2025

Show HN: Monkeys.zip – 3000 Monkeys on Typewriters https://ift.tt/OyISzju

Show HN: Monkeys.zip – 3000 Monkeys on Typewriters Hey HN! I posted this on April 1st when it launched, and though it didn't get traction here, it was a minor hit on reddit! Now that we've got a few thousand monkeys under our belt, wanted to give it another shot here! Happy to talk about the technical details of running the site - using supabase/postgres and constantly putting out fires from the traffic. https://monkeys.zip/ April 3, 2025 at 11:36PM

Wednesday, April 2, 2025

Tuesday, April 1, 2025

Show HN: Envkit (Not YC) – Painless developer onboarding into codebase https://ift.tt/QdvxEIN

Show HN: Envkit (Not YC) – Painless developer onboarding into codebase https://envkit.co/ April 2, 2025 at 01:32AM

Show HN: Calculation Hub: Every Calculation Tool You'll Ever Need https://ift.tt/x7qEYoV

Show HN: Calculation Hub: Every Calculation Tool You'll Ever Need Every Calculation Tool You'll Ever Need. Growing list of calculators, in a clean, simple design. https://ift.tt/cFqepwN April 1, 2025 at 08:48PM

Show HN: I built a CLI for one-command fullstack TypeScript projects https://ift.tt/ymFeDI5

Show HN: I built a CLI for one-command fullstack TypeScript projects I built a CLI for scaffolding TypeScript projects with Turborepo, React, and tRPC. It includes TanStack Router/Query, Tailwind, Hono/Elysia backends, Drizzle/Prisma ORMs, and more. npx create-better-t-stack@latest https://ift.tt/I1RsT4x April 1, 2025 at 11:49PM

Monday, March 31, 2025

Show HN: FancyLock v0.0.5 – Now with Hyprland (Wayland) Support https://ift.tt/lcAsY9h

Show HN: FancyLock v0.0.5 – Now with Hyprland (Wayland) Support I've been working on a fancy screen locker for Linux, and I'm excited to share that FancyLock now supports Hyprland in version v0.0.5! What is FancyLock? FancyLock is a feature-rich screen locker for Linux, built to replace boring, static lock screens with something more dynamic and customizable. Key Features Dynamic media playback during lock screen (e.g., videos, ambient visuals) Multi-monitor support PAM-based authentication Intelligent idle timeout Highly configurable (via JSON) Now supports Hyprland (Wayland) alongside X11 Technical Highlights Written in Go Uses X11 extensions and Wayland protocols for input/window management Integrates with mpv for flexible media playback Designed to be clean, minimal, and extensible Current Version: v0.0.5 Full support for X11 New: Hyprland Wayland support Actively developed with more compositors and features planned GitHub: https://ift.tt/dCSfau6 Would love to hear your thoughts, feedback, or feature requests. Give it a try and let me know what you think! https://ift.tt/dCSfau6 April 1, 2025 at 03:31AM

Show HN: NoteUX – Fast and minimalist note-taking app https://ift.tt/ksxa1g3

Show HN: NoteUX – Fast and minimalist note-taking app https://www.noteux.com/ March 27, 2025 at 04:49PM

Show HN: Million Dollar Homepage is back, but there's a twist https://ift.tt/QsMdO5G

Show HN: Million Dollar Homepage is back, but there's a twist Check out yourself. https://ift.tt/L14qtJm April 1, 2025 at 12:21AM

Sunday, March 30, 2025

Saturday, March 29, 2025

Show HN: Non Interactive ZKP with Fiat-Shamir Heuristic and ECC in Go https://ift.tt/sQ6ZaEy

Show HN: Non Interactive ZKP with Fiat-Shamir Heuristic and ECC in Go Non-Interactive Zero-Knowledge Proof implementation using Fiat-Shamir Heuristic and Elliptic Curve Cryptography https://ift.tt/6hpWGrd March 30, 2025 at 01:19AM

Show HN: I implemented Snake in a tmux config file https://ift.tt/xMTBo1r

Show HN: I implemented Snake in a tmux config file https://ift.tt/DHeld2o March 26, 2025 at 01:37PM

Friday, March 28, 2025

Show HN: zxc – terminal TLS intercepting proxy in Rust with tmux and Vim as UI https://ift.tt/XbTjyWE

Show HN: zxc – terminal TLS intercepting proxy in Rust with tmux and Vim as UI - Disk based storage. - Custom http/1.1 parser to send malformed requests. - http/1.1 and websocket support. Proxy: https://ift.tt/Y0xWuX1 Vim: https://ift.tt/yDLmbZI https://ift.tt/Y0xWuX1 March 29, 2025 at 12:31AM

Show HN: Context7 – LLM Code Snippets from Docs in Minutes https://ift.tt/d0qfuMA

Show HN: Context7 – LLM Code Snippets from Docs in Minutes https://context7.com/ March 28, 2025 at 11:00PM

Show HN: A FlashAttention backwards-over-backwards pass https://ift.tt/nxh6LSU

Show HN: A FlashAttention backwards-over-backwards pass https://ift.tt/X0GWNZp March 29, 2025 at 12:43AM

Show HN: Hexi, modern header-only network binary serialisation for C++ hackers https://ift.tt/L7KbyTE

Show HN: Hexi, modern header-only network binary serialisation for C++ hackers Over the last few years, I've needed an easy way to quickly serialise and deserialise various network protocols safely and efficiently. Most of the libraries that existed at the time were either quite heavy, had less than stellar performance, or were an abstraction level above what I was looking for. I decided to put together my own class to do the job, starting with an easy, low-overhead way to move bytes in and out of arbitrary buffers. Along the way, it picked up useful bits and pieces, such as buffer structures and allocators that made the byte shuffling faster, often being able to do it with zero allocations and zero copies. Safety features came along to make sure that malicious packet data or mistakes in the code wouldn't result in segfaults or vulnerabilities. It's become useful enough to me that I've packaged it up in its own standalone library on the chance that it might be useful to others. It has zero dependencies other than the standard library and has been designed for quick integration into any project within minutes, or seconds with a copy paste of the amalgamated header. It can be used in production code but it's also ideal for for those that want to quickly hack away at binary data with minimal fuss. https://ift.tt/z6aRG3g March 28, 2025 at 11:07PM

Thursday, March 27, 2025

Show HN: FancyLock – Linux screenlock with videos. Wayland support coming soon https://ift.tt/latgx1V

Show HN: FancyLock – Linux screenlock with videos. Wayland support coming soon I've been wanting a fancy screen locker for linux, so I built FancyLock, a screen lock solution for Linux with X11 (and soon wayland) support. Key Features - Dynamic media playback during lock screen - Multi-monitor support - PAM-based authentication - Intelligent idle timeout - Highly configurable FancyLock aims to solve several pain points with existing screen lockers: - Boring, static lock screens - Poor multi-monitor support Technical Highlights - Written in Go - Uses X11 extensions for low-level window and input management - Flexible media playback with mpv - Configurable via JSON Current version is v0.0.1 and supports X11. Wayland support is planned. GitHub: https://ift.tt/QHgoRPf Would love to hear your thoughts and feedback! Edit: Happy to answer any questions about the implementation or design choices. https://ift.tt/QHgoRPf March 28, 2025 at 03:03AM

Show HN: My tiny web shell on my local PC https://ift.tt/s3FB9fa

Show HN: My tiny web shell on my local PC https://ift.tt/Nepd4Zs March 28, 2025 at 01:34AM

Show HN: Xorq – open-source Python-first Pandas-style pipelines https://ift.tt/o1PW3Rz

Show HN: Xorq – open-source Python-first Pandas-style pipelines Hi HN, Dan, Hussain and Daniel here… After years of struggling with data pipelines that worked in notebooks but failed in production, we decided to do something about it. We created xorq to eliminate the constant headaches of SQL/pandas impedance mismatch, runtime debugging, wasteful recomputations and unreliable research-to-production deployments that plague traditional pandas-style pipeline workflows. xorq is built on Ibis and DataFusion. We’d love your feedback and contributions. xorq is [Apache 2.0 licensed]( https://ift.tt/1AJrRNS ) to encourage open collaboration. Repo : https://ift.tt/ZTY5gEh Docs : https://docs.xorq.dev Roadmap Issues : https://ift.tt/ZTY5gEh You can get started `pip install xorq`. Or, if you use nix, you can simply run `nix run github:xorq-labs/xorq` and drop into an IPython shell. Demo video: https://youtu.be/jUk8vrR6bCw Here are some vignettes to look into next: 1. MCP Server + Flight + XGBoost: https://ift.tt/1g9DCvZ 2. 1 DuckDB + 2 Writers + 1 Reader: https://ift.tt/y3B2DeK 3. OpenAI UDF: https://ift.tt/ZYJMBAC Some features to note: - Ibis-based multi-engine expression system: effortless engine-to-engine streaming - Cache expressions with `.cache` operator - Portable DataFusion-backed UDF engine with first class support for pandas dataframes - Serialize Expressions to and from YAML - Easily build Flight end-points by composing UDFs thanks for checking this out, and we’re here to answer any questions! https://ift.tt/t1Ya7SK March 27, 2025 at 10:57PM

Wednesday, March 26, 2025

Show HN: Taildrops – Free Tailwind CSS 4 code snippets https://ift.tt/w4MJ1OF

Show HN: Taildrops – Free Tailwind CSS 4 code snippets Free Tailwind CSS 4 Components — and this is just the beginning! I’ve been sharing a bunch of free Tailwind CSS components on X, but honestly, they just keep getting buried in the timeline. It’s super frustrating when something you put effort into disappears so quickly. That’s why I decided to put everything on a website. Now you can easily find all the components I’ve shared in one place, and I’ll keep adding any new ones I create. It feels good to have a space where they won’t get lost. Check them out if you’re interested — I’d love to hear what you think! https://taildrops.com/ March 27, 2025 at 02:59AM

Show HN: I made a browser tab management tool called TabTab https://ift.tt/DKBmE1t

Show HN: I made a browser tab management tool called TabTab https://www.tabtab.xyz March 27, 2025 at 07:20AM

Show HN: Prompteus – Visual workflow builder for shipping better AI features https://ift.tt/A2LrSYX

Show HN: Prompteus – Visual workflow builder for shipping better AI features We built Prompteus to help devs build and manage AI features without the mess — no more prompt spaghetti or scattered "hardcoded" AI API calls. Design workflows visually, deploy as APIs, and get built-in caching, logging, rate limits, and model orchestration (OpenAI, Anthropic, Mistral, etc.). It’s like Zapier for LLMs — but dev-friendly. Free up to 50k requests/month. https://prompteus.com March 26, 2025 at 11:20PM

Tuesday, March 25, 2025

Show HN: I built a chatbot that lets you talk to any GitHub repository https://ift.tt/hQJKjkP

Show HN: I built a chatbot that lets you talk to any GitHub repository https://ift.tt/THLB7JV March 26, 2025 at 12:43AM

Show HN: Fingernotes – handwritten notes which become their own preview image https://ift.tt/gRQnsIT

Show HN: Fingernotes – handwritten notes which become their own preview image Hi HN, I've lurked here for ages and decided to come out of the shadows for my latest side project which reached the point where it’s sort of fun to use and hopefully not totally embarrassing to share. Hacking fingernotes.com together over a couple of weeks was a creative outlet when work got stressful. I think of it as digital sticky notes. The goal was to make notes with a personal touch that are easy to write and share. I also wanted them to appear as their own link preview image on supported platforms. That way when you send the link to a note, the person sees the message without following the link. Let me know what you think! I drew inspiration from Apple's quick notes: low latency made scribbling a pleasure, and sending notes to friends felt warm and original compared to a typical exchange. It was also intriguing to see my handwriting printed in a message chat. In a time of rising artificial generation, spreading my clumsy handwriting feels like an act of rebellion. But I dislike the light background in Apple notes, which I don't think you can change when sharing. More importantly, no one sent a note back. With fingernotes the low-friction interaction is meant to make creating notes simple. I also find the image previews aesthetically more pleasing. For implementation, fingernotes are publicly accessible links to collections of strokes that have been persisted to a Cloudflare D1 database and rendered in SVG. Like pen on a sticky note, each stroke is immutable but anyone can add to a note if they have the link. You can't undo strokes, so if you mess up your note just throw it out and start a new one. Having append-only collections avoids handling order of operations when multiple people edit the same note. Hosting it as a Cloudflare worker made it easy to get up and running. There's some latency in Safari on iOS which is absent on desktop. It's noticeable compared to Apple notes and I'm afraid it's a limitation of the browser. https://ift.tt/q30spOH March 23, 2025 at 12:02PM

Monday, March 24, 2025

Show HN: X DMs suck so we built a better one https://ift.tt/yWXSRkv

Show HN: X DMs suck so we built a better one https://tweetdm.com/crm March 24, 2025 at 11:52PM

Show HN: Prefix any URL with `pure.md/` to get unblocked Markdown https://ift.tt/zvEWVRM

Show HN: Prefix any URL with `pure.md/` to get unblocked Markdown https://pure.md March 24, 2025 at 10:06PM

Show HN: XYMake – Turn Your Posts into LLM-Ready Data https://ift.tt/jfpohUW

Show HN: XYMake – Turn Your Posts into LLM-Ready Data I just built XYMake ( https://xymake.com ), a tool that lets you convert any X (Twitter) thread into clean markdown, making your conversations accessible for LLMs, MCPs, or any API. ## What it does: - Transforms any X thread URL into markdown by simply changing "x.com" to "xymake.com" in the URL - OAuth2 login to "free your data" and make your threads available - Auto-generates OG images with token counts and participant info for easy sharing - Serves different content types based on whether the request is from a crawler, browser, or agent ## Why I built it: I believe people should have the right to own and use their own data. While X/Twitter uses our content to train Grok, we should be able to leverage our own conversations for similar purposes. I built this as a proof of concept in one day (what started as a 30-minute experiment turned into a 10-hour flow state). It's built entirely on Cloudflare Workers and uses some interesting techniques to serve different content types to different consumers. ## Technical highlights: - Request identification to serve HTML+OG images to crawlers while providing raw markdown to agents - Preloading OG image generation using ctx.waitUntil for near-instant loading when shared - Optimized OG image rendering across platforms using workers-og Try it out with any X thread - just replace "x.com" with "xymake.com"! Example: https://ift.tt/S7A4Kvj Feedback welcome! This is just the beginning of what's possible when we reclaim our conversational data. https://xymake.com March 25, 2025 at 12:32AM

Show HN: Tascli, a simple CLI task and record manager https://ift.tt/qWJhE76

Show HN: Tascli, a simple CLI task and record manager https://ift.tt/U8efh7T March 25, 2025 at 12:02AM

Sunday, March 23, 2025

Show HN: Search and chat with millions of court cases using AI. https://ift.tt/MoLj9QS

Show HN: Search and chat with millions of court cases using AI. https://ift.tt/YyrU9jt March 24, 2025 at 12:51AM

Show HN: Cocommit – A copilot for git commit https://ift.tt/yZXC28u

Show HN: Cocommit – A copilot for git commit I've built a lightweight copilot that integrates with Git commits, leveraging LangChain to support multiple LLM providers. I currently use it with Claude 3.7 (via Bedrock) and OpenAI’s GPT-4o, but I’d love to see how it performs with other LLMs. If you have access to any LangChain-supported LLMs, I’d really appreciate a quick test! Your feedback via GitHub Issues would be invaluable in improving the project. Thanks in advance! https://ift.tt/bxDzohu March 23, 2025 at 11:46PM

Saturday, March 22, 2025

Show HN: DAPS – Prime-Adaptive Search for Discontinuous Optimization Problems https://ift.tt/KLqZpz2

Show HN: DAPS – Prime-Adaptive Search for Discontinuous Optimization Problems I've been working on a global optimization algorithm that uses prime number-based adaptive grid search. It dynamically adjusts resolution by increasing or decreasing prime numbers as "resolution knobs" — allowing it to handle discontinuities, sharp valleys, and chaotic landscapes better than naive grid search. The repo includes Python and PyTorch-compatible versions, benchmarks against grid search, and a research paper. Would love feedback from optimization, ML, or numerical analysis folks. Curious if anyone sees potential applications or improvements. GitHub: https://ift.tt/TNvy8bD Paper: https://ift.tt/v45D91e.... https://ift.tt/TNvy8bD March 23, 2025 at 11:19AM

Show HN: I build a tool that will tell you what to respond in negotations https://ift.tt/ScHALrB

Show HN: I build a tool that will tell you what to respond in negotations After reading the book Getting to Yes, I really want some tool to help me negotiate more efficiently without having to memorize everything principle. You start by putting in interests of each party, then you can explore different functions: how to respond to the other party, explore objective criteria out there or brainstorm more negotiation options. Still working on it! Leave me feedback if you have any suggestions! https://ift.tt/v8BxFsS March 23, 2025 at 03:31AM

Show HN: I Made a Language to Be JavaScript's Nanny https://ift.tt/1Bhgvom

Show HN: I Made a Language to Be JavaScript's Nanny I'm working on a language called Chicory. It's yet-another compiles to JS(X) language. I'd value any feedback. See also https://ift.tt/jDZlvrm https://ift.tt/HncbE3x March 23, 2025 at 01:39AM

Show HN: GoCard – A file-based spaced repetition system built in Go https://ift.tt/Vlqsry9

Show HN: GoCard – A file-based spaced repetition system built in Go Hi HN! I'm excited to share GoCard, a terminal-based spaced repetition system I built that uses plain Markdown files as its data source. I've always been frustrated with existing spaced repetition tools that lock my knowledge into proprietary formats or require constant internet access. As a developer who lives in terminals and text editors, I wanted something that: 1. Stores cards as plain text files I can edit with any editor 2. Works seamlessly with Git for versioning and sync 3. Runs in a terminal without distractions 4. Has first-class support for code snippets and programming concepts GoCard implements the SM-2 algorithm (the same one used by Anki) but instead of a database, it uses a simple directory structure where: - Each card is a Markdown file with YAML frontmatter - Directories represent decks and subdecks - Everything is editable with standard tools *Key features:* - Distraction-free terminal UI built with BubbleTea - Real-time file watching (edit cards in your editor while reviewing) - Code syntax highlighting for 50+ languages - Vim/Emacs keybindings for efficient navigation - Hierarchical deck organization via directories - Cross-platform (Linux, macOS, Windows) What sets GoCard apart from other SRS tools is its developer-centric approach. Create cards with your favorite editor, organize them with your file manager, version them with Git, and review them in a clean terminal interface. I built this because I wanted a knowledge management system that worked with my developer workflow rather than against it. Making everything file-based means I can apply all my existing text-processing skills and tools. The project is v0.1.0, implemented in Go, and available at: https://ift.tt/gCunOQM I'd especially appreciate feedback on the UX design and any suggestions for making it more intuitive for terminal users. Has anyone else built similar file-based knowledge tools? What patterns worked well for you? https://ift.tt/gCunOQM March 23, 2025 at 02:35AM

Friday, March 21, 2025

Show HN: Get hired faster by reaching decision-makers early https://ift.tt/EJVOW2y

Show HN: Get hired faster by reaching decision-makers early I built Insider Openings because I know how frustrating job searching can be. You spend hours tweaking resumes, writing cover letters, applying through job boards… and then? Crickets. I’ve been there, wondering if anyone even saw my application. But after years of working with startups, I noticed something most job seekers don’t see is that when a company raises funding, they’re about to grow. They start hiring fast, often before a job ever hits a careers page. That’s when the window of opportunity is wide open… but no one’s talking about it. So I thought, what if I could give job seekers a head start? A list of companies fresh off a funding round, along with direct contacts to the people actually making hiring decisions? That’s how Insider Openings was born. https://ift.tt/wT7naIH March 22, 2025 at 04:30AM

Show HN: Hyperbrowser MCP Server – Connect AI agents to the web through browsers https://ift.tt/4vSzUqD

Show HN: Hyperbrowser MCP Server – Connect AI agents to the web through browsers Hi HN! Excited to share our MCP Server at Hyperbrowser - something we’ve been working on for a few days. We think it’s a pretty neat way to connect LLMs and IDEs like Cursor / Windsurf to the internet. Our MCP server exposes seven tools for data collection and browsing: 1. `scrape_webpage` - Extract formatted (markdown, screenshot etc) content from any webpage 2. `crawl_webpages` - Navigate through multiple linked pages and extract LLM-friendly formatted content 3. `extract_structured_data` - Convert messy HTML into structured JSON 4. `search_with_bing` - Query the web and get results with Bing search 5. `browser_use_agent` - Fast, lightweight browser automation with the Browser Use agent 6. `openai_computer_use_agent` - General-purpose automation using OpenAI’s CUA model 7. `claude_computer_use_agent` - Complex browser tasks using Claude computer use You can connect the server to Cursor, Windsurf, Claude desktop, and any other MCP clients with this command `npx -y hyperbrowser-mcp` and a Hyperbrowser API key. We're running this on our cloud browser infrastructure that we've been developing for the past few months – it handles captchas, proxies, and stealth browsing automatically. Some fun things you can do with it: (1) deep research with claude desktop, (2) summarizing the latest HN posts, (3) creating full applications from short gists in Cursor, (3) automating code review in cursor, (4) generating llms.txt for any website with windsurf, (5) ordering sushi from windsurf (admittedly, this is just for fun - probably not actually going to do this myself). We're building this server in the open and would love feedback from anyone building agents or working with web automation. If you find bugs or have feature requests, please let us know! One big issue with MCPs in general is that the installation UX sucks and auth credentials have to be hardcoded. We don’t have a solution to this right now but Anthropic seems to be working on something here so excited for that to come out. Love to hear any other complaints / thoughts you have about the server itself, Hyperbrowser, or the installation experience. You can check us out at https://hyperbrowser.ai or check out the source code at https://ift.tt/N7LbXxG https://ift.tt/N7LbXxG March 20, 2025 at 10:31PM

Thursday, March 20, 2025

Show HN: GizmoSQL – Run DuckDB as a Server with Arrow Flight SQL https://ift.tt/Yrm2jvZ

Show HN: GizmoSQL – Run DuckDB as a Server with Arrow Flight SQL Hi, I'm Philip Moore - the founder of GizmoData, and creator of GizmoSQL - an Apache Arrow Flight SQL Server - with DuckDB (or SQLite) back-end execution engines. GizmoSQL is a composable SQL server with Arrow Flight SQL, DuckDB, and SQLite - with the intention of making it easy to run DuckDB (or SQLite) as a server - usable by multiple people from a client (remote) computer. It also adds security (authentication) and encryption of traffic with TLS. To run GizmoSQL - see the steps in the README.md - where you can see how easy it is to run the server as well as how to connect via ADBC and JDBC from a remote client - such as DBeaver, Python, etc. The easiest way to run GizmoSQL is via Docker - but there are downloads for Linux and macOS for both x86-64 and arm64 platforms (download links in the README). Why?: As you may know, DuckDB and SQLite are embedded systems - they don't enable client connectivity, and they aren't really designed for concurrency. I've built GizmoSQL to work around that - because I believe the DuckDB engine is very powerful, and I feel like a lot of customers overpay and run distributed compute (i.e. Spark) when they don't really need to. Making it easy to have remote connectivity to DuckDB can make it easier to migrate SQL workloads from Spark or other expensive commercial platforms to this engine - with a much simpler architecture/infrastructure. It is my intention to make GizmoSQL a commercial product - licensed for production use by organizations, but free for developers to code with - evaluate, and test. A little bit of backstory: * I built the initial version of this while working for a former employer - it wasn't their core focus, so they open-sourced that early version. After I left there, I forked the product and have improved it substantially - to support concurrency of both reads and writes, improving security, as well as keeping it up to date with the latest versions of Apache Arrow and DuckDB. * This project evolved from a prototype created by the brilliant Tom Drabas. * It feels a little weird trying to make a commercial product based upon DuckDB, but MotherDuck started it :P - and I've contributed (albeit very little) to the DuckDB and Apache Arrow projects in the form of a couple of PRs. I'm really excited about this project - I have run benchmarks of this product against commercial platforms such as Snowflake and Databricks SQL - and it holds its own running the 22-query TPC-H SF1TB benchmark, especially on cost. See the graph at: https://ift.tt/hrPHvEy Getting started: Github README: https://ift.tt/YO5K2RM... DockerHub: https://ift.tt/C4O9FVg GizmoSQL homepage: https://ift.tt/hrPHvEy Phil's Github profile: https://ift.tt/UXayEcJ Thanks for your time and feedback in advance. https://ift.tt/iWcera5 March 21, 2025 at 12:45AM

Show HN: SpongeCake – open-source SDK for OpenAI computer use agents https://ift.tt/v1n2JE5

Show HN: SpongeCake – open-source SDK for OpenAI computer use agents Hey HN! Wanted to quickly put this together after seeing OpenAI launched their new computer use agent We were excited to get our hands on it, but quickly realized there was still quite a bit of set-up required to actually spin up a VM and have the model do things. So we wanted to put together an easy way to deploy these OpenAI computer use VMs in an SDK format and open source it Hopefully this tooling is helpful to other folks building AI agents! Here’s a link to the repo ( https://ift.tt/I3eZGOK ) - please try it out and give us a star. If you have any feedback, add it as a comment to this post! Or if you simply just love spongecake, show support for the delicious treat https://ift.tt/I3eZGOK March 20, 2025 at 10:16PM

Wednesday, March 19, 2025

Show HN: I made an interactive LLM Tools guide https://ift.tt/NJs43xZ

Show HN: I made an interactive LLM Tools guide So hard to keep up with tooling and MLOps - I put it all in one place and got some tips from an experienced friend on what to use. https://ift.tt/3VCcizg March 20, 2025 at 01:30AM

Show HN: Codemcp – Claude Code for Claude Pro subscribers – ditch API bills https://ift.tt/2LlIKjh

Show HN: Codemcp – Claude Code for Claude Pro subscribers – ditch API bills Hi all! I normally work on the PyTorch project but I've been on baby leave for the past month, so I've been playing around with AI as a user rather than a framework implementor. I really liked the agent experience with Claude Code, but I couldn't really justify spending so many dollars on API costs for random side projects. I already pay for a Claude Pro subscription though, and it turns out you can simulate many of Claude Code's features with an MCP. If you have a Pro subscription, check this out! I think it really captures the Claude Code experience quite well, without forcing you to pay for API tokens. https://ift.tt/S5rjDI6 March 13, 2025 at 11:59PM

Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code https://ift.tt/GQauRgE

Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code Hi All, Recently I've been using Claude Code a lot for de...