The best Hacker News stories from Show from the past day

Go back

Latest posts:

Show HN: I built TikTok but for studying with quizzes from your own notes

Show HN: I built TikTok but for studying with quizzes from your own notes

Show HN: Galaxy Visualization

100k real ( +100k random ) galaxies from a sector. Visualized with Raylib.

Show HN: Galaxy Visualization

100k real ( +100k random ) galaxies from a sector. Visualized with Raylib.

Show HN: A whiteboard that writes math equations

Show HN: A whiteboard that writes math equations

Show HN: FlowTracker – Track data flowing through Java programs

FlowTracker, a Java agent that tracks data flowing through Java programs. It helps you understand where any program got its output from, what it means, and why it wrote it.<p>Watch the video or explore the live demo yourself, and read how it works at <a href="https://github.com/coekie/flowtracker">https://github.com/coekie/flowtracker</a>

Show HN: FlowTracker – Track data flowing through Java programs

FlowTracker, a Java agent that tracks data flowing through Java programs. It helps you understand where any program got its output from, what it means, and why it wrote it.<p>Watch the video or explore the live demo yourself, and read how it works at <a href="https://github.com/coekie/flowtracker">https://github.com/coekie/flowtracker</a>

Show HN: FlowTracker – Track data flowing through Java programs

FlowTracker, a Java agent that tracks data flowing through Java programs. It helps you understand where any program got its output from, what it means, and why it wrote it.<p>Watch the video or explore the live demo yourself, and read how it works at <a href="https://github.com/coekie/flowtracker">https://github.com/coekie/flowtracker</a>

Show HN: Repogather – copy relevant files to clipboard for LLM coding workflows

Hey HN, I wanted to share a simple command line tool I made that has sped up and simplified my LLM assisted coding workflow. Whenever possible, I’ve been trying to use Claude as a first pass when implementing new features / changes. But I found that depending on the type of change I was making, I was spending a lot of thought finding and deciding which source files should be included in the prompt. The need to copy/paste each file individually also becomes a mild annoyance.<p>First, I implemented `repogather --all` , which unintelligently copies <i>all</i> sources files in your repository to the clipboard (delimited by their relative filepaths). To my surprise, for less complex repositories, this alone is often completely workable for Claude — much better than pasting in the just the few files you are looking to update. But I never would have done it if I had to copy/paste everything individually. 200k is quite a lot of tokens!<p>But as soon as the repository grows to a certain complexity level (even if it is under the input token limit), I’ve found that Claude can get confused by different unrelated parts / concepts across the code. It performs much better if you make an attempt to exclude logic that is irrelevant to your current change. So I implemented `repogather "<query here>"` , e.g. `repogather "only files related to authentication"` . This uses gpt-4o-mini with structured outputs to provide a relevance score for each source file (with automatic exclusions for .gitignore patterns, tests, configuration, and other manual exclusions with `--exclude <pattern>` ).<p>gpt-4o-mini is so cheap and fast, that for my ~8 dev startup’s repo, it takes under 5 seconds and costs 3-4 cents (with appropriate exclusions). Plus, you get to watch the output stream while you wait which always feels fun.<p>The retrieval isn’t always perfect the first time — but it is fast, which allows you to see what files it returned, and iterate quickly on your command. I’ve found this to be much more satisfying than embedding-search based solutions I’ve used, which seem to fail in pretty opaque ways.<p><a href="https://github.com/gr-b/repogather">https://github.com/gr-b/repogather</a><p>Let me know if it is useful to you! Always love to talk about how to better integrate LLMs into coding workflows.

Show HN: Repogather – copy relevant files to clipboard for LLM coding workflows

