frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Izakaya Economics

https://www.theguardian.com/world/2026/jun/09/japan-traditional-izakaya-struggling-economic-hard-...
1•tosh•10s ago•0 comments

Growing Pains of Starting a Secret Society

https://mrmarket.bearblog.dev/growing-pains-of-starting-a-secret-society/
1•mrmarket•1m ago•0 comments

Eagle Computer: The rise and fall of an early PC clone

https://dfarq.homeip.net/eagle-computer-the-rise-and-fall-of-an-early-pc-clone/
1•giuliomagnifico•5m ago•0 comments

TokenTamer A proxy that reduces LLM token usage through context compression

https://github.com/borhen68/TokenTamer
1•borhensaidi•5m ago•0 comments

A Botched Master Thesis Proposal and Idea for a Decentralized VPN

https://blog.t1m.me/blog/designing-a-decentral-vpn-protocol-w-libp2p
1•rickcarlino•7m ago•0 comments

Ask HN: Thoughts on Siri AI?

2•akashwadhwani35•12m ago•0 comments

Cleaning up after AI rockstar developers

https://www.codingwithjesse.com/blog/rockstar-developers/
1•BrunoBernardino•12m ago•0 comments

Building a Smarter Crypto Market Maker with Avellaneda–Stoikov

https://medium.com/@DolphinDB_Inc/taming-inventory-risk-building-a-smarter-crypto-market-maker-wi...
2•dbaa4real•13m ago•2 comments

Understand your Team code generated by AI

https://archtocode.com/
1•grzelazny•15m ago•0 comments

The Simplest Learning Machine

https://medium.com/@VictorBanev/the-simplest-learning-machine-pt-2-e735367f546
1•xaedes•17m ago•0 comments

'They were laughing': Israel's use of rape and sexual abuse in prisons

https://www.aljazeera.com/news/2026/6/9/they-were-laughing-israels-use-of-rape-and-sexual-abuse-i...
4•abdusco•17m ago•0 comments

PingWatch uptime monitoring no server needed (alternativeto UptimeKuma)

https://pingwatch.org
1•pipka•18m ago•0 comments

React Compiler Rust Port

https://github.com/facebook/react/pull/36173
3•maelito•19m ago•0 comments

Safe Terraform auto-apply with conftest

https://www.bejarano.io/terraform-autoapply/
1•ricardbejarano•20m ago•0 comments

Data from 66,000+ musician practice sessions

https://old.reddit.com/r/piano/comments/1u0lyhe/data_from_66000_practice_sessions_how_much_does/
1•sebg•22m ago•0 comments

Show HN: SuperTree – interactive decision tree plot for sklearn,xgboost,lightgbm

https://github.com/mljar/supertree
1•pplonski86•28m ago•0 comments

How to Ditch Codecov for Python Projects

https://hynek.me/articles/ditch-codecov-python/
1•lumpa•32m ago•0 comments

Can a Lego Man Survive a Crash Test? – Invidious

https://inv.nadeko.net/watch?v=JTthuDn638U
1•frans•38m ago•0 comments

What if the GRAVITY suddenly switched off?

https://www.youtube.com/watch?v=dNWwIfjJXZY
2•Asheed•38m ago•0 comments

Htmx Is So Cool I Rolled My Own (2024)

https://dbushell.com/2024/04/16/htmx-and-modern-javascript/
2•birdculture•38m ago•0 comments

Real-Time Capital Flow Analysis Using Window Aggregation

https://medium.com/@DolphinDB_Inc/real-time-capital-flow-analysis-using-window-aggregation-57ba10...
2•Polly_Liu•41m ago•0 comments

Building and Backtesting a Dynamic Grid Trading Strategy for Crypto

https://medium.com/@DolphinDB_Inc/beyond-basic-grid-trading-building-and-backtesting-a-dynamic-st...
2•CrazyTomato•42m ago•0 comments

Palantir is turning the NHS into a tool for mass surveillance

https://www.opendemocracy.net/palantir-is-turning-the-nhs-into-a-tool-for-mass-surveillance/
4•robtherobber•44m ago•0 comments

Do you find yourself aimlessly scrolling? You're not alone

https://www.bbc.com/news/articles/czd2mq505dpo
2•01-_-•50m ago•0 comments

Apple updates child safety inspired by Australia's under-16 ban

https://www.abc.net.au/news/2026-06-09/apple-child-safety-features-revamped/106777228
2•01-_-•51m ago•0 comments

An open-source aircraft identification library in Python

https://github.com/xuhao1/pyAircraftIden
1•marklit•53m ago•0 comments

What if Germany had invested in nuclear power? (2024)

https://doi.org/10.1080/14786451.2024.2355642
2•leonidasrup•55m ago•1 comments

Forever Young: how one molecule can lock plants in a youthful state.(2025)

https://omnia.sas.upenn.edu/story/biologist-scott-poethig-plants-never-age
10•bryanrasmussen•57m ago•0 comments

Broken speaker? Anticonsumerist Repair Cafes urge you to fix it instead of pitch

https://apnews.com/article/repair-cafes-economy-anticonsumerism-affordability-buy-nothing-d3acac3...
2•Physkal•1h ago•0 comments

Uncle Sam considers buying a seat on the Titanic

https://www.theregister.com/ai-and-ml/2026/06/09/uncle-sam-considers-buying-a-seat-on-the-titanic...
7•rbanffy•1h ago•0 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.