Thursday, 12 December 2024

Show HN: AI-powered, open source LeetCode alternative https://bit.ly/3ZAnPlH

Show HN: AI-powered, open source LeetCode alternative https://bit.ly/4iywIov December 12, 2024 at 11:53PM

Show HN: Kubernetes Spec Explorer https://bit.ly/400fRUJ

Show HN: Kubernetes Spec Explorer I built an interactive explorer for Kubernetes resources spec A few things included: - Tree view with schema, type and description of all native resources - History changes since version X (properties added/removed/modified) - Examples of some resources that you can easily copy as a starting point - Supports all versions since X, including the newly released 1.32 - I also want to add support for popular CRD, but I’m not sure how I’ll do that yet, I’m open to suggestions! Everything is auto generated based on the OpenAPI spec, with some manual inputs for examples and external links. Hope you like it and if there’s anything else you think it could be useful just let me know. https://bit.ly/3ZFaV6i December 12, 2024 at 04:02PM

Show HN: A Starter Pack for AI Engineers with Free Credits https://bit.ly/3ZwqQ6E

Show HN: A Starter Pack for AI Engineers with Free Credits ElevenLabs just launched AI Engineering Pack, a starter-pack giving you free access to many of the leading AI companies in the world. $50+ in credits from ElevenLabs, Mistral, Perplexity, Supabase, PostHog, Intercom and many more. https://bit.ly/3BypuQM December 12, 2024 at 10:37AM

Show HN: Regex Night: regular-expression pretty printer and linter https://bit.ly/3Vxa5ag

Show HN: Regex Night: regular-expression pretty printer and linter https://bit.ly/3ZMJZ5A December 12, 2024 at 08:32AM

Wednesday, 11 December 2024

Show HN: I built a simple app to create PDF invoice https://bit.ly/4ixRtka

Show HN: I built a simple app to create PDF invoice Hey HN, I had to create many invoices recently, it was pretty annoying doing the same things over and over. So i created this small tool that work well to create invoice and save them as template for re-usage. the ui is very easy and simple. I hope this tool will be helpful to you as it it to me. ps: you can move around without account Dorian https://bit.ly/4faEkL9 December 11, 2024 at 02:04PM

Show HN: Powerdrill – Leverage LLMs to Simplify Data Analysis https://bit.ly/4iwsygV

Show HN: Powerdrill – Leverage LLMs to Simplify Data Analysis Powerdrill is an AI tool that enables users to chat with their data to get anything they want to know from their data. It's designed for individuals who need to work with data regularly but have limited data analysis skills. Users only need to input their questions. Then Powerdrill understands user queries, generates Python or SQL code, executes it, and provides answers with valuable insights and visualized data. Powerdrill supports various types of data, including PDFs, Word documents, Excel sheets, TSV files, and databases. It also offers data agents that save users time on repetitive tasks, such as generating reports and presentations with a single click. https://bit.ly/3ZnuJuE December 11, 2024 at 07:59AM

Tuesday, 10 December 2024

Show HN: Kiln - Interactive LLM fine-tuning, dataset collab & synthetic data gen https://bit.ly/3ZxDNgE

Show HN: Kiln - Interactive LLM fine-tuning, dataset collab & synthetic data gen Hi HN! Excited to share a project I’ve been working on called Kiln AI! It solves what I’ve always found to be the hardest part of building AI products: products simply don’t have datasets, and datasets can’t keep up with product evolution. Product goals evolve, are hard to define, and new bugs emerge all the time. Kiln helps you build ML models for your product, from a collaborative dataset. For a bit of context: I’ve been building consumer AI products for a decade at Apple, my own startup, and MSFT. At its core Kiln is 3 things (so far): - Really great collaboration: Kiln datasets are designed to be shared/versioned in Git. We make it easy for the full team (PM/QA/subject-experts) to contribute directly, via super intuitive apps. With Kiln, when anyone on the team adds bugs/evals/goals, they go right into the dataset to be picked up in the next build. - Rapid fine-tuning: dispatch fine-tuning jobs for a range of top models (Llama 3.2, Mixtral, GPT 4o/4o-mini). It’s fine tuning in just a few clicks. - Synthetic data generation: our interactive data gen helps create large enough datasets for fine-tuning and evals. Build an initial training dataset, or use it to build out enough examples of a bug for the model fix it. It uses large models and heavy prompts (COT, multi-shot), which allows you to fine-tune smaller and faster models. The link here is to the new fine-tuning feature which just launched today. The demo shows starting a project from scratch, defining a task, generating synthetic training data, fine-tuning 9 models, and deploying them. It’s all very easy: 18 mins of active work, all in an intuitive UI. You can download the apps and follow the same process for your own product goals. I’d love to chat with folks building AI products, and offer any help I can (tools and/or guidance). Fire me a message at steve@getkiln.ai if interested. You can download our apps for Mac, Windows or Linux, or `pip install kiln_ai` for the library. Github with docs, downloads, and guides: https://bit.ly/49v7gfM https://bit.ly/49sU62N December 11, 2024 at 01:24AM

