Tuesday, October 31, 2023
Show HN: JS Local-only AI Apps starter kit: cost $0 to run and test locally https://ift.tt/3AZQTuX
Show HN: JS Local-only AI Apps starter kit: cost $0 to run and test locally Hi HN! Here's a local-only stack I built over the weekend - hope it can be useful for you! I have been building a lot of AI apps - https://ift.tt/l10i7I6 https://ift.tt/nlerN4W ... And there were definitely times I spent way too much $$ before deploying the app to production. So I was looking for a "local only" stack and found a few tools that worked well together. I used the following set of tools but may add more options later: - Inference: Ollama - VectorDB: Supabase pg-vector - LLM orchestration: langchain - Framework: nextjs My learning from building ai-town was also that many people don't have the luxury of swiping a credit card to test an app with a lot of AI workloads -- not surprisingly, many models on Ollama are already very good - I used llama2-7b for majority of my dev work. Hope this can lower the barrier to entry for building AI apps. :) https://ift.tt/5c4UQu3 October 31, 2023 at 10:12PM
Show HN: An instantly usable To-Do List desktop Web App, no sign-up/log-in https://ift.tt/fkDObxW
Show HN: An instantly usable To-Do List desktop Web App, no sign-up/log-in ... by saving data in the URL, base64 encoded. About a year ago I wanted a fast, simple, throwaway, no sign-up/log-in To-Do List at my fingertips at work, I couldn't find one so I built one myself, in a quick and dirty way. Recently I decided to release to public, so I rewrote, productise it a bit, added markdown support, added dark mode, added extension for chromium browsers etc, and this is it. May you find this small utility website useful if you happen to need something like this as well. Some tech & non-tech bullets - Pure static website - Data goes up to URL on updating, base64 encoded, non-hashed spa style - Rewrote with React & Redux - ChatGPT assistance for markdown parsing, regex and its unit testing - Playwright for testing - CDN with AWS CloudFront Any feedback and comments are appreciated. ---- A note on saving data in the URL, To-Do lists usually wouldn't be too long so saving its data in URL seems a natural fit, plus my initial sketchy research showed ff max URL is 64k and chrome can go MBs. But actually in real world, if you take server and CDNs into consideration, 8k seems to be a de facto limit ( https://ift.tt/i28wJr3 ), still enough for usual todo lists :) Previous discussions on HN about saving data in URL, https://ift.tt/MR9ZLcK , https://ift.tt/bLI5wnm , https://ift.tt/ehqmcSn https://2doli.st/ November 1, 2023 at 03:10AM
Show HN: Undead – scary fast, bewitching web pages on the JVM with no JavaScript https://ift.tt/0OFptgP
Show HN: Undead – scary fast, bewitching web pages on the JVM with no JavaScript Hey HN. I wrote a LiveView implementation for the JVM called Undead. (The name Undead is a play on the "Live" part of LiveViews.) I had been waiting for the new StringTemplates feature of Java 21 which made it scary-easy to get the right data structures to make things work. It's been enchanting to write Java after about ten years in Javascript and Go lands. Would love folks to try it out and lmk what you think. If you aren't too scared that is. ;) https://ift.tt/5qrHuDW October 31, 2023 at 10:46PM
Show HN: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context https://ift.tt/buILNWO
Show HN: Phind Model beats GPT-4 at coding, with GPT-3.5 speed and 16k context Hi HN, We’re excited to announce that Phind now defaults to our own model that matches and exceeds GPT-4’s coding abilities while running 5x faster. You can now get high quality answers for technical questions in 10 seconds instead of 50. The current 7th-generation Phind Model is built on top of our open-source CodeLlama-34B fine-tunes that were the first models to beat GPT-4’s score on HumanEval and are still the best open source coding models overall by a wide margin: https://ift.tt/Gudb98w... . This new model has been fine-tuned on an additional 70B+ tokens of high quality code and reasoning problems and exhibits a HumanEval score of 74.7%. However, we’ve found that HumanEval is a poor indicator of real-world helpfulness. After deploying previous iterations of the Phind Model on our service, we’ve collected detailed feedback and noticed that our model matches or exceeds GPT-4’s helpfulness most of the time on real-world questions. Many in our Discord community have begun using Phind exclusively with the Phind Model despite also having unlimited access to GPT-4. One of the Phind Model’s key advantages is that it's very fast. We’ve been able to achieve a 5x speedup over GPT-4 by running our model on H100s using the new TensorRT-LLM library from NVIDIA. We can achieve up to 100 tokens per second single-stream while GPT-4 runs around 20 tokens per second at best. Another key advantage of the Phind Model is context – it supports up to 16k tokens. We currently allow inputs of up to 12k tokens on the website and reserve the remaining 4k for web results. There are still some rough edges with the Phind Model and we’ll continue improving it constantly. One area where it still suffers is consistency — on certain challenging questions where it is capable of getting the right answer, the Phind Model might take more generations to get to the right answer than GPT-4. We’d love to hear your feedback. Cheers, The Phind Team https://ift.tt/ORTZvDX October 31, 2023 at 11:10PM
Monday, October 30, 2023
Show HN: Unlogged – open-source record and replay for Java https://ift.tt/YPX3hEa
Show HN: Unlogged – open-source record and replay for Java Hello HN! Parth, and Shardul here. We have been building unlogged.io for the last 21 months. We started as a time travel debugger and pivoted to record and replay with assertions, mocking, and code coverage. You can save the replays in the form of a JSON and commit them to your git. Both Parth and I come from an e-commerce/payments background where production bugs meant heavy financial losses. Big billion days/Black Friday sales meant months of code freezes with low productivity. Before committing the code, we wanted to replay production traffic and know the breaking changes right away, like in sub-second. Kind of like unit+integration tests on steroids. So, we built an SDK that adds probes to the code in compile time. The SDK logs code execution, in detail. Git: https://ift.tt/YBAWpUe We also built an IDE plugin that keeps monitoring code changes, hot reloads these changes, replays the relevant methods, and alerts on failing replays. It also lets developers call Java methods directly, mock downstream methods in run time, highlight code coverage in real-time, and show performance numbers for methods with inlay hints. (right above each method) Git: https://ift.tt/QBpaqd6 We are excited to launch the first version of our product that replays with assertions + mocking + code coverage reports right inside the IDE. Link to our IntelliJ plugin: https://ift.tt/nipXFND Record and Replay Demo: https://www.youtube.com/watch?v=muCyE-doEB0 Define Assertions on Replay: https://www.youtube.com/watch?v=YKsi1p634-M Track Code Coverage: https://www.youtube.com/watch?v=NMmp954kfaU Generate JUnit Test Cases: https://www.youtube.com/watch?v=rTUmg5b1Z_Q Mocking when replaying: https://www.youtube.com/watch?v=O_aqU1u-Kmw Documentation: https://ift.tt/RQFIBGx Roadmap: 1. Create a production logger -So that the performance impact is minimal -out of the box masking PII from production logs -creating meaningful input/return value combinations from production traffic to be replayed locally. 2. Creating a CI test runner that can integrate with CI/CD pipelines. 3. Auto-Replaying API endpoints of only the changed code. 4. Real-time alerts for the performance impact of code changes. 5. Creating a dashboard with reports, email/slack alerts. October 30, 2023 at 09:47PM
Show HN: I made a trivia game for fellow movie lovers https://ift.tt/kZPyMxa
Show HN: I made a trivia game for fellow movie lovers This is for those who, like me, are cinephiles. You just need to ask questions and try to guess the movie's name that ChatGPT picked. It's a great game to exercise your brain and memory. Give it a try and let me know what you think (: https://movieguess.com/ October 31, 2023 at 12:23AM
Show HN: Launch a private Ethereum Testnet with all clients and MEV infra https://ift.tt/pSN3yRf
Show HN: Launch a private Ethereum Testnet with all clients and MEV infra We've been working with the Ethereum Foundation & Flashbots to build tooling and infrastructure for developers to test various workflows for Ethereum. As part of that work, anyone can now spin up a local Ethereum dev net with the entire Flashbots mev-boost infra (relayer, builder, boost) using the ethereum-package. This package supports all EL and CL client types, works on Kubernetes for scale testing, and comes with a few bells and whistles like metrics, mock-builders, and beacon chain explorers. This is the de-facto tool for teams modifying and testing the consensus layer. Here's a full tutorial - https://ift.tt/qe4xBFA... https://ift.tt/E3AkQpL October 30, 2023 at 11:22PM
Sunday, October 29, 2023
Show HN: I’m writing a “US Banking and Credit for Foreigners” guide https://ift.tt/PDQj0zM
Show HN: I’m writing a “US Banking and Credit for Foreigners” guide So I’m writing a guide about accessing US Banking & Credit as a non-US resident. It’s work-in-progress but the first couple of chapters are accessible for everybody. Any feedback is appreciated! https://ift.tt/N9uySHL October 30, 2023 at 01:08AM
Show HN: Newslater – A Personal Newsletter Generator https://ift.tt/tBdUeFu
Show HN: Newslater – A Personal Newsletter Generator Inspired by my ability to collect articles from HN that I wanted to read, but never getting around to reading them, I built Newslater. You add the articles you want to read to your reading list, and Newslater will email you a newsletter containing summaries of 5 of your articles sent at a time you choose. My aim was to create a tl;dr newsletter from articles you are actually interested in. The app is free, has no ads, and is available on Android and iOS: https://ift.tt/2LgPOu4 https://ift.tt/aZev32N It’s a bit rough, but I thought some others may be interested in giving it a go. You can see examples of the newsletters it generates here too https://newslater.co/ October 29, 2023 at 09:33PM
Show HN: Yet another HN UI clone (sorry) https://ift.tt/fGpDtIF
Show HN: Yet another HN UI clone (sorry) Inspired by https://ift.tt/6BESjDW , this is done sort of as a learning journey since I've never built an app from scratch using Next.js and tailwindcss before. This is done over 2 days so it's quite bare in terms of features i.e. read-only but I would still like to share this project. Let me know what you guys think and feel free to provide any feedback! https://ift.tt/5j0Y4lG October 29, 2023 at 11:13PM
Saturday, October 28, 2023
Show HN: Marmotte – Open-Source IT Asset Management Made Simple https://ift.tt/RHgMtF4
Show HN: Marmotte – Open-Source IT Asset Management Made Simple https://ift.tt/LfJ9wGZ October 29, 2023 at 03:42AM
Show HN: Menu.Miami – Create Restaurant Menus with AI https://ift.tt/sVjqYr8
Show HN: Menu.Miami – Create Restaurant Menus with AI https://twitter.com/Menu_Miami/status/1718251271604322676 October 29, 2023 at 12:29AM
Show HN: OpenSign – The open source alternative to DocuSign https://ift.tt/CuLW1Ib
Show HN: OpenSign – The open source alternative to DocuSign https://ift.tt/rPcwzMt October 29, 2023 at 12:17AM
Show HN: WireHole combines WireGuard, Pi-hole, and Unbound with an easy UI https://ift.tt/idN0WQe
Show HN: WireHole combines WireGuard, Pi-hole, and Unbound with an easy UI WireHole offers a unified docker-compose project that integrates WireGuard, PiHole, and Unbound, complete with a user interface. This solution is designed to empower users to swiftly set up and manage either a full or split-tunnel WireGuard VPN. It features ad-blocking capabilities through PiHole and enhanced DNS caching and privacy options via Unbound. The intuitive UI makes deployment and ongoing management straightforward, providing a comprehensive VPN solution with added privacy features. https://ift.tt/10EsRQg October 28, 2023 at 03:53AM
Friday, October 27, 2023
Show HN: ChatGQL – Natural Language Conversations with GraphQL APIs https://ift.tt/vZ4zjR8
Show HN: ChatGQL – Natural Language Conversations with GraphQL APIs https://chatgql.com/ October 28, 2023 at 03:20AM
Show HN: More than four images in one prompt from DALL-E https://ift.tt/nK1kW0y
Show HN: More than four images in one prompt from DALL-E https://twitter.com/DotDotJames/status/1717969588514656348 October 27, 2023 at 11:51PM
Show HN: Protobuf Based Schema Centric Logging Framework https://ift.tt/BLgXYAK
Show HN: Protobuf Based Schema Centric Logging Framework Hi HN, have been working on this as a side project, would appreciate any feedback :) LogUnify is built around schemas based on protobuf and all the events in LogUnify are structured. By schematizing events, we offer the following benefits: - Consistency: All the events across all platforms and languages are produced in a uniform way with the generated type-safe SDKs, which ensures data consistency from the root. - Shared Understanding: Event schemas with rich data types and metadata are self-explained, which enables different departments from developers to business stakeholders to share the same understanding when consuming the events. - Flexibility: LogUnify offers flexibility in terms of integrating with different systems, as the schemas can be easily converted into different formats and protocols without requiring dedicated transformations from developers. The platform currently offers seamless integration with BigQuery and is expanding to support other systems. - Reliability: Structured events are more reliable as they are logged in the desired format from the start by developers who have full control over the producing logic. While traditional solutions require developers to log events in an unstructured manner and then set up the transformation on the server side. Data Analysis: Structured events enable better and more accurate data analysis naturally, as they provide a standardized and consistent format that can be easily processed and analyzed using various data analysis tools and techniques. https://ift.tt/EvlcW2m October 27, 2023 at 11:04PM
Show HN: A local Python prototyping tool for Jupyter and Streamlit https://ift.tt/DZSgqi9
Show HN: A local Python prototyping tool for Jupyter and Streamlit Hey HN! I built a local Python prototyping tool that is finally the Python development environment I've always wanted. It has a Jupyter notebook for data crunching, a database of your choice (Python or MongoDB), and a Streamlit app for building a frontend visualization. You can edit the Streamlit backend via an embedded VSCode editor, or locally on your own IDE. The best part for me is that the database connectors within Jupyter and Streamlit are configured out-of-the-box, so you don't need to spend time thinking about how to tie all that together - you can just pick the database you want to use and get going. Disclaimer: I do also work on the tool that deploys all this under the hood, but this project is a personal hackweek project that I threw together so I could develop Python apps on my own https://ift.tt/rgdE1UK October 27, 2023 at 08:04PM
Show HN: An AI that reads privacy policies for you https://ift.tt/gsAqNrC
Show HN: An AI that reads privacy policies for you https://ift.tt/2urg9T6 October 27, 2023 at 03:01PM
Show HN: Maven to Gradle (Dependency Conversion) https://ift.tt/6yzdnbx
Show HN: Maven to Gradle (Dependency Conversion) Very tiny project to convert your Maven dependency blocks to Gradle. On a mission to support other build systems in the JVM ecosystem too :). https://ift.tt/eOPJUp3 October 27, 2023 at 01:39PM
Thursday, October 26, 2023
Show HN: Cheddar, the app for people who hate budgeting https://ift.tt/ltOjsWn
Show HN: Cheddar, the app for people who hate budgeting https://getcheddar.co/ October 27, 2023 at 05:28AM
Show HN: A JavaScript library to generate rhyming passphrases https://ift.tt/yhw0tGo
Show HN: A JavaScript library to generate rhyming passphrases https://ift.tt/g5YCVv0 October 27, 2023 at 03:30AM
Wednesday, October 25, 2023
New Jersey Governor Joins School Halloween Fray: ‘Give Me a Break’

