Posts

Showing posts from April, 2025

New ask Hacker News story: Ask HN: Best AI IDE right now?

Ask HN: Best AI IDE right now? 2 by funerr | 2 comments on Hacker News. I've been using Cursor for the last couple of months but I'm feeling like I might be hitting the limits of Cursor. I'm seeing a lot of forgetting and problems with my codebase getting larger, and it having problems with my mono repo structure. 1. Is there a better AI IDE that remembers when I correct it about structural issues I have with it? 2. Is there an AI IDE that is test-first? helping me see if I break something over time? 3. Any IDEs you recommend me checking out? or tips on fixing cursor?

New ask Hacker News story: Ask HN: As an eng leader, how useful is AI-generated internal documentation?

Ask HN: As an eng leader, how useful is AI-generated internal documentation? 2 by hsiYwko | 0 comments on Hacker News. Hi HN! This past weekend, I built a tool called GitSummarize, it's an open-source ai-powered documentation tool. Given any public GitHub repository it generates high-quality documentation from the codebase using Gemini 2.5 Pro. Specifically, it tries to extract the tribal knowledge, business logic/rules embedded within codebases. Pro Tip: You can replace "hub" with "summarize" in any repository URL to access its documentation. I created this because there was a steep learning curve to understanding some of the open-source codebases out there while getting started with contributing. Having detailed documentation would have been super helpful in those situations. This project was heavily inspired by GitIngest and GitDiagram so make sure to check those out as well! Give it a try and I would appreciate any feedback! Would also love to know how us...

New ask Hacker News story: Ask HN: Did GitHub remove the raw diff

Ask HN: Did GitHub remove the raw diff 3 by withinboredom | 1 comments on Hacker News. I'm either going crazy, or GitHub removed/moved the raw diff ability. You used to be able to get a raw diff from a PR by just adding ".diff" to the url, but it appears it doesn't work anymore. I generally use this when receiving a PR and don't want to go through the hassle of checking out their branch, so I would just grab the raw diff and apply it locally. This seems to have gone away though. Is this a bug or something? Has anyone else noticed this issue and found a work around?

New ask Hacker News story: Ask HN: Looking to Break into Cybersecurity – Where Do I Start?

Ask HN: Looking to Break into Cybersecurity – Where Do I Start? 3 by OulaX | 3 comments on Hacker News. I have a degree in Computer Science and currently work as a frontend web developer. I live in a developing country where there’s no shortage of software developers who build systems for both personal and governmental use. However, many of these systems have serious gaps when it comes to security. What’s really missing here are skilled cybersecurity specialists. From a career perspective, I see this as an opportunity to grow locally and contribute where there’s a real need. That said, I’m not sure how or where to begin. I’ve done some research, but getting started in cybersecurity doesn’t seem as straightforward as in other fields. I’d really appreciate any advice or tips on how to get started and move in the right direction!

New ask Hacker News story: Novel Logic-Enhanced LLM for Improved Symbolic Reasoning

Novel Logic-Enhanced LLM for Improved Symbolic Reasoning 3 by N3Xxus_6 | 0 comments on Hacker News. I’m experimenting with a novel approach that integrates symbolic logic directly into a transformer’s attention mechanism. By using a custom spaCy-based logic parser, I generate a “logic mask” that guides the self-attention layers to focus on logical constructs. In preliminary tests with a fine-tuned LLaMA 3 8B model, this method has shown promising improvements on symbolic reasoning tasks (e.g., achieving around 62% on the FOLIO dataset). I’m eager to hear thoughts and suggestions from the community on further refining this approach. Also please note I don’t have a PhD nor masters in machine learning. Happy to take any criticism good or bad. :) https://ift.tt/AGKrW0y

New ask Hacker News story: For a solo funder, I think social is to connect on the internet

For a solo funder, I think social is to connect on the internet 4 by jeyzolo | 1 comments on Hacker News. As an independent developer, I write code at home every day. I have been wondering if I am too out of the market and want to go out. Thinking of my social scope, it seems that my social scope is about housewives and church friends, and it is actually difficult to get in touch with more people. I shot on Twitter, etc., communicating more with people on social media may be more important.

New ask Hacker News story: Ask HN: Which Opens Source Software have the sexiest code?

Ask HN: Which Opens Source Software have the sexiest code? 5 by milkoolong | 1 comments on Hacker News. I heard reading well-written code can improve my skills. Instead of reading top-rated projects on GitHub, which I do, I thought to ask the community to share their favorite OSS they believe to have examplary code.

New ask Hacker News story: Ask HN: Should you launch your stupid ideas too?

Ask HN: Should you launch your stupid ideas too? 2 by anon115 | 2 comments on Hacker News.

New ask Hacker News story: Ask HN: Does Collapsing an HN Thread in a Popular story spike your CPU use?

