frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

You Might Be a Late Bloomer

https://www.theatlantic.com/ideas/archive/2024/06/successs-late-bloomers-motivation/678798/
1•jaynate•1m ago•0 comments

Oodle Keeps Observability Fast at Scale

https://blog.oodle.ai/how-oodle-keeps-observability-fast-at-scale/
1•ankitg12•1m ago•0 comments

CNN investigates Iran rebuilding nuclear facilities

https://www.cnn.com/2026/07/10/world/video/investigates-polglase-iran-nuclear-sat-imagery
1•spwa4•2m ago•0 comments

Show HN: I used Claude to make some free fun pet-themed browser arcade games

https://whatpetshouldiget.com/play.html
1•scamdrill•7m ago•0 comments

Evaluating the impact of two decades of USAID intervention

https://www.thelancet.com/action/showPdf?pii=S0140-6736%2825%2901186-9
2•Topfi•7m ago•0 comments

How the Bayeux Tapestry broke the internet

https://spectator.com/article/how-the-bayeux-tapestry-broke-the-internet/
1•thinkingemote•8m ago•0 comments

Laguna XS 2.1 33B on a RTX 3090: 296 tok/s peak, 152 tok/s at 256K context

https://www.lucebox.com/blog/laguna-xs21
1•GreenGames•8m ago•0 comments

Show HN: Check your RAG agent's literal groundedness with verbatimeter

https://pypi.org/project/verbatimeter/
1•pobonin•11m ago•0 comments

List of OpenAI Whisper Checkpoints Variants

https://blog.sparsh.dev/list-openai-whisper-checkpoints-variants/
1•sparshrestha•16m ago•1 comments

Lobster Is Migrating to SQLite

https://github.com/lobsters/lobsters/pull/1927
1•maxloh•17m ago•0 comments

San Francisco Inches Closer to PG&E Acquisition

https://www.kqed.org/news/12090521/san-francisco-inches-closer-to-pge-acquisition
1•rdoherty•18m ago•0 comments

Show HN: SignalPosts – turns sales call transcripts into LinkedIn posts

https://www.signalposts.com
1•mistaflu•18m ago•0 comments

'Ghostcommit' hides prompt injection in images to fool AI agents, steal secrets

https://www.bleepingcomputer.com/news/security/ghostcommit-hides-prompt-injection-in-images-to-fo...
1•Brajeshwar•19m ago•0 comments

Show HN: Agent World – an open standard and live market for personal AI agents

https://github.com/macrokit/agent-world
1•spriterock•19m ago•0 comments

Disappearing Polymorph

https://en.wikipedia.org/wiki/Disappearing_polymorph
1•hliyan•19m ago•0 comments

Spacetime as a discrete computational NavMesh: Deriving a 0.8723as universal r.r

https://zenodo.org/records/21273378
1•TomerHaimovich•20m ago•0 comments

Google deleting all recently inactive accounts without phone number

4•superkuh•21m ago•2 comments

Can we reconstruct a tokenizer using only two oracles from the chat API?

https://old.reddit.com/r/LocalLLaMA/comments/1utc5b9/can_we_reconstruct_a_closedsource_llm_tokeni...
1•bayes-song•21m ago•1 comments

Show HN: TargetBridge – Use an Intel iMac as a Thunderbolt Display Apple Macs

https://github.com/swellweb/targetBridge
1•targetbridge•22m ago•0 comments

Fixed-Point Combinator

https://en.wikipedia.org/wiki/Fixed-point_combinator
3•tosh•28m ago•0 comments

Deep dive into iroh, a peer-to-peer communication layer for your application

https://kerkour.com/iroh-v1-p2p
8•cold_pizz4•28m ago•1 comments

Is Life Just Different?

https://www.quantamagazine.org/is-life-just-different-20260708/
1•snorbleck•28m ago•0 comments

Religion: Meanings of Marx' "Opium of the People" [video]

https://www.youtube.com/watch?v=C14q4DOVFno
2•penguin_booze•30m ago•0 comments

Cuelume – Tiny interaction sounds that make interfaces feel alive

https://cuelume-site.pages.dev/
2•lumannnn•34m ago•0 comments

Fdisk and the Importance of Sleep

https://parlaiment.bearblog.dev/fdisk-and-the-importance-of-sleep/
1•vonargo•34m ago•0 comments

LingBot-World 2.0: Open-source world model with hour-long interactive generation

https://github.com/Robbyant/lingbot-world-v2
1•Kajaking•35m ago•0 comments

Rebuilding My Homelab with Compose, Ruby, IPv6, and No Kubernetes

https://www.petekeen.net/homelab-resolved/
2•zrail•38m ago•1 comments

Apple sues OpenAI over mass IP theft

https://appleinsider.com/articles/26/07/10/apple-sues-openai-previous-vp-of-product-design-over-m...
3•kristianpaul•40m ago•1 comments

Show HN: I turned my quote collection into a walkable 3D library (desktop-only)

https://jakubhalmes.com/library/
2•jac08h•41m ago•2 comments

The Mind-Bending Company That Gets a Million Job Applications–and Rejects 99.9%

https://www.wsj.com/business/bending-spoons-jobs-hiring-stock-eaed2b8e
2•fortran77•43m 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.