frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

MCP server for Faker-style mock data and hosted mock endpoints for AI agents

https://jsonplace.com/docs/mcp
1•fatihmgenc•37s ago•1 comments

Solid Pine Single Bed: Durable for Long-Term Rentals

https://dreamhomestore.co.uk/collections/bed-frames
1•Stevencoles89•3m ago•1 comments

SIMD implementation and Kotlin checkcast incompatibility

https://gryt.io/til/2026-03-12-simd-kotlin-checkcast-incompatibility/
1•synapticrob•4m ago•0 comments

I made a real BMO local AI agent with a Raspberry Pi and Ollama [video]

https://www.youtube.com/watch?v=l5ggH-YhuAw
1•vinhnx•4m ago•0 comments

OpenClaw has 247k stars and no governance layer

https://www.leanmcp.com/blog/you-think-youre-using-ai
1•jialu1•4m ago•0 comments

I upgraded my BMO local AI agent's voice and brain [video]

https://www.youtube.com/watch?v=W5bdM9yIEiY
1•vinhnx•5m ago•0 comments

The Usefulness of Useless Knowledge (1939) [pdf]

https://www.ias.edu/sites/default/files/library/UsefulnessHarpers.pdf
1•bookofjoe•7m ago•1 comments

Optimizing for non-uniform memory and cache effects in Stockfish

https://anemato.de/blog/nuca
1•anematode•8m ago•0 comments

Request for developer feedback: focusgroup RFC

https://developer.chrome.com/blog/focusgroup-rfc
1•agos•12m ago•0 comments

The Film That Should Be Nominated

https://animationobsessive.substack.com/p/the-film-that-should-be-nominated
1•vinhnx•13m ago•0 comments

Wiggmap

https://wiggmap.com/
2•wiggmap•17m ago•1 comments

AI job search with voice interview coaching and deep employer research

https://www.tumblr.com/login_required/wonderfullysacredtrap
1•Uniqu•18m ago•0 comments

Show HN: Wikimetron – Surface hidden sensitivity and risk in Wikipedia

https://github.com/opinionscience/wikimetron2.0
1•hjbarraza•19m ago•0 comments

The Structure of Engineering Revolutions

https://webdirections.org/blog/the-structure-of-engineering-revolutions/
1•BerislavLopac•25m ago•0 comments

How to Send Email to Space

https://buttondown.com/blog/email-in-space
1•maguay•25m ago•0 comments

An Ode to Bzip

https://purplesyringa.moe/blog/an-ode-to-bzip/
2•Expurple•31m ago•0 comments

AI is supercharging fake work

2•rxm233•31m ago•0 comments

Open Source PLFM Radar. Up to 20Km Range

https://hackaday.io/project/205190-open-source-plfm-radar-up-to-20km-range
2•ikbdsk•31m ago•0 comments

Celebrating Interesting Flickr Technologies

https://medium.com/@brightcarvings/celebrating-flickr-technology-3c93c8ddecc2
3•steerpike•32m ago•1 comments

Display of Pattern Formation Using the Gierer-Meinhardt Model

https://itp.uni-frankfurt.de/~gros/StudentProjects/Projects_2020/projekt_fischer_mrozinski/#heading2
1•o4c•32m ago•0 comments

KindScreen – a parent-reviewed catalog of safe YouTube for kids

https://kindscreen.org/
2•marcogarces•34m ago•1 comments

3D-Knitting: The Ultimate Guide

https://www.oliver-charles.com/pages/3d-knitting
11•ChadNauseam•37m ago•0 comments

Show HN: Refund and Arbitration Protocol for Agents

https://www.x402r.org/
1•AliAbdoli•40m ago•0 comments

The Isolation Trap: Erlang

https://causality.blog/essays/the-isolation-trap/
2•enz•42m ago•0 comments

Heinzel: AI-powered sysadmin ruleset. Now supports OpenCode and Ollama models

https://github.com/wintermeyer/heinzel
2•wintermeyer•43m ago•0 comments

Reliable Software in the LLM Era

https://quint-lang.org/posts/llm_era
2•mempirate•45m ago•0 comments

Pray Focus: I built an app that locks distracting apps until you finish praying

https://www.prayfocus.app/en
2•marijan_div•45m ago•1 comments

Most read-later apps are beautifully organized failure

1•northerndev•51m ago•1 comments

Someone just open sourced the OS for running company with zero employees

https://github.com/onera-app/onera-operator
2•shreyaspapi•52m ago•1 comments

Everyone's Worried About Taiwan. The Real Vulnerability Is in Wales

https://medium.com/@tbelbek/everyones-worried-about-taiwan-the-real-vulnerability-is-already-in-n...
1•rdstrtwlkr•56m ago•0 comments
Open in hackernews

Show HN: Aegis – A security-first programming language for AI agents

https://github.com/RRFDunn/aegis-lang
4•RRFDunn•1d ago

Comments

AgeOfMortis•1d ago
Can this work with MCP servers or be integrated easily with Claudecode/other agents?
RRFDunn•1d ago
Hey, yes Aegis has MCP support. MCP tools are declared in the syntax with the provider, and the transpiler handles the client calls, audit events, and capability checks automatically. There's also A2A (Agent-to-Agent) support for inter-agent communication. As for integration with something like claudecode/gpt/cursor, should be fairly straightforward, there's a full language spec and syntax reference in the docs folder that LLMs can use as context.
rubbr•1d ago
Interesting
ChadGridlock•1d ago
Nice, I'm going to try this out.
RRFDunn•1d ago
Sweet! Just read over the docs on github and pip install aegis-lang on your computer whenever you're ready. Any questions/comments/general feedback you may have feel free to reach out
Nsane12•1d ago
So this prevents prompt injections?
RRFDunn•1d ago
Yes, any external input (user prompts, tool outputs, API responses) is automatically wrapped in tainted[str]. You can't use it in a query, command, or f-string until you explicitly sanitize it. The runtime fundamentally blocks it.
Mooshux•1d ago
MCP integration is the obvious next question. The language-level guardrails solve execution safety but the credential problem is still orthogonal. Even with Aegis, the agent needs API keys to call external services, and those keys still have to come from somewhere with some scope. Would be interesting to see how Aegis handles the "what does this agent actually have permission to do at the API layer" question vs just the "what code can it run" question.
RRFDunn•1d ago
Good take, and you're right that credential management is a separate layer from code-level permissions. Right now Aegis handles the "what code can it run" side: capability declarations control which operations a module can perform, and MCP tool outputs are automatically wrapped in tainted so they can't be used unsanitized. But the "what API keys does this agent have access to" question is more about infrastructure than language design. That said, the memory_access construct with encryption and scope enforcement could possibly be extended to handle credential storage, keys stored in a memory scope with read: [api_key] restrictions would only be accessible to modules that declare that scope. Definitely an area worth exploring further. Thx for the feedback