Home

Linux Kernel Explorer
tanelpoder about 10 hours ago

Linux Kernel Explorer

The Linux Kernel Explorer is a web-based tool that allows users to explore the Linux kernel source code interactively. It provides a user-friendly interface to navigate the kernel's file structure, view code, and search for specific functions or variables.

reverser.dev
359 51
Summary
Ray Marching Soft Shadows in 2D (2020)
memalign about 8 hours ago

Ray Marching Soft Shadows in 2D (2020)

The article explores distance fields, a powerful technique in computer graphics that can be used for a variety of applications such as fluid simulations, collision detection, and procedural modeling. It delves into the mathematical foundations of distance fields and how they can be efficiently computed and stored.

rykap.com
132 21
Summary
Music eases surgery and speeds recovery, study finds
1659447091 about 11 hours ago

Music eases surgery and speeds recovery, study finds

Study: https://mmd.iammonline.com/index.php/musmed/article/view/111...

bbc.com
131 48
Summary
Arthur Conan Doyle explored men’s mental health through Sherlock Holmes
PikelEmi about 5 hours ago

Arthur Conan Doyle explored men’s mental health through Sherlock Holmes

The article explores how Arthur Conan Doyle's Sherlock Holmes stories delve into the topic of men's mental health, examining the detective's own psychological complexities and the broader societal attitudes towards mental well-being during the Victorian era.

scienceclock.com
115 115
Summary
Mixpanel Security Breach
jaredwiener about 9 hours ago

Mixpanel Security Breach

Mixpanel, a data analytics company, experienced a security incident that resulted in unauthorized access to some customer SMS data. The incident was detected and mitigated, and Mixpanel is working to notify affected customers and improve security measures to prevent similar incidents in the future.

mixpanel.com
110 75
Summary
The State of GPL Propagation to AI Models
jonymo about 3 hours ago

The State of GPL Propagation to AI Models

The article discusses the potential implications of the GNU General Public License (GPL) on AI models trained on code licensed under the GPL. It explores the possibility that the GPL could propagate to the AI models, potentially affecting their distribution and usage.

shujisado.org
85 97
Summary
Show HN: Era – Open-source local sandbox for AI agents
gregTurri about 10 hours ago

Show HN: Era – Open-source local sandbox for AI agents

