frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Falling Man (2021)

https://www.esquire.com/news-politics/a48031/the-falling-man-tom-junod/
1•fraXis•4m ago•0 comments

The Environmental Protection Network: About Us

https://www.environmentalprotectionnetwork.org/about/
2•mmooss•7m ago•0 comments

Why are AI agents lying, cheating and coordinating? – Yoshua Bengio

https://yoshuabengio.org/en/publication/why-are-ai-agents-lying-cheating-and-coordinating
3•leonardool•11m ago•0 comments

Senior Russian banker fired after scathing speech on wartime economy

https://www.theguardian.com/world/2026/aug/17/andrei-klepach-russian-banker-fired-warning-economy
4•PeterHolzwarth•13m ago•0 comments

Oracle to Spend an Additional $700M on More Job Cuts

https://www.bloomberg.com/news/articles/2026-09-11/oracle-boosts-layoffs-plan-by-700-million
4•toomuchtodo•14m ago•1 comments

Dynamic Documents as Personal Software (Geoffrey Litt)

https://www.youtube.com/watch?v=MccJdr61xnc
2•henryrobbins00•14m ago•0 comments

Terms.txt: A Consent and Compensation Protocol for Agentic Web Access

https://arxiv.org/abs/2609.11152
1•sbulaev•18m ago•0 comments

Rapidly scaling online storage to serve over 1B ChatGPT users

https://openai.com/index/scaling-storage-one-billion-users-part-one/
1•afr0ck•18m ago•0 comments

Just testing my memory safe web browser

1•pizlonator•20m ago•0 comments

Necker, 1832: "An optical phænomenon on viewing a figure of a geometrical solid"

https://zenodo.org/records/1430991
2•akkartik•23m ago•1 comments

Piper and Solaar kept breaking So I made my own

https://github.com/DonGeronimo7/mouse-control
1•Dongeronimo7•23m ago•0 comments

ATR Rules to Google SecOps Converter for Detection Engineers

https://github.com/ajaynyayapathi/ATR-to-Yara-L-Converter
1•nvajay•25m ago•0 comments

Mini PC Database

https://awesomeminipc.com/
2•Crier1002•31m ago•0 comments

OpenAI: "We use ... de-identified data to improve ChatGPT"

https://twitter.com/markchen90/status/2097400166554993041
3•nycdatasci•34m ago•2 comments

"What Is an 'AI Warning Shot'?" (2024)

https://gwern.net/blog/2024/sydney
1•simonpure•38m ago•0 comments

Show HN: TUI Markdown reader with beeline support

https://github.com/seymores/mdr
1•seymores•40m ago•0 comments

Better coding agents need more than better models

https://github.com/Wholiver/metis
2•oliverhuchenrui•43m ago•0 comments

Your built-in router VPN might be more trouble than it's worth

https://tailscale.com/blog/built-in-router-nas-vpns
1•soheilpro•46m ago•0 comments

How Poor People Buy Cars

https://abio.substack.com/p/how-poor-people-buy-cars
25•barry-cotter•48m ago•8 comments

Dopamine Sites Sell Nothing, and People Cannot Get Enough

https://www.nytimes.com/2026/09/11/world/asia/dopamine-sites-popularity.html
3•mistersquid•48m ago•0 comments

What Is Bending Spoons?

https://www.s-1.site/s/bending-spoons-a-capital-cycle-play.html
3•anthonybourdain•49m ago•0 comments

ASI existential risk: reconsidering alignment as a goal

https://michaelnotebook.com/xriskbrief/
2•vinhnx•49m ago•0 comments

Why Your Memory API Benchmarks Are Probably Inflated and Misleading

https://chatsorter.com
1•JacobH1234•51m ago•0 comments

Cohere's North Mini Code Megakernel Serving Engine

https://cohere.com/blog/megakernels
2•gmays•57m ago•0 comments

Build Agentic Memory That Keeps Your Loops Alive and Sharpens Them Every Run

https://memanto.ai/blog/agentic-memory-course-keep-loops-alive
1•supportm•59m ago•0 comments

1.1.1.1 now supports post-quantum DNSSEC, all 2,420 bytes of it

https://blog.cloudflare.com/post-quantum-dnssec-1111/
6•vg•1h ago•0 comments

Preview Your Website on iPhone Duo

https://progressier.com/iphone-duo-simulator
1•kbst•1h ago•0 comments

Reduced AI cheating on a long task from 72% to 0 with 190 token agreement prompt

https://www.echohive.ai/grok-integrity-agreement-less-cheating
2•echohive42•1h ago•0 comments

The Last Essay

https://medium.com/human-parts/the-last-essay-e8ad0b0aa921
1•kashnote•1h ago•0 comments

Proof of Well-ordering of Y sequence

https://github.com/Phyrion1343/1Y-Well-Ordering-Lean/tree/main
2•nkochavi•1h ago•1 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.