Hacker News
The Wealth of Nations
Article URL: https://libgen.mx/book/15419399
Comments URL: https://news.ycombinator.com/item?id=42082593
Points: 1
# Comments: 0
Show HN: AskLegal – A tiny app for crowdsourcing legal information questions
I built a tiny app where people can ask and discuss legal information questions with jurisdiction tagging. Main features:
Clean UI focused on readability Federal/state jurisdiction filtering Community voting system Organized by categories No signup required to browse questions
Live demo: https://asklegal.replit.app/
Comments URL: https://news.ycombinator.com/item?id=42082583
Points: 1
# Comments: 0
Save the Cat – A Story Telling Method
Article URL: https://savethecat.com
Comments URL: https://news.ycombinator.com/item?id=42082568
Points: 1
# Comments: 0
Cloudflare Radar
Article URL: https://radar.cloudflare.com/
Comments URL: https://news.ycombinator.com/item?id=42082542
Points: 1
# Comments: 1
Identify the E-heads (challenge accepted)
Article URL: https://twitter.com/PopeSeabass/status/1854290382915354837/video/1
Comments URL: https://news.ycombinator.com/item?id=42082528
Points: 1
# Comments: 0
Wild Ball
Article URL: https://r3f-drei-rapier.surge.sh
Comments URL: https://news.ycombinator.com/item?id=42082498
Points: 2
# Comments: 1
Trump Likely to Scrap Biden's AI Safeguards, Lighten Regulation
Article URL: https://techstrong.ai/uncategorized/trump-likely-to-scrap-bidens-ai-safeguards-lighten-regulation/
Comments URL: https://news.ycombinator.com/item?id=42082482
Points: 1
# Comments: 1
Bryan Johnson explains why we choose death over living forever [video]
Article URL: https://www.youtube.com/watch?v=fW5CgB9_DUs
Comments URL: https://news.ycombinator.com/item?id=42082476
Points: 1
# Comments: 0
Programmable Quantum Processors: Equivalence and Learning
Ask HN: Have a STEM degree but left tech?
Are there any of you here who pursued a STEM education, entered a STEM field but left STEM altogether not due to retirement age?
Some people became jaded on being a cog in a huge machine. Some people got fed up with the work. Some people got burn out. Some people failed to find a fit in the field.
Comments URL: https://news.ycombinator.com/item?id=42082462
Points: 2
# Comments: 0
Agricultural chemicals are more toxic to insects than previously thought
Article URL: https://www.thenewlede.org/2024/10/agricultural-chemicals-are-more-toxic-to-insects-than-previously-thought/
Comments URL: https://news.ycombinator.com/item?id=42082445
Points: 1
# Comments: 0
CLI for Working with JSON. Period
Article URL: https://www.everydevcarry.io/p/the-best-developer-tools-json
Comments URL: https://news.ycombinator.com/item?id=42082434
Points: 1
# Comments: 0
Preprint on Alzheimer's drug deaths ignites dispute among authors
Article URL: https://www.science.org/content/article/preprint-alzheimer-s-drug-deaths-ignites-dispute-among-authors
Comments URL: https://news.ycombinator.com/item?id=42082432
Points: 1
# Comments: 0
Show HN: I made a tiny device for automatically recording digital pianos
Hey HN!
A few years ago, I left my cushy big tech job to make hardware.
And made the device I always wanted - an automatic piano recorder!
I usually play piano improvisationally, and manually hitting record never meshed well with that. But there are always moments I wish I recorded, and now they are!
Hopefully it scratches a similar itch for some of you as well!
A few of the tech details: * built on an esp32-s3 * custom injection molded enclosure * BLE comms, sd card storage, DS1302 RTC * android & ios apps with Flutter * Shadertoy vfx support for video sharing
- Chip
Comments URL: https://news.ycombinator.com/item?id=42082430
Points: 13
# Comments: 4
The Great Salt Module Migration
Article URL: https://salt.tips/the-great-salt-module-migration/
Comments URL: https://news.ycombinator.com/item?id=42082428
Points: 1
# Comments: 0
New science fiction books of July 2024 include debut from Keanu Reeves
Article URL: https://www.newscientist.com/article/2437805-the-best-new-science-fiction-books-of-july-2024/
Comments URL: https://news.ycombinator.com/item?id=42082412
Points: 1
# Comments: 0
Gavin Newsom: California is ready to fight against unlawful actions from Trump
Article URL: https://twitter.com/GavinNewsom/status/1854572280200012139
Comments URL: https://news.ycombinator.com/item?id=42082383
Points: 9
# Comments: 1
Ask HN: Current best open-source or commercial automated LLM coding agent?
There are obviously tons of AI powered editors and IDEs out there at this point: VSCode with GitHub Copilot (or SuperMaven); Cursor; Void; Pear. I personally find it better to just directly use the web apps for ChatGPT and Claude and use regular VSCode.
But I notice that I constantly find myself in a loop where I generate code (either a whole code file or just a section of code), paste it in, and then immediately see bugs/errors/warnings from the linter (Ruff for python, eslint for typescript, etc.) in VScode and copy all the "messages" about these issues from VScode and paste them into the LLM web app as a follow up message.
Or, I might paste the output of `bun run build` or `cargo build` or whatever if the warnings don't show up in the editor. Very often these are type errors in Typescript (if I haven't been careful enough specifying exact types), or they get the API/syntax wrong for an npm/pip library (at this point, the flagship commercial LLMs seem to be pretty good at getting the standard library code mostly right in popular languages like Python/Typescript).
That is, I personally am the one "closing the loop" between the LLM and the compiler/interpreter. And of course, that's not enough by itself to fix all bugs or to ensure that your code works, because you need to really run things end-to-end with real data and look at the outputs to see that they make sense; but you can certainly catch a huge number of problems like that.
I know that a few months ago there was a lot of buzz about the demo of Devin AI, which was more of an agent that closed the loop between code generation inference and checking if the code works (or at least compiles or doesn't trigger the linter), and then can iteratively refine/fix the code until it does work, and commit the changes to your git repo when it's working with a meaningful commit message.
And I know there are at least a few open source versions of something similar, such as https://aider.chat/
I guess my question is, are any of these good enough now to use seriously in day to day work? Do they actually save time? The examples I see on the Aider website for example don't seem that appealing, because I would rather just directly use the webapp from ChatGPT or Claude directly when starting a project from scratch.
Where these projects would be most helpful to me is when I have the basic structure of the project already set up, but there are a bunch of issues and problems and I don't want to have to sit there mechanically going through all the code files and iteratively fixing them myself in a manual process. Is anyone here using a project like that in the manner I described? Is it helpful to you? If so, can you describe your workflow?
Comments URL: https://news.ycombinator.com/item?id=42082050
Points: 1
# Comments: 0
Seeking No-Code/Low-Code Solutions for Building a Goal-Oriented Task Planner
Hello HN! I’m a product designer exploring ways to create a task planner that helps prioritize and complete tasks aligned with life goals. My aim is to use it for personal productivity, guiding projects and daily tasks toward long-term objectives.
With limited coding experience, I’m curious if anyone here knows of no-code or low-code platforms or techniques that could help get this off the ground. I’d love recommendations on tools, frameworks, or even personal experiences using these methods to build similar apps.
Thanks in advance for any insights—I'm looking forward to learning from this community!
Comments URL: https://news.ycombinator.com/item?id=42082032
Points: 1
# Comments: 0
Jon Stewart told Bezos workers want fulfillment, not jobs running errands
Article URL: https://www.businessinsider.com/jon-stewart-jeff-bezos-economic-vision-revolution-obama-dinner-2022-1
Comments URL: https://news.ycombinator.com/item?id=42082029
Points: 1
# Comments: 0