frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Large Language Models Develop Novel Social Biases Through Adaptive Exploration

https://openreview.net/challenge?redirect=%2Fforum%3Fid%3Dpc7fqaOcAH
40•paimapi•1h ago•10 comments

Google DeepMind Releases AlphaGenome Atlas

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/alphagenome-atlas/
466•utiiiD•8h ago•112 comments

Navier-Stokes – Tristan Buckmaster [pdf]

https://cims.nyu.edu/~tristanb/statement.pdf
1068•procedurecall•17h ago•467 comments

On the Navier–Stokes Millennium Prize Problem

https://openai.com/index/navier-stokes-solution/
1013•tedsanders•5h ago•842 comments

Kimi K3 (2.8T) at 1 token/s on a MacBook Pro, streamed from four SSDs

https://github.com/argonautlabsai/deltafin
183•Argonautlabs•2h ago•82 comments

DaVinci Resolve 21.1

https://www.blackmagicdesign.com/media/release/20260908-03
328•tosh•9h ago•145 comments

How to Build a Printer

https://nishantjosh.dev/blogs/how-to-build-a-fking-printer/
26•cat-whisperer•1h ago•1 comments

Benchmarking Qwen3.8 27B quantizations: 4-bit holds up, 1-bit collapses

https://quesma.com/blog/qwen38-27b-quantizations-benchmarked/
198•stared•8h ago•97 comments

Mercury 2.5

https://www.inceptionlabs.ai/blog/introducing-mercury-2-5
101•Topfi•2h ago•13 comments

Animation in Bevy: The Big Picture

https://glocq.com/en/blog/20260827/
30•ibobev•2h ago•1 comments

I-have-ADHD: A skill to stop coding agents from burying the answer

https://github.com/ayghri/i-have-adhd
269•domhudson•8h ago•212 comments

Muse: Meta's personal AI agent, features and capabilities

https://ai.meta.com/muse/
207•yks•3h ago•197 comments

Implementation of GCC's Nested Functions (vs. C++ Lambdas)

https://uecker.codeberg.page/2026-09-05.html
47•uecker•3d ago•5 comments

Tao: Open math problems being non-renewably mined by AI

https://mathstodon.xyz/@tao/117237320796901560
19•_alternator_•2h ago•6 comments

Tracing np.add, all the way down

https://blog.veitheller.de/numpy.html
23•luu•4d ago•1 comments

Show HN: LLM Attention Visualization

https://ishamf.dev/p/llm-attention-visualizer/
102•ifz•6h ago•19 comments

Replacing a Rust Enum with a 64-Bit Word Made My Interpreter 17% Faster

https://pointersgonewild.com/2026-08-25-replacing-a-rust-enum-with-a-64-bit-word/
65•metrofun•3d ago•30 comments

The Helicopter with Radioactive Blades

https://hackaday.com/2026/09/07/the-helicopter-with-radioactive-blades/
138•zdw•1d ago•35 comments

A Topological Picture Book, Rendered

https://e-infinity.space/picture-book/
3•mathgenius•36m ago•0 comments

Show HN: Copperhead – Hardware as Fast as Software

https://copperhead.sh/
194•animeshchouhan•9h ago•76 comments

The two Christian saints who are the Buddha

https://signoregalilei.com/2026/08/30/the-two-christian-saints-who-are-secretly-the-buddha/
198•surprisetalk•8h ago•138 comments

The 92-Year-Old Mathematician and the Teenage Apprentice

https://www.nytimes.com/2026/09/06/science/92-year-old-mathematician-apprentice.html
121•robinhouston•2d ago•10 comments

C*: Unifying Programming and Verification in C

https://arxiv.org/abs/2504.02246
65•rramadass•7h ago•39 comments

The Microeconomics of Artificial Intelligence (Open Access)

https://direct.mit.edu/books/oa-monograph/6067/The-Microeconomics-of-Artificial-Intelligence
4•neehao•2d ago•0 comments

Connecting the Machines

https://herdr.dev/blog/connecting-the-machines/
69•collinmanderson•6h ago•24 comments

AlphaGenome Atlas predictive map of every DNA letter change in the human genome

https://deepmind.google/blog/alphagenome-atlas-a-predictive-map-of-every-possible-dna-letter-chan...
76•fady0•8h ago•9 comments

ZX Spectrum: Experimenting with 1-Bit Sound

https://bumbershootsoft.wordpress.com/2026/09/05/zx-spectrum-experimenting-with-1-bit-sound/
89•ibobev•8h ago•26 comments

Reverse Engineering an ASIC

https://kjartanvandriel.github.io/asic/
10•burekqueen•1d ago•0 comments

Function Arguments Are Not Function Colors

https://jerf.org/iri/post/2026/func_args_are_not_colors/
27•ingve•4h ago•10 comments

