frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: DeepFocus – A quiet digital workspace for doing one thing at a time

https://deepfocus.space/en/the-timeless-study
1•mike_watson•52s ago•0 comments

There Are Files Stored in This Video

https://www.youtube.com/watch?v=fhoJK02oD_E
1•Bender•5m ago•0 comments

AI agent on a network made for geniuses to lead and focus on what's important

1•silisleek•9m ago•0 comments

Ask HN: How do you call the "-" on a keyboard?

1•Igor_Wiwi•12m ago•3 comments

The Enterprise Gap: From "Vibe Coding" to Executable Architecture

https://wolkensteiner.substack.com/p/the-enterprise-gap-from-vibe-coding
1•arman-w-jalili•14m ago•0 comments

Drop-in Apache Spark replacement written in Rust

https://github.com/lakehq/sail
2•davedx•15m ago•1 comments

Show HN: Find code on your site that can be replaced with modern HTML and CSS

https://cssradar.com/
1•Theoleff•18m ago•0 comments

Show HN: ChacharApp – Free, local voice dictation for Mac (open source)

https://juanpablocastro.com/en/projects/chacharapp/
1•juanpablius•18m ago•0 comments

Concurrency in Serene's Runtime

https://lxsameer.com/essays/concurrency-in-serene-1/
1•lxsameer•18m ago•0 comments

Data centres vs. housing: how London became a central battleground

https://www.ft.com/content/67db9b64-ec26-442e-8356-6c4411eba66e
1•thm•19m ago•0 comments

Claude gen-5 models show significant regression in BullshitBench

https://github.com/anthropics/claude-code/issues/83510
2•GodelNumbering•20m ago•0 comments

Show HN: Newsroom Self-hosted, AI-ranked meta-aggregator for HN Subreddits etc.

https://github.com/SpektrNO/newsroom
1•franktore•21m ago•0 comments

Ask HN: Drop your landing page for community review and feedback

1•pranshuchittora•23m ago•1 comments

Show HN: Gitleaks for Codex and Claude Code

https://github.com/softcane/hamza
1•pradeep1177•24m ago•0 comments

Spider-Man: Brand New Day leak racks up millions of views

https://www.theverge.com/entertainment/974199/spider-man-brand-new-day-leak-box-office-records
1•thm•24m ago•0 comments

Show HN: A MicroVM Launcher for BSD and Linux Guests on macOS/Linux (libkrun)

https://github.com/tsirysndr/bsdkrun
1•tsiry•29m ago•0 comments

Chaos of border crossing gives way to limbo for Moroccans on Ceuta's streets

https://www.theguardian.com/world/2026/aug/02/ceuta-border-crossing-spain-morocco
1•teleforce•30m ago•0 comments

JSON Is Lying to You

https://blog.gaborkoos.com/posts/2026-08-03-Your-JSON-Is-Lying-to-You/
2•alvis•32m ago•0 comments

Show HN: FreeWebPToJPG – Batch convert 1k images via Go and SSE

https://freewebptojpg.com
2•harran•35m ago•0 comments

Kakonomics: Or, the preference for Low quality outcomes (2011)

http://gloriaoriggi.blogspot.com/2011/01/kakonomics-or-strange-preference-for.html
2•1659447091•36m ago•1 comments

Call Stack Diffs

https://oskrim.github.io/engineering/2026/08/02/call-stack-diffs.html
2•mpweiher•37m ago•0 comments

GDP growth shows no evidence of AI productivity boom

https://cepr.net/publications/gdp-growth-in-second-quarter-slows-to-1-5-no-evidence-of-ai-product...
3•konmok•42m ago•2 comments

Coldcard hack just grew to $89M, call your friends

https://www.thestreet.com/crypto/markets/coldcard-hack-just-grew-to-75m-call-your-friends
1•thm•48m ago•1 comments

Nvidia releases Cosmos 3 Edge for robotics

https://huggingface.co/blog/nvidia/cosmos3edge
2•rohanath•49m ago•0 comments

YInMn Blue

https://chemistry.oregonstate.edu/chemistry-news-events/yinmn-blue
1•gregsadetsky•51m ago•0 comments

Romania explodes rock to get more water flow to nuclear reactor

https://www.theguardian.com/world/live/2026/aug/03/europe-heatwave-wildfires-migration-ceuta-spai...
3•bluenose69•52m ago•0 comments

Deterministic Core, Non-Deterministic Shell

https://outdata.net/blog/260803
2•LAC-Tech•53m ago•0 comments

Show HN: AQ – a from-scratch 1B academic LLM by a 2-person team in India

https://huggingface.co/zyoralabs/AQ-academic-ai
2•zyoraclub•53m ago•0 comments

EU enforces labeling AI generated content

https://www.euronews.com/my-europe/2026/08/02/ai-generated-label-becomes-mandatory-in-the-eu-for-...
5•nucatus•55m ago•1 comments

Show HN: The best-paid AI/tech job anyone advertises pays $824k, not $100M

https://ctaio.dev/en/jobs/
3•norejisace•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.