Show HN: Program a robot to solve a maze on a CPU emulator https://bit.ly/4isg4Hg

Show HN: Program a robot to solve a maze on a CPU emulator A little game I made to show off an old project. The functionality of the CPU is derived entirely from simulated logic gates. All the operations and control flow are based on the underlying properties of the logic gates, and changing their operation leads to corresponding changes in function. The original game code is all python and it runs in the browser using wasm/pyodide. Not very mobile friendly https://bit.ly/3Bq7ND4 December 8, 2024 at 06:53PM

Monday, 9 December 2024

Show HN: Combine GIF memes and face swaps for endless fun https://bit.ly/4iwkQn1

Show HN: Combine GIF memes and face swaps for endless fun https://bit.ly/3VvYBEa December 10, 2024 at 03:28AM

Show HN: TypeQuery – SQL query builder library built with TypeScript https://bit.ly/49wYOwh

Show HN: TypeQuery – SQL query builder library built with TypeScript Description: I’ve recently built a TypeScript SQL query builder library called TypeQuery and I’m looking for feedback from the community. TypeQuery is designed to help TypeScript developers construct SQL queries in a type-safe and intuitive way, with support for common SQL operations like SELECT, INSERT, UPDATE, and DELETEI’ve recently built a TypeScript SQL query builder library called TypeQuery and I’m looking for feedback from the community. TypeQuery is designed to help TypeScript developers construct SQL queries in a type-safe and intuitive way, with support for common SQL operations like SELECT, INSERT, UPDATE, and DELETE. Key Features of TypeQuery: - Type-safe SQL Queries: Build SQL queries with TypeScript’s powerful type system. - Supports Common SQL Operations: SELECT, INSERT, UPDATE, and DELETE. - Dynamic WHERE Clauses: Easily create complex WHERE clauses with a Django-like approach. - SQL Parameterization: Avoid SQL injection risks with parameterized queries. - Works with Multiple Databases: Compatible with MySQL, PostgreSQL, and SQLite. I would love to hear your thoughts on: - Usability: Does the API feel intuitive to use? Are there any features you think could make it easier to work with? - Performance: How does the performance compare to other query builders or raw SQL? - Missing Features: What do you feel might be missing in this library? Are there any features you'd expect from a SQL query builder? - General Opinion: Would you find a library like this useful for your projects? You can check it out on GitHub: https://bit.ly/49xd4Fl . If you like this project, please give it a to show your support and help others find it! Looking forward to hearing your thoughts, suggestions, and feedback! https://bit.ly/49xd4Fl December 9, 2024 at 08:21PM

Show HN: Downloadable AI Musical Instruments https://bit.ly/3ZJxB6h

Show HN: Downloadable AI Musical Instruments Generate soundfonts from text descriptions using latent flow matching. You can then download the complete SFZ soundfont package to use the instrument locally. https://bit.ly/49qQhLD December 10, 2024 at 01:50AM

Show HN: Travo – A Travel Guide That Reveals Stories Behind Every Place https://bit.ly/4fqSvfr

Show HN: Travo – A Travel Guide That Reveals Stories Behind Every Place https://bit.ly/3D7frCR December 9, 2024 at 09:29PM

Sunday, 8 December 2024

Show HN: A Security-First Web Server in C with XSS, SQL Injection Protection https://bit.ly/3D7VY52

