| News Nug |
|---|
|
PuTTY has a new website Published: 2025-08-16 | Origin: Hacker News PuTTY is a free SSH client for Windows and Unix, featuring an xterm-style terminal emulator. It is primarily developed and maintained by Simon Tatham. Users can access the latest version on the download page or visit the main website for more information. |
|
Best Practices for Building Agentic AI Systems Published: 2025-08-16 | Origin: Hacker News The author has been experimenting with AI agents in UserJot, a platform for feedback, roadmaps, and changelogs. The goal is to create sophisticated agent systems that can analyze customer feedback at scale, identify patterns, and automatically generate changelog entries without manual effort. After extensive testing and reverse engineering tools, a basic beta version has been released. Key findings from building these agent systems include the effectiveness of a two-tier structure: Primary Agents manage conversations and task delegation, while Subagents execute specific |
|
Timeout Middleware in Go: Simple in Theory, Complex in Practice Published: 2025-08-15 | Origin: /r/programming Timeouts are essential for HTTP servers to manage client resource usage and safeguard against DoS attacks. A developer encountered challenges while trying to implement a longer timeout for a file upload endpoint in Go, realizing that the typical solutions failed silently, which frustrated users and developers alike. The article advocates for building a robust, chainable timeout middleware using Go's middleware pattern. Middleware allows HTTP handlers to be wrapped with additional functionalities, promoting modular, maintainable code and enabling various behaviors before and after the original handler executes, |
|
The future of large files in Git is Git Published: 2025-08-15 | Origin: Hacker News The content discusses the challenges Git faces with large files, which can bloat storage, slow down cloning, and disrupt Git forges. In response, GitHub introduced Git LFS in 2015, an extension that addresses these issues but also adds complexities and costs. Concurrently, the Git project has been developing its own strategies for handling large files, particularly through a feature called partial clones, introduced in 2017. Partial clones allow users to skip downloading large files initially, significantly improving cloning speed |
|
Lazy-brush – smooth drawing with mouse or finger Published: 2025-08-15 | Origin: Hacker News This JavaScript library enables users to draw smooth curves and straight lines using a mouse, finger, or any pointing device. It includes a feature that requires a minimum distance before the brush moves towards the cursor, allowing for customizable lag. The lag can range from none to infinite. Additionally, users can adjust the size of the brush, though this does not impact the lazy-brush functionality. |
|
OpenBSD is so fast, I had to modify the program slightly to measure itself Published: 2025-08-15 | Origin: Hacker News The benchmark conducted by Jann Horn reveals that Linux performs unexpectedly slowly compared to OpenBSD, which is significantly faster. The test involved creating an extra thread while two existing threads created 256 sockets. The author had to modify the program for OpenBSD due to the limited precision of the time utility. While the results from Linux were disappointing, OpenBSD demonstrated superior performance. Although the systems tested were not identical, they were comparable. The author hints that the code contains clues related to performance, and expresses curiosity |
|
Show HN: Edka – Kubernetes clusters on your own Hetzner account Published: 2025-08-15 | Origin: Hacker News Edka offers production-ready Kubernetes clusters on your own Hetzner account, providing full access and the potential to reduce cloud costs by up to 70% compared to AWS or GCP. The platform facilitates easy management and scaling of workloads through a lightweight control plane, with simple subscription-based pricing that covers automation, upgrades, and backups, with one free cluster available. Users can seamlessly detach from Edka while retaining their resources. Edka allows for quick deployment of production-ready k3s Kubernetes clusters, |
|
What CTOs Really Think About Vibe Coding Published: 2025-08-15 | Origin: /r/programming The article discusses the current reality of AI's impact on software development, particularly concerning a trend termed "vibe coding." While AI was expected to enhance developer productivity, many junior developers are becoming "prompt engineers," and senior developers are increasingly tasked with cleaning up unreliable AI-generated code. The analysis is based on insights from 18 CTOs and engineering leaders, who reveal that, although vibe coding can accelerate feature delivery, it results in significant technical debt, harming long-term sustainability. The survey findings indicate that |
|
New trend: extreme hours at AI startups Published: 2025-08-15 | Origin: /r/programming In a bonus issue of the Pragmatic Engineer Newsletter, Gergely discusses the controversial "996" work culture—working from 9am to 9pm, six days a week—previously common in Chinese tech but banned since 2021. While such extreme hours are rejected in the US and outlawed in Europe due to health concerns, some AI startups, like Cognition, are adopting similar practices, expecting employees to work over 80 hours a week. This intense work culture is driven |
|
Passkey support for ASP.NET Core identity: Exploring the .NET 10 preview - Part 6 Published: 2025-08-15 | Origin: /r/programming In the sixth installment of the series "Exploring the .NET 10 preview," the focus is on the new passkey support in ASP.NET Core Identity introduced in .NET 10 preview 6. The article discusses updates to the Blazor template related to this feature, specifically how passkeys allow secure, password-less authentication based on FIDO standards, utilizing methods like biometrics or PINs. Although passkeys offer enhanced security over traditional passwords, they come with usability challenges, particularly regarding access across |
|
Occult books digitized and put online by Amsterdam’s Ritman Library Published: 2025-08-15 | Origin: Hacker News In August 2025, it was announced that the Ritman Library in Amsterdam, which houses a significant collection of pre-1900 books on alchemy, astrology, magic, and other occult subjects, has completed the digitization of 2,178 rare texts thanks to a donation from author Dan Brown. This project, called “Hermetically Open,” allows visitors to access these texts online, although many are written in languages like Latin, German, Dutch, and French. English speakers can filter |
|
Do Things That Don't Scale (2013) Published: 2025-08-15 | Origin: Hacker News In July 2013, Y Combinator's advice emphasized the importance of doing things that don't scale for startup founders. Many aspiring entrepreneurs mistakenly believe that startups grow organically once a product is launched. However, success often requires active efforts from founders to drive growth. A key example is Stripe, which is known for its aggressive user acquisition tactics. Instead of passively waiting for users to adopt their service, the Collision brothers would personally engage potential users by setting them up on the spot. This process reflects |
|
GitHub adds support for decades-old BMP & TIFF... but still won't recognize WebP & AVIF as images. Published: 2025-08-15 | Origin: /r/programming The content expresses appreciation for community feedback and highlights a recent update that allows users to upload a broader range of file types for issues, pull requests, discussions, and comments. New supported formats include BMP and TIFF, with ongoing work to add support for WebP, while AVIF support is also being considered. The message encourages users to share their thoughts on these updates and notes that there were multiple errors during loading that required reloading the page. |
|
I accidentally became PureGym’s unofficial Apple Wallet developer Published: 2025-08-15 | Origin: Hacker News The author describes a frustrating experience trying to enter PureGym using a mobile app. Upon arrival, they struggle with poor signal and WiFi connection, which delays access as the app takes a long time to load. After nearly a minute, they finally scan a QR code to enter, reflecting on how this daily ritual amounts to several minutes wasted each week just for entry. The contrast is stark with more efficient systems like Amazon Fresh. Additionally, the author points out a security inconsistency: the gym employs an |
|
Just a nice shell script Published: 2025-08-15 | Origin: /r/programming Despite its flaws, using `curl -LsSf | sh` remains a popular method for installing developer tools, as installer scripts can be quite effective. The article discusses "uv," an enhanced version of what cargo-dist offers, highlighting its blend of style, humor, and utility, including unique features like executing a base64 inlined binary. The author is considering creating a UV-based installer for Python CLI programs and reflects on the existing curl-based scripts. Cargo-dist is noted as the primary tool in the |
|
South Park and the greatest TV contract clause Published: 2025-08-15 | Origin: Hacker News The latest edition of SatPot discusses the business history behind "South Park" and the impressive financial success of its creators, Matt Stone and Trey Parker, who have each reached a net worth of $1.2 billion. This milestone comes in the wake of a significant development deal with Paramount and a $1.5 billion streaming agreement with Paramount+. The duo, known for their irreverent humor and cultural commentary since the show's debut in 1997, continues to produce "South Park" themselves |
|
Teenage Engineering's free computer case Published: 2025-08-15 | Origin: Hacker News The computer–2 is a compact mini-ITX computer case made from a single sheet of plastic, featuring living hinges and snap hooks for easy assembly—simply push-click the motherboard into place without screws. It accommodates a mini-ITX motherboard, an SFX power supply, and a dual-slot graphics card up to 180mm. Note that the case is sold separately; computer components must be purchased elsewhere. |
|
A gigantic jet caught on camera: A spritacular moment for NASA astronaut Published: 2025-08-15 | Origin: Hacker News NASA astronaut Nichole Ayers captured a rare phenomenon known as a gigantic jet on July 3, 2025, while aboard the International Space Station. This event is a type of Transient Luminous Event (TLE), specifically a powerful electrical discharge that extends from thunderstorm tops into the upper atmosphere. Gigantic jets typically form during turbulent conditions in thunderstorms and create an electrical bridge between the clouds (about 20 km up) and the atmosphere (around 100 km). Unlike sprites, which |
|
Time to End Roundtripping by Big Pharma Published: 2025-08-15 | Origin: Hacker News The content lists several articles on diverse subjects, including climate change, Myanmar's history, health disparities related to tobacco laws, and the UN Charter. 1. **Climate Change**: An article titled "Global Climate Agreements: Successes and Failures" discusses the effectiveness of global initiatives to combat climate change, authored by Lindsay Maizland and Clara Fong, dated January 21, 2025. 2. **Myanmar**: "Myanmar’s Troubled History" presents an insightful overview of |
|
From epoll to io_uring’s Multishot Receives — Why 2025 Is the Year We Finally Kill the Event Loop Published: 2025-08-14 | Origin: /r/programming Sure! Please provide the content you'd like me to summarize. |