frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What If It's Not the Phones?

https://www.theatlantic.com/technology/2026/07/phones-haidt-play-gray/687846/
1•Jtsummers•39s ago•0 comments

AI is powering an economy in which many Americans are falling behind

https://www.cnn.com/2026/07/07/economy/ai-masks-inequality-americans
1•mapping365•1m ago•0 comments

Modular Pretraining Enables Access Control

https://alignment.anthropic.com/2026/modular-pretraining/
1•kvee•3m ago•0 comments

Don't Get Sick in America

https://blogography.com/archives/2026/07/dont-get-sick-in-america.html
5•speckx•4m ago•0 comments

OpenAI is discontinuing ChatGPT Atlas, its standalone desktop browser

https://9to5mac.com/2026/07/09/openai-is-discontinuing-chatgpt-atlas-its-standalone-desktop-browser/
2•coloneltcb•5m ago•0 comments

N+1

https://www.woman-of-letters.com/p/n1
1•Caiero•5m ago•0 comments

AI that judges fantasy battles from images

https://dreadpit.com/
1•seldiora•7m ago•0 comments

Jeez is dead: post-mortem of an autonomous agent that died twice

https://www.marzapower.com/blog/jeez/season2/the-post-mortem/
1•marzapower•7m ago•0 comments

Nancy Pelosi, Donald Trump bet on the same 10 stocks

https://www.msn.com/en-us/money/news/nancy-pelosi-donald-trump-bet-on-the-same-10-stocks-some-mig...
1•petethomas•8m ago•0 comments

Ask HN: Will AI make English more uniform just as Python did with source code?

1•amichail•9m ago•0 comments

My niche Rust project now competes with Microsoft

https://jdiaz97.github.io/blog/my-niche-rust-project-now-competes-with-microsfot/
1•jdiaz97•10m ago•0 comments

The AGI Race and Existential Risk (speed of deployment vs. safety)

https://www.nber.org/papers/w35276
1•jballesterosc•11m ago•0 comments

We've reset 5-hour and weekly rate limits for all users

https://twitter.com/ClaudeDevs/status/2075279141352706215
1•espeed•11m ago•0 comments

Truexon Font · 1001 Fonts

https://www.1001fonts.com/truexon-font.html
1•joseegregorio•13m ago•0 comments

Show HN: Claude Status Light

https://github.com/whatadewitt/claude-status-light
1•Zypho•13m ago•0 comments

Show HN: Transcribe.Free - Free audio and video to text

https://transcribe.free/
1•nadermx•14m ago•0 comments

1k Days to Product Market Fit

https://deploy95.substack.com/p/1000-days-to-product-market-fit
1•tristalihaha•14m ago•0 comments

Daily global sea surface temperatures break records for the time of year

https://climate.copernicus.eu/copernicus-marine-and-copernicus-climate-change-daily-global-sea-su...
1•geox•15m ago•0 comments

Dot.dead: A Graveyard of Discontinued Projects

https://menyadanyazovut.github.io/dot.dead/
1•zahrevsky•15m ago•0 comments

Open Sourcing Our Most Advanced Linux Security Engine: OwlSM

https://www.levelblue.com/blogs/spiderlabs-blog/open-sourcing-our-most-advanced-linux-security-en...
1•speckx•18m ago•0 comments

Show HN: EVconomics – EV vs. gas cost-of-ownership calculator with live prices

https://calc.evconomics.org
2•DanCharge•19m ago•0 comments

The night the Earth shook, strangers started to draw

https://sheets.works/data-viz/strangers-draw-maps
1•aendruk•20m ago•0 comments

Employers who laid off workers citing AI are starting to regret it

https://www.cnbc.com/2026/07/01/employers-who-laid-off-workers-for-ai-are-reversing-their-decisio...
2•stefap2•22m ago•1 comments

Eurostar Prepares for 55C Summers

https://www.telegraph.co.uk/business/2026/07/09/eurostar-prepares-for-55c-summers/
2•root-parent•22m ago•0 comments

ID dev claims relegation to support studio size as 136 layoffs confirmed

https://www.videogameschronicle.com/news/id-software-dev-claims-its-been-relegated-to-support-stu...
1•starkparker•22m ago•1 comments

How to Keep Claude Fable 5 Costs Under Control

https://upstash.com/blog/keep-claude-fable-5-costs-under-control
1•cahid_arda•22m ago•0 comments

TestMyBrain

https://www.testmybrain.org/
1•debo_•22m ago•0 comments

Brainiak: A CPU-Only Topological AI Core (No Transformer) Governs LLM Runtime

https://www.hackster.io/jenfi59/brainiak-topological-al-drives-llm-by-lora-runtime-adapters-73a678
1•brainiak_q•22m ago•0 comments

Be a Gardener, Not a Tenant

https://www.lireo.com/be-a-gardener-not-a-tenant/
1•speckx•23m ago•0 comments

Show HN: LocaleProof – catch internationalization text overflow in Figma

https://www.figma.com/community/plugin/1652797384930391326
1•AnatolySkuba•23m 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.