frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Build your own Devin in one prompt

https://github.com/cayu-dev/cayu
2•nurazem•2m ago•0 comments

Monsanto's Cruel, and Dangerous, Monopolization on American Farming (2008)

https://www.vanityfair.com/news/2008/05/monsanto200805
1•kamaraju•2m ago•0 comments

California may gut state net neutrality law to comply with Trump admin demand

https://arstechnica.com/tech-policy/2026/09/california-may-gut-state-net-neutrality-law-to-comply...
1•rsingel•4m ago•0 comments

Overlord – a trust kernel for AI agents

https://github.com/B1tR0n1n/overlord
1•b1tr0n1n•5m ago•0 comments

PickiPedia: Artifical_Dumb

https://pickipedia.xyz/wiki/PickiPedia:Artifical_Dumb
1•jMyles•7m ago•0 comments

RL Is Everything, Everywhere, All at Once

https://skypilot.ai/blog/rl-everything
2•covi•18m ago•1 comments

Show HN: Pqp, an open-source Discord alternative with watch parties

https://github.com/rafaelcg/pqp
1•rafgg•22m ago•0 comments

Ctenophores: Wonders of Biology

https://www.quantamagazine.org/ctenophores-arent-just-beautiful-theyre-biological-wonders-20260916/
2•randomImmigrant•23m ago•0 comments

Understanding Why You'd Use Effect TS

https://cm.xyz/blog/understanding-why-youd-use-effect-ts
3•handfuloflight•25m ago•0 comments

Show HN: Spendalyst – tells you when a recurring charge changes price

https://app.spendalyst.com/demo
1•Fsmith10•27m ago•0 comments

CV Forge – tailor your resume to any job with AI

https://shop.lumnika.com/compliancesnap/
1•deusautoai725•29m ago•0 comments

Where Rust Ends and the Kernel Begins

https://cacm.acm.org/blogcacm/where-rust-ends-and-the-kernel-begins/
1•sohkamyung•31m ago•0 comments

Mission Kit

https://missionkit.io/
2•dadado•34m ago•1 comments

Evaluating S2S Model Quality with Human Preference Data

https://research.withdavid.ai/blog/st-s2s-eval
1•EliasLittle•39m ago•0 comments

"Start with a Monolith" Was Good Advice. AI Is Changing That

https://medium.com/scalar-engineering/architecture-in-the-ai-era-part-1-summary-start-with-a-mono...
2•feeblefakie•41m ago•1 comments

Snap launches $2,195 Specs smart glasses

https://finance.yahoo.com/technology/article/snap-launches-2195-specs-smart-glasses-234000058.html
3•geoffbp•42m ago•0 comments

DeepSeek-v4.1 Flash: Pushing the Limits of KV Cache Compression

https://zartbot.github.io/blog/model_arch/dsv41flash_arch/en.html
2•mfiguiere•42m ago•0 comments

What regulatory capture actually looks like

https://marginalrevolution.com/marginalrevolution/2026/09/what-regulatory-capture-actually-looks-...
2•maxutility•42m ago•1 comments

Tin: full-text search for Postgres

https://planetscale.com/blog/introducing-tin
3•gtCameron•48m ago•0 comments

Part-human part-mouse brain developed in science breakthrough

https://www.bbc.com/news/articles/c60m3k28j81mo
2•marc__1•49m ago•0 comments

Show HN: FastRecall, ultra-cheap memory across AI models

https://fastrecall.ai/
1•tomrose•50m ago•0 comments

Michael Burry slams OpenAI, Anthropic for 'self-serving' calls to slow AI

https://nypost.com/2026/09/14/business/big-short-trader-michael-burry-slams-openai-anthropic-for-...
13•nsagent•51m ago•0 comments

Spanish data watchdog publicises first AI agent-linked data breach report

https://www.reuters.com/business/spanish-data-watchdog-publicises-first-ai-agent-linked-data-brea...
2•geoffbp•53m ago•0 comments

Xcode-Project-Format

https://github.com/apple/xcode-project-format
2•interpol_p•54m ago•0 comments

Flowchart: How pixels become an Apple Reference Image

https://claude.ai/artifact/BcyyGRDRimvZgza7d9ts1c
2•alwillis•1h ago•0 comments

Supply Chain Compromise of Korean-Language Windows 11 Installation Media

https://www.logpresso.com/en/blog/2026-09-08-windows11-report-eng
2•ledoge•1h ago•1 comments

Pangram – AI detector for text and images

https://www.pangram.com
2•doodlesdev•1h ago•0 comments

Migrating the GitHub Copilot Runtime to Rust, Using Copilot

https://github.blog/ai-and-ml/generative-ai/migrating-the-github-copilot-runtime-to-rust-using-co...
4•abraham•1h ago•1 comments

Game UI Database

https://www.gameuidatabase.com
2•andsoitis•1h ago•0 comments

Found a B2B billing stack for my agency that doesn't feel like 2010

https://cordhq.app/
1•andrevalleo•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.