HR Tech News
Software now touches every part of how companies hire, pay, and manage people. This section gathers news on HR platforms, recruiting tools, payroll and benefits systems, and the growing use of AI in workforce decisions. It is aimed at HR professionals, founders, and anyone curious about the technology behind modern workplaces.
Coverage commonly includes funding and product news from HR software vendors, AI screening and interviewing tools entering the hiring process, and platforms that manage global payroll and contractor compliance. Studies and rules addressing bias in automated hiring decisions come up regularly as the technology spreads.
The stakes are high because these systems influence who gets hired, how much people are paid, and how performance is judged. HR leaders selecting software, vendors watching competitors, and employees who want to understand the systems evaluating them all have reasons to follow this space.
What job interviews taught me about Kubernetes
2026-06-15Drawing from recent conversations with multiple engineering teams, the author shares key insights into the tech industry's actual adoption of Kubernetes. The piece explores the notable gap between how companies advertise Kubernetes skills in job descriptions and how they practically utilize the technology.
Why I email complete strangers
2026-06-15A recent discussion highlights the positive impact of sending sincere, appreciative emails to online creators and complete strangers to spread digital kindness. By bypassing toxic comment sections to offer genuine praise, senders can significantly brighten a recipient's day without expecting a reply. This simple practice provides a refreshing alternative to typical online interactions and fosters a much-needed culture of gratitude.
Bitsy
2026-06-15The indie game engine Bitsy is praised by its community for its refreshing retro pixel art aesthetic and its ability to create charming, story-driven experiences. While users enjoy making small games with the tool, some note that its simplicity can become frustrating for larger, text-heavy projects. Readers frequently compare the engine to similar alternative creative platforms like Pico-8 and Playdate's Pulp.

What happened to nerds?
2026-06-15The author reflects on the brilliant, curious, and eccentric nerds who originally shaped the tech industry. The piece questions what has happened to these thoughtful individuals as the sector has evolved. By contrasting the pioneers of the past with today's environment, it explores the broader cultural shift that has transformed modern technology.
What every coder should know about gamma (2016)
2026-06-15John Novak's widely read 2016 blog post breaks down the complex mathematics and history of gamma correction in digital imaging. The article explains why a fundamental understanding of gamma is crucial for programmers to ensure accurate color blending, rendering, and overall visual fidelity in their software.

21 years and counting of 'eight fallacies of distributed computing' (2025)
2026-06-15Despite over two decades of technological progress, the eight classic fallacies of distributed computing continue to challenge software developers today. This piece revisits these persistent, false assumptions about network reliability and performance to explain what they are and how they still impact modern system design.

CrankGPT
2026-06-15CrankGPT is a human-powered, fully private AI system designed to operate completely offline. Users can run local AI models anywhere by manually cranking a device to generate the necessary power.
Launch HN: Drafted (YC P26) – Models for residential architecture
2026-06-15Y Combinator-backed startup Drafted has launched an AI tool designed to simplify the schematic design phase of residential architecture for everyday users. By bridging the gap between complex professional design software and casual users, the platform generates accessible and purposeful home layouts. The company plans to eventually expand its capabilities to include advanced buildability features such as structural engineering, electrical planning, and material cost estimates.
Openrouter Fusion API
2026-06-15Openrouter has introduced its new Fusion API, which enhances AI responses by turning prompts into multi-model deliberations. The platform is offering this tool completely free of charge, with zero costs for both input and output tokens. It also features a massive one million token context window to support extensive data processing.

Show HN: Discover Wikipedia articles popular on Hacker News
2026-06-15A new project showcased on Hacker News provides a centralized hub for discovering the platform's most popular community content. The tool aggregates trending Wikipedia articles, top YouTube videos, and Hall of Fame entries alongside the standard news reader. This dashboard offers users a streamlined way to explore and revisit the most notable media and discussions shared by the community.

Write for One Person
2026-06-15Based on reader discussions of the article Write for One Person, treating a broad audience as a single individual can lead to transformative career opportunities and deeper connections. The conversation also evolves into a comprehensive guide for overcoming public speaking anxiety, offering detailed strategies like rigorous rehearsals, utilizing presenter notes, and managing technical setups to deliver confident presentations.
TorchCodec 0.14: HDR Video Decoding for CPU and CUDA, and Fast Wav Decoder
2026-06-15PyTorch has released version 0.14 of TorchCodec, its media decoding and encoding library. The new update introduces HDR video decoding support for both CPU and CUDA architectures. Additionally, the release includes a newly optimized fast WAV decoder to enhance audio processing workflows.
Show HN: Kage – Shadow any website to a single binary for offline viewing
2026-06-14Kage is a new tool that allows users to archive any website into a single binary file for offline viewing. It creates this standalone file by shadowing the target site and automatically stripping out all JavaScript.
Firewood Splitting Simulator
2026-06-14A newly released web project called Firewood Splitting Simulator allows users to chop virtual logs in an interactive 3D environment. Built using the Three.js graphics library, the experience turns a mundane chore into a visually satisfying digital escape. Users can access the relaxing simulation directly within their browser without needing to download any additional software.

Your ePub Is fine
2026-06-14Adobe continues to alienate users who are forced to rely on its industry-standard software due to a lack of viable alternatives. The company's ongoing technical issues, such as incorrectly flagging valid ePub files as corrupted, only add to this widespread frustration.
How to earn a billion dollars
2026-06-14Readers are debating Paul Graham's article on building billion-dollar startups, with critics arguing his exponential growth model ignores market limits and the negative externalities of companies like Meta and Uber. In response, defenders dismiss these critiques as coming from biased pundits, maintaining that users and investors remain largely satisfied with these services despite the alleged social harms.
Rio de Janeiro's "homegrown" LLM appears to be a merge of an existing model
2026-06-14Rio de Janeiro recently claimed to have trained an original 397B parameter language model for the city. However, the developers of the underlying Nex model revealed that the supposedly homegrown AI is actually just a combination of existing weights. Specifically, Rio-3.5-Open is a direct element-wise merge of the Nex model and the official Qwen 3.5 base model.

Formal methods and the future of programming
2026-06-14This article examines the future of formal methods in software development. It highlights a retrospective from Jane Street, reflecting on the organization's long-standing disinterest in formal verification techniques over the past two and a half decades.
Ask HN: What are you working on? (June 2026)
2026-06-14The solo developer behind the city-builder game Microlandia reported to the Hacker News community that the indie title has sold nearly 10,000 copies since its launch. The creator is now collaborating with freelance artists to improve the visuals while adding complex new mechanics for energy modeling and universal basic income. Readers responded with strong support, offering technical help and asking detailed questions about the game's economic simulations and distribution process.

The only scalable delete in Postgres is DROP TABLE
2026-06-14Executing large DELETE operations in PostgreSQL creates unnecessary overhead instead of efficiently freeing up resources. For scalable data removal, developers should restructure their databases to utilize the much more efficient DROP TABLE or TRUNCATE commands.