frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GitHub Status – Let's put out an impact statement first

https://twitter.com/i/status/2075161900275360076
1•denysvitali•33s ago•0 comments

Show HN: Android Developer Verification Package Blacklisted in Aurora Store

1•bewilderbeast•1m ago•0 comments

Just Keep at It: A Decade at Mozilla

https://eqrion.net/ten-years-at-mozilla/
1•birdculture•3m ago•0 comments

Vercel launching Native SDK – toolkit for building native desktop applications

https://github.com/vercel-labs/native
1•exponential_dan•7m ago•0 comments

Every JavaScript bundler handles inline <script> tags wrong

https://carter.sande.duodecima.technology/inline-script-pitfalls/
1•ptx•8m ago•0 comments

Verbalizable Representations Form a Global Workspace in Language Models

https://transformer-circuits.pub/2026/workspace/index.html
1•andsoitis•9m ago•0 comments

Calnode – self-hostable Calendly and Zoom in one Go binary

https://calnode.com/
1•shockalotti•9m ago•0 comments

SnapID – point your camera at anything, get an instant AI ID

https://apps.apple.com/us/app/snapid-object-identifier/id6761325361
1•rafaelrpadovani•10m ago•0 comments

Wall Street Banks Miss Multibillion-Dollar AI Deals in Hong Kong

https://www.bloomberg.com/news/articles/2026-07-09/wall-street-banks-miss-multibillion-dollar-ai-...
1•technewssss•10m ago•0 comments

Show HN: 18 Words

https://18words.com/
3•pompomsheep•11m ago•0 comments

A field guide to Claude Fable 5: Finding your unknowns

https://claude.com/blog/a-field-guide-to-claude-fable-finding-your-unknowns
1•maxloh•11m ago•0 comments

Generative Colors with CSS

https://gomakethings.com/articles/generative-colors-with-css/
2•surprisetalk•14m ago•0 comments

The Most Important Cheque in Economics

https://humanprogress.org/the-most-important-check-in-economics/
3•throw0101d•15m ago•0 comments

TikTok users don't have as much agency over their FYPs as they think

https://arstechnica.com/science/2026/07/how-much-control-do-tiktok-users-really-have-over-fyps/
1•derbOac•15m ago•0 comments

Pivotick is network graph library to facilitate pivoting

https://github.com/Pivotick/Pivotick
2•adulau•16m ago•0 comments

Abandoned Motorola Headquarters (2020)

https://www.abandonedspaces.com/industry/motorola.html
2•downbad_•16m ago•0 comments

Glaze: Fast, in memory, serialization, reflection, RPC library for C++

https://github.com/stephenberry/glaze
1•klaussilveira•16m ago•0 comments

Show HN: OpenDescent - a P2P messenger with no central server (libp2p, Ed25519)

https://open-descent.com
1•Jaguwa•16m ago•0 comments

Neortcw: Return to Castle Wolfenstein SP/MP/ET in a Single Build

https://github.com/klaussilveira/neortcw
1•klaussilveira•17m ago•0 comments

Databricks AI Agent Genie Code Is No Longer Free. Now You Have to Pay as You Go

https://medium.com/dev-genius/databricks-ai-agent-genie-code-is-no-longer-free-now-you-have-to-pa...
1•protmaks•17m ago•0 comments

Chocolate DOOM-3-BFG: original BFG experience, without the bugs

https://github.com/klaussilveira/chocolate-doom3-bfg
1•klaussilveira•18m ago•0 comments

I parsed 17 years of Spain's company registry – 9.5M events, no scraping

https://bormeapi.com/blog/borme-open-data-api
1•gekosp•19m ago•0 comments

Show HN: 92% of US city websites fail Ada accessibility

https://accesslumens.com/research/state-of-us-local-government-accessibility-2026
2•a11ymaster•20m ago•0 comments

What the CE mark means on your electronics

https://www.engadget.com/2209022/what-ce-marking-means-on-electronics/
3•bookofjoe•21m ago•0 comments

Ocean floor witnessed splitting apart for the first time – releasing lava

https://www.nature.com/articles/d41586-026-02139-7
2•Someone•22m ago•0 comments

Which Predictor? How GEPA Optimizes a Multi-Agent DSPy Program

https://www.elicited.blog/posts/how-gepa-optimizes-a-multi-agent-dspy-program
1•justanotheratom•24m ago•1 comments

Google DeepMind Unionization Talks Are Off to a Rocky Start

https://www.wired.com/story/google-deepmind-unionization-talks-are-off-to-a-rocky-start/
5•moxifly7•25m ago•0 comments

What goes on in a tennis player's brain facing a 238 km/h ball?

https://www.rte.ie/brainstorm/2026/0709/1582506-tennis-serve-return-brain-reaction-prediction-neu...
1•austinallegro•25m ago•0 comments

Show HN: Agent scans 130 careers pages nightly, scores jobs vs. your resume

https://github.com/tarunlnmiit/autopilot-jobhunt
1•tarunlnmiit•27m ago•1 comments

Show HN: Flow – a real-time network throughput dashboard for the terminal

https://terminaltrove.com/flow/
1•programmersd•28m 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.