Hey HN, I wanted to share a simple command line tool I made that has sped up and simplified my LLM assisted coding workflow. Whenever possible, I’ve been trying to use Claude as a first pass when implementing new features / changes. But I found that depending on the type of change I was making, I was spending a lot of thought finding and deciding which source files should be included in the prompt. The need to copy/paste each file individually also becomes a mild annoyance.<p>First, I implemented `repogather --all` , which unintelligently copies <i>all</i> sources files in your repository to the clipboard (delimited by their relative filepaths). To my surprise, for less complex repositories, this alone is often completely workable for Claude — much better than pasting in the just the few files you are looking to update. But I never would have done it if I had to copy/paste everything individually. 200k is quite a lot of tokens!<p>But as soon as the repository grows to a certain complexity level (even if it is under the input token limit), I’ve found that Claude can get confused by different unrelated parts / concepts across the code. It performs much better if you make an attempt to exclude logic that is irrelevant to your current change. So I implemented `repogather "<query here>"` , e.g. `repogather "only files related to authentication"` . This uses gpt-4o-mini with structured outputs to provide a relevance score for each source file (with automatic exclusions for .gitignore patterns, tests, configuration, and other manual exclusions with `--exclude <pattern>` ).<p>gpt-4o-mini is so cheap and fast, that for my ~8 dev startup’s repo, it takes under 5 seconds and costs 3-4 cents (with appropriate exclusions). Plus, you get to watch the output stream while you wait which always feels fun.<p>The retrieval isn’t always perfect the first time — but it is fast, which allows you to see what files it returned, and iterate quickly on your command. I’ve found this to be much more satisfying than embedding-search based solutions I’ve used, which seem to fail in pretty opaque ways.<p><a href="https://github.com/gr-b/repogather">https://github.com/gr-b/repogather</a><p>Let me know if it is useful to you! Always love to talk about how to better integrate LLMs into coding workflows.

Show HN: Repogather – copy relevant files to clipboard for LLM coding workflows

Hey HN, I wanted to share a simple command line tool I made that has sped up and simplified my LLM assisted coding workflow. Whenever possible, I’ve been trying to use Claude as a first pass when implementing new features / changes. But I found that depending on the type of change I was making, I was spending a lot of thought finding and deciding which source files should be included in the prompt. The need to copy/paste each file individually also becomes a mild annoyance.<p>First, I implemented `repogather --all` , which unintelligently copies <i>all</i> sources files in your repository to the clipboard (delimited by their relative filepaths). To my surprise, for less complex repositories, this alone is often completely workable for Claude — much better than pasting in the just the few files you are looking to update. But I never would have done it if I had to copy/paste everything individually. 200k is quite a lot of tokens!<p>But as soon as the repository grows to a certain complexity level (even if it is under the input token limit), I’ve found that Claude can get confused by different unrelated parts / concepts across the code. It performs much better if you make an attempt to exclude logic that is irrelevant to your current change. So I implemented `repogather "<query here>"` , e.g. `repogather "only files related to authentication"` . This uses gpt-4o-mini with structured outputs to provide a relevance score for each source file (with automatic exclusions for .gitignore patterns, tests, configuration, and other manual exclusions with `--exclude <pattern>` ).<p>gpt-4o-mini is so cheap and fast, that for my ~8 dev startup’s repo, it takes under 5 seconds and costs 3-4 cents (with appropriate exclusions). Plus, you get to watch the output stream while you wait which always feels fun.<p>The retrieval isn’t always perfect the first time — but it is fast, which allows you to see what files it returned, and iterate quickly on your command. I’ve found this to be much more satisfying than embedding-search based solutions I’ve used, which seem to fail in pretty opaque ways.<p><a href="https://github.com/gr-b/repogather">https://github.com/gr-b/repogather</a><p>Let me know if it is useful to you! Always love to talk about how to better integrate LLMs into coding workflows.

Show HN: Konty – A Balsamiq-alternative lo-fi wireframe tool for modern apps

Show HN: Konty – A Balsamiq-alternative lo-fi wireframe tool for modern apps

Show HN: Konty – A Balsamiq-alternative lo-fi wireframe tool for modern apps

Show HN: iFixit created a new USB-C, repairable soldering system

