frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

.agt – The Agent Namespace

https://agtnames.substack.com/p/introducing-agt
2•danschmitz•8m ago•1 comments

Tiny e-readers aren't small Kindles. They're a different bet

https://www.readme.club/news/tiny-e-readers-aren-t-just-small-kindles
4•billybuckwheat•9m ago•0 comments

Unix Was Right. We Made Linux Too Complicated [video]

https://www.youtube.com/watch?v=wmmsdT93ils
2•jamesgill•16m ago•0 comments

This California Educational Juggernaut Doesn't Need the SAT

https://www.nytimes.com/2026/09/16/opinion/university-of-california-sat.html
2•like_any_other•18m ago•1 comments

Spectral AI Architecture: Executive Summary and Core Concepts

https://github.com/srdwy99m5j-lab/glowing-rotary-phone
2•paskinz69•19m ago•0 comments

What Is LPO, NPO, CPO? Knowledge of Optical Interconnect Technologies

https://www.fiber-mart.com/news/what-is-lpo-npo-cpo-knowledge-of-optical-interconnect-technologie...
2•peter_d_sherman•20m ago•0 comments

Ask A Monk – A digital wilderness for thoughts with no immediate answer

https://askamonk.online
2•13613288957•22m ago•0 comments

Kubernetes v1.37: Hardening emptyDir and bind mounts

https://kubernetes.io/blog/2026/09/16/kubernetes-v1-37-hardening-container-storage/
2•iamsyr•28m ago•0 comments

Fender Is Making Enemies with a Messy Fight over Its Iconic Strat

https://www.bloomberg.com/news/features/2026-09-17/fender-takes-on-the-electric-guitar-industry-o...
2•ilamont•32m ago•1 comments

Show HN: PortButler – send files from macOS to a device with no way to receive

https://portbutler.sshlab.dev
4•swq115•34m ago•0 comments

How often people say a habit, therapy, diet or supplement changed their life

https://www.jeravalue.com/en/life-changing
1•nreece•37m ago•0 comments

Fingerprinting Network Honeypots with Weighted Behavioral Scoring Engine

https://meetcyber.net/fingerprinting-network-honeypots-with-weighted-behavioral-scoring-engine-86...
2•ls1911•42m ago•0 comments

Claude Code from Source

https://claude-code-from-source.com/
13•pykello•42m ago•2 comments

SEC Issues "Innovation Exemption" to Facilitate Trading of Tokenized NMS Stock

https://www.sec.gov/newsroom/press-releases/2026-90-sec-issues-innovation-exemption-facilitate-tr...
3•BiraIgnacio•43m ago•0 comments

Hackers Used Anthropic's Claude to Break into OpenAI

https://www.wsj.com/tech/ai/hackers-used-anthropics-claude-to-break-into-openai-b40ba883
5•impish9208•44m ago•1 comments

Jev means structured output is interesting again

https://www.seangoedecke.com/jev-means-structured-output-is-interesting-again/
4•iacguy•45m ago•0 comments

Hypercomb – AI open software platform

https://hypercomb.io
2•jwizestackz•47m ago•0 comments

Type Declaration Syntax

https://citrons.xyz/journal/2026-09-09
2•birdculture•50m ago•0 comments

Telstra outage: The night a network decided the year was 2006

https://www.netnod.se/blog/telstra-outage-night-network-decided-year-was-2006
4•TMWNN•51m ago•0 comments

Goose: 1.16x faster than C++ and 1.12x than safe Rust, while memory safe

https://github.com/aardappel/goose/tree/master
22•bobbydigitales•51m ago•8 comments

Today we're releasing Helix 2.5

https://twitter.com/Figure_robot/status/2100657350952779925
3•MrBuddyCasino•54m ago•0 comments

AI agents can modify themselves without humans telling them to do so

https://www.theregister.com/security/2026/09/16/ai-agents-can-modify-themselves-without-humans-te...
2•myth_drannon•1h ago•1 comments

When A.I. Becomes an Enemy [video]

https://www.youtube.com/watch?v=wzgkc6Iegx8
1•danielmorozoff•1h ago•2 comments

Lakera – Test your AI hacking skills

https://play.lakera.ai/agent-breaker
3•nmarinov•1h ago•0 comments

From Operations to a Robot Arm

https://huggingface.co/blog/TheMuz/from-operations-to-a-robot-arm
3•gmays•1h ago•0 comments

GrapheneOS accuses Google of gatekeeping Android 17 features and security fixes

https://www.androidauthority.com/grapheneos-android-17-qpr1-security-patches-comments-3712218/
12•vilasa•1h ago•1 comments

Apprentice: A Slim, Extensible Coding Harness (Written in Common Lisp)

https://github.com/skarnati20/apprentice
4•skarnati20•1h ago•2 comments

Getting Outbound Email to Work on DigitalOcean

https://mailfully.com/blog/digitalocean-blocks-smtp-ports-ses-2587
4•mailfully•1h ago•0 comments

Anthropic says Claude now leads a quarter of work building its next AI models

https://www.businesstimes.com.sg/companies-markets/telcos-media-tech/anthropic-says-claude-now-le...
4•dr_scully•1h ago•1 comments

Mini-Jev – typesafe's Jev implemented on top of an LLM locally

https://github.com/r-ms/mini-jev
3•phyrex•1h ago•0 comments
Open in hackernews

Goose: 1.16x faster than C++ and 1.12x than safe Rust, while memory safe

https://github.com/aardappel/goose/tree/master
22•bobbydigitales•51m ago

Comments

MiroslavPokorny•33m ago
What does Goose change about memory management ?
kenferry•15m ago
A lot - title could probably use editing. The language has no heap, only stack memory, so the only deallocation is returning from a call stack frame.
backlands•22m ago
> Goose looks familiar like C or Rust, and is built on one idea: there is no heap

So it looks like it restricts the memory management to 100% scope based. I expect that makes a lot of designs for programs not translate to it as well as they fit in Rust or Java (for example). There are a bunch more constraining design choices they list further down:

> - Nothing ever moves

> - ... A string, an array of strings, a record with variable-size fields and an array of those records are each one contiguous block with no pointer in it

I'll have to look a bit deeper to decide if it's feasible to write many things in this language.

bobbydigitales•6m ago
What kinds of things do you think might not translate well?
tombert•3m ago
Not the OP, but I'm thinking about like closures?

Say you wanted to make a Node.js framework with callbacks that react to an event. The callback might be a closure that captured some of its surrounding variables. At that point, any of the captured variables are not trivially stack-allocated.

You might be able to do something similar to what Rust does with moving though.

skew-aberration•42s ago
You could predefine your event handlers within your context, then call 'enter framework' and pass your event handlers as arguments. this is continuation passing style
skew-aberration•2m ago
You could write everything if you refactor to continuation passing style
dadoum•20m ago
I am researching a similar idea but which allowed moves if the compiler was able to fix the resulting structure, but mine will probably stay a small side project for a long time.