By Sopan Deb from NYT Education https://ift.tt/kwBJKvx
Show HN: Convochat https://ift.tt/mBKWkLY
Show HN: Convochat Like the videos? The content? Guess the current valuation? Take a look: Convochat.com October 26, 2023 at 12:01AM
Tuesday, October 24, 2023
Show HN: Basil – AI Portfolio Tracker https://ift.tt/Nvon3su
Show HN: Basil – AI Portfolio Tracker https://basil.fi October 24, 2023 at 09:32PM
Monday, October 23, 2023
Show HN: WebSession, a Secure Replacement for Cookies https://ift.tt/sgMXhVB
Show HN: WebSession, a Secure Replacement for Cookies https://websession.dev/ October 24, 2023 at 02:44AM
Show HN: Image Turing test for humans. Test your AI detection skills https://ift.tt/VSmbYxN
Show HN: Image Turing test for humans. Test your AI detection skills We are blurring the lines between real images vs A.I. generated images with the innovations like Midjourney and DALL E. IsThatAI is a place where you can take the image Turing tests to tell A.I. from real ones! Show A.I. who's boss! https://isthat.ai/ October 23, 2023 at 07:03PM
Show HN: Autolicious – AI-powered bookmark cataloging Chrome extension https://ift.tt/zwKji9O
Show HN: Autolicious – AI-powered bookmark cataloging Chrome extension https://ift.tt/0HUEahR October 23, 2023 at 09:51PM
Sunday, October 22, 2023
Show HN: Pypipe – A Python command-line tool for pipeline processing https://ift.tt/Yy2KtxG
Show HN: Pypipe – A Python command-line tool for pipeline processing pypipe is a command-line tool for writing data pipelines in Python. When working with data processing in the terminal, I often find myself wanting to pass the output of commands to Python for further processing. In such cases, one can either write one-liners or create regular Python scripts and connect them through pipes. However, using pypipe makes this process more convenient and efficient. https://ift.tt/lP0AZkI October 23, 2023 at 10:05AM
Show HN: Use an EEPROM as Programmable Logic https://ift.tt/Oe1qmvZ
Show HN: Use an EEPROM as Programmable Logic https://ift.tt/yIFPcmK October 23, 2023 at 04:29AM
Show HN: Puzzlip https://ift.tt/UyCx1I4
Show HN: Puzzlip Hey all, I built this puzzle generator to practice my wasm skills in Rust. Hope someone has fun. Source: https://ift.tt/zlHT8P3 https://puzzlip.com October 23, 2023 at 02:34AM
Show HN: Kobo as a Google Photo Digital Frame with LLaVA-Generated Haikus https://ift.tt/p0JbMTs
Show HN: Kobo as a Google Photo Digital Frame with LLaVA-Generated Haikus I've made a digital photo frame that displays random photo from my Google Photo library enriched with an Haiku generated by a LLaVa instance using the same photo as reference. https://ift.tt/LVJAqBu October 22, 2023 at 11:22PM
Show HN: vbang2 – DDG-Style Bangs with Customizations https://ift.tt/WmUnp1Y
Show HN: vbang2 – DDG-Style Bangs with Customizations https://ift.tt/qVfQgu9 October 22, 2023 at 12:16PM
Saturday, October 21, 2023
Show HN: Tiledesk – Open-Source LLM Chatbot Framework https://ift.tt/eiLODFl
Show HN: Tiledesk – Open-Source LLM Chatbot Framework Tiledesk is an open-source chatbot designer that unleashes the potential of LLM-enabled chatbots and process automation through a user-friendly drag-and-drop interface. Witness its capabilities in action here: https://youtu.be/ZDPoVVbXxs8 With Tiledesk, you can create dynamic, human-like conversations without the complexities of coding or scripting. Our guiding principle is straightforward: Design, Test, and Launch Your Conversation Flows Across All Your Digital Channels in Minutes The quickest way to experience Tiledesk new product version is by visiting our website. For those curious about our codebase, explore our latest repository on GitHub: https://ift.tt/YEc8Xda Let's maintain a discussion focused on the essentials. We're here to answer your questions, provide insights, and share technical details. For additional information and inquiries, please don't hesitate to contact us at info@tiledesk.com We’d love to hear your thoughts! https://tiledesk.com/ October 22, 2023 at 12:35AM
Show HN: Images and animatons in 50 characters of stack based code https://ift.tt/vzNJQ0G
Show HN: Images and animatons in 50 characters of stack based code https://ift.tt/WqEZClc October 22, 2023 at 06:08AM
Show HN: Storybooks – AI-generated bedtime stories for kids https://ift.tt/1xnvMI2
Show HN: Storybooks – AI-generated bedtime stories for kids https://ift.tt/yGoWcCe October 22, 2023 at 01:19AM
Friday, October 20, 2023
Show HN: My Attempt to Simplify Philosophy https://ift.tt/7EY3qkp
Show HN: My Attempt to Simplify Philosophy https://gainedin.site/ October 21, 2023 at 02:45AM
Show HN: sbctl – Secure Boot key manager https://ift.tt/wpaOHEc
Show HN: sbctl – Secure Boot key manager https://ift.tt/5mJRzAL October 21, 2023 at 01:31AM
Show HN: SignalDB – Reactive Local JavaScript Database https://ift.tt/xIdZfb5
Show HN: SignalDB – Reactive Local JavaScript Database SignalDB is a local JavaScript database with a MongoDB-like interface and TypeScript support, enabling optimistic UI with signal-based reactivity across multiple frameworks. It integrates easily with libraries like Angular, Solid.js, Preact, and Vue, simplifying data management with schema-less design, in-memory storage, and fast queries. https://ift.tt/XMlc4B1 October 20, 2023 at 11:35PM
Thursday, October 19, 2023
Show HN: Linkitall – create dependency-graphs of ideas https://ift.tt/Zul4eIR
Show HN: Linkitall – create dependency-graphs of ideas What is the structure of knowledge? It's a broad question, and finding a structure that suits everyone is no easy task. Consider this: a backend developer might view knowledge as a table accessible with different keys, while a teacher might perceive it as a book, complete with chapters, sections, and subsections—a linear structure, yet with a tree-shaped Table of Contents for efficient reference. Generally, the structure we require depends on (a) the data involved and (b) the purpose at hand. Let's narrow it down: What's a suitable structure for teaching scientific knowledge? In the context of a specific course, one can assert that certain ideas are more fundamental than others. There's a hierarchy of ideas, where complex ideas build upon simpler ones, and those, in turn, rest on basic concepts. In simpler terms, with the exception of a few obvious or axiomatic ideas, every other idea relies on something else. Organizing all these ideas into a graph based on their dependency structure creates a dependency graph. Using graphical structure (including dependency graphs) to arrange ideas for presentation or teaching is nothing new. There are several tools out there, but none of them really worked for my use-case. So I wrote a tool in Golang which will take a graph definition in YAML format and produce a graph output in HTML. I am a noob in Golang. I am using python for work, so I wanted something else for this "hobby" project, and ended up with Go. This is the tool: https://ift.tt/05AkvmF Here are a few example outputs: Sets: https://ift.tt/iE1mFwc... Trigonometric relations: https://ift.tt/iE1mFwc... Note: one can click on the node name and it will open the associated slide. Kindly let me know what you fellows think. In particular, I would very much appreciate feedback from those in training/teaching/research background. https://ift.tt/05AkvmF October 19, 2023 at 04:40PM
Wednesday, October 18, 2023
Show HN: awesome-privacy-front-ends – private front-ends to popular sites https://ift.tt/qR5MJpO
Show HN: awesome-privacy-front-ends – private front-ends to popular sites https://ift.tt/pEFs940 October 19, 2023 at 04:47AM
Show HN: Finetune OpenAI Embeddings In-Browser https://ift.tt/qh42Xsk
Show HN: Finetune OpenAI Embeddings In-Browser There's a lesser-known trick described in the OpenAI Cookbook. You can linearly transform a generic embedding space (like OpenAI’s) for your usecase with a well-tuned matrix multiply. I ported the cookbook technique into a standalone hardware-accelerated webapp, and added some UX to guide the process along. There are some examples on the homepage for out-of-the-box fun. With 30 seconds of training, I was able to improve performance by the first example by 15%. https://ift.tt/zIc2riO October 18, 2023 at 10:45PM
Show HN: change-case scripts for kebab-case, camel-case, snake-case, etc. https://ift.tt/8w3TOvR
Show HN: change-case scripts for kebab-case, camel-case, snake-case, etc. https://ift.tt/1g2ceV5 October 18, 2023 at 11:38PM
Tuesday, October 17, 2023
Show HN: Socketioxide – Power of Rust with Simplicity of Socket.io https://ift.tt/xljrCU3
Show HN: Socketioxide – Power of Rust with Simplicity of Socket.io Rust itself is a hard language to master. Writing networking code is not an easy task in any language, let alone Rust. This is the beauty of socket.io, it has so low barrier of entry that anyone can code websocket logic with this framework. Now that Socketioxide is out, it can combine the power of Rust with its natural simplicity. Check it out and star if you like! https://ift.tt/w80V9xF October 18, 2023 at 04:13AM
Show HN: Found a clean link today for Harmy's Despecialized edition. https://ift.tt/z5MbqOP
Show HN: Found a clean link today for Harmy's Despecialized edition. Found this link today for Harmy's Despecialized edition. This is usually a bit hard to get so it surprised me to find it in the wild(ish), came accross it while visiting some abandoned(I thought) forums. Thought both the upload and message attached to it was interesting and would like your opinion. So sharing before Disney comes down on them like a pile of bricks XD https://ift.tt/GLXYeIZ October 18, 2023 at 03:10AM
Show HN: I made an all-in-one desktop app with a no-BS approach to get work done https://ift.tt/HyodTza
Show HN: I made an all-in-one desktop app with a no-BS approach to get work done Hi HN! This is Daniel from Floutwork ( https://ift.tt/GcaOXZB ) Floutwork is an all-in-one desktop app designed to serve as a personal work system, offering a no-BS approach to getting real work done online. Background: When I transitioned from a development role to a product management role, I realized there was no real organization or structure to the way I worked as a PM. Tasks I needed to complete were scattered across emails, Teams, meetings, etc. I was inundated with emails and found myself juggling multiple browser windows, numerous open tabs, and other desktop applications. This overwhelming situation made it clear that success in my new role hinged on being self-organized and focused. After reading the book "Deep Work" by Cal Newport, I recognized that my work habits were counterproductive to accomplishing meaningful work. After that, I delved further into the "focus and productivity" path, read more books on the subject, and decided to integrate these concepts and methodologies into a single app. I could have created a specialized tool that addressed only one or two problems, like many other apps out there, but I knew that building a single app designed to assist with the workflow from start to finish was the only way to eliminate as many distractions and friction points as possible. Honestly, I could've wrapped up development way sooner if I'd just tackled one issue. But what's the point if one part of my workflow rocks and the rest sucks? What's the problem with modern work? You might be using a combination of a task manager and a calendar to track tasks. To work on a task, though, you probably bounce to your browser full of tabs. If you use desktop apps like Teams, Slack, or Discord, this bouncing back and forth becomes even worse because every link you click on opens in the browser. The real problem is when we jump to a browser full of tabs every time, we get distracted by all the tabs and get sidetracked, or our old habits kick in due to how our brains are now wired, and we start aimlessly browsing. This causes a lot of friction in our flow. This is one of the main reasons why people today are not able to focus or don't feel motivated to get work done. What usually takes 1 hour to complete can take up to 3 hours. What's unique about Floutwork? Floutwork has an excellent task management system and a calendar view right next to it to intelligently show you when you can work on your tasks amidst your busy schedule. However, it goes beyond that and lets you pin your work apps right within Floutwork. Once you know you need to work on a task, you can quickly hop on to your web apps right within Floutwork and get that done, and then repeat. Every time you access a web app within Floutwork, any tabs you open within that app stay within that app, so you only get to see the tabs to get your current task done. This powerful flow cuts down all the distractions and friction points that come between tasks and work getting done. Now that all your work can be consolidated into one unified system, you can access powerful tools in a distraction-free way to: - Monitor your work habits - Gamify your tasks - Experience an immersive focus mode for tasks - Open a command bar without losing your flow to open apps, links, tools, add tasks, ask ChatGPT, etc. - Quickly take work notes in context - Clean out your emails with a few clicks - Access AI tools via ChatGPT meaningfully right within your flow This app is designed for people in roles like PMs, freelancers, managers, admins, and marketers, where being self-organized online is crucial for success. I know the HN community has a lot of developers. While this app can offer some benefits to devs, it won't be a game-changer for your workflow, especially if you're primarily in VS Code or other desktop development tools most of the day. I'd love to invite you all to try out the product and would appreciate hearing your feedback! October 17, 2023 at 06:55PM
Show HN: Continue for JetBrains - how we made it IDE-agnostic https://ift.tt/itjpHvq
Show HN: Continue for JetBrains - how we made it IDE-agnostic Hi HN! Since launching Continue two months ago ( https://ift.tt/6yqVpBb ), we've received amazing feedback, added features, and greatly improved reliability. But one of the biggest things we heard was the desire for a JetBrains extension. My co-founder Ty and I are super excited to share that we've released an extension for PyCharm, Intellij, WebStorm, and most other JetBrains IDEs - ready for alpha users at https://ift.tt/IOxHpuL . Perhaps the most exciting part is that this effort was kickstarted and in great part developed by a community contributor! If you're curious what it took to make this happen, check out the PR here ( https://ift.tt/hazxE9i ). We hope to eventually support every IDE, so we made adding a new extension as easy as implementing a single class. If you're curious why this is possible, you can read more about the Continue Server and the architectural decisions we made here: https://ift.tt/Vp46PRn . https://ift.tt/IOxHpuL October 17, 2023 at 10:58PM
Monday, October 16, 2023
Show HN: Quepid now works with vector search https://ift.tt/ToxpiYs
Show HN: Quepid now works with vector search Hi HN! I lead product for Vectara ( https://vectara.com ) and we recently worked with OpenSource connections to both evaluate our new home-grown embedding model (Boomerang) as well as to help users start more quantitatively evaluating these systems on their own data/with their own queries. OSC maintains a fantastic open source tool, Quepid, and we worked with them to integrate Vectara (and to use it to quantitatively evaluate Boomerang). We're hoping this allows more vector/hybrid players to be more transparent about the quality of their systems and any models they use instead of everyone relying on and gaming a benchmark like BIER. More details on OSC's eval can be found at https://ift.tt/497e5CY... https://quepid.com/ October 16, 2023 at 11:51PM
Show HN: Textsynth: Evolve synthesizer sounds from text prompts https://ift.tt/QZqXBPA
Show HN: Textsynth: Evolve synthesizer sounds from text prompts https://ift.tt/XRbeUyj October 17, 2023 at 02:07AM
Show HN: Neuronpedia – AI Safety Game (GeoGuessr for Interpretability) https://ift.tt/0vENkKM
Show HN: Neuronpedia – AI Safety Game (GeoGuessr for Interpretability) https://ift.tt/3xl5toH October 17, 2023 at 01:02AM
Show HN: RAGchain: Build advanced RAG workflow https://ift.tt/vRlok42
Show HN: RAGchain: Build advanced RAG workflow We made a framework for building advanced RAG workflow. It is like Langchain but only focus on RAG. It has many advanced RAG features like OCR loaders, reranker, multiple retrievers, query decomposition and more. Also, our file loader, embeddings, and vector stores are fully compatible with Langchain. Don’t worry about lack of integrations. https://ift.tt/LpAaRjy October 16, 2023 at 08:44PM
Sunday, October 15, 2023
Show HN: View Amazon search trends and optimize listings https://ift.tt/6EtIlRS
Show HN: View Amazon search trends and optimize listings This is a very small weekend proof-of-concept that combines OpenAI's embedding model with 9 months worth of Amazon search trend data (available via their reporting API). I also added a small GPT4 wrapper to optimize listings based on the search data. Right now it is available for free. Would love feedback from Hacker News! https://ift.tt/Kk4jwZM October 16, 2023 at 02:45AM
Show HN: Get stuff done by focusing on one task at a time https://ift.tt/U1z5mIF
Show HN: Get stuff done by focusing on one task at a time https://ift.tt/FvGsb4x October 15, 2023 at 11:41PM
Show HN: Pg_yregress, Structured Testing for Postgres https://ift.tt/G8oxL2T
Show HN: Pg_yregress, Structured Testing for Postgres Originally inspired by pg_regress, pg_yregress provides a TAP-compatible test executor that allows for better test organization, easier instance management, native JSON handling and so on. https://ift.tt/dH9Pugh October 15, 2023 at 11:52PM
Saturday, October 14, 2023
Show HN: mystery-o-matic offers a daily random murder mystery https://ift.tt/XPSREIQ
Show HN: mystery-o-matic offers a daily random murder mystery https://ift.tt/DQJohbP October 15, 2023 at 02:50AM
Show HN: MiniSearch, a minimalist search engine with integrated browser-based AI https://ift.tt/sMCoVi6
Show HN: MiniSearch, a minimalist search engine with integrated browser-based AI Hey everyone! I’m excited to announce the release of my last project, MiniSearch. I admire Perplexity.ai, Phind.com, You.com, Bing, Bard and all these search engines integrated with AI chatbots. And as a curious developer, I took the chance and created my own version. Using Web-LLM and Transformers.js to provide browser-based text-generation models on desktop and mobile, I built a minimalist self-hosted search app on which an AI analyses the results, comments on them and responds to your query summarising the info. In the backend, it still queries a real search engine, but besides that, there's no other remote connection happening. For running in the browser and on mobiles, lightweight models are required, so we can't expect them to give stellar answers, but there are a few advantages of using this over the services as mentioned earlier: - Availability: The AI will always be available and respond with the maximum available speed from the device. - Privacy: Besides the queries that go anonymously to the actual search engine, nothing else leaves your device. - No ads/trackers: Get the relevant links clean and fast without being tracked. - Customization: As it's open-source, you can fork it and re-style it any way you want. You can get started with MiniSearch by cloning the repository from GitHub ( https://ift.tt/1TwgDd0 ) and running it locally or by using it online on this HugginFace Space: https://ift.tt/gF53UNQ (Alternative Space address: https://ift.tt/GiufYgA ) You can even set it as your browser's address-bar search engine using the query pattern ` https://ift.tt/TtHuBSk ` (where your query replaces %s). At the moment of this writing, the app is using TinyLlama and LaMini-Flan-T5 models, but there's an option to try to use larger models like Mistral 7B (not recommended, though, as it could be slow and break the fast-search experience). That's what I had to share. Thanks for reading! Your feedback means the world to me! Please don't hesitate to reach out if you have any questions or suggestions or want to learn more. https://ift.tt/GiufYgA October 15, 2023 at 06:20AM
Show HN: Tmux plugin in for playing Spotify playlists https://ift.tt/auW1TOQ
Show HN: Tmux plugin in for playing Spotify playlists https://ift.tt/VnewQJZ October 15, 2023 at 02:23AM
Friday, October 13, 2023
Show HN: Chatbot Doctor for Long Covid https://ift.tt/6jQAZYa
Show HN: Chatbot Doctor for Long Covid Currently beta-testing in top research university https://ift.tt/paPHNn3 October 13, 2023 at 11:24PM
Show HN: Snapglyph.com – Better open graph images for publishers https://ift.tt/3FZQt8e
Show HN: Snapglyph.com – Better open graph images for publishers https://snapglyph.com/ October 13, 2023 at 11:06PM
Thursday, October 12, 2023
Show HN: 90s style yearbook photos using AI https://ift.tt/AxozYe3
Show HN: 90s style yearbook photos using AI https://ift.tt/sDqUk3i October 13, 2023 at 11:32AM
Show HN: I built an app that help you be productive without having a todo list https://ift.tt/w2VfP0c
Show HN: I built an app that help you be productive without having a todo list Mond is a tiny chrome extension that kindly ask you to choose what you want to do before having an Internet session. Based on your choice, it will open in advance / block webs to save you lots of manual actions and prevent distraction. This is a product I made to solve my own problem and I been using it for about 2 months before releasing it. Look forward to your feedbacks folks. https://ift.tt/E8RqZGD October 13, 2023 at 05:57AM
Show HN: stews.io – power tools for publishing quality curations to the web https://ift.tt/TWOkptj
Show HN: stews.io – power tools for publishing quality curations to the web https://www.stews.io October 13, 2023 at 05:06AM
Show HN: OpenBLE, Swagger for Bluetooth https://ift.tt/7nQ2P40
Show HN: OpenBLE, Swagger for Bluetooth OpenBLE is an API specification language and client generator for Bluetooth services built on the generic attribute (GATT) profile. Bluetooth development is a mess. Too many datasheets, too little documentation and SDK fragmentation across platforms. I built this tool to improve documentation, version control and development speed for BLE programs. Even though shunned by Apple and Mozilla, Web Bluetooth enjoys wide support and just works. It makes sense to build the frontend for OpenBLE using web Bluetooth. No SDK hell, no installations, wide support albeit experimental. I could ship the spec, SDK, code generator and testing framework in pure JavaScript. https://ift.tt/0RijNG8 October 13, 2023 at 01:23AM
Show HN: Loom for Developers (Beta) https://ift.tt/CoIX0zs
Show HN: Loom for Developers (Beta) https://www.dashcam.io/ October 13, 2023 at 12:02AM
Show HN: OpenPV – Photovoltaic Potential in Bavaria (and Beyond?) https://ift.tt/1ckaOEM
Show HN: OpenPV – Photovoltaic Potential in Bavaria (and Beyond?) Photovoltaic potential calculated live and privacy-friendly in your browser via WebGL. Using open LoD2 and laser point data from the Bavarian Public Agency for Digitization, High-Speed Internet and Surveying. Including laser points for tree occlusions and other non-LoD2 objects. Try it with the Bavarian Hall of Fame next to Oktoberfest: Hall of Fame, Munich, Bavaria Note that the point clouds might be a lot of data to download if enabled (~50 MB+). Currently limited to Bavaria, Germany. Thanks for your feedback! https://www.openpv.de October 12, 2023 at 11:02AM
Wednesday, October 11, 2023
Show HN: thcon, a config-driven theme controller https://ift.tt/MS5KLRX
Show HN: thcon, a config-driven theme controller It's not the first CLI tool that switches terminal, editor, and desktop themes, and it certainly won't be the last. This one (mine) focuses more on switching between dark and light variants of a theme than on theme hopping, and is able to support a different set of tools. Notably, KDE Plasma, GNOME Shell user themes, and the macOS global dark mode are all supported, which is pretty unique I guess? https://thcon.app October 12, 2023 at 06:12AM
Show HN: Cloudgenda – Membership management platform for social organizations https://ift.tt/nAP8Y3L
Show HN: Cloudgenda – Membership management platform for social organizations https://cloudgenda.com October 12, 2023 at 03:26AM
Show HN: Mockup Generator – Create Free Bulk Mockups in Seconds https://ift.tt/jVSNJP9
Show HN: Mockup Generator – Create Free Bulk Mockups in Seconds Hello Hacker News people, I’m thrilled to share our latest project with you all: https://ift.tt/QsqYd3D If you’ve ever found yourself knee-deep in the tedium of creating mockups, especially for print on demand stores or showcasing digital designs, you’re going to want to check this out. Mockup Generator allows you to create bulk mockups in seconds, simplifying what used to be a time-consuming process. We’d love for you to take it for a spin and share your honest feedback. Thoughts on usability, functionality, or any ideas for additional features are all fair game and hugely appreciated. Looking forward to hearing what you think! https://ift.tt/QsqYd3D October 12, 2023 at 02:30AM
Show HN: AI puzzle game using Stable Diffusion AI images https://ift.tt/JvjOHV2
Show HN: AI puzzle game using Stable Diffusion AI images I liked the checker pattern effect (Stable Diffusion + ControlNet) and made a small puzzle game around it. Which image is your favorite? https://ift.tt/X4U7QFx October 11, 2023 at 11:09PM
Show HN: Obligator – An OpenID Connect server for self-hosters https://ift.tt/RL1FwNj
Show HN: Obligator – An OpenID Connect server for self-hosters https://ift.tt/U5PxTzc October 12, 2023 at 12:29AM
Tuesday, October 10, 2023
Show HN: Admin AI – follow up emails, notes and CRM updates from recorded call https://ift.tt/wEFzmjf
Show HN: Admin AI – follow up emails, notes and CRM updates from recorded call Hi HN! For the last 5 years I've been in sales (at mongoDB). Spent half my week writing updates for sales-managers. My founder told me this is a lot like JIRA. Updating tickets for internal management - I hear it's painful. Sellers call this "admin work". A lot of it is zero value (because it doesn't help us get paid), and easily takes up 5+ hours a week. Admin AI uses the recorded calls to draft follow up emails, write call notes and CRM deal updates. We're trained our AI to think like a seller. And also built all the integrations to make it feel magical. Love your feedback, comments, questions. Happy to help anyone reading this figure out a bit of sales too! https://useadminai.com October 11, 2023 at 03:51AM
Show HN: A lightweight open-source web analytics for webdevs https://ift.tt/IQA7htD
Show HN: A lightweight open-source web analytics for webdevs I wanted to share something I've been working on recently: Statum, a handy web analytics tool. https://ift.tt/sYGtiFA The journey began when I found myself frequently needing simple web analytics for my projects. I tried Google Analytics, especially GA4, and realized it was quite complex and, at times, not very accurate, especially when I wanted to view stats for the current day or recent hours. Then I tested a few fancy startup solution but ended up with way too expensive plans the expect me to subscribe (I'm not that rich to pay $99/month for every pet project web analytics). This drove me to think, "Why not create a tool that bridges the gap between these complex/expensive platforms and the real needs of developers like me?" So, I designed Statum to seamlessly parse both Nginx and Apache server logs. It filters all necessary data, including IP, http method, URL, and user agent. What's more, it can categorize these user-agents into mobile users, bots, and others. Besides that...to provide a holistic view, Statum augments local log file statistics with web-based JavaScript analytics, offering even deeper insights, especially into returning visitors. With Statum, you can quickly get a grip on: - The number of visitors and a breakdown between bots and real users. - Identify visitors as unique entities (tied to the browser). - Client-side parameters such as screen resolution, OS, language. - Unique user-agents and much more. I've aimed to make the setup process straightforward (it's just one js line to insert into your website template and update a few paths in .py file to parse logs from the right place). Currently, it does not have UI, I use just a text output from sqlite, the default query to get the number of visitors and return visitors is in gen_stats.sh so you can enhance it depending on what you want to analyze. I'd appreciate any feedback you have on the project. Please keep in mind that this is an initial version and it's not designed for high-traffic websites. https://ift.tt/sYGtiFA October 11, 2023 at 03:49AM
Show HN: We built a security compliance platform that uses AI https://ift.tt/S2QNKs3
Show HN: We built a security compliance platform that uses AI https://compliance.sh/ October 11, 2023 at 03:09AM
Show HN: I learned to code and built a crypto analytics platform all by myself https://ift.tt/oXzUSpG
Show HN: I learned to code and built a crypto analytics platform all by myself Hey everyone! I am an enthusiast trader and a year ago I had this idea to create a free-to-use website that would feature all the most essential tools that traders would use on a daily basis. So I learned to code and build it—I did everything including design, texts, code, and SEO—which took me 12 months to launch and a year and a half to make it look like it currently does. I was into marketing and design before, but I didn't know barely anything about coding. The website is built using Next.js, Tailwind CSS, and Typescript with Framer Motion animations and lots of APIs. I’m actively working on the project and in the following months I will release a huge update that will feature a renewed interface and access to real time on chain data and analytics. Feel free to ask any questions and thanks a lot for reading this, it means a lot to me. Any feedback and your opinions would be highly appreciated. https://ift.tt/DMlNf2Q October 11, 2023 at 01:53AM
Show HN: Standalone Jdk.compiler, Java Compiler Framework and Tree API https://ift.tt/ADetgRU
Show HN: Standalone Jdk.compiler, Java Compiler Framework and Tree API With this standalone compiler, you can rely on all Java 11 javac features to be available, even when using newer Java versions. Specifically, this allows you to: - compile code even if your Java environment isn't a full JDK (Java JRE, for example!) - target Java 1.7 for compilation without any warnings or restrictions. - use the Compiler Tree API without resorting to --add-opens trickery that may eventually fail in newer Java releases - build a modified compiler with additional features or custom tweaks I made this after finding that the otherwise superb "jsweet" Java-to-JavaScript transpiler failed to build and run with Java 16 or newer. Surprisingly, I couldn't find any prior work other than "proper" standalone compilers like Eclipse's ecj that would properly work with modern Java runtimes. I'm excited to see what can be done now that we have this scaffolding. https://ift.tt/PlkORxe October 10, 2023 at 10:15PM
Show HN: Find a Mutually Convenient Coffee Shop to Meet https://ift.tt/EmhedMs
Show HN: Find a Mutually Convenient Coffee Shop to Meet Built a small web app to solve a pain point I've had in meeting people for coffee in NYC. It's fairly crude, but if people like it, I think there are some interesting ways to improve it. https://ift.tt/r2YdV3R October 10, 2023 at 11:03PM
Monday, October 9, 2023
Show HN: Free content optimization tool for SEO https://ift.tt/UXTLcaI
Show HN: Free content optimization tool for SEO https://ift.tt/qBAe391 October 10, 2023 at 04:31AM
Show HN: A Prettier plugin for formatting imports in Astro files https://ift.tt/exhmZdR
Show HN: A Prettier plugin for formatting imports in Astro files https://ift.tt/NzXmMwi October 9, 2023 at 09:57PM
Show HN: I made a Chrome extension to put headlines back into Twitter https://ift.tt/peWzTJc
Show HN: I made a Chrome extension to put headlines back into Twitter https://ift.tt/AWF05ns October 10, 2023 at 05:38AM
Show HN: Self hosted Embedding Server | OpenAI compatible https://ift.tt/PfywzZ6
Show HN: Self hosted Embedding Server | OpenAI compatible Drop in replacement for OpenAI's embedding API. Can be used with official OpenAPI libraries. Written in python3 https://ift.tt/R5Pf9Q4 October 9, 2023 at 09:50PM
Show HN: Blending AI Images with Classic Checker Patterns: Puzzle Game Evolution https://ift.tt/lktp4o5
Show HN: Blending AI Images with Classic Checker Patterns: Puzzle Game Evolution https://ift.tt/pIEeZ1x October 10, 2023 at 01:10AM
Show HN: An AI app that lets you read up to 10 news articles in 60 seconds https://ift.tt/MoxjG45
Show HN: An AI app that lets you read up to 10 news articles in 60 seconds Be gentle & humble HN, we're just beginning this journey. We still have A LOT of work to do on Tidby. However, we'd love your insights on improving its growth. Current things we're improving: - Article / summary quality - Feed quality / improvements - Onboarding across app - Additional sources - UI/UX improvements (not final design) We've been diligently working on an app designed to summarize the news and create a social experience within it over time. The future of Tidby: ~ Comments on articles. ~ Posting. ~ Newsrooms. (similar to a subreddit) ~ Related Articles. ~ Library expansion. Create groups, subtopics, etc. ~ Mood Reading. Enjoy articles / topics at certain times of the day instead of random. ~ Filters, filters, filters, & much more planned. Not for who you or what you think will make Tidby great, but what would make Tidby useful for you? Thank you for reading! https://ift.tt/Mo6KRWy October 10, 2023 at 12:35AM
Show HN: I made a all-in-one web app to help me with my freelance admin tasks https://ift.tt/g4jyUEK
Show HN: I made a all-in-one web app to help me with my freelance admin tasks https://ift.tt/dNlTr95 October 9, 2023 at 02:20PM
Sunday, October 8, 2023
Show HN: Talk with ChatGPT using your VOICE https://ift.tt/Q0jdq3w
Show HN: Talk with ChatGPT using your VOICE https://ift.tt/TtQ4u37 October 9, 2023 at 10:15AM
Show HN: I made a one button snake game variant https://ift.tt/PChKvNF
Show HN: I made a one button snake game variant https://tapsnake.com October 9, 2023 at 06:20AM
Show HN: Pollux – A Message Passing Cloud Orchestrator https://ift.tt/f0EyJ4i
Show HN: Pollux – A Message Passing Cloud Orchestrator https://ift.tt/ac4WXHz October 9, 2023 at 02:44AM
Show HN: This is what social media could be https://ift.tt/GEkwHzA
Show HN: This is what social media could be I made what I believe is a joyful slow social media. Would love to know what you think! https://bloom.tendtoyourgarden.xyz/ October 9, 2023 at 02:04AM
Show HN: BadUSB that can exfiltrate stored WiFi passwords https://ift.tt/80fNTaC
Show HN: BadUSB that can exfiltrate stored WiFi passwords https://ift.tt/f3rUvYP October 8, 2023 at 06:09PM
Show HN: Build WebExtensions in Go, a Native Way https://ift.tt/QL1nkY8
Show HN: Build WebExtensions in Go, a Native Way Less than a week ago, we announced a new stdlib & runtime `pcz` for Golang, focusing on platform native support, along with full access to Web APIs. [1] (and we were not joking.) Today we are releasing the full access to WebExtension APIs for Go js/wasm target in pcz std[2], and now you can build WebExtensions in Go natively, happy toying with it! [1]: https://ift.tt/oi7GfvM [2]: https://ift.tt/yFUSuHp... https://ift.tt/RG6l4SH October 8, 2023 at 05:51AM
Show HN: CSSBattle – A competitive game for web designers and developers https://ift.tt/qdYDUna
Show HN: CSSBattle – A competitive game for web designers and developers My name is Kushagra, and I am the co-founder of CSSBattle[1]. We built CSSBattle to make web designing a bit more fun. CSSBattle is an online competitive game where you have to replicate a given target image with CSS. When you submit your CSS code, you get a score based on how well you replicated the image + how short your code is. Our community has now grown to 320k+ players across the world. Over the past 3 years, we've been working hard to make it even more fun and educative for our players. I am very excited to show you a completely revamped version of CSSBattle with great new features which makes it the best frontend gaming platform on the web. Here's what's new: - Daily Targets: after talking to our users, we realized that not all players liked the pressure of leaderboards and competition. So we've introduced Daily Targets where players get a new target every day. These targets don't have leaderboards and are great for beginners who are just getting started - CSS Courses: We've also introduced game-like interactive courses for learning CSS - Monthly Battles: We now host monthly battles for players who crave competition. These are heated battles where players spend hours on shaving off a single character from their code just to rise up on the leaderboards! - Redesign: We've revamped the whole site to make it look nicer, and the whole experience smoother. We've also optimized it to work on mobile devices We would love it if you get a chance to check it out and are excited to hear all your feedback. Thank you for the support! [1] https://cssbattle.dev https://cssbattle.dev October 8, 2023 at 06:32AM
Saturday, October 7, 2023
Show HN: Buyidentities.com https://ift.tt/1fU8g25
Show HN: Buyidentities.com https://ift.tt/WjiVFfd October 7, 2023 at 07:22PM
Show HN: Bookmark Publicly – Make Shareable Folders of Links https://ift.tt/L1AvRqe
Show HN: Bookmark Publicly – Make Shareable Folders of Links I have been building LinkCollect browser plugin because i needed something to help me create shareable collections of links in an easy and simple way. plus i wanted to create a discovery hub for public collections of resources and cool links Features - Save all open tabs using right click (or command ALT / Option A) - Save any link ( ALT + C ) - Discover collections that are public on the explore page - Share whole profile link - Access everything (search + all bookmarks + collections) from extension itself so no need to visit the website for these things :) https://ift.tt/yHCrU7A October 8, 2023 at 12:06AM
Show HN: Timbre – An app that finds the best sounds for your sleep https://ift.tt/crDtXvK
Show HN: Timbre – An app that finds the best sounds for your sleep Hey all, I'm currently a solo iOS developer who just released my first app, Timbre, onto the App Store (iPhone only for now). Timbre originally came about because I wanted to build a sleep sounds & sleep tracker app. I had used Headspace, Calm, Pillow, etc. and figured that instead of paying $70 / year I could just build my own app and pay $100 / year (not a great plan in retrospect). As I started building Timbre, I realized that one of the biggest issues I had with these other apps is that I could never really see which sounds genuinely helped me sleep. With that in mind, I pivoted on my original idea and decided to really hone in on connecting sleep quality and sounds. Using a custom ML model, Apple's CoreML framework and HealthKit's sleep stage data, I made it so that Timbre could calculate a personal sleep quality score. Therefore, when you record a sleep session while listening to a sound, the app can rank the sounds you've listened to based on your sleep quality scores over time. Of course, the app also has a smart alarm, offline support, sleep analysis and more, but I'd love to get some feedback & suggestions from the demo video. Also feel free to ask me any questions and I'd be happy to answer them! If you'd like to download the app and test it further, it's available here: https://ift.tt/t259NPu... https://www.youtube.com/watch?v=ALoPAFb31Bk October 7, 2023 at 11:53PM
Show HN: Reliable AI-generated text detection at checkfor.ai https://ift.tt/TNDu03G
Show HN: Reliable AI-generated text detection at checkfor.ai Hey all! I've been increasingly concerned about low-quality AI generated content polluting the internet. Other AI detectors don't seem to work well in my experience, so I started checkfor.ai with a couple friends. Please give it a shot on any real text and AI-generated examples and let me know how well it works for you. Thanks for trying, I'm open any and all feedback! https://www.checkfor.ai October 7, 2023 at 11:53PM
Show HN: Embed the 24HourHomepage on your blog or website https://ift.tt/143W5R9
Show HN: Embed the 24HourHomepage on your blog or website https://ift.tt/zdW1XxK October 7, 2023 at 11:48PM
Show HN: Display all stories and comments for a specific Hacker News user https://ift.tt/4Oqf2UB
Show HN: Display all stories and comments for a specific Hacker News user Hi HN, I have been exploring the Hacker News API [0] a bit and came up with this simple way of exploring a user's past submissions including the comments [1]. It's been fun to dig through some of the old submissions and reading the comments, so I thought I'd share. https://ift.tt/APg76ze Caveat: For accounts with a lot of submissions, it may take a while to load. [0] https://ift.tt/EXJjv3M [1] https://ift.tt/mTA3Mgx... https://ift.tt/APg76ze October 7, 2023 at 11:42PM
Friday, October 6, 2023
Show HN: A job application tracker with company reviews, recruiter autoresponder https://ift.tt/wyvlObP
Show HN: A job application tracker with company reviews, recruiter autoresponder Hey folks. Rolepad is a product born out of my dissatisfaction with hiring processes - both as a candidate and as a hiring manager. Processes that are non-transparent, inefficient, and full of frustration for both sides. This early iteration has focused on the application tracking aspects with a few extra goodies. These days it is common to apply to dozens of positions (some users track over a hundred opportunities). Without a record-keeping system, it can quickly become an unmanageable mess. Even the better-organized among us often end up juggling spreadsheets, emails, and various notes. Rolepad was built to keep this data (company facts, role details, interview stages, contact info, freeform notes, follow-up actions, and more) in one place. Some of the other neat additions: - Forward emails to save@rolepad.com to save them as notes connected to specific opportunities. Forward recruiter messages to no@rolepad.com to have the system automatically reply with a decline response. - Generate shareable Sankey charts of your progress like this: https://ift.tt/fEoBktl - Submit anonymous reviews and insights about application/interview/offer processes at a company . This is new and there aren’t great examples to share yet ( https://ift.tt/Nj86MFr is an early glimpse), and I didn’t want to create fake data as a matter of principle. Oh yeah, and it’s totally free :) Creating an account is passwordless and takes seconds, but if you want to kick the tires even faster, I created test credentials for this occasion: username: test@rolepad.com password: hntest With this release, I am also starting conversations with employers ( https://ift.tt/wu9eo7H ). A unified platform for candidates and employers can significantly reduce frustration for both in ways that email cannot. I should note that any solutions here have privacy implications and will require an exceedingly thoughtful execution. And now for the tech stack. The main application uses React with Tailwind on the frontend, C# on the backend, hosted in AWS (App Runner, Lambda, RDS Postgres, SES), with auth provided by Google Firebase, and CI/CD via GitHub Actions. The home page is actually an SSR (server-side rendered) application built with vite-plugin-ssr (now vike) and hosted in a Cloudflare Worker that hits the AWS-hosted API. This is basically a best-of-all-worlds SSR configuration - very fast, zero cold start (!), and essentially free. Any and all feedback is sincerely appreciated! https://rolepad.com October 6, 2023 at 09:31PM
Show HN: Cut back alcohol in a warm and supportive app https://ift.tt/Ex3jX7y
Show HN: Cut back alcohol in a warm and supportive app I've always been a heavy drinker and tried multiple time to cut back alcohol, but failed every time. As a mobile developer, I had the idea to create a dedicated app to track alcohol consumption in quick and fun way. That's why I've developed Drylendar, an iOS app translated in French (I'm French) and English that allows people to track their drink every day in a beautiful calendar. To help people staying motivated, I've added medals to unlock and possibility to add friends to share calendars and positive energy. My app is available on App Store for 10 days, and it's been 215 days that I didn't drink alcohol at all, I've never felt healthier & happier! https://ift.tt/b7LXFEH October 7, 2023 at 02:38AM
Show HN: Use Python docstrings as exception messages https://ift.tt/7IslLz4
Show HN: Use Python docstrings as exception messages The following exception @dataclass class PodBayDoorsStillClosed(DocumentedError): """ I’m sorry, {self.user_name}. I’m afraid I can’t do that. """ user_name: str when raised as raise PodBayDoorsStillClosed('Dave') will print PodBayDoorsStillClosed: I’m sorry, Dave. I’m afraid I can’t do that. Reduce the boilerplate, use more exception classes to better express the business logic, or invent your own use cases :) Can be tried out as: pip install documented which works for Python ⩾ 3.8.1. https://ift.tt/Sf7PUon October 6, 2023 at 11:39PM
Thursday, October 5, 2023
Show HN: An image generator that embeds headline text for X / Twitter Cards https://ift.tt/8F72MZd
Show HN: An image generator that embeds headline text for X / Twitter Cards - add headline text of article - drag and drop image - make adjustments by dragging, resizing, zooming with mouse wheel - download twitter card it's not perfect but i hope it helps. any constructive criticism is appreciated. happy to make adjustments or new features. thanks for your valuable time. https://ift.tt/fOGVdlR October 6, 2023 at 05:43AM
Show HN: Using File System as Database https://ift.tt/JmAXhNI
Show HN: Using File System as Database https://ift.tt/kYU3iEA October 6, 2023 at 01:12AM
Show HN: JsonGenius – Open-Source Web Scraping API with GPT https://ift.tt/Jj68L2F
Show HN: JsonGenius – Open-Source Web Scraping API with GPT Hello HN! I decided to open-source my own web scraping API that I'm using to get information from different websites without using any selectors or XPath. Just provide the URL and a desired JSON schema, and it will return extracted data. Hope this can be helpful for someone. Cheers! https://ift.tt/0H8bEiF October 5, 2023 at 09:46PM
Show HN: Smartphone haptics for inducing calm, an alternative to meditation https://ift.tt/im2MSDt
Show HN: Smartphone haptics for inducing calm, an alternative to meditation Hey HN, We've been working in neurotech over the past few years, primarily focusing on improving sleep. A friend asked if I would build her a vagal nerve stimulation device. These are devices used to improve relaxation, and “vagal tone”. She didn't want to shell out hundreds for the existing solutions. I originally said no, but then I thought, what if we leveraged smartphone haptics to achieve the same effect as these expensive devices? After some tinkering, Harbor: Immersive Calm was published to the app store last week. https://getharbor.app It’s pretty basic and very MVP, no logins, just: 1)open the app 2) select an immersion (mix of sound and haptics) 3) select how long you want to be immersed (?) 4) lay back, put your phone on your chest, and feel the sensations. In comparison to meditation, with Harbor, there is no “doing it right”, : Lay back, Tune In & Chill Out. I initially built for Android, but the fine-grained control and consistency of haptic motors in iOS device is a better experience. Though, I’m not ruling out a future dive into Android. Here’s a video demo( https://youtu.be/gr70kY9_Abk ) for a sneak peek. Though, without the haptic feedback, you can’t really get a feeling for the experience. Compared to devices the cost hundreds of dollars plus subscriptions, we’re thinking of a subscription model of $5/month. A friend who is a trauma therapist said she’d recommend it to some of her clients, and of course, there is the market of people who are looking to buy vagal nerve devices, and we can offer a lower cost alternative - and you don’t have to wait for shipping :) https://ift.tt/KcpRaU7 October 6, 2023 at 12:58AM
Show HN: An app store just for installable web apps https://ift.tt/arLVweQ
Show HN: An app store just for installable web apps https://store.app October 6, 2023 at 12:20AM
Show HN: Dittofeed v0.5.0 – Self-host SMS and email customer messaging https://ift.tt/V9fqCYp
Show HN: Dittofeed v0.5.0 – Self-host SMS and email customer messaging Hey HN, we’ve just released Dittofeed v0.5.0, with the primary change being the addition of SMS as a messaging channel. Dittofeed is an open source (MIT licensed) omnichannel customer engagement platform, similar to Customer.io and Iterable. We added: - Twilio-based SMS messaging. You can create SMS templates and customer journeys within Dittofeed. SMS is a great channel for B2C software companies, looking to engage with their users. For example, e-commerce businesses commonly use SMS to support checkout flows. We'll be making further enhancements to Dittofeed's SMS support in the coming weeks! - We added a new "Trait Exists" segmentation option, which can be used to create a segment of all users with phone numbers, for example. - We made some fairly large improvements to our settings UI. Big shout out to our contributor! https://ift.tt/LbJkSoT The full feature release blog post can be found here: https://ift.tt/PULR3Ab . Looking forward to your thoughts and feedback! Github Repo - https://ift.tt/WkLQ1GN Demo - https://ift.tt/IoeGHvs Docs - https://ift.tt/JqhmTyQ October 5, 2023 at 11:04PM
Wednesday, October 4, 2023
Show HN: Userscript that removes all recommendations from your Reddit frontpage https://ift.tt/BJ0xgHy
Show HN: Userscript that removes all recommendations from your Reddit frontpage I've gotten more and more of these and A. I'm often not interested and B. they upset me more often than not. Since Reddit randomizes class-names and runs recommendations under different names this was more tricky than expected but it works reliably now. https://ift.tt/QTi6ngH October 5, 2023 at 03:48AM
Show HN: Running LLMs in one line of Python without Docker https://ift.tt/zZg2IY8
Show HN: Running LLMs in one line of Python without Docker Hello Hacker News! We're Yangqing, Xiang and JJ from lepton.ai. We are building a platform to run any AI models as easy as writing local code, and to get your favorite models in minutes. It's like container for AI, but without the hassle of actually building a docker image. We built and contributed to some of the world's most popular AI software - PyTorch 1.0, ONNX, Caffe, etcd, Kubernetes, etc. We also managed hundreds of thousands of computers in our previous jobs. And we found that the AI software stack is usually unnecessarily complex - and we want to change that. Imagine if you are a developer who sees a good model on github, or HuggingFace. To make it a production ready service, the current solution usually requires you to build a docker image. But think about it - I have a few python code and a few python dependencies. That sounds like a huge overhead, right? lepton.ai is really a pythonic way to free you from such difficulties. You write a simple python scaffold around your PyTorch / TensorFlow code, and lepton launches it as a full-fledged service callable via python, javascript, or any language that understands OpenAPI. We use containers under the hood, but you don't need to worry about all the infrastructure nuts and bolts. One of the biggest challenge in AI is that it's really "all-stack": in addition to a plethora of models, AI applications usually involves GPUs, cloud infra, web services, DevOps, and SysOps. But we want you to focus on your job - and we take care of the rest "boring but essential" work. We're really excited we get to show this to you all! Please let us know your thoughts and questions in the comments. https://www.lepton.ai/ October 4, 2023 at 10:07PM
Show HN: Sqinn-Go is a Golang library for accessing SQLite databases in pure Go https://ift.tt/QPmKVvA
Show HN: Sqinn-Go is a Golang library for accessing SQLite databases in pure Go https://ift.tt/UfJ46Al October 5, 2023 at 12:06AM
Show HN: An app store just for Web Apps https://ift.tt/LEdxHfv
Show HN: An app store just for Web Apps https://store.app October 4, 2023 at 11:53PM
Tuesday, October 3, 2023
Show HN: Bookmarks 2 Website and Social Media https://ift.tt/h2G5j8T
Show HN: Bookmarks 2 Website and Social Media https://ift.tt/ZoV4lPb October 4, 2023 at 03:24AM
Show HN: An app to create asynchronous micro podcasts https://ift.tt/Ru356JZ
Show HN: An app to create asynchronous micro podcasts Share thoughts and stories with friends worldwide, on your time. https://roadsaudio.com/ October 4, 2023 at 03:22AM
Show HN: AI-Generated Luxury Style Stock Images https://ift.tt/lyDnuIG
Show HN: AI-Generated Luxury Style Stock Images Hey HN, We're excited to introduce LuxeStock, a luxury style stock image library powered by AI. These images work well for brands, entrepreneurs, marketers, and content creators. All images are generated by AI and handpicked by humans. We are starting with a newsletter that sends you 20 free premium stock photos every week. Check us out at: https://luxestock.co Thanks! https://luxestock.co October 4, 2023 at 01:11AM
Show HN: Bookmark in Public – Curate and Share Collections of Links Easily https://ift.tt/ksje2rO
Show HN: Bookmark in Public – Curate and Share Collections of Links Easily https://linkcollect.io October 4, 2023 at 01:21AM
Show HN: Write Grant with AI Assistance https://ift.tt/jfA4yTh
Show HN: Write Grant with AI Assistance https://ift.tt/szhF2d5 October 4, 2023 at 12:26AM
Show HN: Easy MQTT Handler – An MQTT Client to Connect Your PC to Home Assistant https://ift.tt/9NoiRtJ
Show HN: Easy MQTT Handler – An MQTT Client to Connect Your PC to Home Assistant Hey HN. I wanted to share my pet project and first open-source contribution with everyone here! Here's a summary of what the tool does: The tool was mainly developed to provide an easy way to integrate Personal Computers into Home Automation and offers a simple, but functional, GUI to connect to an MQTT Broker and listen to a topic. The user is able to define commands and parameters that should be part of the payload of the MQTT messages received from the broker. For each command/parameter combination the user can then define an executable that should be launched once a certain command/parameter combination is received. The tool is neatly integrating into the users' environment by sitting in the tray area as a tray icon. It comes with a Qt5-based GUI and is licensed under the GPLv3+. If you have any questions about, just ask! Thanks. https://ift.tt/ptUXiOh October 3, 2023 at 11:26PM
Show HN: Zany – Favicon API https://ift.tt/mqK50tI
Show HN: Zany – Favicon API Got mad at this console error the other night: "Failed to load resource: the server responded with a status of 404 (File not found) :8000/favicon.ico:1" and hacked this together. Never have to worry about that 16x16 square again. https://zany.sh October 3, 2023 at 11:49AM
Monday, October 2, 2023
Show HN: Cursor: Chrome and Orion ext to clone and open any repo (VS Code too) https://ift.tt/tIag86Q
Show HN: Cursor: Chrome and Orion ext to clone and open any repo (VS Code too) Cursor is such a game-changer so I made it the default editor for my new extension. https://ift.tt/i3lLgM9 October 3, 2023 at 12:15AM
Show HN: Hardcover – Letterboxd for Books https://ift.tt/i0SwzCF
Show HN: Hardcover – Letterboxd for Books Hi HN! A little over two years ago, Goodreads announced they were shutting off access to their API. I was using it to show what I was reading on my blog at the time, and started looking for alternatives. I found a few that showed potential. I'd been using Letterboxd for a few years at that point and felt it had something that was missing from GR and the others I found, but I couldn't put my finger on it. I decided to build it instead (I'm sure many creators can relate ). I made a post on the /r/cofounders subreddit about the idea, and found Ste. With me as a full-stack product dev and him on product design, we talked to hundreds of readers about what they want in a book tracking and social platform. We've listened to their feedback, tested and iterated constantly. We believe we've created a book space that feels as warm as a familiar library but as exciting as a midnight book launch party. This past weekend we launched Hardcover on Product Hunt (and hit #3!). We describe Hardcover as a book tracking social network for readers to find new books, track what they read and make lasting connections with other readers. So, Letterboxd for books! Here are a few of my favorite things you can do on Hardcover: Find books - Search for books you know of, check out trending books, explore lists and prompts to find hidden gems, review your recommendations, stumble on friends reads in your feed, or browse all book by genre, mood or tag. Decide what to read - Besides all the book facts you'd expect to see, we show you a personalized Match Score from 0% to 100% for each book based on your reading history. You'll also see ratings & reviews from readers you follow and readers most similar to you. Track your reading - One place for every book you want to read, have read and more. You can set your privacy level to public, private (for a book?) or friends only. Use Airlists (our version of Airtable for Books) to further organize your library. Log your reads - Rate and review books on a 5-star scale with half-star increments. Showcase your favorite books on your profile at hardcover.app/@username Read even more - Set reading goals and explore your reading stats through charts and data visualizations to help keep you consistent and understand your own reading habits and tastes. AI librarian, Bookle game, referral program, Goodreads/StoryGraph importer, GraphQL API, light/dark modes, an active Discord and so much more! I'm excited to share and get feedback from the Hacker News community we've all been a part of for so long (even if I've mostly lurked here since 2009 ). In terms of launch numbers (which I always love to see), here's our dashboard that shows how it went. We had about 250 new members join in the last 3 days, and a few new subscribers. We're still a ways away from being profitable. It costs us about $1,000/month to run Hardcover – even before salaries. We're about 30% of the way there. https://ift.tt/C9y1ewO... I'm most excited about the momentum from launch - seeing people share Hardcover with friends of theirs who read and growing the community. If you're a reader I'd love to invite you to join us! Any feedback, questions or comments are always welcome. I'm an open book, so feel free to ask me anything. Adam https://ift.tt/yGbMHJ1 https://hardcover.app October 3, 2023 at 03:16AM
Show HN: A new stdlib for Golang focusing on platform native support https://ift.tt/YxGVqTf
Show HN: A new stdlib for Golang focusing on platform native support No gc, No goroutines, Produces small binaries while using the unmodified official go toolchain, and comes with complete Web SDK (generated from w3c/webref). We are building `pcz` to provide a reimagination of Go the language, in an effort to make it suitable for all kinds of programming tasks, and currently you can use it to build efficient web applications in Go using the generated Web SDK (as shown with the live web demo[1]). The journey is just starting, any suggestions? or any critics? [1]: https://ift.tt/glDCAP7 https://ift.tt/zwZcPjd October 3, 2023 at 02:50AM
Show HN: SourceChart – ExcaliDraw but for Charts https://ift.tt/bcIRwfj
Show HN: SourceChart – ExcaliDraw but for Charts https://ift.tt/WZPSft9 October 2, 2023 at 07:33PM
Show HN: Anything World – AI for 3D auto-rigging and animation https://ift.tt/fi5a0Rt
Show HN: Anything World – AI for 3D auto-rigging and animation https://anything.world/ October 2, 2023 at 11:02PM
Show HN: An Astro boilerplate to help you launch your SaaS in 3 minutes https://ift.tt/6XqiTxY
Show HN: An Astro boilerplate to help you launch your SaaS in 3 minutes Hey HN, Inspired from Marc's ShipFast, I've built LaunchFast which helps you with a set up that: - has a component for making SEO at your fingertip - enables you to utlilize Upstash, a Serverless Redis with budget friendly pricing - send transactional emails with Resend - captured analytics with Google & PostHog - capture payments via Lemon Squeezy & Stripe - login users via Google Oauth2 and Emails - verify users in case they sign up non-OAuth2 methods - Pre-built Components & Animations! Rishi https://ift.tt/9DBowIO October 2, 2023 at 03:05PM
Show HN: I Made an App to Summarize YouTube Videos in Just One Click https://ift.tt/CiOVK0x
Show HN: I Made an App to Summarize YouTube Videos in Just One Click Hey folks! My weekend project, Summify.io, has officially launched! It's an AI-driven tool that simplifies your life by summarizing YouTube videos in just a single click. Now, you can get the gist of those long vids without breaking a sweat! Built from the ground up as a solo developer, it's been an incredible journey full of late nights, countless coffees, and the spirit of indie hacking The amazing response from our private release has motivated me on to start building even more features. Can't wait for you to check it out and share your thoughts! Try Summify.io now and let's me know what you think https://summify.io October 2, 2023 at 05:29PM
Sunday, October 1, 2023
Show HN: Podman Quadlet Hetzner ansible template for $5 bun.js app deployments https://ift.tt/h4QZfew
Show HN: Podman Quadlet Hetzner ansible template for $5 bun.js app deployments Example of standalone Bun.js application deployment to Hetzner Cloud using Rootless Podman Quadlet systemd services. https://ift.tt/4dBtkwp October 1, 2023 at 10:55PM
Show HN: A distributed workflow engine written in Go https://ift.tt/wlBUD3g
Show HN: A distributed workflow engine written in Go I'd like to share a project I've been working on for the past few months. It's a distributed workflow engine written entirely in Go. Some highlights: * Tasks are executed in a Docker container * Can run stand-alone or distributed * Highly extensible * Able to enforce limits (CPU/RAM) per task * Web UI Would love the get your feedback on it, and find out if this could be useful. https://ift.tt/eSG108W October 2, 2023 at 12:59AM
Show HN: NanceFi – Visualize public companies revenue sources, costs and margins https://ift.tt/qUv0Vcr
Show HN: NanceFi – Visualize public companies revenue sources, costs and margins Hey HN! Today, I'm thrilled to introduce "Nancefi", a SaaS app designed specifically for those who need a deeper insight into SEC reports. If you've ever found yourself sifting through pages of financial data, you know how daunting and time-consuming it can be. With Nancefi, we bring a solution to this problem. *Key Features:* * Data Extraction: Our advanced algorithms scan through SEC reports, pulling the most relevant data points for analysis. * Sankey Diagram Visualization: Visualize the extracted data in a comprehensive manner using Sankey diagrams. This makes understanding the flow of information and resource allocation easier than ever before. * API Consumption: For developers and businesses looking to integrate this data into their systems, we provide a robust API to fetch and utilize the extracted information. Tech Stack: We've built Nancefi using some of the most modern and powerful tools: - Frontend: Next.js with TailwindCSS for a sleek and responsive design. - Backend: PostgreSQL for reliable data storage, tRPC for efficient remote procedure calls, and Prisma for easy database interaction. * Why Nancefi?: The world of financial data is vast and often hard to navigate. With Nancefi, we aim to make this journey smoother for analysts, businesses, and anyone interested in understanding SEC reports in depth. Give it a Try!: We would love for you to try out Nancefi and share your feedback. Looking forward to your feedback and suggestions! https://ift.tt/EfMP85u October 1, 2023 at 07:56PM
Show HN: Svmidi, a suckless virtual MIDI keyboard https://ift.tt/pDY3h1N
Show HN: Svmidi, a suckless virtual MIDI keyboard This is a minimal yet functional midi virtual keyboard written in C, using Xlib and asound or sndio. Tested on Linux and OpenBSD, replaces softwares such as VMPK. https://ift.tt/68TUhFB October 1, 2023 at 02:09AM
Subscribe to:
Posts (Atom)
Show HN: Spend Elon Musk's fortune on AirPods, NFL teams, etc as fast as you can https://ift.tt/XIyhn0J
Show HN: Spend Elon Musk's fortune on AirPods, NFL teams, etc as fast as you can https://ift.tt/HTEcRnF April 7, 2025 at 04:07AM
-
Show HN: High school robotics code/CAD/design binder release Hello HN! My name is Patrick, and I am a junior at my High School’s FRC robotic...
-
Show HN: D&D meets Siri – Interactive voice adventure Hey HN! I've been building tooling for voice-driven apps over the past few mon...
-
Show HN: I Made an AI Social Media Manager to Automate Content Creation Hey HN, I am a Solopreneur, and I love building apps to automate bor...