Show HN: A Security-First Web Server in C with XSS, SQL Injection Protection I built a high-performance web server in C that prioritizes security from the ground up. Key features: - XSS protection and SQL injection prevention built into the core - Rate limiting with IP tracking and automatic blocking - Comprehensive security headers (CSP, HSTS, CORS) - Multi-threaded architecture with connection pooling - Zero-copy file serving for performance - 100% test coverage with integration tests - Pure C99, no external dependencies beyond POSIX The goal was to create a web server that's secure by default and easy to audit (under 2000 lines of C). All security features are enabled out of the box with sensible defaults. GitHub: https://bit.ly/49sImx8 I am looking for feedback, especially on the security implementation and test coverage. The code is MIT-licensed. https://bit.ly/49sImx8 December 8, 2024 at 11:47PM

Show HN: Cut the crap – remove the AI bullshit from websites https://bit.ly/4isYmmO

Show HN: Cut the crap – remove the AI bullshit from websites I’ve spent a lot of time reading articles that promise a lot but never give me what I’m looking for. They’re full of clickbait titles, scary claims, and pointless filler. It’s frustrating, and it’s a waste of my time. So I made a tool. You give it a URL, and it tries to cut through all that noise. It gives you a shorter version of the content without all the nonsense. I built this because I’m tired of falling for the same tricks. I just want the facts, not a bunch of filler. What do you think? I’m also thinking of making a Chrome extension that does something similar—like a reader mode, but one that actually removes the crap that gets in the way of real information. Feedback welcome. https://bit.ly/4go7Lum December 8, 2024 at 11:59AM

Show HN: Run10K Trainer – Personalized Training Running Plans for Your 10K Race https://bit.ly/4irVMh1

Show HN: Run10K Trainer – Personalized Training Running Plans for Your 10K Race Hi HN! I’m a professional runner and programmer, and I built *Run10K Trainer*, the app I wish I had when I started training. It’s a web and mobile app that generates personalized plans for 10K races, tailored to your schedule, experience level, and race date. After months of development, I’d love your feedback to help make it even better for runners everywhere. Does this sound like something you’d use? https://bit.ly/4iplUZQ December 8, 2024 at 09:35AM

Saturday, 7 December 2024

Show HN: I built an HTML5 RTL-SDR application https://bit.ly/3D39t65

Show HN: I built an HTML5 RTL-SDR application There are lots of RTL-SDR applications, but you have to install them. I used the HTML5 USB API that exists in Chrome (did you know about it?) to build one that you can run straight from your browser, on your computer or your Android phone. https://bit.ly/3BreVio December 7, 2024 at 11:36PM

Show HN: AirFry.Pro – The best popular and healthy recipes for your air fryer https://bit.ly/3ONKk1L

Show HN: AirFry.Pro – The best popular and healthy recipes for your air fryer https://bit.ly/3BlZNmt December 8, 2024 at 12:07AM

Friday, 6 December 2024

Show HN: Odysseus-CLI – Deploy Laravel, React and Other Apps Effortlessly https://bit.ly/4gqsv4H

Show HN: GitBook Documentation Downloader for LLMs https://bit.ly/3ZF2okR

Show HN: GitBook Documentation Downloader for LLMs I built a tool that converts GitBook docs into LLM-friendly markdown files. Perfect for feeding technical documentation into ChatGPT, Claude, or custom LLaMA models. GitHub: https://bit.ly/4gq3I0G Key features: Downloads complete GitBook documentation sites Converts to clean markdown format Web interface for easy URL input Works with ChatGPT, Claude, and other LLMs Preserves document structure and internal links [Still some bugs here, need to fix it] Will publish a hosted version if there is enough interest. Ideal for: Training custom LLMs with technical docs Building knowledge bases for AI assistants Quick reference docs in AI chat context windows Looking for feedback, especially from those working with LLMs/AI. What other documentation platforms should I support? https://bit.ly/4gq3I0G December 7, 2024 at 04:40AM

Show HN: I made a website for people to bet on my blood glucose https://bit.ly/41mT1Yh

Show HN: I made a website for people to bet on my blood glucose I made a fun (imaginary money, a.k.a. candies) betting site where you can place a bet on my blood sugar levels. https://bit.ly/4irJYLG December 6, 2024 at 09:36PM