frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Japan legend Miura, 59, scores first goal since 2022

https://www.bbc.com/sport/football/articles/c3r087181ndo
2•brudgers•3m ago•0 comments

Types with AI

https://www.alecvo.org/blog/types-with-ai/
2•Vgoose•5m ago•0 comments

A Minecraft-alpha-style voxel game written in Rust with a custom engine

https://github.com/dollspace-gay/Wildforge
1•wertyk•9m ago•0 comments

FastJson 1.2.83 Remote Code Execution

https://fearsoff.org/research/fastjson-1-2-83-rce
1•miniBill•11m ago•0 comments

Cursor Bridge – Run Unlimited Claude Code on Your Cursor Subscription

https://github.com/hkc5/cursor-bridge
2•hakancan•19m ago•1 comments

Scriptc by Vercel: TypeScript-to-Native compiler, no JavaScript engine in binary

https://github.com/vercel-labs/scriptc
1•maxloh•21m ago•0 comments

Shepherd Model Gateway – Model-routing gateway for LLM deployments

https://github.com/lightseekorg/smg
1•rekl•30m ago•0 comments

Your GPS Is Lying to You

https://medium.com/@rohitdastalks/your-gps-is-lying-to-you-and-thats-a-national-security-crisis-7...
2•jonbaer•31m ago•0 comments

"A vicious circle of incompatibility" – Unsung

https://unsung.aresluna.org/a-vicious-circle-of-incompatibility/
1•rbanffy•32m ago•0 comments

A live black-box capability eval for autonomous offensive-security agents

https://phantomlogin.entropicsystems.net/
1•snorbleck•33m ago•0 comments

Claude of Duty

https://github.com/mshumer/Claude-of-Duty/tree/main
2•SweetSoftPillow•34m ago•1 comments

Stories Told About Data Centres – Pixel Envy

https://pxlnv.com/blog/stories-told-about-data-centres/
1•rbanffy•35m ago•0 comments

Tesler's Law

https://en.wikipedia.org/wiki/Law_of_conservation_of_complexity
4•soupspaces•37m ago•0 comments

Videos Helped Me Uncover Abuse at an Arkansas Private School

https://www.propublica.org/article/arkansas-private-school-abuse-video
2•Jimmc414•37m ago•0 comments

Court Reporter Submitted AI-Generated Errors in Official Court Transcript

https://www.404media.co/judge-caught-court-reporter-using-ai-transcript-errors/
1•Jimmc414•37m ago•0 comments

Fabric Interface Tutorial: E-Textiles, Conductive Thread and Trill Craft

https://www.youtube.com/watch?v=ClBYyYEFkF0
1•soupspaces•38m ago•0 comments

Hundreds of Drone-as-First-Responder Programs to Be Launched Across the Country

https://www.eff.org/deeplinks/2026/07/hundreds-drone-first-responder-programs-could-soon-be-launc...
1•Jimmc414•38m ago•0 comments

Show HN: Anyclaude-SDK – Claude Code-Style SDK for OpenAI/Anthropic Endpoints

https://github.com/pipilot-dev/anyclaude-sdk
1•hansade•39m ago•0 comments

Show HN: The Jac Programming Language

https://jaclang.org/
2•marsninja•40m ago•6 comments

The Metaverse Fever Dream – Pixel Envy

https://pxlnv.com/blog/metaverse-fever-dream/
2•rbanffy•41m ago•0 comments

Why does every mammal get 1B heartbeats in their life? [video]

https://www.youtube.com/watch?v=tL9Lw250spc
1•binyu•43m ago•0 comments

The highest-leverage bet in the whole market is not AI, it's LSD

https://www.singularityrainbow.ai/p/you-have-no-idea-how-big-dftx-is
2•charliejordan•43m ago•0 comments

Show HN: GG Translator – Turn gaming shit talk into friendly phrases

https://ggtranslator.com
1•mcadenhe•44m ago•0 comments

US citizen charged after GrapheneOS phone wipes during airport search

https://www.techspot.com/news/113236-us-prosecutors-charge-atlanta-man-after-grapheneos-phone.html
2•eecc•45m ago•0 comments

So-called 'Skynet Day' came too close to SF after rogue agent hacked a startup

https://apnews.com/article/skynet-ai-terminator-artificial-intelligence-eb85da03a0161beaa5f3babc4...
3•billybuckwheat•46m ago•1 comments

Show HN: LuaJIT with Native SIMD

https://github.com/TheLuaOSProject/LuaJITMT/releases/tag/1.0.0-simd
1•frityet•47m ago•1 comments

Can Frontier Models Recall Long-Tail Facts? A Cricket Stress Test

https://corvi.careers/blog/frontier-models-long-tail-facts/
1•sp1982•48m ago•0 comments

Building a CEL Engine for .NET

https://bsid.io/writing/building-a-cel-engine-for-net
2•jackedEngineer•48m ago•0 comments

Refactoring cuisine: how an Iraqi stew sailed to Singapore

https://iza.ac/posts/2026/07/the-journey-of-bamya/
1•infinitewalk•48m ago•0 comments

Browser-Based QBasic Environment

https://kavak.run/studio/
3•rickcarlino•51m 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.