Ask HN: Does Collapsing an HN Thread in a Popular story spike your CPU use? 4 by cleverpatrick | 0 comments on Hacker News. For popular threads with a lot of comments, collapsing a top comment leads to high CPU usage and can cause browsers (I tried in Chrome and Vivaldi) to freeze up. For example, this very popular thread: https://ift.tt/BN2ArVc If you collapse the top comment, I see a huge spike in CPU and my system freezes temporarily. Is it just me?

New ask Hacker News story: Why does every site's search now insist on giving me what I don't search for?

Why does every site's search now insist on giving me what I don't search for? 2 by sathackr | 0 comments on Hacker News. Google ignores "must have" quotes Zocdoc insists on giving me appointments weeks away even when I set a date range Amazon insists on showing me products that they can't deliver tomorrow. What happened to deterministic search parameter results? It's like every search function now just take what I ask for as a suggestion and then ignores it.

New ask Hacker News story: Ask HN: Best books written on “How to think”?

Ask HN: Best books written on “How to think”? 3 by r_singh | 2 comments on Hacker News. I feel like talking about how to think is going to be a bigger topic of discussion going forward now that we have AI, and dependence on software is really going to the next level — so since I've always gotten such amazing recommendations on HN, I had to ask this here

New ask Hacker News story: Ask HN: Who wants to be hired? (April 2025)

Ask HN: Who wants to be hired? (April 2025) 14 by whoishiring | 144 comments on Hacker News. Share your information if you are looking for work. Please use this format: Location: Remote: Willing to relocate: Technologies: Résumé/CV: Email: Please only post if you are personally looking for work. Agencies, recruiters, job boards, and so on, are off topic here. Readers: please only email these addresses to discuss work opportunities. There's a site for searching these posts at https://ift.tt/tedFixw .

New ask Hacker News story: Ask HN: Go libraries for managing Docker container pools and executing commands?

Ask HN: Go libraries for managing Docker container pools and executing commands? 2 by magundu | 0 comments on Hacker News. I’m developing a system in Go that maintains a fixed pool of Docker containers (e.g., 10) running a specific image (like ‘node’), where each container remains alive (using a command like tail -f) to be ready for executing arbitrary commands via docker exec. The system tracks the workload of each container, distributes commands to the least loaded one, and monitors container health to automatically restart or replace unhealthy instances. I’m aware of the official Docker Go SDK (github.com/docker/docker/client) for managing containers, but I’m curious if there are any higher-level tools or libraries in Go that provide additional support for scheduling, load balancing, or enhanced health monitoring of containers in such a setup. Has anyone built or used libraries that streamline this kind of container orchestration and command execution? Any insights, recommendatio...

New ask Hacker News story: Ask HN: How do you make a living contributing to and/or creating OSS projects?

Ask HN: How do you make a living contributing to and/or creating OSS projects? 18 by Brysonbw | 15 comments on Hacker News. How would one go about being a 'rogue' OSS contributor so to speak? Live off of donations, bounties, hackathons, ect?

New ask Hacker News story: Ask HN: What is the benefit of using MCP over a dictionary of functions?

Ask HN: What is the benefit of using MCP over a dictionary of functions? 3 by beneadie97 | 1 comments on Hacker News. I'm really confused with the MCP hype. I looked through their docs for quick start and it looks like more work and code than doing it simply with a dictionary. I feel I must be missing something here. Could someone please elaborate on why it is useful?

New ask Hacker News story: Corey Booker breaks Senate floor speech record

Corey Booker breaks Senate floor speech record 30 by leecarraher | 2 comments on Hacker News.

New ask Hacker News story: Ask HN: Who is hiring? (April 2025)

Ask HN: Who is hiring? (April 2025) 48 by whoishiring | 111 comments on Hacker News. Please state the location and include REMOTE for remote work, REMOTE (US) or similar if the country is restricted, and ONSITE when remote work is not an option. Please only post if you personally are part of the hiring company—no recruiting firms or job boards. One post per company. If it isn't a household name, explain what your company does. Please only post if you are actively filling a position and are committed to responding to applicants. Commenters: please don't reply to job posts to complain about something. It's off topic here. Readers: please only email if you are personally interested in the job. Searchers: try https://ift.tt/BJ7IUlq , https://ift.tt/zrin1LF , https://hnhired.fly.dev , https://ift.tt/u4qEy30 , https://ift.tt/JSVcAuP , or this (unofficial) Chrome extension: https://ift.tt/PzlhnGw... . Don't miss these other fine threads: Who wants to be hired? https://ift.t...

New ask Hacker News story: Ask HN: Are Squarespace and Wix sites worth it?

Ask HN: Are Squarespace and Wix sites worth it? 2 by LouisLazaris | 0 comments on Hacker News. I’ve been involved in web dev in different forms for 20 years, but I’ve never done anything with these types of websites. My questions are: * When you register a domain with them, is the domain legally yours? * Are there any SEO penalties for using these apps to build websites? Does anyone own a website or client site hosted on Squarespace or similar that’s ranking high on Google? I can see the benefit for developers but I’m wondering about the benefits for clients.