After years of making screwdrivers and teaching people to repair electronics, we just made our first electronic tool. It's been a journey for us to build while hewing to our repairable principles. We're really excited about it.<p>It's a USB-C powered soldering iron and smart battery power hub. Super repairable, of course. Our goal is to make soldering so easy everyone can do it: <a href="https://www.ifixit.com/fixhub" rel="nofollow">https://www.ifixit.com/fixhub</a><p>We didn’t want to make just another iron, so we spent years sweating the details and crafting something that met our exacting standards. This is a high-performance iron: it can output 100W of heat, gets to soldering temperature in under 5 seconds, and automatically cools off when you set it down. The accelerometer detects when you pick it up and heats it back up. Keeping the iron at a lower temperature while you’re not soldering shouold prolong the life of the tip.<p>What’s the difference between this iron and other USB-C irons on the market? Here’s a quick list:<p>Higher power (our Smart Iron is 100W, competitors max out at 60W over USB-C, 88W over DC Supply)<p>Heat-resistant storage cap (you just have to try this out, it’s a real game changer in day-to-day use) Polished user experience<p>A warranty and a local company to talk to (I can’t find any contact information for Miniware)<p>Comfier / more natural grip<p>Shorter soldering tip length<p>No-tangle, heat-resistant cable<p>Locking ring on the cable, so it can’t snag and get disconnected (this happens to me all the time on other irons)<p>More intuitive settings, either on the Power Station or on the computer<p>We used Web Serial <a href="https://caniuse.com/web-serial" rel="nofollow">https://caniuse.com/web-serial</a> for the interface, which is only supported in Chromium browsers. The biggest bummer with that is that no mobile browsers support it, yet. Hopefully that changes soon.<p>Hardware is hard! It's been a journey for us. Happy to answer any questions about how we made it.<p>Schematics and repair information are online here: <a href="https://www.ifixit.com/Device/FixHub_Portable_Soldering_Station" rel="nofollow">https://www.ifixit.com/Device/FixHub_Portable_Soldering_Stat...</a>

Show HN: iFixit created a new USB-C, repairable soldering system

After years of making screwdrivers and teaching people to repair electronics, we just made our first electronic tool. It's been a journey for us to build while hewing to our repairable principles. We're really excited about it.<p>It's a USB-C powered soldering iron and smart battery power hub. Super repairable, of course. Our goal is to make soldering so easy everyone can do it: <a href="https://www.ifixit.com/fixhub" rel="nofollow">https://www.ifixit.com/fixhub</a><p>We didn’t want to make just another iron, so we spent years sweating the details and crafting something that met our exacting standards. This is a high-performance iron: it can output 100W of heat, gets to soldering temperature in under 5 seconds, and automatically cools off when you set it down. The accelerometer detects when you pick it up and heats it back up. Keeping the iron at a lower temperature while you’re not soldering shouold prolong the life of the tip.<p>What’s the difference between this iron and other USB-C irons on the market? Here’s a quick list:<p>Higher power (our Smart Iron is 100W, competitors max out at 60W over USB-C, 88W over DC Supply)<p>Heat-resistant storage cap (you just have to try this out, it’s a real game changer in day-to-day use) Polished user experience<p>A warranty and a local company to talk to (I can’t find any contact information for Miniware)<p>Comfier / more natural grip<p>Shorter soldering tip length<p>No-tangle, heat-resistant cable<p>Locking ring on the cable, so it can’t snag and get disconnected (this happens to me all the time on other irons)<p>More intuitive settings, either on the Power Station or on the computer<p>We used Web Serial <a href="https://caniuse.com/web-serial" rel="nofollow">https://caniuse.com/web-serial</a> for the interface, which is only supported in Chromium browsers. The biggest bummer with that is that no mobile browsers support it, yet. Hopefully that changes soon.<p>Hardware is hard! It's been a journey for us. Happy to answer any questions about how we made it.<p>Schematics and repair information are online here: <a href="https://www.ifixit.com/Device/FixHub_Portable_Soldering_Station" rel="nofollow">https://www.ifixit.com/Device/FixHub_Portable_Soldering_Stat...</a>

Show HN: iFixit created a new USB-C, repairable soldering system