Just watched this video by ThePrimeagen (https://www.youtube.com/watch?v=efwDZw7l2Nk) about attackers jailbreaking Claude to run cyber attacks. The core issue: AI agents need isolation.

We built ERA to fix this – local microVM-based sandboxing for AI-generated code with hardware-level security. Think containers, but safer. Such attacks wouldn't touch your host if running in ERA.

GitHub: https://github.com/BinSquare/ERA

Quick start: https://github.com/BinSquare/ERA/tree/main/era-agent/tutoria...

Would love your thoughts and feedback!

github.com
40 10
Summary
$96M AUD revamp of Bom website bombs out on launch
sam-cop-vimes about 11 hours ago

$96M AUD revamp of Bom website bombs out on launch

The article explores the increasing popularity of online gaming, particularly among young people, and the potential risks and challenges associated with this trend, including addiction, mental health impacts, and the need for regulation and parental guidance.

bbc.com
39 31
Summary
New research highlights a shortage of male mentors for boys and young men
ashishgupta2209 about 7 hours ago

New research highlights a shortage of male mentors for boys and young men

The article highlights a shortage of male mentors for boys and young men, which can have negative consequences on their development and well-being. It explores the importance of male role models and the challenges in recruiting and retaining them as mentors.

psypost.org
27 29
Summary
TPUs vs. GPUs and why Google is positioned to win AI race in the long term
vegasbrianc about 2 hours ago

TPUs vs. GPUs and why Google is positioned to win AI race in the long term

The article discusses a new chip designed specifically for AI inference, which is more energy-efficient and faster than traditional processors. It highlights the potential of this technology to revolutionize AI-powered applications and devices.

uncoveralpha.com
25 12
Summary
Show HN: Runprompt – run .prompt files from the command line
chr15m about 2 hours ago

Show HN: Runprompt – run .prompt files from the command line

I built a single-file Python script that lets you run LLM prompts from the command line with templating, structured outputs, and the ability to chain prompts together.

When I discovered Google's Dotprompt format (frontmatter + Handlebars templates), I realized it was perfect for something I'd been wanting: treating prompts as first-class programs you can pipe together Unix-style. Google uses Dotprompt in Firebase Genkit and I wanted something simpler - just run a .prompt file directly on the command line.

Here's what it looks like:

--- model: anthropic/claude-sonnet-4-20250514 output: format: json schema: sentiment: string, positive/negative/neutral confidence: number, 0-1 score --- Analyze the sentiment of: {{STDIN}}

Running it:

cat reviews.txt | ./runprompt sentiment.prompt | jq '.sentiment'

The things I think are interesting:

* Structured output schemas: Define JSON schemas in the frontmatter using a simple `field: type, description` syntax. The LLM reliably returns valid JSON you can pipe to other tools.

* Prompt chaining: Pipe JSON output from one prompt as template variables into the next. This makes it easy to build multi-step agentic workflows as simple shell pipelines.

* Zero dependencies: It's a single Python file that uses only stdlib. Just curl it down and run it.

* Provider agnostic: Works with Anthropic, OpenAI, Google AI, and OpenRouter (which gives you access to dozens of models through one API key).

You can use it to automate things like extracting structured data from unstructured text, generating reports from logs, and building small agentic workflows without spinning up a whole framework.

Would love your feedback, and PRs are most welcome!

github.com
17 1
Summary
Evaluating Uniform Memory Access Mode on AMD's Turin
zdw about 11 hours ago

Evaluating Uniform Memory Access Mode on AMD's Turin

The article evaluates the performance of Uniform Memory Access (UMA) architectures, which provide equal access times to all memory locations. It discusses the advantages and disadvantages of UMA compared to Non-Uniform Memory Access (NUMA) systems, and examines the impact of UMA on various workloads and system configurations.

chipsandcheese.com
15 0
Summary
OpenAI API user data exposed in Mixpanel security breach
donsupreme about 10 hours ago

OpenAI API user data exposed in Mixpanel security breach

OpenAI's API was affected by a security breach at Mixpanel, leading to the exposure of user data. The breach highlights the importance of secure data practices for companies relying on third-party services.

dqindia.com
14 4
Summary
Show HN: MkSlides – Markdown to slides with a similar workflow to MkDocs
MartenBE about 3 hours ago

Show HN: MkSlides – Markdown to slides with a similar workflow to MkDocs

As a teacher, we keep our slides as markdown files in git repos and want to build these automatically so they can be viewed online (or offline if needed). To achieve this, I have created MkSlides. This tool converts all markdown in a folder to slides generated with Reveal.js. The workflow is very similar to MkDocs.

Install: `pip install mkslides`

Building slides: `mkslides build`

Live preview during editing: `mkslides serve`

Comparison with other tools like marp, slidev, ...:

- This tool is a single command and easy to integrate in CI/CD pipelines.

- It only needs Python.

- The workflow is also very similar to MkDocs, which makes it easy to combine the two in a single GitHub/GitLab repo.

- Generates an index landing page for multiple slideshows in a folder which is really convenient if you have e.g. a slideshow per chapter.

- It is lightweight.

- Everything is IaC.

github.com
13 2
Summary
Docker Superpowers You Forget to Use
ndhandala about 4 hours ago

Docker Superpowers You Forget to Use

The article explores ten lesser-known features and capabilities of Docker that can significantly enhance developer productivity and streamline container management, including multi-stage builds, container-level networking, and time-based image expiration.

oneuptime.com
11 0
Summary
BBC tells staff they cannot quote Trump line removed from Reith Lecture
INGELRII about 2 hours ago

BBC tells staff they cannot quote Trump line removed from Reith Lecture

The BBC removed a line from Rutger Bregman's Reith Lecture criticizing former US President Donald Trump's corruption, sparking debate over journalistic integrity and the role of public broadcasters in holding leaders accountable.

theguardian.com
10 1
Summary
Show HN: MakeSkill – The Intelligent Skill Builder for Claude
thanhdongnguyen about 12 hours ago

Show HN: MakeSkill – The Intelligent Skill Builder for Claude

Creating high-quality skills for Claude manually is complex, requiring specific technical knowledge of the file system structure (like SKILL.md), YAML metadata configuration, and precise prompt engineering to ensure the agent behaves correctly.

MakeSkill eliminates this friction by automating the technical implementation.

Instead of writing code and configuration files from scratch, users interact with MakeSkill's AI to refine their ideas. The platform then generates the complete, optimized skill package—following all best practices—ready to be downloaded and imported directly into Claude for immediate use.

Try it: http://makeskill.cc/

makeskill.cc
9 2
Summary
Necroprinting – Dead mosquito proboscis used for high-resolution 3D printing
indy about 6 hours ago

Necroprinting – Dead mosquito proboscis used for high-resolution 3D printing

Scientists have developed a high-resolution 3D printing nozzle using the proboscis (mouthpart) of a dead mosquito, enabling the creation of extremely fine prints. This novel technique, called 'necroprinting', demonstrates the potential of using natural materials for advanced manufacturing processes.

tomshardware.com
8 0
Summary
Show HN: SyncKit – Offline-first sync engine (Rust/WASM and TypeScript)
danbitengo about 1 hour ago

Show HN: SyncKit – Offline-first sync engine (Rust/WASM and TypeScript)

SyncKit is an open-source software development kit (SDK) that simplifies the process of building real-time, collaborative applications. It provides a set of tools and APIs for developers to easily integrate synchronization and collaboration features into their web and mobile applications.

github.com
7 2
Summary
AI Agents Break Rules Under Everyday Pressure
pseudolus about 5 hours ago

AI Agents Break Rules Under Everyday Pressure

The article examines the challenges and potential risks associated with the development of advanced AI systems, particularly regarding their safety and alignment with human values. It discusses the importance of addressing these issues to ensure the responsible and beneficial deployment of AI technologies.

spectrum.ieee.org
6 0
Summary