Saturday, November 30, 2024

Show HN: SurveyMoji – An easy way to get realtime feedback with a link/QR code https://ift.tt/bNJ0lvu

Show HN: SurveyMoji – An easy way to get realtime feedback with a link/QR code Hi HN - I've been working on this site on and off for awhile. It started out as a personal tool and fun thing to hack on in my spare time. I recently added some UI improvements and a landing page and thought maybe it would be nice for other people to use as well. The idea was to create the fastest/easiest way to share a link to collect realtime feedback from a person's phone during a presentation or video call. Would love to hear any feedback, especially on UI design as it is the first time I've tried to create something that has a modern SaaS look to it. Built with go/htmx/alpinejs https://surveymoji.com November 30, 2024 at 11:17AM

Show HN: Jinbase – Multi-model transactional embedded database https://ift.tt/CoURBPd

Show HN: Jinbase – Multi-model transactional embedded database Hi HN ! Alex here. I'm excited to show you Jinbase ( https://ift.tt/Iemgx3h ), my multi-model transactional embedded database. Almost a year ago, I introduced Paradict [1], my take on multi-format streaming serialization. Given its readability, the Paradict text format appears de facto as an interesting data format for config files. But using Paradict to manage config files would end up cluttering its programming interface and making it confusing for users who still have choices of alternative libraries (TOML, INI File, etc.) dedicated to config files. So I used Paradict as a dependency for KvF (Key-value file format) [2], a new project of mine that focuses on config files with sections. With its compact binary format, I thought Paradict would be an efficient dependency for a new project that would rely on I/O functions (such as Open, Read, Write, Seek, Tell and Close) to implement a minimalistic yet reliable persistence solution. But that was before I learned that "files are hard" [3]. SQLite with its transactions, BLOB data type and incremental I/O for BLOBs seemed like the right giant to stand on for my new project. Jinbase started small as a key-value store and ended up as a multi-model embedded database that pushes the boundaries of what we usually do with SQLite. The first transition to the second data model (the depot) happened when I realized that the key-value store was not well suited for cases where a unique identifier is supposed to be automatically generated for each new record, saving the user the burden of providing an identifier that could accidentally be subject to a collision and thus overwrite an existing record. After that, I implemented a search capability that accepts UID ranges for the depot store, timespans (records are automatically timestamped) for both the depot and key-value stores and GLOB patterns and number ranges for string and integer keys in the key-value store. The queue and stack data models emerged as solutions for use cases where records must be consumed in a specific order. A typical record would be retrieved and deleted from the database in a single transaction unit. Since SQLite is used as the storage engine, Jinbase supports the relational model de facto. For convenience, all tables related to Jinbase internals are prefixed with "jinbase_", making Jinbase a useful tool for opening legacy SQLite files to add new data models that will safely coexist with the ad hoc relational model. All four main data models (key-value, depot, queue, stack) support Paradict-compatible data types, such as dictionaries, strings, binary data, integers, datetimes, etc. Under the hood, when the user initiates a write operation, Jinbase serializes (except for binary data), chunks, and stores the data iteratively. A record can be accessed not only in bulk, but also with two levels of partial access granularity: the byte-level and the field-level. While SQLite's incremental I/O for BLOBs is designed to target an individual BLOB column in a row, Jinbase extends this so that for each record, incremental reads cover all chunks as if they were a single unified BLOB. For dictionary records only, Jinbase automatically creates and maintains a lightweight index consisting of pointers to root fields, which then allows extracting from an arbitrary record the contents of a field automatically deserialized before being returned. The most obvious use cases for Jinbase are storing user preferences, persisting session data before exit, order-based processing of data streams, exposing data for other processes, upgrading legacy SQLite files with new data models and bespoke data persistence solutions. Jinbase is written in Python, is available on PyPI and you can play with the examples on the README. Let me know what you think about this project. [1] https://ift.tt/pGqYZHz [2] https://ift.tt/igmGrsM [3] https://ift.tt/qOPU0DW https://ift.tt/Iemgx3h November 30, 2024 at 01:55AM

Show HN: wazero compiler ported to 4 new OSes https://ift.tt/yKZCQMl

Show HN: wazero compiler ported to 4 new OSes Release 1.8.2 of wazero, the zero dependency WebAssembly runtime for Go, brings the amd64 compiler to 4 new OSes: NetBSD, DragonFly BSD, illumos and Solaris. The compiler also supports Linux, FreeBSD, macOS and Windows, on amd64 and arm64. This didn't require any changes to the compiler, just enabling it after setting up tests to validate that it already worked. Now the HN hook: noticeably absent is OpenBSD, which I failed to get working, even after taking W^X into account (we already had that for arm64 on macOS). If you wanna help, please drop us a note! https://ift.tt/Qh6jtP2 December 1, 2024 at 12:18AM

Friday, November 29, 2024

Show HN: It took me 5() months to build a Plausible alternative https://ift.tt/28W4zT6

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

Show HN: Built This in 3 Hours Using Bolt (No React Knowledge) https://ift.tt/HLmbAsD

Show HN: Built This in 3 Hours Using Bolt (No React Knowledge) It's blowing my mind that I could build an app from scratch in 3 hours and deploy it with the click of a button - without writing a single line of code myself CacheNotes is a browser-based note-taking app that saves your notes, threads, and AI conversations securely in your browser's local storage 100% free. No login required. You get, - simple, minimal note taking app in your browser - no login required - you can connect your claude api key for the ai integration - visualise notes and twitter threads Check it out! Would love some feedback :) https://ift.tt/gUQShoE November 30, 2024 at 12:39AM

Show HN: I built an extension to contact Airbnb hosts direcly https://ift.tt/7frcJE1

Show HN: I built an extension to contact Airbnb hosts direcly Hey HN, Over the years, I’ve found myself frustrated with the extra fees Airbnb. While they provide a lot of convenience, the service fees often stack up to a point where they overshadow any potential savings. I started wondering if there was a way to connect directly with property hosts and skip the middleman entirely. That curiosity led me to build getaway.direct, a free Chrome extension that helps travelers save money. It works like this: 1. You browse listings on Airbnb. 2. The extension scans for direct booking links, host websites, or social media profiles where you can reach out to the host directly. 3. It shows those results instantly, so you can compare prices, avoid service fees, and book smarter. The main idea is to provide transparency. A lot of hosts already have their own websites but rely on platforms like Airbnb for visibility. This tool helps surface those direct options, which can often save you 10-20% per booking. I’d love to hear your thoughts: Would something like this be helpful to you? Also, I’m curious to get feedback on ways to improve the tool—whether it’s adding more integrations, improving usability, or something else entirely. Thanks for reading! Let me know what you think. https://ift.tt/aRuAGtJ November 29, 2024 at 04:48PM

Show HN: A tool for kids to practice arithmetic https://ift.tt/TB9dkp1

Show HN: A tool for kids to practice arithmetic https://ift.tt/IG8rMNa November 29, 2024 at 11:55PM

Thursday, November 28, 2024

Show HN: A word guessing game based on text vector embeddings and cos-similarity https://ift.tt/4cDfsog

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

Show HN: iOS Theremin Simulator with Hand Tracking (Beta) https://ift.tt/ekcCdj7

Show HN: iOS Theremin Simulator with Hand Tracking (Beta) https://ift.tt/Nc0lpQy November 29, 2024 at 12:23AM

Show HN: MyDuck Server – Supercharge MySQL and Postgres Analytics with DuckDB https://ift.tt/Xswm3jY

