ads
Thursday, October 31, 2024
Show HN: Cerebellum – Open-Source Browser Control with Claude 3.5 Computer Use https://ift.tt/VzUsoh9
Show HN: Cerebellum – Open-Source Browser Control with Claude 3.5 Computer Use Hi HN! I was mesmerized by the Claude Computer Use reveal last week and was specifically impressed by how well it navigated websites. This motivated me to create Cerebellum, a library that lets an LLM take control of a browser. Here is a demo of Cerebellum in action, performing the goal “Find a USB C to C cable that is 10 feet long and add it to cart” on amazon.com: https://youtu.be/xaZbuaWtVkA?si=Tq9lE6BXv9wjZ-qC Currently, it uses Claude 3.5 Sonnet’s newly released computer use ability, but the ultimate goal is to crowdsource a high quality set of browser sessions to train an open source local model. Checkout the MIT licensed repo on github ( https://ift.tt/4VhPlHw ) or install the library from npm ( https://ift.tt/EatVOid ) Looking for feedback from the HN community, especially on: What browser tasks would you use an LLM to complete? Thanks again for taking a look! https://ift.tt/4VhPlHw October 31, 2024 at 09:49PM
Show HN: Create Your Own TV Channel ◉ https://ift.tt/RdI8rJT
Show HN: Create Your Own TV Channel ◉ Hey HackerNews'ers, I've built FreeTVz.com - a platform that transforms YouTube into a traditional TV experience. Here's what you can do: ◉ Create your own TV channels based on any topic or interest. ◉ Browse and watch over 100+ free curated channels across categories like History, Science, Tech, and more. ◉ Enjoy an ad-free experience, making your viewing uninterrupted and seamless. ◉ Rediscover the nostalgia of channel surfing, without endless scrolling or algorithmic feeds. I'd love for you to check it out and share your thoughts. Visit FreeTVz.com https://freetvz.com October 31, 2024 at 07:04PM
Wednesday, October 30, 2024
Show HN: LlamaPReview – AI GitHub PR reviewer that learns your codebase https://ift.tt/phWiCQ3
Show HN: LlamaPReview – AI GitHub PR reviewer that learns your codebase I built LlamaPReview to solve a common frustration: most AI code reviewers either require complex setup or don't truly understand project context. Key differentiators: 1. One-click installation through GitHub Marketplace - no configuration needed 2. Analyzes your entire codebase first to understand: - Project structure - Coding patterns - Naming conventions - Architecture decisions 3. Completely free with no usage limits 4. Fully automated PR reviews with zero human intervention required Technical implementation: - Built on top of llama-github (my open source project) - Focuses on deep code understanding rather than superficial linting - Provides context-aware suggestions with explanations The goal is to handle routine reviews automatically so developers can focus on complex architectural decisions. Currently in production and processing real PRs. Try it for free: https://ift.tt/tkKfgGT Looking for feedback from the HN community, especially on: - What features would make this more useful for your workflow? - How do you currently handle code review automation? - What aspects of code understanding matter most to you? https://ift.tt/DuonqH9 October 30, 2024 at 11:16PM
Show HN: Modus, serverless framework for intelligent APIs powered by WebAssembly https://ift.tt/p7d6Xfu
Show HN: Modus, serverless framework for intelligent APIs powered by WebAssembly Modus is an open-source, serverless framework for building APIs powered by WebAssembly. It simplifies integrating AI models, data, and business logic with sandboxed execution. We built Modus to put code back at the heart of development. You write a function. export function sayHello(name: string): string { return `Hello, ${name}!`; } Then, Modus: - extracts the metadata of your functions - compiles your code with optimizations based on the host environment - caches the compiled module in memory for fast retrieval - prepares an invocation plan for each function - extracts connections, models, and other configuration details from the app’s manifest - generates an API schema and activates the endpoint You query the endpoint. query SayHello { sayHello(name: "world") } In a few milliseconds, Modus: - loads your compiled code into a sandboxed execution environment with a dedicated memory space - runs your code, aided by host functions that power the Modus APIs - securely queries data and AI models as needed, without exposing credentials to your code - responds via the API result and releases the execution environment Now you have a production ready scalable endpoint for your AI-enabled app. AI-ready when you’re ready. Launch and iterate. Read more in the announcement blog post: https://ift.tt/bWmG79x... Come join our Discord, we’d love to hear your feedback: https://ift.tt/M8ISpoW Follow us on GitHub: https://ift.tt/9ufFgAd Modus docs: https://ift.tt/CfLSliY Modus quickstart video: https://youtu.be/3CcJTXTmz88 https://ift.tt/9ufFgAd October 30, 2024 at 11:02PM
Tuesday, October 29, 2024
Show HN: OpenBallot, Aggregated SF/California Voter Guides https://ift.tt/AFeK1xC
Show HN: OpenBallot, Aggregated SF/California Voter Guides https://ift.tt/mgXHn6A October 29, 2024 at 11:16PM
Show HN: Prisma Postgres. Runs on bare metal and unikernels https://ift.tt/iqxtKQ1
Show HN: Prisma Postgres. Runs on bare metal and unikernels https://ift.tt/a4DIhwo October 29, 2024 at 09:27PM
Monday, October 28, 2024
Show HN: Saasdoor – Glassdoor for Enterprise SaaS price parody https://ift.tt/I1hTUO9
Show HN: Saasdoor – Glassdoor for Enterprise SaaS price parody https://saasdoor.org October 29, 2024 at 03:05AM
Show HN: Trench – Open-source analytics infrastructure https://ift.tt/VKUwkMY
Show HN: Trench – Open-source analytics infrastructure Hey HN! I want to share a new open source project I've been working on called Trench ( https://trench.dev ). It's open source analytics infrastructure for tracking events, page views, and identifying users, and it's built on top of ClickHouse and Kafka. https://ift.tt/heCDfNy I built Trench because the Postgres table we used for tracking events at our startup ( http://frigade.com/ ) was getting expensive and becoming a performance bottleneck as we scaled to millions of end users. Many companies run into the same problem as us (e.g. Stripe, Heroku: https://ift.tt/pPCNWQI ). They often start by adding a basic events table to their relational database, which works at first, but can become an issue as the application scales. It’s usually the biggest table in the database, the slowest one to query, and the longest one to back up. With Trench, we’ve put together a single Docker image that gives you a production-ready tracking event table built for scale and speed. When we migrated our tracking table from Postgres to Trench, we saw a 42% reduction in cost to serve on our primary Postgres cluster and all lag spikes from autoscaling under high traffic were eliminated. Here are some of the core features: * Fully compliant with the Segment tracking spec e.g. track(), identify(), group(), etc. * Can handle thousands of events per second on a single node * Query tracking data in real-time with read-after-write guarantees * Send data anywhere with throttled and batched webhooks * Single production-ready docker image. No need to manage and roll your own Kafka/ClickHouse/Nodejs/etc. * Easily plugs into any cloud hosted ClickHouse and Kafka solutions e.g. ClickHouse Cloud, Confluent Trench can be used for a range of use cases. Here are some possibilities: 1. Real-Time Monitoring and Alerting: Set up real-time alerts and monitoring for your services by tracking custom events like errors, usage spikes, or specific user actions and sending that data anywhere with Trench’s webhooks 2. Event Replay and Debugging: Capture all user interactions in real-time for event replay 3. A/B Testing Platform: Capture events from different users and groups in real time. Segment users by querying in real time and serve the right experiences to the right users 4. Product Analytics for SaaS Applications: Embed Trench into your existing SaaS product to power user audit logs or tracking scripts on your end-users’ websites 5. Build a custom RAG model: Easily query event data and give users answers in real-time. LLMs are really good at writing SQL The project is open-source and MIT-licensed. If there’s interest, we’re thinking about adding support for Elastic Search, direct data integrations (e.g. Redshift, S3, etc.), and an admin interface for creating queries, webhooks, etc. Have you experienced the same issues with your events tables? I'd love to hear what HN thinks about the project. https://ift.tt/o8eVXzH October 25, 2024 at 09:07PM
Sunday, October 27, 2024
Show HN: I built EstateLead AI – lead generator boosting agent productivity 10x https://ift.tt/1cZawNu
Show HN: I built EstateLead AI – lead generator boosting agent productivity 10x As a former real estate agent, I discovered a critical pain point in early 2023. Every day, I spent 3-4 hours manually copying leads from Zillow - phone numbers, emails, and property details. This tedious process was stealing valuable time I could have spent with clients. I realized this wasn't just my problem. Thousands of agents were stuck in this same time-consuming routine, manually gathering leads one by one. There had to be a better way. Over the next a months, I faced numerous challenges building EstateLead AI: - Ensuring reliable data extraction - Maintaining compliance with data privacy regulations - Creating an intuitive interface for non-technical users - Scaling the system to handle thousands of requests After countless iterations and feedback from 50+ beta testers, I'm excited to launch EstateLead AI with these key features: Key Features: - One-click lead extraction from Zillow listings - Up to 18,000 leads per month with phone numbers - Export to Excel/CSV for easy CRM integration - Coverage for both US and Canadian markets - Built-in compliance with data protection rules - Simple browser extension interface The tool has already helped 600+ agents save 40+ hours per week on lead generation. Early users report a 10x increase in their prospecting efficiency. I'd love for the HN community to try it out and share your thoughts. What features would make this even more valuable for real estate professionals? Try it here: https://ift.tt/h4HvbDL P.S. First 100 users get 40% off (19 spots remaining), and we offer a 60-day money-back guarantee. https://ift.tt/h4HvbDL October 27, 2024 at 04:32PM
Show HN: Ezcrypt – A file encryption tool (simple, strong, public domain) https://ift.tt/8jPSMhG
Show HN: Ezcrypt – A file encryption tool (simple, strong, public domain) https://ift.tt/ho0itC8 October 27, 2024 at 12:38AM
Show HN: Mahjong Dark Dimensions: Mahjong Dimensions Game Online https://ift.tt/D5CS3TP
Show HN: Mahjong Dark Dimensions: Mahjong Dimensions Game Online Mahjong Dark Dimensions is a captivating mahjong puzzle game set in a mysterious and dark dimension. Solve the puzzles and uncover the secrets of the dimension. https://ift.tt/f63FoZR October 27, 2024 at 01:55PM
Show HN: AI agents working together in a virtual podcast studio. NotebookLM alt https://ift.tt/TchPkBX
Show HN: AI agents working together in a virtual podcast studio. NotebookLM alt Made this project in a couple of weekends after playing around with NotebookLM and seeing the hype for more projects like this. Let me know what you think! https://ift.tt/TU5vJtN October 27, 2024 at 01:36PM
Saturday, October 26, 2024
Show HN: Mdx – Execute your Markdown code blocks, now in Go https://ift.tt/v1q5Vpm
Show HN: Mdx – Execute your Markdown code blocks, now in Go Hey HN! I recently came across makedown here on HN and loved the concept. Wanting to learn Go, I thought this could be a great starter project - so I started working on my own Go implementation, which I’m calling mdx ( https://ift.tt/WQDEkZt ). Key Features: - Define dependencies between commands - Supports shebangs - Ability to pass arguments to code blocks Would love feedback and thoughts! Ref. makedown: https://ift.tt/1WUgA8F . Thanks for the idea! :) https://ift.tt/WQDEkZt October 26, 2024 at 12:34PM
Show HN: Turn your home into a co-working space – when it suits you https://ift.tt/zeZxwXi
Show HN: Turn your home into a co-working space – when it suits you Focused on remote workers and digital nomads living or travelling to smaller cities where there might not be access to many co-working spaces. https://ift.tt/lZAGsgH October 26, 2024 at 06:09PM
Show HN: I built a paragraph rewriter that runs 100% in the browser https://ift.tt/HrwRSeE
Show HN: I built a paragraph rewriter that runs 100% in the browser https://ift.tt/XStA6Ug October 26, 2024 at 09:29PM
Show HN: Jist searches JSON 3x faster than jq https://ift.tt/KiUS4Y8
Show HN: Jist searches JSON 3x faster than jq Hi HN, jist is a JSON path search tool that feels like accessing a JavaScript object. It’s 3x faster than jq for the same use case, and over 2000x more memory efficient when searching a 3.3GB file for the last element (jist reads data in chunks so has constant space use). It doesn’t implement pattern matching yet. A feature I’m looking to add is generating a full JSON schema using the same streaming approach so stay tuned! Any feedback and feature requests are more than welcome https://ift.tt/YcJ93Sl October 26, 2024 at 08:25PM
Show HN: Simple Text Blog https://ift.tt/ohdMTmE
Show HN: Simple Text Blog https://ift.tt/z07tyAG October 26, 2024 at 07:40PM
Friday, October 25, 2024
Show HN: Create Waitlist Pages https://ift.tt/AJmso8F
Show HN: Create Waitlist Pages I decided to launch FastWaitlist because I was facing a problem with validating my own product ideas. I noticed the lack of tools that: 1. Let you create waitlist pages fast (always faced complicated page builders) 2. Have conversion optimized templates (we have 5 and we're planning to add more) 3. Support custom domains That's exactly why I launched FastWaitlist. It has solved a huge pain point for me and I hope it'll do the same for you. https://ift.tt/oKcRj9Y October 26, 2024 at 01:17AM
Thursday, October 24, 2024
Show HN: A shim/command-line tool to use Bluetooth Classic features on Windows https://ift.tt/hc5j9Fr
Show HN: A shim/command-line tool to use Bluetooth Classic features on Windows https://ift.tt/sUPwAtX October 24, 2024 at 11:57PM
Show HN: PreCog AI – Automatic AI Model Selection for Any Task https://ift.tt/5nlfbxB
Show HN: PreCog AI – Automatic AI Model Selection for Any Task Hi HN, I'm one of the co-founders of PreCog AI, a project my friend and I started to make the best AI models more accessible. PreCog AI is a chatbot that automatically picks and answers with the best AI model for whatever task you throw at it. We made PreCog public on Monday and are getting great feedback. Originally built as an internal tool to help our small team reduce costs (paying for various chatbots) and get better AI output, PreCog has helped us so much with our workflow and ideation that we just had to share it. Key Features of PreCog - AI Model Matchmaking: With access to 18 models, PreCog automatically matches your questions with the most fitting AI model based on the task. - Versatile Adaptation: Works with any task, from coding to creative writing, giving you the right tool for the job. -Ongoing Updates: Stay current with AI advancements using the latest LLM leaderboard data (we are constantly adding and changing our leaderboard). See the leaderboard here - https://ift.tt/QCsrfGa -Preferred Model Selection: If you have a preferred model, choose it, and PreCog will use that model exclusively to respond. How PreCog Works: PreCog analyzes your query, references the model leaderboard, and then matches your query with the highest-ranked AI for that niche task. Delivering high-quality, task-specific output. PreCog's Model Leaderboard ranks AI models through over a million human comparisons, evaluated and presented on an Elo-scale. The dataset used to build the PreCog Leaderboard is from ChatBot Arena by https://lmarena.ai/ . Researchers from UC Berkeley SkyLab and LMSYS developed the battle framework to produce the dataset. I love feedback, questions, and critiques it helps me and my friend develop with the user in mind. You can reach me at anytime at: info@ubik.studio https://ift.tt/tFKyZce October 25, 2024 at 12:25AM
Wednesday, October 23, 2024
Show HN: Srcbook – Self-hosted alternative to AI app builders https://ift.tt/rDKlW7Q
Show HN: Srcbook – Self-hosted alternative to AI app builders Today we’re releasing a full AI app builder in Srcbook. We released our TypeScript notebook a few months ago ( https://ift.tt/5RhSXlF ) and the response was encouraging, but we kept hearing that people wanted to build interactive apps. Today we are releasing just that. You can think of it as an open-source and local version of vercel’s v0. We actually think of it as something in between an IDE and that, because we believe the code matters and don’t shy away from that: you can view and edit the code in a full editor, but prompt your way forward if that's what you prefer. When the AI makes changes you can review the files diff like you would a GitHub pull request, and toggle between versions to view the visual diff. Try it now: npx srcbook@latest start It’s surprisingly good at building apps, especially with the latest claude model sonnet3.5 that came out yesterday. Here’s a video showing building and iterating on a ticket tracker MVP in a few minutes https://www.youtube.com/watch?v=jYOmzasvP74 Key features: - bring you own API key - diff viewer - apply/undo mechanism to see the visual diff - export the code - code is OSS under apache2 https://ift.tt/qLSwa8G October 23, 2024 at 10:31PM
Show HN: OSS B2B Commerce Starter Built on Next.js and Medusa 2.0 https://ift.tt/zo4PtFJ
Show HN: OSS B2B Commerce Starter Built on Next.js and Medusa 2.0 Victor & I (Riqwan) built this starter as a way to showcase how you can build B2B stores on Medusa 2.0. We're both developers at Medusa (an open source commerce platform) and we've launched our 2.0 version today after a year of working on a more modular commerce architecture. We built our own workflow engine to perform actions on multiple modules with the ability to revert each step incase a failure occurs at some point in the lifecycle. Modules are encapsulated group of related logic - like product management, fulfillment, orders, promotions, etc. We've also built our own query engine based on GraphQL that you can use to query across modules or even external services - like Sanity or other CMS. Tinloof did a very cool demo of this earlier today. The whole point of our 1 year work was to make things easily customizable and be able to easily work with the plethora of external services every commerce company would have to work with. It takes less than a minute to get started locally. Give this a shot and let us know if you've got any feedback. https://ift.tt/dLNaCfy October 23, 2024 at 11:04PM
Tuesday, October 22, 2024
Show HN: AI Website design analyst based on Groq inference https://ift.tt/aCtFQD9
Show HN: AI Website design analyst based on Groq inference Hey, hacked together this quick PoC to give ratings for website design, including visual, layout and content. Uses Groq + Llama vision models for fast inference. Feel free to play around, appreciating all feedback! https://ratemysite.app/ October 22, 2024 at 09:33PM
Monday, October 21, 2024
Show HN: Data Formulator – AI-powered data visualization from Microsoft Research https://ift.tt/e3atlIS
Show HN: Data Formulator – AI-powered data visualization from Microsoft Research Creating data visualizations with AI nowadays often means chat, chat and more chats...and writing long prompts can be annoying while they are also not the most effective way to describe your visualization designs. Data Formulator blends UI interaction with natural language so that you can create visualizations with AI much more effectively! You can: * create rich visualizations beyond initial datasets, where AI helps transforming and visualizing data along the way * iterate your designs and dive deeper using data threads, a new way to manage your conversation with AI. Here is a demo video: https://ift.tt/lQN3IXw.... Give it a shot and let us know how it looks like! https://ift.tt/4hpeWk9 October 22, 2024 at 02:42AM
Show HN: Floating point arithmetic types in C++ for any size and any base https://ift.tt/05Q1H3n
Show HN: Floating point arithmetic types in C++ for any size and any base Since there is so much interest on HN in floats lately and their software implementations, I wanted to show mine. It has no use and is just for teaching me floats and C++. Give me your thoughts. https://ift.tt/fhvI8K7 October 19, 2024 at 12:42AM
Sunday, October 20, 2024
Show HN: HN Update – Hourly News Broadcast of Top HN Stories https://ift.tt/OeAZJxS
Show HN: HN Update – Hourly News Broadcast of Top HN Stories I feel like it was inevitable, with the recent buzz around NotebookLM. I'm just surprised that it hasn't been done yet. https://hnup.date/ October 20, 2024 at 02:10PM
Show HN: Create mind maps to learn new things using AI https://ift.tt/cwd9ztE
Show HN: Create mind maps to learn new things using AI Enter a topic and get a learning mind map generated by an LLM with links to learn more about each subtopic. You can use it with local models (through Ollama) or external models. If you have any feedback, please share it! Hope it's useful https://ift.tt/cs4lSkG October 21, 2024 at 03:01AM
Show HN: Client Side anti-RAG solution https://ift.tt/wpkZLNc
Show HN: Client Side anti-RAG solution Client Side Only Example, chat with this page. Because we don't use API keys we don't have any real need for a server. view the page source, it's _all_ there! The program doesn't take history into account & yet is has surprising coherence. View Source and start on line 258. https://ift.tt/pYBCH7x October 20, 2024 at 09:28PM
Saturday, October 19, 2024
Show HN: I created a web app to encrypt/decrypt messages using Web Crypto API https://ift.tt/us8Whmg
Show HN: I created a web app to encrypt/decrypt messages using Web Crypto API https://ift.tt/OWXblYi October 20, 2024 at 05:42AM
Show HN: Open-Source Zero-Shot Image Model Server Enabling Model Feedback https://ift.tt/vWR0ePC
Show HN: Open-Source Zero-Shot Image Model Server Enabling Model Feedback Hi everyone! Here is an open source implementation of a decently performant server hosting zero-shot image models (CLIP for image classification, OWL-ViT-ST for object detection), with an extra algorithm to allow users to give the models feedback when they make mistakes! We built a company off this flavor of tech two years ago and have clients who are currently using our commercial API. We are now moving on to other projects but want to make sure our clients still have access to the approaches that they've grown to rely on, so we're open sourcing a simple implementation that they'll be able to use after we've shut down our hosted API! I used to work at a robotics startup. After a while it seemed clear that the biggest limiting factor in our ability to ship new models wasn't innovation on model architecture, it was access to relevant, high-quality training data. Around that time CLIP was released, which got me thinking about the idea of having models with world-knowledge baked in so as to reduce the amount of training data required. A year later when Stable Diffusion dropped, my cofounder Ben Brooks and I took the plunge and founded DirectAI, where we worked on building ways to get performant models without collecting any training data, using the knowledge stored in pretrained models instead. In this implementation, we replace the linear classification head typically used in zero-shot image classifiers with a modified nearest neighbors method that lets you use multiple examples (both positive and negative) per-class to make sure the decision boundary the model is using is more aligned with what you had in mind. Our clients have found it very useful for things from interior design to content moderation to sports analytics, building models that are either too niche to be supported by a traditional cloud-hosted computer vision API or are subtly different from the models that existing cloud APIs host. For example, one of our clients wants to filter out all images containing alcohol. Hive has an API for that, but Hive explicitly allows red solo cups that don't obviously have anything alcoholic in them, whereas our client wanted to filter those out too! Feedback is welcome! There are still bugs in the Gradio frontend / codebase in general, but I have a deadline and need to be working on new stuff at a new job starting Monday so I thought I would just go ahead and get it out there! I've never tried to publish a real open source piece of code before and I must admit I am quite nervous! https://ift.tt/fEFyUBc October 20, 2024 at 01:51AM
Show HN: Contagious Beliefs–Simulating Political Alignment https://ift.tt/Hh2Ic0m
Show HN: Contagious Beliefs–Simulating Political Alignment This is a simulation that allows you to test how beliefs are adopted based on pre-existing beliefs and how they spread through a population. It is entirely editable, so you can test your own parameters based on your own data or intuitions. A detail methodology can be found here: https://ift.tt/tlQ9LXW... https://ift.tt/DU6NvJI October 20, 2024 at 01:53AM
Friday, October 18, 2024
Show HN: Run, learn, and debug x86-64 Assembly code directly from your browser https://ift.tt/rTt85R4
Show HN: Run, learn, and debug x86-64 Assembly code directly from your browser I recently created this project to teach assembly, and to have an assembly playground in the style of codepen/jsfiddle to embed in my blog posts. It's based on a wasm version of the blink x86-64 emulator, so everything runs client side with no backend server and with a runtime of only ~200Kb https://x64.halb.it/ October 19, 2024 at 12:32AM
Show HN: Typing Guru – A Hobby Project to Improve Typing Skills https://ift.tt/J4cKd3X
Show HN: Typing Guru – A Hobby Project to Improve Typing Skills https://typing-guru.com October 19, 2024 at 12:00AM
Thursday, October 17, 2024
Show HN: I made a digital watch from scratch https://ift.tt/qsye1fM
Show HN: I made a digital watch from scratch https://ift.tt/QPkMs6l October 17, 2024 at 07:43PM
Wednesday, October 16, 2024
Show HN: LinkedIn Hype Crew https://ift.tt/92pSetK
Show HN: LinkedIn Hype Crew Hi HN - we’ve been working on a fun project that I wanted to share It takes your PDF LinkedIn profile or resume and generates a short podcast either hyping you up, or roasting you. It takes your professional experience and crafts a narrative of your life and why you’re so successful. Or if you want a roast… It pokes holes and makes fun of you. I’d love to hear any feedback! https://podial.ai/hype October 16, 2024 at 05:21PM
Show HN: Andre v1.4 – Revamped User Dashboard to Democratize Data Analysis https://ift.tt/fwz2kNv
Show HN: Andre v1.4 – Revamped User Dashboard to Democratize Data Analysis Hey HN! We just released ANDRE v1.4 with a huge upgrade to the user dashboard—designed to make data analysis smoother and more accessible for everyone, not just data experts. Our mission is to democratize data analysis, giving startups, non-techies, and entrepreneurs an easy-to-use AI-powered tool to turn raw data into actionable insights, without needing complex tools like SPSS or Power BI. Would love your thoughts, feedback, and any ideas you might have! Check it out here: www.andre.ai October 16, 2024 at 11:20PM
Show HN: A fair Product Hunt alternative https://ift.tt/eoYldSQ
Show HN: A fair Product Hunt alternative Over the past few weeks, I’ve been developing Simple Lister, a platform built to support indie product creators and give them a fair shot. If you’ve launched on Product Hunt recently, you might have noticed that only featured products get the spotlight, while others struggle for visibility. Why Simple Lister? Simple Lister aims to fix this by offering a more transparent and fair approach for product launches. Here’s how we do it: • No favoritism: Every product gets an equal chance, and we don’t play favorites. • Daily Underdog Feature: Each day, we highlight one underdog product to give them extra visibility and support. • No hidden fees: There are no surprise costs. We have a simple submission fee, and that’s it—no pay-to-play or hidden charges. Also we have a long to do list to do better. Why does this matter? After launching on Product Hunt ourselves, we realized how tough it is for smaller creators to get any attention unless they’re featured. Simple Lister is here to champion those indie products that deserve to be seen by a wider audience. The platform is new and evolving, and I’m constantly working to make it better. If you’ve got feedback or questions, don’t hesitate to reach out! Thanks for your support, and I’d be happy if you submit your products! https://ift.tt/qnfhDYT October 16, 2024 at 11:11PM
Tuesday, October 15, 2024
Show HN: FTWA – Turn any website into an app https://ift.tt/LhVgjmo
Show HN: FTWA – Turn any website into an app https://ift.tt/BcA7Cd3 October 15, 2024 at 06:51AM
Show HN: Site where rich people can fulfill poor people's wish. P2P https://ift.tt/ricPapV
Show HN: Site where rich people can fulfill poor people's wish. P2P I saw a tiktok the other day where it said there should be a website where wealthy individuals, unsure of how to spend their money, can fulfill the wishes of poor people. They could compete with other wealthy donors on a global leaderboard based on their contributions. And I made it in 4 days on cloudflare ecosystem using serverless. https://ift.tt/iwl2xAq October 15, 2024 at 11:29PM
Show HN: Dashboarrrd – Build Your Perfect Workspace https://ift.tt/nrMp0zL
Show HN: Dashboarrrd – Build Your Perfect Workspace Hey HN, I’m excited to show you Dashboarrrd, a new productivity tool that lets you build a fully customizable workspace to fit your unique workflow. Think of it as a blank canvas where you can add widgets like Kanban boards, to-do lists, notes, and even embed custom code or external apps. Whether you’re a freelancer managing client projects, a developer tracking sprints, or a team trying to streamline workflows, Dashboarrrd gives you the flexibility to create a space that works for you. Here’s what makes Dashboarrrd different: * Customizable workspaces: Create and organize your workflow with drag-and-drop widgets. * Third-party integrations: Seamlessly connect to external tools like Google Drive, Analytics, Amplitude, and more. * Built for teams and individuals: Whether you’re solo or part of a team, Dashboarrrd adapts to your needs. We launched a month ago and already have over 250 users providing feedback, helping us shape and improve the product. We’d love for you to check it out, give us your thoughts, and see how it fits into your productivity stack. You can try it here: https://ift.tt/j2Jg5k7 Looking forward to your feedback and any ideas for improvement! Cheers, Uzair October 15, 2024 at 09:58PM
Monday, October 14, 2024
Show HN: Those Who Die as Cattle https://ift.tt/hWAeU38
Show HN: Those Who Die as Cattle What if a game gave you the backstory of everyone you killed or got killed? I feel like I've heard this question asked before, but I've never seen it done. For Ludum Dare 56 (a game jam), I spent 48 hours building a prototype called Those Who Die As Cattle, a WW1 trench warfare simulation game. I used ChatGPT 4o-mini to generate details for the 12,000 soldiers involved in the game. Notably, I had to supply names because it couldn't introduce sufficient variety. I also had to add randomly generated adjectives for the soldiers; otherwise, the prompts were too similar, even with different seeds and temperatures. Initially, I used Claude (which I usually prefer), but it made every soldier a former carpenter’s apprentice. Since this is a game and your actions should matter, instead of generating one block of text, I had it generate JSON by providing a template with cues for different things that might happen to the soldier. I used these to dynamically assemble a story for each casualty. For example: { "briefBio": "Tell me a little bit about the solider", // Putting this first is critical to introduce variety … "lastThoughtsArtilleryDead": "What are his last thoughts as he dies from an artillery strike" , … "effectOnOthersShotInjured": "What are the long term impacts on the people who care about him when he is seriously injured by a bullet wound", } The prompt template can be found here: https://ift.tt/FzpZtTS... The underlying simulation was programmed using Unity ECS (Entity Component System) and simulated, to some degree, each soldier and artillery piece. Casualties were taken in entity order, so there's some predictability regarding when each name gets added to the list, though it isn't completely deterministic. The area where I skimped the most was the UI, but the game is in a playable state if you're willing to look at the center column and figure out what the numbers mean. A final notable learning is that Unity UI toolkit (their modern, web dev like solution) performs significantly better on the web than in the native linux build, at least on the 2022 LTS version of Unity. This suggests that they may be leveraging the rendering efficiencies built into browsers. https://ift.tt/Hxn3kEQ October 14, 2024 at 11:02PM
Show HN: Vortex – a high-performance columnar file format in Rust https://ift.tt/dQ0p4y8
Show HN: Vortex – a high-performance columnar file format in Rust https://ift.tt/O7ln5TJ October 15, 2024 at 12:34AM
Show HN: DuckDB HTTP API Server in a Community Extension https://ift.tt/ctlnwVu
Show HN: DuckDB HTTP API Server in a Community Extension https://ift.tt/d6vUwlQ October 14, 2024 at 11:37PM
Sunday, October 13, 2024
Show HN: I made a git rebase TUI editor https://ift.tt/tnciNOZ
Show HN: I made a git rebase TUI editor I use interactive rebase quite often, and particularly like the editor bundled with IntelliJ. But I do not always work with IntelliJ, and am not 'fluent' with Vim, so I tried to replicate roughly the same rebase experience within a TUI. I used a small TUI OCaml project i made last year. The notable features are: - Move commits up and down, fixup, drop - Rename commits from the editor (without having to stop for a reword during the rebase run) - Visualize modified files along commits - 'Explode' a commit ,creating a commit for each modified file (a thing I found myself doing quite often) Feedbacks (both on the tool and the code) and contributions welcome, hope it could fit other people needs too ! https://ift.tt/d0vPEjm October 14, 2024 at 03:03AM
Show HN: The fastest Ethereum graph explorer (OpenSource) https://ift.tt/tImop1s
Show HN: The fastest Ethereum graph explorer (OpenSource) https://dictynna.com/ October 14, 2024 at 02:21AM
Show HN: I've added undo and redo to IsoCity https://ift.tt/TSehHzr
Show HN: I've added undo and redo to IsoCity https://ift.tt/ItGXgvm October 12, 2024 at 09:43AM
Show HN: Aurelius – a local-first, distraction-free writing app https://ift.tt/Mtjucpf
Show HN: Aurelius – a local-first, distraction-free writing app Hey HN! I've been working on yet another writing app called Aurelius ( https://aurelius.ink ). I built Aurelius primarily for myself and I've been writing with it everyday. I thought I'll share this here. Here are the features: - Local-first, but can sync data between different browsers or devices without signup. Sync is also end-to-end encrypted. - Progressive web app and offline functionality. - Rich-text editing with support for Markdown shortcuts. - Keyboard shortcuts for most actions in the app. - Writing sessions timer for tracking your daily writing. - Focus-mode which hides almost everything except the editor. - Music player that plays focus music like lofi, chillhop, etc. You can also use a Youtube video or playlist of your choice. Give it a try and let me know your thoughts. Thank you! https://aurelius.ink/ October 13, 2024 at 07:52PM
Saturday, October 12, 2024
Show HN: SSO – Small String Optimization https://ift.tt/FqG34bU
Show HN: SSO – Small String Optimization I wrote this just for fun when saw article about sso in Rust[1]. My string can store up to 23 (excluding null-terminator) 8-bit chars without calling allocator. Here I can mistake, but.. Curious fact: both - libstdc++[2] and libc++[3] - do access to union member without any check that it is active now. AFAIK, this is UB in C++. But I assume that they just rely on theirs compiler features. I tried to avoid this using `std::byte[]`. But I'm still sure that there are several UB's in my code :) [1] https://ift.tt/HgZjmOn... [2] https://ift.tt/XNmKMEk... [3] https://ift.tt/rbVHjMf... https://ift.tt/DHuVrbx October 13, 2024 at 01:26AM
Show HN: AI Podcast Generator https://ift.tt/EdMtKLD
Show HN: AI Podcast Generator https://zenmic.com/app/ October 13, 2024 at 01:10AM
Show HN: I Launched SaaSPack – A Next.js Boilerplate for Micro SaaS Builders https://ift.tt/kZ75tLw
Show HN: I Launched SaaSPack – A Next.js Boilerplate for Micro SaaS Builders https://saaspack.app/ October 13, 2024 at 12:41AM
Friday, October 11, 2024
Show HN: QuickDessert – generate quick dessert recipes and adjust Ingredients https://ift.tt/FIJDSyj
Show HN: QuickDessert – generate quick dessert recipes and adjust Ingredients It’s not just your average recipe site – they’ve got an AI-powered feature that generates custom dessert recipes based on your preferences or available ingredients! If you’re short on time or ingredients, the site lets you tweak recipes on the fly. You can adjust ingredients to suit your pantry, dietary preferences, or time constraints, and the AI will instantly generate a new dessert idea for you. Super handy for those moments when you have a sweet tooth but not everything in your kitchen! For example, I tried out a brownie recipe and swapped out sugar for honey – worked like a charm! The flexibility and ease make it really fun to experiment with desserts without spending hours searching for ideas or second-guessing ingredient swaps. https://ift.tt/23EagnP October 9, 2024 at 09:21PM
Show HN: Generative Ambient Music DAW in the Browser https://ift.tt/ZIcLwrn
Show HN: Generative Ambient Music DAW in the Browser After many years of research and work I finally put together this MVP for creating ambient music soundtracks for content creators. Would be happy to hear some feedback on what can be improved! https://atmoscapia.com October 11, 2024 at 11:57PM
Show HN: I made a simple web app to help kids learn a new language https://ift.tt/4lGXSAv
Show HN: I made a simple web app to help kids learn a new language Hey there! Out of the necessity to teach my son a new language, I developed an app just for him. After months of use and realizing how effective it was, I decided to make it available to the public. Now, I’m looking for your support, feedback, and possibly help in reaching potential customers. Take a look and let me know your thoughts! Thank you! https://www.voiczy.com October 11, 2024 at 04:20PM
Thursday, October 10, 2024
Show HN: AuthorLens – a new way to find good books to read https://ift.tt/e97wIyG
Show HN: AuthorLens – a new way to find good books to read The previous submission [1] didn't catch on, so re-trying with a less substantive title! [1] https://ift.tt/i98JVLl https://authorlens.com/ October 11, 2024 at 12:46AM
Show HN: HTML for People https://ift.tt/avnLDEg
Show HN: HTML for People https://ift.tt/Bjn3pu0 October 11, 2024 at 12:47AM
Show HN: Arch – an intelligent prompt gateway built on Envoy https://ift.tt/dO1Y4Vq
Show HN: Arch – an intelligent prompt gateway built on Envoy Hi HN! My name is Adil Hafeez, and I am the Co-Founder at Katanemo and the lead developer behind Arch - an open source project for developers to build faster, generative AI apps. Previously I worked on Envoy at Lyft. Engineered with purpose-built LLMs, Arch handles the critical but undifferentiated tasks related to the handling and processing of prompts, including detecting and rejecting jailbreak attempts, intelligently calling “backend” APIs to fulfill the user’s request represented in a prompt, routing to and offering disaster recovery between upstream LLMs, and managing the observability of prompts and LLM interactions in a centralized way - all outside business logic. Here are some additional key details of the project, * Built on top of Envoy and is written in rust. It runs alongside application servers, and uses Envoy's proven HTTP management and scalability features to handle traffic related to prompts and LLMs. * Function calling for fast agentic and RAG apps. Engineered with purpose-built fast LLMs to handle fast, cost-effective, and accurate prompt-based tasks like function/API calling, and parameter extraction from prompts. * Prompt guardrails to prevent jailbreak attempts and ensure safe user interactions without writing a single line of code. * Manages LLM calls, offering smart retries, automatic cutover, and resilient upstream connections for continuous availability. * Uses the W3C Trace Context standard to enable complete request tracing across applications, ensuring compatibility with observability tools, and provides metrics to monitor latency, token usage, and error rates, helping optimize AI application performance. This is our first release, and would love to build alongside the community. We are just getting started on reinventing what we could do at the networking layer for prompts. Do check it out on GitHub at https://ift.tt/YBoALOx . Please leave a comment or feedback here and I will be happy to answer. (I did make a mistake earlier not properly tagging the title with Show HN and the post didn't end up in Show HN. Later I updated the title but then my text started showing up as a comment. So I redid the post again, sorry if you had looked at the previous post already. Here is the link to the old post https://ift.tt/m0Il6cw ) https://ift.tt/RwNnZeP October 11, 2024 at 12:45AM
Show HN: Oss.gg – Gamified open source contributions https://ift.tt/qBFpvYk
Show HN: Oss.gg – Gamified open source contributions it's a community-developed product to automate and incentivize both code and non-code contributions to open source projects. we've launched the public beta with a hackathon during Hacktoberfest. the folks on reddit hate the engagement bait. i think many folks exchange reach for a pot. monetary benefit, we're just giving everyone the chance to do so. for maintainers oss.gg automates a lot of the overhead that comes with managing hundreds of contributors. what do you think? https://oss.gg October 10, 2024 at 10:38PM
Wednesday, October 9, 2024
Show HN: VRE Dataset generation for MultiTask vision models training from videos https://ift.tt/UC4GQ7g
Show HN: VRE Dataset generation for MultiTask vision models training from videos Been working on this tool for my PhD which involves training multi task vision models using various pre-trained models as inputs or pseudolabels in order to improve generalization. I work mostly on UAV datasets, but it should work okay on indoor scenes or self driving (at least Marigold and Mask2Former). For example, this dataset was generated using this tool: https://ift.tt/7UoIDjp I'm quite aggressively trying to "just get the nn.Module" from the public repos that other researchers put up in their overly convoluted frameworks. A simple `forward(rgb_input: torch.Tensor) -> torch.Tensor` is nice, having 100 imports from a generic framework that has versions incompatibilities with everything else is not. PS: most mains are standalone runnable too, i.e. - https://ift.tt/XTdwkL7... or - https://ift.tt/XTdwkL7... https://ift.tt/9ZWqgja October 10, 2024 at 12:39AM
Show HN: Donobu – Mac App for Web Automation and Testing https://ift.tt/Ai4mQcn
Show HN: Donobu – Mac App for Web Automation and Testing Been working on a desktop app for Mac that lets you create web flows and rerun them ( https://www.donobu.com/ ). You can optionally use AI (BYOK: bring your own keys) to create flows for you and to do other interesting things, like making vision-based semantic assertions. Also, your data lives on your own filesystem, and we do not see any of it (further still, there is no phoning home at all). A nice benefit of this being a desktop app rather than a SAAS product, is that if you happen to be developing/iterating on a webpage locally, this has no problem hooking into it. What this intends to be a good fit for: - Testing web pages, especially locally. - Exploring random webpages with a stated objective. - Automating tedious flows. Rerunning a flow won't get caught up on using a single selector (many websites randomize element IDs, for instance), there is smart failover using a prioritized list of selectors. - Getting a quick draft of an end-to-end test in Javascript. What this is a bad fit for: - Mass web scraping (too slow). - Adversarial websites. What we are still working out: - Click-and-drag operations. - Websites that are primarily controlled from canvas. - Smoothing out UI/UX (we are two backend engineers trying our best, and are handedly outgunned by real frontend engineers). Fun things to try: - Asking it to assert that a webpage has a certain theme. - Asking it to run an accessibility report for a page (uses https://ift.tt/uCRgFJs ). - Asking it to run a cookie report for a page. The tech: - Java 21 for the main business logic. - Javalin 6 for the web framework ( https://javalin.io/ ). - Playwright for controlling the browser ( https://ift.tt/c3xH7Ch ). - Axe for running accessibility reports ( https://ift.tt/uCRgFJs ). Critical feedback is welcome. Thanks for trying it out! Cheers, -Justin and Vaz https://www.donobu.com/ October 9, 2024 at 11:18PM
Show HN: FinetuneDB – AI fine-tuning platform to create custom LLMs https://ift.tt/F6fD583
Show HN: FinetuneDB – AI fine-tuning platform to create custom LLMs Hey HN! We’re building FinetuneDB ( https://finetunedb.com/ ), an LLM fine-tuning platform. It enables teams to easily create and manage high-quality datasets, and streamlines the entire workflow from fine-tuning to serving and evaluating models with domain experts. You can check out our docs here: ( https://ift.tt/6SJC40M ) FinetuneDB exists because creating and managing high-quality datasets is a real bottleneck when fine-tuning LLMs. The quality of your data directly impacts the performance of your fine-tuned models, and existing tools didn’t offer an easy way for teams to build, organize, and iterate on their datasets. We’ve been working closely with our pilot customers, both AI startups and more traditional businesses like a large newspaper, which is fine-tuning models on their articles to automate content generation in their tone of voice. The platform is built with an end-to-end workflow in mind, from dataset building, fine-tuning, serving, and evaluating outputs. The centerpiece is a version-controlled, no-code dataset manager where you can upload existing datasets in JSONL, use production data, or collaborate with domain experts to create high-quality datasets for custom use cases. We also offer evaluation workflows that allow non-technical contributors to annotate data, review model outputs, and refine responses (LLM-as-judge also available). We offer: - A free tier for developers and hobbyists who want to streamline dataset management. - Business-tier with full feature access for teams, using per-seat pricing. - A custom tier for model hosting, custom integrations, and self-hosting. Most users still use OpenAI models, but if you're working with open-source LLMs, we offer pay-as-you-go pricing for serverless inference for Llama and Mistral models with up to €100 in free credits to get started. We're in public beta right now, so any feedback—whether it’s about features, usability, or anything else—would be incredibly valuable. If you've worked on fine-tuning models before or are curious about custom LLMs, we’d love to hear from you. Our goal is to make the fine-tuning process more accessible and help more companies leverage their data and domain experts to create custom LLMs. Thanks for checking it out! https://finetunedb.com October 9, 2024 at 10:44PM
Tuesday, October 8, 2024
Show HN: Actor Kit – XState Machines for Cloudflare Workers https://ift.tt/27DtgWM
Show HN: Actor Kit – XState Machines for Cloudflare Workers Actor Kit is a library for running state machines in Cloudflare Workers, leveraging XState for robust state management. It provides a framework for managing the logic, lifecycle, persistence, synchronization, and access control of actors in a distributed environment. Key features include: - Persistent, distributed state management - Type-safe events and state with TypeScript and Zod - Real-time updates and seamless server-to-client state transfer - Access control and secure data management - Framework-agnostic with examples for Next.js and Remix integration - Actor lifecycle management in distributed environments - Support for real-time collaboration - State migration support The project is in early development, and I'm seeking feedback on the ideas and APIs. Cheers, Jon https://ift.tt/YdifQMS October 9, 2024 at 01:26AM
Show HN: JustJSON, front end framework using only JSON https://ift.tt/Wg1aK0U
Show HN: JustJSON, front end framework using only JSON In the spirit of Halloween, I'm excited to bring one of my evil ideas to life. Introducing JustJSON - the best frontend framework based on the best file format. https://ift.tt/6XygK8p October 8, 2024 at 11:27PM
Show HN: Algorithmic Trading Marketplace https://ift.tt/0zC9gpr
Show HN: Algorithmic Trading Marketplace Built this over the past month and is live end-to-end on Arbitrum L2 on Ethereum! Would be super thankful for any kind of feedback on it. https://ift.tt/vUTuIXb October 8, 2024 at 10:47PM
Monday, October 7, 2024
Show HN: PostalAgent – Send Postcards online by circling areas on a Google Map https://ift.tt/t6hZbAf
Show HN: PostalAgent – Send Postcards online by circling areas on a Google Map Hey HN, I just launched https://PostalAgent.com , a site that lets you easily send highly targeted postcards to specific neighborhoods. I originally built this site 5 years ago but shut it down when my full time engineering job became too demanding, but recently I did a full rewrite with many new features. To start you can select an area using a City, State, or even by circling specific areas on a Google Map. Then, you can refine your results and filter on specific demographics, like household income, home value, rental status, etc You can also search for Businesses rather than consumers, and even filter by franchise type, presence of email, etc. I was able to get a few clients signed up very quickly, mostly home services type businesses and real estate agents, but I think it could be used by many types of businesses. I have a few customers that are only using the mailing list feature without sending postcards, likely for cold email or other marketing outreach. I'm looking for a bit of feedback from the community. https://postalagent.com October 7, 2024 at 11:28PM
Show HN: Compiling C in the browser using WebAssembly https://ift.tt/vzkjhRD
Show HN: Compiling C in the browser using WebAssembly https://ift.tt/GKNc9P8 October 7, 2024 at 11:24PM
Show HN: DocGoblin – A Desktop Search Engine for Your PDFs https://ift.tt/WBJDP5R
Show HN: DocGoblin – A Desktop Search Engine for Your PDFs DocGoblin is a passion project I've been working on for over a year. It's a desktop application, written in Java with JavaFX for the interface and Lucene powering the search engine. For PDF rendering, I’m using PDFium. This is my first project with a commercial release, and I’d greatly appreciate any feedback the HN community can provide :)". https://ift.tt/Ca01ZuB October 7, 2024 at 10:38PM
Show HN: GoSQL – A query engine in 319 LoC https://ift.tt/VLPGxqh
Show HN: GoSQL – A query engine in 319 LoC I've always been curious about how SQL engines actually work. So I built a minimum viable SQL engine in Go. - Supports CSV files as tables - Supports SELECT, FROM, WHERE, LIMIT It's very simple: 1. Parses query string 2. Converts it into an AST representation 3. Executes the query against the CSV 4. Returns the results https://ift.tt/cEFiZG0 October 7, 2024 at 07:39PM
Sunday, October 6, 2024
Show HN: RemoteController – Steam Remote Play Alternative Powered by P2P and Web https://ift.tt/tyhiV5l
Show HN: RemoteController – Steam Remote Play Alternative Powered by P2P and Web https://ift.tt/VqYxH67 October 7, 2024 at 01:48AM
Show HN:I made bot to help improve your mood using GPT o1-model https://ift.tt/XSqWLNw
Show HN:I made bot to help improve your mood using GPT o1-model https://ift.tt/ptU6Fko October 7, 2024 at 12:26AM
Show HN: CodeAir – Control VS Code from Your Phone https://ift.tt/mkrhMla
Show HN: CodeAir – Control VS Code from Your Phone Hey HN, Inspired by the classic "Compiling" XKCD comic ( https://ift.tt/JiSgl3X ), I’ve built CodeAir (codeair.app) – an Android app and VS Code extension that turns your phone into a remote control for VS Code. With CodeAir, you can: - Control 800+ VS Code commands right from your phone. - Send text and image files directly into your workspace and even have the images transcribed using AI. So imagine taking a snapshot of a piece of code from a physical textbook and being directly able to run that inside VS Code. - Request screenshots from VS Code while AFK and get them delivered to your phone so you can monitor long builds or processes remotely when you're on a coffee break. - If you’ve got an OpenAI API key, you can even perform QnA over your transferred files and images. I made this tool to help monitor long builds or tests when I’m AFK, but it’s useful for so much more! It’s super niche, but I hope some of you find it helpful. Check it out at codeair.app and let me know what you think. Feedback is very welcome! https://www.codeair.app October 5, 2024 at 08:05PM
Saturday, October 5, 2024
Show HN: I turned my website into a Matrix-inspired 3D AI replica of me https://ift.tt/32kjKyN
Show HN: I turned my website into a Matrix-inspired 3D AI replica of me https://ift.tt/t4TPuG0 October 6, 2024 at 12:48AM
Show HN: AzChat – Chat with Azure OpenAI Service https://ift.tt/YEPcNIW
Show HN: AzChat – Chat with Azure OpenAI Service https://ift.tt/1BCKAZU October 5, 2024 at 10:45PM
Show HN: Open-source real-time talk-to-AI wearable device for few $ https://ift.tt/iR27SZ4
Show HN: Open-source real-time talk-to-AI wearable device for few $ 1. In the US, about 1/5 children are hospitalized each year that don’t have a caregiver. Caregiver such as play therapists and parents’ stress can also affect children's emotions. 2. Not everyone is good at making friends and not everyone has a BFF to talk to. Imagine you're having a hard time in life or at work, and you can't tell your parents or friends. So, we built an open-source project Starmoon and are using affordable hardware components to bring AI characters to real-word objects like toys and plushies to help people emotional growth. We believe this is a complement tool and it is not intended to replace anyone. Please leave any opinion. https://ift.tt/FtpuNRK October 6, 2024 at 12:48AM
Show HN: Email Verifier Written in Go https://ift.tt/TkM5w31
Show HN: Email Verifier Written in Go Started working on a small Email verifier project in Go [Done] Core service to verify email. [Done] Core service live on https://pkg.go.dev Next, I will make an API to leverage the core service. https://ift.tt/LFqxc3s October 5, 2024 at 11:08PM
Friday, October 4, 2024
Show HN: The Gmail unsubscribe tool with bulk deletion and personal data removal https://ift.tt/H2fAF8R
Show HN: The Gmail unsubscribe tool with bulk deletion and personal data removal https://againstdata.com October 5, 2024 at 02:25AM
Show HN: open source framework OpenAI uses for Advanced Voice https://ift.tt/neik2G0
Show HN: open source framework OpenAI uses for Advanced Voice Hey HN, we've been working with OpenAI for the past few months on the new Realtime API. The goal is to give everyone access to the same stack that underpins Advanced Voice in the ChatGPT app. Under the hood it works like this: - A user's speech is captured by a LiveKit client SDK in the ChatGPT app - Their speech is streamed using WebRTC to OpenAI’s voice agent - The agent relays the speech prompt over websocket to GPT-4o - GPT-4o runs inference and streams speech packets (over websocket) back to the agent - The agent relays generated speech using WebRTC back to the user’s device The Realtime API that OpenAI launched is the websocket interface to GPT-4o. This backend framework covers the voice agent portion. Besides having additional logic like function calling, the agent fundamentally proxies WebRTC to websocket. The reason for this is because websocket isn’t the best choice for client-server communication. The vast majority of packet loss occurs between a server and client device and websocket doesn’t provide programmatic control or intervention in lossy network environments like WiFi or cellular. Packet loss leads to higher latency and choppy or garbled audio. https://ift.tt/YvzTh9j October 5, 2024 at 12:01AM
Show HN: FFmpeg-over-IP – Connect to remote FFmpeg servers https://ift.tt/bd8Nujs
Show HN: FFmpeg-over-IP – Connect to remote FFmpeg servers Dear HN, I’m excited to show case a personal project. It has helped me quite a bit with my home lab, I hope it can help you with yours too! ffmpeg-over-ip has two components, a server and a client. You can run the server in an environment with access to a GPU and a locally installed version of ffmpeg, the client only needs network access to the server and no GPU or ffmpeg locally. Both and client and the server need a shared filesystem for this to work (so the server can write output to it, and client can read from it). In my usecase, smb works well if your (GPU) server is a windows machine, nfs works really well for linux setups. This utility can be useful in a number of scenarios: - You find passing through a (v)GPU to your virtual machines complicated - You want to use the same GPU for ffmpeg in multiple virtual machines - Your server has a weak GPU so you want to use the GPU from your gaming machine - Your GPU drivers in one OS are not as good as another (AMD RX6400 never worked for me in linux, but did so in windows) I’ve posted some instructions in the Github package README, please let me know if they are unclear in any way and I’ll try to help! Here's the link: https://ift.tt/OBdrwpt https://ift.tt/OBdrwpt October 5, 2024 at 12:49AM
Show HN: Chess Puzzle Bot – Puzzles vs. Stockfish https://ift.tt/ybaZxKv
Show HN: Chess Puzzle Bot – Puzzles vs. Stockfish I made a website where you can play chess puzzles against Stockfish! When playing puzzles, neither Lichess nor Chess.com will accept a wrong move, which in my opinion spoils the resolution of the puzzle since only correct moves allow you to keep playing. So, I had the idea for a website where you can play chess puzzles, but if you make the wrong move, the puzzle turns into a game against Stockfish. This opens the door to either find alternative solutions or fail miserably (at some point you realize you are not following the puzzle any more). I think its a more engaging way to play puzzles! This is my first website, don't expect every div to be correctly centered. The mobile version may not be as polished but is still playable. https://ift.tt/NiIjfm6 Feedback is highly appreciated! https://ift.tt/NiIjfm6 October 4, 2024 at 11:01PM
Thursday, October 3, 2024
Show HN: I made a super-simple image CDN https://ift.tt/NsbyURw
Show HN: I made a super-simple image CDN Hi HN, MageCDN is a simple and affordable image hosting service I have been working on for the past few weeks. The idea came out of my own frustration with hosting and optimizing images for my blog. While platforms like Imgur make it really simple to upload images, they don't allow you to embed them. Services like Cloudinary, Imagekit exist, but I found them too complex for my needs. Plus, they get really expensive past their free tier. So, I started MageCDN with three simple goals: - pricing should be affordable and scale linearly. - basic image operations (resize, crop, optimize) should be doable within the app. - uploading and getting a link you can use should be fast and hassle-free. Would love to hear what you think! https://magecdn.com/ October 3, 2024 at 10:34PM
Show HN: TabGPT – Ask ChatGPT, Gemini and Claude at the same time with one click https://ift.tt/YA9XcFp
Show HN: TabGPT – Ask ChatGPT, Gemini and Claude at the same time with one click https://ift.tt/bFe7349 October 4, 2024 at 03:08AM
Show HN: I have published a mobile HN client to have coffee chat with HN users https://ift.tt/F1lU9bJ
Show HN: I have published a mobile HN client to have coffee chat with HN users Hi, I have published a mobile app to have coffee chat with HN users. There was already a guy who made a website for this, but I wanted to do it in mobile to practice WebRTC(technology behind the audio chat) and have some fun. I haven't spent too much time in terms of the general functionality as a HN client but can upgrade it if there are enough users enjoying the app. You can download the apps via the links below; IOS: https://ift.tt/E2QOU4r... Android: As you might have known, Android requires the app to be tested in a closed beta with at least 20 people So you can follow these steps to be a part of it and download; 1 - join the group https://ift.tt/hY7N0pS 2 - download the app and enjoy https://ift.tt/GyKVud6... or https://ift.tt/pqosB3R Feel free to contact me if you have any questions; https://ift.tt/QxZqsle October 3, 2024 at 11:13PM
Wednesday, October 2, 2024
Show HN: Teletxt (Vercel App) https://ift.tt/Cw2dEIS
Show HN: Teletxt (Vercel App) https://ift.tt/R3sN4Bv Using Vercel and a laptop as a server, here is TeleText. A transcription of CNN, you can read it, and it transcribes lives what is talked upon the CNN. Looking forward to changing to another TV Station. October 2, 2024 at 01:49PM
Tuesday, October 1, 2024
Show HN: Sourcebot, an open-source Sourcegraph alternative https://ift.tt/p3mwbNS
Show HN: Sourcebot, an open-source Sourcegraph alternative Hi HN, We’re Brendan and Michael, the creators of Sourcebot ( https://ift.tt/oFVhD0E ). Sourcebot is an open-source code search tool that allows you to quickly search across many large codebases. Check out our demo video here: https://youtu.be/mrIFYSB_1F4 , or try it for yourself on our demo site here: https://ift.tt/xmWyqVR While at prior roles, we’ve both felt the pain of searching across hundreds of multi-million line codebases. Using local tools like grep were ill-suited since you often only had a handful of codebases checked out at a time. Sourcegraph ( https://ift.tt/jdiefWE ) solves this issue by indexing a collection of codebases in the background and exposing a web-based search interface. It is the de-facto search solution for medium to large orgs, but is often cited as expensive ($49 per user / month) and recently went closed source ( https://ift.tt/LusTgvl ). That’s why we built Sourcebot. We designed Sourcebot to be: - Easily deployed: we provide a single, self-contained Docker image ( https://ift.tt/MS9TkQv... ). - Fast & scalable: designed to minimize search times (current average is ~73ms) across many large repositories. - Cross code-host support: we currently support syncing public & private repositories in GitHub and GitLab. - Quality UI: we like to think that a good looking dev-tool is more pleasant to use. - Open source: Sourcebot is free to use by anyone. Under the hood, we use Zoekt ( https://ift.tt/KBwFDYW ) as our code search engine, which was originally authored by Han-Wen Nienhuys and now maintained by Sourcegraph ( https://ift.tt/Qq8CkY2... ). Zoekt works by building a trigram index from the source code enabling extremely fast regular expression matching. Russ Cox has a great article on how trigram indexes work if you’re interested: https://ift.tt/H76Ok1o In the shorter-term, there are several improvements we want to make, like: - Improving how we communicate indexing progress (this is currently non-existent so it’s not obvious how long things will take) - UX improvements like search history, query syntax highlighting & suggestions, etc. - Small QOL improvements like bookmarking code snippets. - Support for more code hosts (e.g., BitBucket, SourceForge, ADO, etc.) In the longer-term, we want to investigate how we could go beyond just traditional code search by leveraging machine learning to enable experiences like semantic code search (“where is system X located?”) and code explanations (”how does system X interact with system Y?”). You could think of this as a copilot being embedded into Sourcebot. Our hunch is that will be useful to devs, especially when packaged with the traditional code search, but let us know what you think. Give it a try: https://ift.tt/oFVhD0E . Cheers! https://ift.tt/oFVhD0E October 1, 2024 at 11:56PM
Subscribe to:
Posts (Atom)