FreeBSD 14.5-Release

https://www.freebsd.org/releases/14.5R/announce/
107•joshcsimmons•11h ago•21 comments
Open in hackernews

Show HN: Code Claude Code

https://github.com/RVCA212/codesys
117•sean_•1y ago
In the nature of Open Source, I am releasing something I'm actively working on but is insanely simple and will likely be made anyways.

It is an SDK for scripting Claude Code.

It's a lightweight (155 lines) and free wrapper around claude code

This is a big deal because it seems that using claude code and cursor has become largly repitive. My workflow typically goes like this:

Plan out my task into a file, then have claude code implement the plan into my code.

I'm actively building a product with this, but still wanted to make it OSS!

Use it now with `pip install codesys`

Comments

tarboreus•1y ago
I was thinking about doing something like this. I write a lot of boilerplate about "ok we need to discuss before you implement, ask clarifying questions" so it doesn't go rushing ahead.
sean_•1y ago
yea this boilerplate is super simple and effective. It's essentially mimicing how I use claude code and cursor, but with low level control.

A very cool thing I'm working on in this space is having an llm code with the codesys sdk, then run the code.

So imagine cursor coding a codesys file instead of doing the task directly so that it instead scripts claude code to do a sequence of actions and allows cursor/the user to simply analyze the results.

this also enables parralel claude code sessions which is super cool!

ramoz•1y ago
same but the interaction between me and Claude is too dynamic, and my planning framework is more robust than single files. If anything I could speed my workflow up but writing a bash script that calls gemini for my plans - i feed entire codebases or parts of a large codebase (using Prompt Tower) to gemini for the planning - Claude Code isnt as reliable. But even that is iterative with Gemini.
RVRC•1y ago
I haven’t used Gemini as much but it doesn’t seem as smart as Claude, especially at exploring the codebase.

I’ve never heard of prompt tower either, so definitely something to look into!

justanotheratom•1y ago
Is "Code Claude Code" a play on "Bob Loblaw"?

https://arresteddevelopment.fandom.com/wiki/Bob_Loblaw

fny•1y ago
I’d guess Run Forest Run.
conception•1y ago
I was on Go Dogs Go!
mmoustafa•1y ago
Ha! I prefer this one
frank_nitti•1y ago
Or for the younger generation Go Diego Go
sean_•1y ago
I never heard of Bob Loblaw, so no.

It's more a play on the phrase 'Code the thing that Codes the thing'

edmundsauto•1y ago
If anyone else was curious to see the source, it’s hard to find due to the name collision on Google.

Here it is - https://github.com/RVCA212/codesys

divan•1y ago
Is it the same lines of RooCode task orchestrator [1] or claude-task-master[2] ?

[1] https://www.reddit.com/r/ChatGPTCoding/comments/1k8641f/roo_...

[2] https://github.com/eyaltoledano/claude-task-master

Seems like this task orchestration is the next must-have thing for every agentic AI solution and it makes perfect sense.

sean_•1y ago
same idea, yes

this seems simpler and more straight forward though

ramoz•1y ago
also MCP bloat - I prefer my Claude Code agent raw. It has it's own capable tools and plans development with task lists now - works really well with a greater meta-level tasking and context orchestration.
anotherpaulg•1y ago
Fun project with a nice compact code base. Agreed that ad-hoc scripting agents can be very powerful.

Aider has had support for scripting [0] in python or via the command line for a long time.

I made a screencast [1] recently that included ad-hoc bash scripting aider as part of the effort to add support for 130 new programming languages. It may give a flavor for how powerful this approach can be.

[0] https://aider.chat/docs/scripting.html

[1] https://aider.chat/docs/recordings/tree-sitter-language-pack...

RVRC•1y ago
Paul!!!

I first made a scripting tool of aider that I didn't open source: (https://cloudcoding.ai)

Scripting with aider gives lower level control but this is also its shortcoming to why I prefer scripting Claude code.

Claude code is like a better architect mode and people want higher and higher levels of abstraction away from the coding and more towards the vibing.

Terretta•1y ago
Adding Swift (and 129 others) in March was a big deal, thank you.
ramoz•1y ago
Building a product brewed in the alchemy of current-day LLMs is how we end up with new langchains.
RVRC•1y ago
Very true!

This isn’t the product I’m building which is why i opened sourced it, but it allows for my product to be made

I’m sure Anthropic will release this exact sdk in a week or two

gitroom•1y ago
This is a cool little project, and honestly, pushing out simple tools early always gets my gears turning - now Im sitting here thinking about what tiny scripts in my setup could use a little love.
Jimmc414•1y ago
I have been creating a change document as Claude.md and asking Claude Code to implement it. It was been working very well. Hire is this different?
user3939382•1y ago
A little tangential but, I can’t get any LLMs to write a codepen for a parallel parking animation.