After years of making screwdrivers and teaching people to repair electronics, we just made our first electronic tool. It's been a journey for us to build while hewing to our repairable principles. We're really excited about it.<p>It's a USB-C powered soldering iron and smart battery power hub. Super repairable, of course. Our goal is to make soldering so easy everyone can do it: <a href="https://www.ifixit.com/fixhub" rel="nofollow">https://www.ifixit.com/fixhub</a><p>We didn’t want to make just another iron, so we spent years sweating the details and crafting something that met our exacting standards. This is a high-performance iron: it can output 100W of heat, gets to soldering temperature in under 5 seconds, and automatically cools off when you set it down. The accelerometer detects when you pick it up and heats it back up. Keeping the iron at a lower temperature while you’re not soldering shouold prolong the life of the tip.<p>What’s the difference between this iron and other USB-C irons on the market? Here’s a quick list:<p>Higher power (our Smart Iron is 100W, competitors max out at 60W over USB-C, 88W over DC Supply)<p>Heat-resistant storage cap (you just have to try this out, it’s a real game changer in day-to-day use) Polished user experience<p>A warranty and a local company to talk to (I can’t find any contact information for Miniware)<p>Comfier / more natural grip<p>Shorter soldering tip length<p>No-tangle, heat-resistant cable<p>Locking ring on the cable, so it can’t snag and get disconnected (this happens to me all the time on other irons)<p>More intuitive settings, either on the Power Station or on the computer<p>We used Web Serial <a href="https://caniuse.com/web-serial" rel="nofollow">https://caniuse.com/web-serial</a> for the interface, which is only supported in Chromium browsers. The biggest bummer with that is that no mobile browsers support it, yet. Hopefully that changes soon.<p>Hardware is hard! It's been a journey for us. Happy to answer any questions about how we made it.<p>Schematics and repair information are online here: <a href="https://www.ifixit.com/Device/FixHub_Portable_Soldering_Station" rel="nofollow">https://www.ifixit.com/Device/FixHub_Portable_Soldering_Stat...</a>

Show HN: Clace – Application Server with support for scaling down to zero

I have been building the open source project <a href="https://github.com/claceio/clace">https://github.com/claceio/clace</a>. Clace is an application server that builds and deploys containers, allowing it to manage webapps in any language/framework.<p>Compared to application servers like Nginx Unit, Clace has the advantage of being able to work with any application, without requiring any dependency or packaging changes. Clace provides a blue-green staged deployment model for apps. Not just code changes, even configuration changes are staged and can be verified before being made live.<p>Clace is not a PaaS solution, it does not support deploying databases and other auxiliary services. It does share the fact that it manages containers with PaaS solutions. Clace is different in that it builds its own reverse proxy, instead of depending on Traefik/Nginx. This allows Clace to implement features like shutting down idle apps and adding app level OAuth authentication. Clace runs natively on Windows/OSX in addition to Linux. Clace works with Docker/Podman/Orbstack.<p>Clace allows you to run hundreds of apps on a single machine. Since app containers are shut down when not in use, there is no CPU/memory resource usage when the apps are idle. It provides a Google Cloud Run type interface on your own hardware.<p><a href="https://clace.io/" rel="nofollow">https://clace.io/</a> has a demo video and docs. Do let me know any feedback.

Show HN: Clace – Application Server with support for scaling down to zero

I have been building the open source project <a href="https://github.com/claceio/clace">https://github.com/claceio/clace</a>. Clace is an application server that builds and deploys containers, allowing it to manage webapps in any language/framework.<p>Compared to application servers like Nginx Unit, Clace has the advantage of being able to work with any application, without requiring any dependency or packaging changes. Clace provides a blue-green staged deployment model for apps. Not just code changes, even configuration changes are staged and can be verified before being made live.<p>Clace is not a PaaS solution, it does not support deploying databases and other auxiliary services. It does share the fact that it manages containers with PaaS solutions. Clace is different in that it builds its own reverse proxy, instead of depending on Traefik/Nginx. This allows Clace to implement features like shutting down idle apps and adding app level OAuth authentication. Clace runs natively on Windows/OSX in addition to Linux. Clace works with Docker/Podman/Orbstack.<p>Clace allows you to run hundreds of apps on a single machine. Since app containers are shut down when not in use, there is no CPU/memory resource usage when the apps are idle. It provides a Google Cloud Run type interface on your own hardware.<p><a href="https://clace.io/" rel="nofollow">https://clace.io/</a> has a demo video and docs. Do let me know any feedback.

< 1 2 3 ... 180 181 182 183 184 ... 864 865 866 >