Show HN: MyDuck Server – Supercharge MySQL and Postgres Analytics with DuckDB Hello HN! We're excited to announce MyDuck Server, an open-source project that seamlessly integrates the analytical power of DuckDB with your existing MySQL & Postgres databases. *Backstory* Currently, there are no fully satisfactory open-source OLAP solutions for MySQL & Postgres. In the MySQL ecosystem, HeatWave offers close integration, but it's a proprietary, commercial product from Oracle. The Postgres community has seen promising DuckDB-based extensions emerge, including the official pg_duckdb. However, extensions can introduce isolation concerns in mission-critical environments. Consequently, many organizations resort to setting up complex and costly data movement pipelines using tools like Debezium, Flink, or other commercial solutions to replicate data from MySQL & Postgres to OLAP systems (e.g., Snowflake, BigQuery, ClickHouse) or Lakehouses (e.g., Delta Lake + Spark). This approach introduces significant operational overhead and expense. Another emerging strategy is the zero-ETL approach, increasingly advocated by cloud providers. This model simplifies data integration by allowing the cloud provider to manage ETL pipelines, while necessitating reliance on specific cloud ecosystems and services. *Key features* MyDuck Server offers a real-time analytical replica that leverages DuckDB's native columnar storage and processing capabilities. It operates as a separate server, ensuring isolation and minimizing impact on your primary database. Key features include: - Easy Zero-ETL: Built-in real-time replication from MySQL & Postgres with no complex pipelines to manage. It feels like a standard MySQL replica or Postgres standby. With the Docker image, passing a connection string is enough. - MySQL & Postgres Protocol Compatibility: We take this seriously and are working to make this project integrate well with the existing ecosystem around MySQL & Postgres. Currently, it is already possible to connect to MyDuck with standard MySQL & PostgreSQL clients in many programming languages. - HTAP Support: A standard database proxy can be deployed in front of a MySQL/Postgres primary and its MyDuck replica to route write operations to the primary and read operations to the replica. It just works. - DuckDB SQL & Columnar I/O over Postgres Protocol: It's unnecessary to restrict ourselves to MySQL/Postgres's SQL expressiveness and row-oriented data transfer. The Postgres port accepts all DuckDB-valid SQL queries, and you can retrieve query results in columnar format via `COPY (SELECT ...) TO STDOUT (FORMAT parquet/arrow)`. - Standalone Mode: It does not need to be run as a replica. It can also act as a primary server that brings DuckDB into server mode and accepts updates from multiple connections, breaking DuckDB's single-process limitation. *Relevant Previous HN Threads* - pg_duckdb [1] ( https://ift.tt/eNU08tg ) is the official Postgres extension for DuckDB. It uses DuckDB as an execution engine to accelerate analytical queries by scanning Postgres tables directly. - pg_mooncake [2] ( https://ift.tt/sJe51Sf ) is a Postgres extension that adds columnstore tables for PG. It uses pg_duckdb under the hood but stores data in Lakehouse formats (Iceberg & Delta Lake). - BemiDB [3] ( https://ift.tt/KvY4phw ) is also a DuckDB-based Postgres replica. Unlike us, they focus on storing data in Lakehouse format. We believe MyDuck Server offers a compelling solution for those seeking high-performance analytics on their MySQL & Postgres data without the complexities and costs of traditional approaches. We're eager to hear your feedback and answer any questions you might have. Let me know what you think! [0] https://ift.tt/kzhAlnT [1] https://ift.tt/3GU1F90 [2] https://ift.tt/0lZKRCp [3] https://ift.tt/DnvpoGV https://ift.tt/kzhAlnT November 28, 2024 at 08:20PM

Wednesday, November 27, 2024

Show HN: A website to practice for job interviews https://ift.tt/nP4KuCR

Show HN: A website to practice for job interviews A little backstory- When I first arrived in Canada as an international student, I met a guy who created a product called InterviewPal. I was fascinated and eager to use it, but soon discovered it was exclusive to University of Alberta students. This made me frustrated so I decided to take on the challenge of building a better alternative- something more accessible and affordable. After I announced Zilta’s waitlist on LinkedIn, Aryan blocked me, which bummed me out for a bit. But it only fueled my drive to create something much better than his overpriced product. My goal was to offer a solution that students and recent grads could actually afford and benefit from. And that’s how Zilta came into existance. I also wanted to give indie hacking a shot and took this endeavor so you can say I hit two birds with one stone haha --- Zilta was launched in June but I wasn't able to work on it extensively because of the workload from college and a part-time job I do. Now that the semester is approaching its end, I'm getting more time for it. Frankly speaking, I don't really know where to take this product to. Right now I am a little confused if I should focuss on marketing and getting more users to try it out and then add more features to it or the opposite. On the other hand, I've also listed this startup to sell for a few bucks because marketing is so hard. What I want deep down? I want this product to grow to 1-2K MRR and then sell it. The problem? I am not sure if I'm heading in the right direction. I'd like you all to give it a try and roast this product. I'm open to receving constructive critism and any advice that can help me succeed in this journey. Should I work on marketing, adding more features or selling this? https://www.zilta.io/ November 27, 2024 at 11:54PM

Show HN: AutoPiP – Safari extension for automatic Picture-in-Picture mode https://ift.tt/A2aVUMx

Show HN: AutoPiP – Safari extension for automatic Picture-in-Picture mode AutoPiP is a Safari extension that automatically enables Picture-in-Picture mode when switching tabs and disables it when returning to the video tab. No clicks needed - just seamless multitasking while watching videos. Key features: • Automatic PiP activation when switching tabs • Smart detection for active videos only • Seamless disable on tab return • Zero configuration needed GitHub: https://ift.tt/sSRWNJV https://ift.tt/sSRWNJV November 27, 2024 at 04:06PM

Tuesday, November 26, 2024

Show HN: Yoyo is a Livewire/Htmx alternative for vanilla php https://ift.tt/TGhNAsH

Show HN: Yoyo is a Livewire/Htmx alternative for vanilla php https://ift.tt/8NUI46t November 27, 2024 at 08:43AM

Show HN: AI Project Manager for Slack with Natural Language Superpowers https://ift.tt/aAWi0gS

Show HN: AI Project Manager for Slack with Natural Language Superpowers https://ift.tt/cBqNSpU November 27, 2024 at 07:33AM

Show HN: I created a lightweight JavaScript library to visualize JSON as a graph https://ift.tt/GWZTboM

Show HN: I created a lightweight JavaScript library to visualize JSON as a graph https://ift.tt/4IhJXst November 27, 2024 at 04:11AM

Show HN: Clean Your Mac with a Script https://ift.tt/M9j1Pcs

Show HN: Clean Your Mac with a Script I wanted to clean old temporary files and caches from my macOS with a script instead of using a shady paid app, so I created a simple script for that. Pull requests are very welcome for other unused files to clean up storage space! https://ift.tt/OyoETUS November 27, 2024 at 03:19AM

Monday, November 25, 2024

Sunday, November 24, 2024

Show HN: QuackHouse, Database in the browser, using WASM and DuckDB https://ift.tt/1Hd4gwJ

Show HN: QuackHouse, Database in the browser, using WASM and DuckDB I'm building a privacy focused analytics tool, using WebAssembly and DuckDB. You can upload your files (CSV, JSON and Parquet), and interact with them as where they a SQL Server. Your data never leaves your computer, however I do track page views and visitors using Plausible. The next steps are to add forecasting and segmentation, as well as some data visualisation capabilities. I would love to hear your opinion. All code for the repo is available here: https://ift.tt/zoha9DY https://ift.tt/3VyhraU November 25, 2024 at 02:42AM

Show HN: My weekend project to end Go/TypeScript boilerplate hell https://ift.tt/vn8BDFJ

Show HN: My weekend project to end Go/TypeScript boilerplate hell https://ift.tt/ujhOFAs November 24, 2024 at 03:24PM

Saturday, November 23, 2024

Show HN: Over 600 CSS Animations to Code https://ift.tt/xRYB2w8

Show HN: Over 600 CSS Animations to Code Hey HN, We’re excited to share Gradienty's CSS Animation Generator designed to make web animations intuitive and accessible for developers and designers at any level. Whether you’re new to CSS animations or a seasoned pro looking to save time, Gradienty equips you with the tools to create beautiful animations with zero coding headaches. Key Features: 1. 600+ Pre-Built Animations: From subtle hover effects to complex keyframe sequences, all categorized for easy navigation. 2. Visual Editor with Live Preview: See your animations in action as you tweak timing, easing, delay, and iterations. 3. Responsive Design Previews: Test animations across layouts for desktop and mobile compatibility. 4. Multiple Preview Objects: Visualize animations on text, buttons, boxes, circles, and more. 5. One-Click Code Export: Generate production-ready CSS with proper vendor prefixes, ready to drop into your project. 6. Zero-Dependency Animations: Works flawlessly across all modern browsers. Why We Built This: As developers, we often found animations to be either overly complex to implement manually or limited by pre-made libraries. Gradienty bridges this gap by offering both flexibility and ease of use, helping you create animations that look and perform great—without sacrificing development time. Who It’s For: Beginners: Experiment with animations visually without writing a single line of code. Designers: Focus on creativity while leaving the technical aspects to the generator. Developers: Save time with ready-to-use animations that can be customized and exported instantly. What’s Next: We’re working on adding community features like user-created animation libraries, animation presets for specific design systems, and integration guides for popular frameworks. We’d love to hear your feedback! Check it out here: Gradienty Let us know what you think or if there are features you’d love to see! https://ift.tt/xiO7y8s November 24, 2024 at 01:07AM

Show HN: I'm making a spiritual successor to Ski Free that runs in a browser https://ift.tt/2Fqo3It

Show HN: I'm making a spiritual successor to Ski Free that runs in a browser https://ift.tt/MgVRkZi November 23, 2024 at 10:45PM

Show HN: EnvCloak: lightweight, env file encryption – ready for CICD pipelines https://ift.tt/7YZ2r6D

Show HN: EnvCloak: lightweight, env file encryption – ready for CICD pipelines When someone here told me to focus on something more useful than reinventing the wheel. So. EnvCloak, a lightweight and simple tool for securely managing sensitive environment files. The design focuses on simplicity - just a few intuitive commands using the Click Python library. I assume seamless integration with CI/CD workflows. The aim is to provide a streamlined solution without the need for clunky tools. If you're tired of complex configurations or bloated alternatives, this might be worth a look! I would appreciate any feedback, feature ideas or input on how to improve this solution. I'd love to hear your thoughts! Regards! https://ift.tt/WOoeuwc November 23, 2024 at 11:29PM

Friday, November 22, 2024

Show HN: ChessGPT https://ift.tt/8jkstE3

Show HN: ChessGPT I made this quite a while back - but there seems to have been some interest in playing chess with ChatGPT again https://ift.tt/pB9uM0x You can paste you API key in, it all runs locally so should be pretty safe. November 23, 2024 at 04:56AM

Show HN: AI bot that automatically processes unstructured documents https://ift.tt/0P1OZBr

Show HN: AI bot that automatically processes unstructured documents Hi HN! We’re excited to share what we’ve been working on—a bot that automates the tedious task of processing unstructured documents from emails and entering them into ERPs. After many iterations, we’ve achieved 99.8% accuracy in extracting and mapping data from invoices, POs, and other documents. One surprising takeaway from this journey: building the AI was only 10% of the challenge! The real work came from handling edge cases, integrating seamlessly with various ERPs, and creating a reliable pipeline for real-world documents with messy formats. We’d love your feedback, thoughts, or questions about how we built this, the challenges we faced, or anything else. Let us know what you think! Thanks for checking it out! https://ift.tt/IydNEWA November 23, 2024 at 06:50AM

Show HN: Open-Source Pull Request AI Reviewer https://ift.tt/YyD0mzk

Show HN: Open-Source Pull Request AI Reviewer Hey HN, Over the last year, I’ve reviewed more than 1000 code changes. Most of the time was spent catching obvious mistakes rather than debating complex design decisions. If we estimate ~10 minutes per review, that’s 160+ hours spent reviewing code in just one year. So I thought: could I get some of that time back using LLMs? That's why I spent the last few weekends building Presubmit.ai, an open-source AI reviewer that runs as a Github Action right when you open a Pull Request. The results so far are promising: I estimate it can reduce the review time by 50%, which in my case would mean I save 80hours (~10 working days) per year. Unlike similar SaaS solutions, the goal is not to replace the human reviewer but to highlight obvious mistakes early, spot security vulnerabilities and give more context about the change. I like to think of it as a “pre-reviewer”. Some of its features are: * Line-by-line comments * PR summarization * Title generation on request * Responds to review comments It supports all major LLMs, but I’ve found Anthropic's Claude works best for this use case. Please give it a try and share your feedback! https://ift.tt/Zs2EOTq https://ift.tt/Zs2EOTq November 22, 2024 at 08:28PM

Show HN: Pull Request Reviewed by LLM https://ift.tt/sGCZEnl

Show HN: Pull Request Reviewed by LLM This year I’ve reviewed more than 1000 code changes. Most of the time was spent catching obvious mistakes rather than debating complex design decisions. If we estimate ~10 minutes per review, that’s 160+ hours spent reviewing code in just one year. So I thought: could I get some of that time back using LLMs? That's why I spent the last few weekends building an LLM-based prereviewer that should take a first pass before the actual human reviewer. The results so far are promising: I estimate it can reduce the review time by 50%, which in my case would mean I save 80hours (~10 working days) per year. Linked above is an example of a PR where I'm testing the AI reviewer and it showcase how it can detect bugs, suggest best practices about token validity, generate summary and title, and even chat with me in review comments. The AI reviewer is a simple Github action that runs everytime I open or synchronize a pull request and you can see the source code at https://ift.tt/Zs2EOTq . https://ift.tt/ncoFNOY November 22, 2024 at 11:29PM

Thursday, November 21, 2024

Show HN: VS Code extensions that display CGM blood glucose levels in status bar https://ift.tt/BGTCvdY

Show HN: VS Code extensions that display CGM blood glucose levels in status bar As a Type 1 diabetic, I need to continuously monitor my blood glucose levels. I’ve implemented a couple of Visual Studio Code extensions that retrieve the latest blood glucose readings from your CGM and display them in your VS Code status bar. One VS code extension uses the Nightscout CGM to retrieve the blood glucose readings. It requires users to run the Nightscout application on a hosted server. A nice benefit of Nightscout application is that it works with all the major CGM devices. However, a slight drawback of this option is that it requires a hosted third party software (Nightscout) for proper functionality. I’ve also implemented a Visual Studio code extension for those (like myself) that use the Freestyle Libre CGM. This version connects directly to LibreLinkUp to retrieve the latest blood glucose readings and display them in your VS code status bar. This removes the dependency for the intermediary Nightscout application. If you are or know any software engineers living with diabetes, these tools might be helpful with diabetes management. These are tools I built for myself that help me manage my diabetes. They are completely free and open source. I am not selling anything. Users of the tools can use them without any restrictions or connection to me. I am genuinely trying to help others in the community that are software engineers and might find this helpful. If you try out any of these extensions, I’d love to hear back from you. Any feedback on improvements are very welcome and appreciated. - https://ift.tt/GU8R607... - https://ift.tt/Bth3Q4C... November 22, 2024 at 12:19AM

Show HN: My Remote Teaching Station (Mk IV) https://ift.tt/IbU9XRa

Show HN: My Remote Teaching Station (Mk IV) The remote teaching station has been evolving for the last four years. The Mk IV is the most advanced and most attractive version so far. https://ift.tt/l8TgkZm November 21, 2024 at 10:07PM

Wednesday, November 20, 2024

Show HN: Self-Host Next.js in Production https://ift.tt/d8Ntb1S

Show HN: Self-Host Next.js in Production https://ift.tt/VoiOAEs November 21, 2024 at 03:37AM

Show HN: Autotab – Programmable AI browser for turning web tasks into APIs https://ift.tt/3Wo2XiS

Show HN: Autotab – Programmable AI browser for turning web tasks into APIs Hey HN, we're Alexi and Jonas the co-founders of Autotab ( https://autotab.com ). Autotab is a chrome-based browser you can teach to do complex tasks, with a simple API for running them from your app or backend. Here is a walkthrough of how it works: https://youtu.be/63co74JHy1k , and you can try it for free at https://autotab.com by downloading the app. Why a dedicated editor? The number one blocker we've found in building more flexible, agentic automations is performance quality BY FAR ( https://ift.tt/YTIgPz5... ). For all the talk of cost, latency, and safety, the fact is most people are still just struggling to get agents to work. The keys to solving reliability are better models, yes, but also intent specification. Even humans don't zero-shot these tasks from a prompt. They need to be shown how to perform them, and then refined with question-asking + feedback over time. It is also quite difficult to formulate complete requirements on the spot from memory. The editor makes it easy to build the specification up as you step through your workflow, while generating successful task trajectories for the model. This is the only way we've been able to get the reliability we need for production use cases. But why build a browser? Autotab started as a Chrome extension (with a Show HN post! https://ift.tt/X3ZjSMh ). As we iterated with users, we realized that we needed to focus on creating the control surface for intent specification, and that being stuck in a chrome sidepanel wasn't going to work. We also knew that we needed a level of control for the model that we couldn't get without owning the browser. In Autotab, the browser becomes a canvas on which the user and the model are taking turns showing and explaining the task. Key features: 1. Self-healing automations that don't break when sites change 2. Dedicated authoring tool that builds memory for the model while defining steps for the automation 3. Control flows and deep configurability to keep automations on track, even when navigating complex reasoning tasks 4. Works with any website (no site-specific APIs needed) 5. Runs securely in the cloud or locally 6. Simple REST API + client libraries for Python, Node We'd love to get any early feedback from the HN community, ideas for where you'd like the product to go, or experiences in this space. We will be in the comments for the next few hours to respond! November 21, 2024 at 01:52AM

Show HN: Postiz – open-source social media scheduling tool https://ift.tt/rF57oRb

Show HN: Postiz – open-source social media scheduling tool https://postiz.com/ November 20, 2024 at 08:07PM

Tuesday, November 19, 2024

Show HN: Serverless code execution, but for AI agents https://ift.tt/oWzMY0e

Show HN: Serverless code execution, but for AI agents https://sandboxed.ai November 20, 2024 at 05:06AM

Show HN: archgw: open-source, intelligent proxy for AI agents, built on Envoy https://ift.tt/oKsAYCc

Show HN: archgw: open-source, intelligent proxy for AI agents, built on Envoy Hi HN! This is Adil, Salman, Co and Shuguang and we're excited to introduce archgw [1], an open source intelligent proxy for agents built on Envoy [2]. Arch moves the critical but crufty work around safety, observability, and routing of prompts outside business logic. Arch is a uniquely intelligent infrastructure primitive, engineered with purpose-built fast LLMs [3] for tasks like intent detection over multi-turn, parameter identification and extraction, triggering single/multiple function calls, and offers convenience features to auto dispatch LLM calls for summarization based on data from your APIs via system prompts configured in archgw. Today, the approach to build a smart production-ready agent is weaving together a large set of mono-functional opinionated libraries, adding extra layers like LLM-based preprocessing to determine things like relevance and safety of the user's prompt (e.g. applying governance and guardrails). Once past that stage, developers must extract relevant information from the user prompt to determine intent, extract parameters as necessary, package relevant tools calls to an LLM to trigger a backend API to execute particular domain-specific task. etc. After all that is done then only are developers ready to trigger an LLM call for summarization and must manage upstream error handling and retry logic themselves. Not to mention, if they want to experiment with multiple LLMs or move between LLM versions, they have to write crufty undifferentiated code. This entire experience is slow, error prone, cumbersome, and not specifically unique. Prior to building archgw, the team spent time building Envoy [2] at Lyft, API Gateway at AWS, specialized search and intent models at Microsoft Research and worked on safety at Meta. archgw was born out of the belief that several rules based mono-functional tools should be converged into a multi-functional infrastructure primitive designed for prompts and agents. We built archgw on the highly popular, battle-tested open source proxy Envoy and re-imagined it for prompts and agents. For this we had to build blazing fast LLMs [3] that can handle crufty, ahead-in-the-request-path type of work in handling and processing prompts that are sent to an agent, so that developers can focus on what matters most: building fast personalized agents without the unnecessary prompt engineering and systems integration work needed to get there. Here are some additional details about the open source project. arghw is written in rust, and the request path has three main parts: * Listener subsystem which handles downstream (ingress) and upstream (egress) request processing. * Prompt handler subsystem. This is where archgw makes decisions on the safety of the incoming request via its prompt_guard primitive and identifies where to forward the conversation to via its prompt_target primitive. * Model serving subsystem is the interface that hosts all the lightweight LLMs engineered in archgw and offers a framework for things like hallucination detection of our these models We loved building this open source project, and our belief is that this infra primitive would help developers build faster, safer and more personalized agents without all the manual prompt engineering and systems integration work needed to get there. We hope to invite other developers to use and improve Arch. Please give it a shot and leave feedback here, or at our discord channel [4] Also here is a quick demo of the project in action [5]. You can check out our public docs here at [6]. Our models are also available here [7]. [1] https://ift.tt/0jxwGW3 [2] https://ift.tt/mntqQIH [3] https://ift.tt/xv6sjrX... [4] https://ift.tt/TeSLBtp... [5] https://www.youtube.com/watch?v=I4Lbhr-NNXk [6] https://ift.tt/2TiktuC [7] https://ift.tt/K08otRG https://ift.tt/0jxwGW3 November 20, 2024 at 12:56AM

Show HN: Tobii lightbox v2.6.0 with pinch/zoom/pan and tap to cycle on mobile https://ift.tt/AetgQZR

Show HN: Tobii lightbox v2.6.0 with pinch/zoom/pan and tap to cycle on mobile https://ift.tt/MOBZtnF November 20, 2024 at 01:09AM

Show HN: Fireproof – local-first database with Git-like encrypted sync https://ift.tt/IYNjmr5

Show HN: Fireproof – local-first database with Git-like encrypted sync Hi, HN! As a cofounder of Couchbase, I pioneered mobile sync, and I’ve always wanted to bring the speed and reliability of local-first data to the web, incubating PouchDB among other efforts. I learned the constraints of real world financial applications at McKinsey & Company FinLab, and Merkle integrity research at Protocol Labs taught me smart contract data structures. As part of the JavaScript community (and early hosting provider for NPM) I’ve been waiting, and now with the availability of APIs like Passkeys and Origin Private Filesystem, I’m happy to say the browser is ready to support embedded databases. Front-ends are a lot easier to write when your database handles live sync for you, but the existing solutions rely on heavyweight cloud APIs instead of putting the smarts at the edge, where it belongs. I started from a different set of constraints, and arrived at a lightweight embedded database that uses a git-like data model to offer cryptographic causal consistency across browsers, edge functions, and anywhere TypeScript runs. It’s designed to make building full-featured apps as simple as calling `db.put({ hello: "world" })` and syncing them as easy as calling `connect(db, remote)`. People are using Fireproof for AI character chat[1], personal finance[2], and hedge funds[3], and we aim to be simple enough for novice coders to build enterprise-critical apps. Fireproof makes product owners dangerous, because just a little bit of code can define an application’s workflow and data model. See the code sample below. The reactive APIs[4] are designed for live collaboration so your user interfaces update automatically, making it an easy way to add query collaboration to legacy dashboards, or write new interactive tools for your team. Merkle CRDTs[5] provide multi-writer safety while maintaining tamperproof data provenance, conflict tracking, and deterministic merges. The storage engine writes content-addressed encrypted files that can be synced via commodity backends like S3 or Cloudflare[], without sacrificing data integrity. Our contributors include legends like Damien Katz, Meno Abels, Mikeal Rogers, and Alan Shaw. Fireproof is open source (Apache/MIT) and we know there are rough edges, so we hope this post stirs up collaborators![6] Please `npm install @fireproof/core` and give us feedback[7]. We are on the stable side of beta, so it’s a great time for the adventurous to join. I’m excited to see all the apps people write now that it’s easy! [1] https://ift.tt/4DX5Phf [2] https://ift.tt/Fgz46ma... [3] https://ift.tt/VTKdreq... [4] https://ift.tt/42ZN3Cn [5] https://ift.tt/vOtldYs... [6] https://ift.tt/JndND08 [7] https://ift.tt/9aZ0rDk https://ift.tt/PrnGESj November 19, 2024 at 08:49PM

Monday, November 18, 2024

Sunday, November 17, 2024

Show HN: Store and render ASCII diagrams in Obsidian https://ift.tt/vB0PwX1

Show HN: Store and render ASCII diagrams in Obsidian Obsidian plug-in that allows you to create and store ASCII diagrams in your notes. It can be used to visualise diagrams, flowcharts, complex tables, Gantt charts and more in technical documentation, that will be rendered as a nice SVG graphics. https://ift.tt/SvW920w November 12, 2024 at 07:33AM

Show HN: I made Picle (a.k.a. Catchphrase x Wordle x AI) https://ift.tt/Ero65LN

Show HN: I made Picle (a.k.a. Catchphrase x Wordle x AI) Love to hear what you think! Thank you! https://picle.fi/ November 17, 2024 at 08:38PM

Show HN: Knight's Graph – game based on the Knight's tour problem https://ift.tt/7S156zL

Show HN: Knight's Graph – game based on the Knight's tour problem When I was in high school, my dad showed me how to play Knight Tour on a piece of paper. Many years passed before I decided to create the Knight's Graph app. “Knight's Graph” is an intellectual puzzle game based on the classic knight tour problem, known since the 18th century. Your task is to move the chess knight across the board so that each square is visited exactly once. Test your logical and strategic skills in an exciting game where every game is a new challenge! The app is already available for download on the App Store. Google Play will be available a little later. App Store: https://ift.tt/shBpSWQ... Website: https://ift.tt/l7zjf08 https://ift.tt/saFWHr9 November 13, 2024 at 03:23PM

Show HN: Top Hacker News stories every day over the years https://ift.tt/ozsmK89

Show HN: Top Hacker News stories every day over the years https://ift.tt/OfShjGD November 17, 2024 at 09:19AM

Saturday, November 16, 2024

Show HN: Next Beats – A Modern, Customizable, Open Source Lofi Music Player https://ift.tt/fXFOkW6

Show HN: Next Beats – A Modern, Customizable, Open Source Lofi Music Player Hey everyone, I've always wanted to build my own lofi player, and I recently added it to one of my projects, You-TLDR. I decided to open-source it so more people can play around with it and make it their own. NextBeats is a modern, customizable lofi music player built with Next.js and TypeScript. It features a retro TV-style interface, YouTube integration for endless lofi streams, sound effect mixing (rain, cafe, etc.), and theme customization. Perfect for coding, studying, or relaxing, it lets you add custom channels, control music and effect volumes independently, and save settings locally. Open-source and mobile-friendly. Appreciate any feedback! https://ift.tt/bwfCEOh November 17, 2024 at 11:01AM

Show HN: I built an app for anyone to design their own kitchen https://ift.tt/1XEnHTA

Show HN: I built an app for anyone to design their own kitchen https://ift.tt/DVSagwu November 17, 2024 at 04:49AM

Friday, November 15, 2024

Show HN: Zyme – An Evolvable Programming Language https://ift.tt/XBLfsAJ

Show HN: Zyme – An Evolvable Programming Language Zyme is an esoteric language for genetic programming: creating computer programs by means of natural selection. https://zyme.dev November 15, 2024 at 07:43PM

Show HN: Scooter – Interactive find and replace in the terminal https://ift.tt/FXaTqzM

Show HN: Scooter – Interactive find and replace in the terminal https://ift.tt/FIsh3pZ November 15, 2024 at 10:15PM

Thursday, November 14, 2024

Show HN: The Billy Bass I put on the Internet https://ift.tt/NQXZqut

Show HN: The Billy Bass I put on the Internet This one is just for fun. A couple years back I put together this tool to help me make synced up open/close mouth animations. End goal was always to "put it on the internet" like so many other things I remember when I was a bit younger. You can't drop this into a livestream these days without getting banned because people can't play nice, so I made it to record and distribute videos privately. I only code like this as a hobby, so it is a bit rough (I am a hardware guy), but these days you can get pretty far without knowing a lot. Enjoy https://ift.tt/sxF1Rcd November 14, 2024 at 06:17PM

Show HN: Memoripy – AI Memory Layer with Short- & Long-Term Memory, Clustering https://ift.tt/3Kz5yMU

Show HN: Memoripy – AI Memory Layer with Short- & Long-Term Memory, Clustering Hey HN! I built Memoripy, a memory layer for AI that adds short-term, long-term, and semantic memory capabilities to enhance LLM applications. It helps AI systems retain and prioritize past interactions, adapt over time, and respond with greater context and personalization. Memoripy uses semantic clustering to retrieve relevant memories, along with adaptive memory decay and reinforcement, so interactions stay fresh and context-aware. It’s designed for easy integration with OpenAI, Ollama, and other platforms—giving your AI applications dynamic memory management with minimal setup. Would love to hear your thoughts and feedback! https://ift.tt/wMFST7u November 15, 2024 at 02:12AM

Show HN: 16 year olds building an AI-powered Integrated Writing Environment https://ift.tt/vfsBC4t

Show HN: 16 year olds building an AI-powered Integrated Writing Environment Hey HN! Jainish here—super excited to share that my friends and I have just launched Factful, an Integrated Writing Environment (IWE) that many of you helped shape with your feedback. For those who missed our last post ( https://ift.tt/vGTiDtb ), we shared an early version of Factful and were amazed to see over 20,000 users giving it a try. Since then, we’ve been hard at work refining the platform based on your suggestions. Factful is now a complete IWE that offers everything you need to write, edit, and fact-check in one streamlined environment, helping you stay productive and ensure every piece is accurate and credible. It also provides grammar & suggestions based on writing style & locale, along with personalized analytics. We also support google drive integration, our google auth is in the process of getting approved. Rich text editor and chrome extension is also in development. For businesses and teams, Factful offers custom B2B features tailored to meet organizational needs. These include advanced usage analytics, dev API, and and an admin dashboard that allows team leaders to oversee account settings, manage workflows, and customize Factful’s toolset for their specific goals. Whether you're working on internal documentation, marketing materials, or research-heavy projects, Factful enables seamless collaboration and high-quality content creation across your team. We also offer a custom fact-checking AI model to correct employee-written text on internal knowledge set (invoices, company policies, receipts, etc.) One of our standout features is the inline forward-slash commands, which make your workflow even faster. Commands like /search (for web lookups, including academic papers), /translate, /paraphrase, and /synonym or /antonym help you research, refine, and adjust your writing seamlessly (many more to come!) Here’s a guide: https://ift.tt/PwVeEmg... For a limited time, we’re offering free premium access so that everyone can try out these features at no cost. We’d love for you to give Factful a try, whether you’re an individual user or a business looking for smarter writing solutions. Your feedback has been invaluable, and we can’t wait to hear more! Thanks for helping us make Factful the best it can be! https://factful.io/ November 15, 2024 at 12:54AM

Wednesday, November 13, 2024

Show HN: I Built Tinder, but for Entrepreneurs and Investors https://ift.tt/VSfZplR

Show HN: I Built Tinder, but for Entrepreneurs and Investors AloAngels, helps you connect to more than 2200 investors by your startup's profile https://ift.tt/zVyaGKJ November 14, 2024 at 02:13AM

Show HN: Humbo Visited – create a visited countries map https://ift.tt/Ek2YV7g

Show HN: Humbo Visited – create a visited countries map Share where you have been with your own interactive world map. A complete view of your travels showing both visited countries and places. https://ift.tt/ODLrT3z November 13, 2024 at 11:50PM

Show HN: Xfer, a data-transfer language https://ift.tt/ALNoaHY

Show HN: Xfer, a data-transfer language Xfer is an experimental language I've been defining for a little while. It's intended to be a strictly-typed alternative to Json that offers a few other features, like comments, nested elements, placeholder substitution, and metadata. It's in VERY early days, so I'd love to hear your suggestions and feedback. https://ift.tt/PBjzhSC November 12, 2024 at 04:35PM

Tuesday, November 12, 2024

Show HN: Foundation models for time series forecasting https://ift.tt/tYfRTSa

Show HN: Foundation models for time series forecasting After months of brewing the perfect recipe in our AI kitchen, we're beyond excited to introduce Sulie - a fully managed (Model as a Service) platform for time series forecasting that actually works! From day one, we've had one mission: make powerful time series forecasting as easy as ordering your morning coffee. Now, businesses can make accurate forecasts from their data without the hassle of building complex models from scratch. We kept hearing the same frustrations from data teams trying to work with foundation models for time series forecasting: 1. "The zero-shot performance is about as reliable as a chocolate teapot!" 2. "Fine-tuning these models? Easier to teach a cat to bark!" 3. "And don't get me started on covariate support..." What makes Sulie special? • Automated model fine-tuning using LoRA - no PhD required! • Full covariate support for more accurate predictions. • Go from zero to production-ready forecasts in minutes (not weeks). • Zero ML complexity - we handle all MLOps heavy-lifting (you focus on the insights). We're already working with amazing customers who are: • Optimizing their supply chains • Making precise financial forecasts • Building custom models using Sulie's powerful embeddings And this is just the beginning! Stay tuned for deep dives into these use cases in the coming weeks Check us out: Python SDK: https://ift.tt/FExdnvg Website: https://sulie.co https://ift.tt/FExdnvg November 12, 2024 at 09:11PM

Show HN: Visual inference exploration and experimentation playground https://ift.tt/j8e2oSd

Show HN: Visual inference exploration and experimentation playground https://ift.tt/G4qMXKw November 12, 2024 at 06:33AM

Monday, November 11, 2024

Show HN: Automatically tweet (X) the music you're enjoying on Spotify https://ift.tt/3lgZ8OW

Show HN: Automatically tweet (X) the music you're enjoying on Spotify Hey HN! Excited to show a project called Bopping that makes it effortless to share the music your enjoying on X (Twitter). Bopping connects to both your Spotify and X (Twitter) accounts, tracks your listening activity, and automatically tweets out your top 3 tracks every day (timeframe adjustable in settings). When it knows an artists handle, it will tag that artist in the tweet, which has resulted in some nice artist/fan interactions. I often get artists retweeting or liking my tweets which feels very cool. It's been fun to see the tweets from the small group of people using it on my timeline. Would love for you to give it a try. Excited to hear feedback and see what tracks everyone’s vibing to. You can see some other bops here: https://ift.tt/Skib4XY... All bops are also added into a (rather eclectic) playlist: https://ift.tt/Rw5i91r... https://bopping.to November 12, 2024 at 03:51AM

Show HN: Collaborative MIDI over WebRTC https://ift.tt/t7I6bgG

Show HN: Collaborative MIDI over WebRTC Hello Everyone Just finished developping a collaborative MIDI app with WebRTC The app unables you to send and receive MIDI signals over the net with peer to peer connection. You need to be signed up in order to use it and the repository is not yet accessible. https://ift.tt/Yq1FfB4 November 12, 2024 at 02:29AM

Show HN: DocSend, but Made 10x Cheaper https://ift.tt/hHFCBcz

Show HN: DocSend, but Made 10x Cheaper Hey HN, founder of Peony here. Most founders use DocSend to share investment or sales docs and have to pay $65 to $300 a month to get the security and analytics features. It pains me to see startups getting ripped off when the availability of technologies such as Clickhouse makes real time analytics almost a trivial feature to implement in 2024. We think it's time to end the carnage and democratize the technology. We set ourselves a high bar: we don't want to build another DocSend - we want it to be a far more superior product and also 10x cheaper. After a couple of months of work, I'm proud to share with you Peony - a first preview into what we believe will be the future of file sharing. In addition to the analytics and security features you'd expect coming from DocSend, we built Peony to be flexible and adaptable across all your file sharing needs and give you the ability to deeply personalize your file share per recipient. I'd love to hear what you think? We are the Prometheus stealing fire from the guarded Olympian mountains. Help us win the rebellion. https://peony.ink/ November 12, 2024 at 12:58AM

Show HN: Flash Kitty – Archive of Adobe/Macromedia Flash Movies from Flash Kit https://ift.tt/ekOD2rc

Show HN: Flash Kitty – Archive of Adobe/Macromedia Flash Movies from Flash Kit After realizing a few months ago that the current flashkit owners didn't really back up any of the user submitted movies, and getting some Flash nostalgia, I created this working Flash Kit archive using data from the Wayback Machine/Internet Archive. It uses Raffle so you can watch the submitted movies in a modern browser without needing plugins. It's not curated so you'll find a variety of things, some things are really creative and can be used for inspiration. https://ift.tt/q25Gyhn November 11, 2024 at 11:11PM

Show HN: I made a conversation starter card game https://ift.tt/Ks5hqlI

Show HN: I made a conversation starter card game Hey HN, I made conversation starter game. Here's how it works: - Choose a theme like "Couples" or "Favorites" - Tap to reveal thought-provoking questions - Take turns answering and discover new things about each other I made ConvoCards because everyone has an interesting story to tell, but these don't often come up in day to day conversations. I also enjoy using them for journaling and self reflection. I hope you enjoy playing and learn something new about someone close to you! https://convo.cards November 11, 2024 at 01:24PM

Sunday, November 10, 2024

Show HN: Krita RGBA Tech – Bringing Realistic Metal to Life in Open-Source Art https://ift.tt/Aiuepcq

Show HN: Krita RGBA Tech – Bringing Realistic Metal to Life in Open-Source Art Krita's v4.2+ RGBA brushtips let you paint with dimensionality, and it's a technology that Photoshop doesn't have (≖‿ゝ≖) It lets the creator do things like emulating light direction, making brushstrokes look 3D. I used them to make a set of metallic brushes. If there are any FOSS artists around, feel free to test them out. (p.s. Yes, I am learning Github so I probably made repository mistakes - apologies in advance lol) https://ift.tt/oLDSvjl November 11, 2024 at 08:15AM

Show HN: Open-source tool to convert ComfyUI workflows into web apps and APIs https://ift.tt/ycEoU5d

Show HN: Open-source tool to convert ComfyUI workflows into web apps and APIs We built an open-source solution to transform ComfyUI workflows into production-ready web applications with minimal configuration. The project consists of: - ViewComfy (open source) - A tool for wrapping ComfyUI workflows in clean, user-friendly interfaces: https://ift.tt/su9XybU - Cloud deployment layer - Includes an automatic dependency resolver that handles model management and node installation. Deploy either as interactive web apps (using ViewComfy) or REST APIs: https://ift.tt/GUKPAae Key features: - Zero-config deployment of any ComfyUI workflow - Automatic model/dependency management - REST API generation - UI builder components You can get started by dropping a workflow here: https://ift.tt/GUKPAae https://ift.tt/3hkjpsf November 11, 2024 at 01:31AM

Show HN: I made a tiny device for automatically recording digital pianos https://ift.tt/TJgreG4

Show HN: I made a tiny device for automatically recording digital pianos Hey HN! A few years ago, I left my cushy big tech job to make hardware. And made the device I always wanted - an automatic piano recorder! I usually play piano improvisationally, and manually hitting record never meshed well with that. But there are always moments I wish I recorded, and now they are! Hopefully it scratches a similar itch for some of you as well! A few of the tech details: * built on an esp32-s3 * custom injection molded enclosure * BLE comms, sd card storage, DS1302 RTC * android & ios apps with Flutter * Shadertoy vfx support for video sharing - Chip https://jamcorder.com/ November 8, 2024 at 05:11AM

Saturday, November 9, 2024

Show HN: Dracan – Open-source, 1:1 proxy with simple filtering/validation config https://ift.tt/vFyHgAQ

Show HN: Dracan – Open-source, 1:1 proxy with simple filtering/validation config If you are tired of using Apache or Nginx to proxy your app and implement validation or limiting you may be interested in this hobbyist project. Thanks for all feedback. https://ift.tt/ZDQ4zyG November 10, 2024 at 05:45AM

Show HN: Visprex – Open-source, in-browser data visualisation tool for CSV files https://ift.tt/81dDsVy

Show HN: Visprex – Open-source, in-browser data visualisation tool for CSV files https://ift.tt/H0yrXAK November 10, 2024 at 02:24AM

Show HN: Jaws – a JavaScript to WASM ahead-of-time compiler https://ift.tt/Vqzrkad

Show HN: Jaws – a JavaScript to WASM ahead-of-time compiler I've open sourced a JavaScript to WASM compiler. It's an experimental tool, but given the semantics I already implemented, I'm fairly certain I am able to eventually cover 100% of JavaScript spec. Any ideas, questions or critique welcomed! If you are interested in WASM, especially with new proposals like WASM GC or exception handling, it might be a good source of seeing these features in action - the project has a few thousand lines of hand written WAT so far. https://ift.tt/qrT9jRY November 9, 2024 at 11:44PM

Show HN: Akas: A Micropodcasting App https://ift.tt/6CSfuva

Show HN: Akas: A Micropodcasting App App store: https://ift.tt/bC50mwi... Play store: https://ift.tt/SuExRJU... Site link: https://akashq.com Invitation code: BVN55L https://www.akashq.com/ November 10, 2024 at 12:15AM

Friday, November 8, 2024

Show HN: I build a FullStack boilerplate to ship my projects faster https://ift.tt/qeC4uPN

Show HN: I build a FullStack boilerplate to ship my projects faster Every time I start a new project, it’s the same drill: setting up authentication, routing, databases, UI, etc. Sound familiar? I wasted 10+ hours on the same repetative setup. So I built Getstart, a SaaS-ready framework with everything you need to go from zero to launch—fast. It’s all here: NextAuth for easy auth Prisma + MongoDB for scalable databases Next.js API routes pre-built Nodemailer for emails Razorpay for both domestic and international payments Tailwind and Shadcn for sleek and customizable UI Let me know what you guys think and what can be improved https://ift.tt/2IaSxZ8 November 9, 2024 at 04:40AM

Show HN: RL Agent that can auto-optimize your LLM prompts https://ift.tt/gowhrK3

Show HN: RL Agent that can auto-optimize your LLM prompts Hey everyone! Along with my team, I've developed a reinforcement learning system that automatically optimizes LLM prompts, complete with a visualization feature to track both prompt structure and learning progress over time. Take a look here: https://ift.tt/1qJKfRI... Check out our website too: https://ift.tt/pYfTzN3 In terms of how this visualization works: The RL Prompt Optimizer employs a reinforcement learning framework to iteratively improve prompts used for language model evaluations. At each episode, the agent selects an action to modify the current prompt based on the state representation, which encodes features of the prompt. The agent receives rewards based on a multi-metric evaluation of the model's responses, encouraging the development of prompts that elicit high-quality answers. And see our github repo! https://ift.tt/RSAnVK6 https://ift.tt/RqDB5u0 November 9, 2024 at 01:47AM

Show HN: A macOS app and window activity tracker https://ift.tt/SnBlY3V

Show HN: A macOS app and window activity tracker https://ift.tt/eMTLlZv November 8, 2024 at 08:46PM

Thursday, November 7, 2024

Show HN: Directional antenna alignment using phone motion sensors https://ift.tt/0fzqs1p

Show HN: Directional antenna alignment using phone motion sensors https://ift.tt/D6Mb0OU November 3, 2024 at 08:25PM

Show HN: Draw.Audio – A musical sketchpad using the Web Audio API https://ift.tt/0woTgDI

Show HN: Draw.Audio – A musical sketchpad using the Web Audio API https://draw.audio November 8, 2024 at 01:36AM

Show HN: Intelligent Browser for Web Automation Powered by AI https://ift.tt/2jOJa1b

Show HN: Intelligent Browser for Web Automation Powered by AI Hey HN this is Daniel, I'm excited to share Airtop with the community! Airtop enables AI agents to seamlessly browse and automate any website — even ones with complex authentication like MFA or OAuth. Whether you need to scrape, interact with dynamic content, or automate tasks across multiple browsers, Airtop's cloud-based infrastructure makes it scalable and accessible. Why Airtop? — AI-Driven Web Automation: Automate interactions with any site through natural language commands even if they include human-in-the-loop scenarios. — Authentication Ready: Airtop handles websites requiring authentication, allowing bots to perform complex tasks. — Scalability: Easily manage and deploy tasks, whether it's one browser or a thousand. — Compliance: Airtop ensures your data is handled with the highest security, availability, and privacy standards, giving you peace of mind while automating sensitive tasks. You can check it all out for free and play with our Studio (in the dashboard) to see how the API and prompts work. I would love to hear your thoughts and feedback! https://www.airtop.ai/ November 7, 2024 at 09:30PM

Wednesday, November 6, 2024

Show HN: A minimal iPhone widget for people who love saving links https://ift.tt/dl3ACzn

Show HN: A minimal iPhone widget for people who love saving links https://eyeball.wtf/ November 7, 2024 at 04:54AM

Show HN: GitQuill – free cross-platform GUI for Git, inspired by GitKraken https://ift.tt/RTdcm37

Show HN: GitQuill – free cross-platform GUI for Git, inspired by GitKraken https://ift.tt/fQCKZ8y November 7, 2024 at 02:13AM

Show HN: Take a Moment and Breathe https://ift.tt/Om0uza1

Show HN: Take a Moment and Breathe A simple web app to help your breathing exercises. If you submit your email, I'll also ask what personalised scenes you might like to meditate to. First 5 free but will have to work out a payment system after that... https://breaths.life/ November 7, 2024 at 03:22AM

Show HN: Last CLI tool you will need https://ift.tt/CqT1JKN

Show HN: Last CLI tool you will need https://ift.tt/Zws0WQX November 7, 2024 at 12:38AM

Tuesday, November 5, 2024

Show HN: Samsar One Version One is now live https://ift.tt/Xy3YKVx

Show HN: Samsar One Version One is now live Hi all, 6 months ago I started building out an app which combines all the SoTA gen-ai models out there into one platform which anyone could use to create 2-4 min long videos starting from scratch, starting from an idea. I received a ton of feedback from HN community & others along the way. Today excited to announce version one of app.samsar.one, a platform which allows anyone to easily and consistently create long, coherent and consistent generative-ai videos while picking and choosing their model starting from merely an idea. https://app.samsar.one/ October 31, 2024 at 03:36PM

Show HN: Whirlwind – Async concurrent hashmap for Rust https://ift.tt/kK9WNbM

Monday, November 4, 2024

Show HN: Krixik – Easily sequence small/specialized AI models (pip-installable) https://ift.tt/6DanZid

Show HN: Krixik – Easily sequence small/specialized AI models (pip-installable) Our initial intention was to experiment with a smartbook idea, but we couldn't find a good prototyping tool for small/specialized AI models. That rabbit hole took us through vector databases, through infra for small AI, and finally here. We’re particularly proud of the accessibility/simplicity of our code syntax. Krixik’s model library is limited to eleven model types (modules) and a few dozen models, but we will significantly expand it. Other enhancements, like a local client and several 3rd-party integrations, are also planned. You require API credentials to try Krixik. You can quickly get them through this form: https://ift.tt/ZbJepU1 And here’s a demo video (our YouTube channel also has a couple dozen example videos in it): https://youtu.be/WpSSYLfvfdM https://ift.tt/hLj4JTN November 4, 2024 at 08:33PM

Show HN: HN Push – Web push notifications for top stories on Hacker News https://ift.tt/Gpx8nvL

Show HN: HN Push – Web push notifications for top stories on Hacker News I created HN Push to help reduce the urge to refresh Hacker News constantly. Since I rely on HN for real-time tech news, I wanted an efficient way to stay informed without having to check the site. Receiving summaries with Apple Intelligence was an added bonus. The source code is available on GitHub[^1]. [^1]: https://ift.tt/JHESZhR https://www.hnpush.com November 4, 2024 at 07:17PM

Sunday, November 3, 2024

Show HN: New App for Downloading YouTube Videos Efficiently https://ift.tt/e2z8HDZ

Show HN: New App for Downloading YouTube Videos Efficiently https://ift.tt/VweEP9p November 4, 2024 at 12:22AM

Show HN: I wrote a techno-thriller on AI and need feedback (no signup) https://ift.tt/PknNCM1

Show HN: I wrote a techno-thriller on AI and need feedback (no signup) https://ift.tt/a2th18i November 3, 2024 at 10:14PM

Show HN: Outcheckr- Webpage outbound link enumerator with threading https://ift.tt/u2zo5UI

Show HN: Outcheckr- Webpage outbound link enumerator with threading Outcheckr enumerates all outbound links present in a webpage, now faster with multi-threading support. https://ift.tt/SwMTA2P November 3, 2024 at 09:52PM

Saturday, November 2, 2024

Show HN: Oasis Minecraft AI: AI-Generated Minecraft Adventure https://ift.tt/sIl4LKE

Show HN: Oasis Minecraft AI: AI-Generated Minecraft Adventure https://ift.tt/UfWXIwM November 3, 2024 at 08:01AM

Show HN: Super Simple CRC32 Implementation https://ift.tt/EVY6SHJ

Show HN: Super Simple CRC32 Implementation I written this as a little programming exercise in C https://ift.tt/x8d6ksg October 29, 2024 at 08:12PM

Show HN: P2P file transfer using WebRTC https://ift.tt/lsxdGn5

Show HN: P2P file transfer using WebRTC It's sometimes frustrating to send files among devices. Now you can send any file to any Chrome/FireFox/Safari client that wants to receive it: https://ift.tt/6NxKk7r Just share your ID, select a file and click send, and the receiving client will prompt to save it: There is no signup of any kind. You just need a way to copy the peer ID such as by email or text message, so they know who they're trying to get the file from. This makes it much easier to transfer files among devices. I tested it on Windows and iPhone, it worked perfectly. It does not use the server, it is peer to peer. https://ift.tt/LgzMmFU November 2, 2024 at 08:19PM

Show HN: GraphQL Zeus 7 – type-safe GraphQL on front end for newbies https://ift.tt/CzOnYlE

Show HN: GraphQL Zeus 7 – type-safe GraphQL on front end for newbies Ok, so I've heard the voice of community and added null support and dropped const enums. Also you can fetch all scalar fields with "fields" selector. https://ift.tt/MC4Sm2A November 2, 2024 at 07:15PM

Friday, November 1, 2024

Show HN: I made an interactive sentiment model comparison site https://ift.tt/Sd4DhrF

Show HN: I made an interactive sentiment model comparison site Hey HN, I needed to assess the state of sentiment models and couldn’t find a good way to compare them. I built this interactive site that lets you compare 12 models side by side, from Python libraries like NLTK Vader, to top performing models on HuggingFace, to commercial sentiment APIs and GPT4o. This is a research project, there is no paywall - you can enter your own text (1) and get the results back immediately. The results are fascinating and we made it easy to explore not just the leaderboard, but where models get it wrong. For example, most models (including AWS Comprehend) can’t get this positive sentiment: "Food doesn’t get better than this. I was sad when I finished, actually sad. To die for." (2) And yes, GPT4o is currently the best performing. It's crazy how many laboriously researched models are superseded by general purpose foundation models. Let me know what you think? 1: https://ift.tt/ZrjcUwk 2. https://ift.tt/456gkH0... https://ift.tt/bklt2ME November 2, 2024 at 01:19AM

Show HN: I created a minimalist pastebin clone using Go, Htmx, and PostgreSQL https://ift.tt/NkxtE4d

Show HN: I created a minimalist pastebin clone using Go, Htmx, and PostgreSQL https://ift.tt/Uk275uN November 1, 2024 at 07:56PM

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

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 jobseek...