frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How bicycle coaster brakes work (2018)

https://www.dougbarnesauthor.com/2018/06/how-bicycle-coaster-brakes-work.html
1•Vedor•37s ago•0 comments

Rhine Group: Draghi, Collison unite experts for EU competitiveness

https://en.ilsole24ore.com/art/draghi-and-collison-stripe-set-to-boost-growth-in-europe-the-rhine...
1•Lucasoato•6m ago•0 comments

InferenceFS: Never worry about data again (Again)

https://github.com/philipl/inferencefs/
1•linkdd•7m ago•0 comments

Breakscale: Distributed Systems Design Simulator

https://github.com/xevrion/breakscale
1•handfuloflight•8m ago•0 comments

Muraqib, free nightly QA that lets Claude open a fix PR when tests fail

https://github.com/holistis/muraqib
1•Bugintelligence•22m ago•0 comments

Show HN: AgentBridge – Let one AI think while another AI writes the code

https://github.com/IndexFlowing/AgentBridge
1•mandarinclips•31m ago•1 comments

Nepal's flood damage may cost up to a tenth of economy to rebuild

https://www.reuters.com/world/china/nepal-needs-least-4-billion-rebuilding-finance-minister-says-...
2•geox•32m ago•0 comments

Pentagon's blacklisting of Anthropic was unlawful, US judge rules

https://www.theguardian.com/technology/2026/aug/28/us-court-rules-pentagon-anthropic-ban-illegal-...
2•vinni2•32m ago•0 comments

Walkable Cities

https://nartier.itch.io/walkable-cities
2•tehsauce•37m ago•0 comments

Some GitHub bounty repos are honeypots that farm free work from AI agents

https://oactodev.github.io/ninety-quid/report/
1•ninetyquid•38m ago•0 comments

Five ways 3D printing is improving lab work

https://www.nature.com/articles/d41586-026-02535-z
1•zeristor•39m ago•0 comments

Books Turned into Podcast Series

https://bookdialogues.com/home
1•jasmeet0817•40m ago•1 comments

Researcher Tricked Claude, Codex and Hermes into Running Malware

https://startupfortune.com/researcher-alon-hertz-tricked-claude-codex-and-hermes-into-running-mal...
12•CuriousLLM•41m ago•0 comments

SynapticChain: Single-wallet concurrency record (5,307 TPS from 1 key in Rust)

https://explorer.synapticchain.xyz
1•abdulshabazz•45m ago•0 comments

I built a financial visibility layer for multi-model AI applications

https://credlier.com/
1•dcriglerd•46m ago•0 comments

Show HN: Kith – AI clinical notes for therapists from ambient session audio

https://www.kith.space
1•kithmedai•50m ago•0 comments

Is this the DeepSeek moment for Local Models?

https://vijaykodam.substack.com/p/is-this-the-deepseek-moment-for-local
2•vijaykodam•54m ago•0 comments

What GLM-5.3 Flash running on Chinese hardware means

https://martinalderson.com/posts/glm-5-3-flash-chinese-hardware/
1•ymolodtsov•55m ago•0 comments

Lean Explained with TypeScript

https://gruhn.me/blog/2026-08-29/
1•ngruhn•55m ago•0 comments

Changes in MySQL 26.7.0

https://dev.mysql.com/doc/relnotes/mysql/26.7/en/news-26-7-0.html
1•ksec•58m ago•0 comments

Pennpaper – visual, step-by-step explanations for math

https://www.pennpaper.app/
1•brnmwas•59m ago•0 comments

Show HN: Bora Praia – weather and tide forecasts turned into a time to leave

https://borapraia.com/
1•63labs•1h ago•0 comments

Grassmann's Law (Linguistics)

https://en.wikipedia.org/wiki/Grassmann%27s_law
1•ogogmad•1h ago•0 comments

ICANN de-accredits "bulletproof" domain registrar Trustname

https://domainnamewire.com/2026/08/28/icann-de-accredits-bulletproof-domain-registrar/
5•KomoD•1h ago•0 comments

Show HN: A free AI news briefing agent that runs on GitHub Actions, no server

https://github.com/tballochi/daily-briefing
1•tballochi•1h ago•1 comments

Terence Tao, 6 essential concepts of math [video]

https://www.youtube.com/watch?v=OOMx2BHHWtE
1•pykello•1h ago•0 comments

Vibecoders and Vibehackers

https://orchidfiles.com/vibecoders-and-vibehackers/
1•theorchid•1h ago•0 comments

X and Meta's past data scraping lawsuit losses and how it would relate to nitter

https://www.reuters.com/legal/musks-x-corp-loses-lawsuit-against-israeli-data-scraping-company-20...
3•orange999•1h ago•1 comments

Technical Writing Resources

https://github.com/dharmelolar/technical-writing-resources
1•taubek•1h ago•0 comments

Show HN: Itsuki – open-source memory engine for AI agents (API and MCP)

https://itsuki.app/
2•12ziyad•1h ago•2 comments
Open in hackernews

Ask HN: What are you currently trying to figure out?

3•gooob•1y ago
i'm trying to figure out why elden ring started stuttering and freezing during gameplay recently, and why the windows operating system has so many little dumb things wrong with it.

Comments

sherdil2022•1y ago
Trying to figure out what to do next and what to do with my life.
gooob•1y ago
how's that going? what are your current options?
sherdil2022•1y ago
Not going good.
scottmcdot•1y ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•1y ago
Trying to figure a workaround in ksh for space-delimited filenames:

  for f in $(ls "/mnt/dir"); do
    cp -v "$f" /elsewhere
  done
Because -R doesn't handle retries when cp(1) errors out intermittently (USB MTP to phone). I don't remember it being this hard in bash, or Android just is like this. Hopefully can figure it out without going to perl or C. Maybe dump(8).

Even though 54 GB partition created, it only takes up 22 GB or so. Either missing a lot of files or FFS compacts it well.

turtleyacht•1y ago
Pipe and read per line:

  ls /mnt/dir | while read line; do
    cp -v "$line" /elsewhere
    # substitute with something fancy
    # [ $? -eq 0 ] || cp -v "$line" /elsewhere
  done
nailer•1y ago
If there’s transmission errors, I would recommend using rsync rather than cp. that will keep transferring and running checksums until everything matches.
turtleyacht•1y ago
Thank-you. After installing openrsync(1) (and rsync), files transferred for a bit but failed and dumped core with error 138 (bus error). Maybe a quirk with OpenBSD 7.6, or interaction between simple-mtpfs and the fusefs mount.

In the meantime, after a few retries, the failures are written to a log for a second sweep.

MD5 check helps skip extra copying, but it's overall much slower. It seems okay for a long-running batch job; maybe something we can return to after getting the pictures to display.

The pattern is like

  cp ... || \
    { sleep 2; cp ... ; } || \
    ... || \
    ... || echo "$file" >> retry.log
Not the best way. It has failed before all four times. Going to let it run overnight to see if it completes.
arthurcolle•1y ago
navigating personal 'unemployment' while obsessively hoarding whatever money I can to run experiments / train, finetune models to leverage RL and environment-building in order to use computers, learn tasks, learn from each other, and scale to managing companies (simple, SaaS at first, and eventually, potentially to real-world operations downstream task sets)
nailer•1y ago
I arrived tired to a pre wedding photo shoot this morning, my prospective wife yelled at me, and cancelled the shoot. I walked out because I don’t like people yelling at me. So I am trying to figure out whether I still want to marry her.