frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenPawz Engram biologically-inspired memory architecture for AI agents

https://github.com/OpenPawz/openpawz/blob/main/ENGRAM.md
1•gotham64•3m ago•1 comments

Optimizing Recommendation Systems with JDK's Vector API

https://netflixtechblog.com/optimizing-recommendation-systems-with-jdks-vector-api-30d2830401ec
1•mariuz•3m ago•0 comments

TUIkit: Terminal UI Framework for Swift

https://tuikit.dev/
1•tambourine_man•4m ago•0 comments

6k AWS accounts, three people, one platform: Lessons learned

https://aws.amazon.com/blogs/architecture/6000-aws-accounts-three-people-one-platform-lessons-lea...
1•mariuz•4m ago•0 comments

Show HN: Fastsleep.app – want to fall asleep in 20 minutes?

https://fastsleep.app/
1•mathnorth_com•5m ago•0 comments

Why Choose OpenAgents Instead of CrewAI, LangGraph, AutoGen?

https://medium.com/@openagents/open-source-ai-agent-frameworks-compared-crewai-vs-langgraph-vs-au...
1•Cherie91•6m ago•0 comments

Claude is down 8:29 pm PST (3/2/26)

4•HPMOR•7m ago•0 comments

Iran executes Khamenei's plan to spread regional war

https://www.ft.com/content/02eb660a-3c80-4d6b-9e58-e7411278b0f1
1•ParentiSoundSys•7m ago•0 comments

Show HN: AsmForge: Open-Source AI-Powered Assembly IDE Based on Eclipse Theia

https://github.com/TamTunnel/asmforge
1•pp10•8m ago•0 comments

A "Game First" Implementation of GenAI (Unity and Agents)

https://blackwaterlabs.io
1•AlisonJJJ•8m ago•1 comments

Show HN: Time to Decimal Calculator

https://www.timetodecimalcalculator.com/
1•atharvtathe•16m ago•0 comments

Intent-Based Commits

https://github.com/adamveld12/ghost
1•adamveld12•16m ago•1 comments

Apply Within – Bringing applicative desugaring to Scala for-notation

https://blog.podsnap.com/apply.html
2•luu•19m ago•0 comments

U.S. Marines Fire on Protesters in Karachi

https://www.wsj.com/livecoverage/iran-israel-us-strikes-2026/card/u-s-marines-fire-on-protesters-...
3•JumpCrisscross•22m ago•0 comments

Using a GPT-5-driven autonomous lab to optimize cell-free protein synthesis

https://www.biorxiv.org/content/10.64898/2026.02.05.703998v1
2•peyton•22m ago•0 comments

Augustus: Open-Source LLM Prompt Injection Tool

https://www.praetorian.com/blog/introducing-augustus-open-source-llm-prompt-injection/
2•umairnadeem123•26m ago•1 comments

Eoghan McCabe: "There is one way that SaaS can be saved"

https://twitter.com/eoghan/status/2028522852044206258
2•doppp•26m ago•0 comments

Show HN: Starcraft2 replay rendering engine and AI coach

https://www.starcraft2.ai/en/replay/72228e2b-569e-440d-9fcc-93e4a1f5a4b9
3•tomkit•28m ago•0 comments

Groveling for Dollars (1998)

https://www.salon.com/1998/05/04/feature_325/
2•psawaya•29m ago•0 comments

Building My Own Canva over a Weekend

https://catalinionescu.dev/ai-agent/building-my-own-canva-over-the-weekend/
2•cionescu1•29m ago•0 comments

The Interface Theory of Perception [pdf]

https://sites.socsci.uci.edu/~ddhoff/interface.pdf
2•jerlendds•37m ago•0 comments

The Support Agent Who Never Burns Out

2•natematthew•40m ago•0 comments

Beijing Doesn't Think Like Washington–and the Iran Conflict Shows Why

https://carnegieendowment.org/emissary/2026/03/iran-china-us-intervention-strategy
3•jackyli02•41m ago•0 comments

Show HN: Personal AI gateway for OpenClaw – tokenomics

https://github.com/rickcrawford/tokenomics
2•crawdog•44m ago•0 comments

Dabao evaluation board for Baochip-1X

https://www.crowdsupply.com/baochip/dabao
2•MassPikeMike•46m ago•0 comments

U.S. Troops Were Told Iran War Is for "Armageddon,"

https://jonathanlarsen.substack.com/p/us-troops-were-told-iran-war-is-for
37•fzeroracer•50m ago•29 comments

A brief history of logic [pdf]

https://www.cs.rice.edu/~vardi/comp409/history.pdf
2•vinhnx•51m ago•0 comments

Working on multiple tasks in parallel using 1 OpenClaw Agent

https://openclaw-setup.me/blog/usage-tips/run-multiple-openclaw-sessions-concurrently/
2•Gregoryy•52m ago•1 comments

He wanted to use ChatGPT to create sustainable housing. It took over his life

https://www.theguardian.com/technology/ng-interactive/2026/feb/28/chatgpt-ai-chatbot-mental-health
8•georgecmu•53m ago•0 comments

Whats Up with Claude Lately?

3•mech422•53m ago•1 comments
Open in hackernews

Show HN: Plot lines of code over time in Git repositories

https://github.com/emanueldonalds/git-loc-plot
2•genericspammer•9mo ago
It's a small wrapper around cloc (https://github.com/AlDanial/cloc), which just provides a convenient way to plot lines of code over time in a Git repository.

The script runs cloc on each commit in your current branch, starting from HEAD tracing back until the first commit.

For large repositories with many commits, you can tell it to only count every n:th commit with the '--step' option to speed up processing.

The way it works is quite sub-optimal, since every single file is counted in each commit, even if the file didn't change since last iteration. Might be a fun project later to find some nice optimizations, maybe by counting files one by one and keeping a dict of line count by file hash, or something along those lines.

Maybe someone will find this script useful, maybe not, anyways happy to hear if someone has any thoughts :)