frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: ccMarvin – Just Email with AI

https://ccmarvin.com
1•stopman•1m ago•0 comments

How Remote Work Has Helped a Generation of Working Parents

https://www.nytimes.com/2026/06/21/upshot/remote-work-parents-mothers.html
1•karakoram•1m ago•1 comments

Introduction to Making Makefiles

https://www.jfranken.de/homepages/johannes/vortraege/make.en.html
1•pillmillipedes•2m ago•0 comments

Brazilian judge sentences parents to prison for homeschooling their daughters

https://adfinternational.org/news/brazilianjudge-sentences-parents-to-prison-for-homeschooling-th...
1•like_any_other•2m ago•1 comments

The emergence of the web data infrastructure layer for AI

https://www.technologyreview.com/2026/06/24/1139202/the-emergence-of-the-web-data-infrastructure-...
1•Brajeshwar•2m ago•0 comments

Computer use in Gemini 3.5 Flash

https://blog.google/innovation-and-ai/models-and-research/gemini-models/introducing-computer-use-...
1•swolpers•2m ago•0 comments

Show HN: DBOSify – Drop-in Temporal replacement built on Postgres

https://github.com/dbos-inc/dbosify-py
1•KraftyOne•3m ago•0 comments

2026 EuroLLVM Developers' Meeting Talks

https://www.youtube.com/playlist?list=PL_R5A0lGi1ABJTIK5_5MkvHDb12mUmpSz
1•matt_d•3m ago•0 comments

A way to detect AWS/Terraform drift

https://infraviewer.site
1•Fofryf•4m ago•0 comments

Utah's largest solar and battery storage project is officially online

https://electrek.co/2026/06/24/utahs-largest-solar-battery-storage-project-is-officially-online/
1•Bender•6m ago•0 comments

Chinese supercomputer tops US models in global ranking

https://www.cnn.com/2026/06/24/tech/china-tops-world-supercomputer-ranking-intl-hnk
1•i4i•7m ago•0 comments

Ask HN: What would you most like to see improved in the Claude Code interface?

1•davidbjaffe•7m ago•1 comments

Show HN: Follow the Thread – a calmer, typographic way to read Wikipedia

https://read.filteredctrl.com
1•khaki_pine•7m ago•0 comments

Indian-App-Food-Stress

https://github.com/ATUERK73/IndiaApp-Food-Stress-Indicator
1•atuerk11•8m ago•1 comments

Windage – free browser remake of Scorched Earth

https://windage.online/
1•cuckovic•8m ago•0 comments

Fwupd 2.0.21 Brings Fixes for More Than 250 Potential Security Issues

https://www.phoronix.com/news/Fwupd-2.0.21-Released
1•Bender•9m ago•0 comments

Rust Commercial Network Launches to Bring Commercial Rust Users Together

https://rustfoundation.org/media/rust-commercial-network-launches-to-bring-commercial-users-of-ru...
2•thesuperbigfrog•10m ago•0 comments

Ebola confirmed in France: Officials report first case of eye-bleeding disease

https://www.dailymail.com/health/article-15925635/Ebola-virus-confirmed-France-doctor-tests-posit...
1•Bender•10m ago•0 comments

LLM Research Is Fake

https://www.quoin.ai/
1•quoinai•11m ago•0 comments

Security Is Inherently Political

https://blog.miloslavhomer.cz/security-is-a-political-problem/
1•ArcHound•12m ago•1 comments

Flock CEO: "They're Gonna Enforce Immigration No Matter What Flock Does"

https://ipvm.com/reports/flock-ceo-immigration
3•jhonovich•17m ago•2 comments

Ubisoft co-founder Claude Guillemot dies in plane crash

https://techcrunch.com/2026/06/21/ubisoft-co-founder-claude-guillemot-dies-in-plane-crash/
7•randycupertino•17m ago•0 comments

Where might we find life in our solar system?

https://www.nationalgeographic.com/science/article/where-might-we-find-life-in-our-solar-system
2•bookofjoe•18m ago•1 comments

Cerebras CEO says margin forecast misunderstood as stock plummets after earnings

https://www.cnbc.com/2026/06/24/cerebras-cbrs-stock-earnings.html
5•mikhael•18m ago•0 comments

Microsoft's quantum computing technology called into question, again

https://www.reuters.com/legal/government/microsofts-quantum-computing-technology-called-into-ques...
2•tartoran•19m ago•0 comments

Trump cancels bipartisan housing bill, reiterates demand for SAVE America Act

https://www.cbsnews.com/news/trump-signs-housing-bill-capitol/
6•mikhael•19m ago•1 comments

Raspberry Pi and the EU Cyber Resilience Act

https://www.raspberrypi.com/news/raspberry-pi-and-the-eu-cyber-resilience-act/
2•Brajeshwar•20m ago•0 comments

Stripe, Anthropic, and OpenAI are backing an effort to stop respiratory infecti

https://www.technologyreview.com/2026/06/24/1139621/stripe-anthropic-and-openai-are-backing-an-ef...
3•joozio•20m ago•0 comments

You Don't Know Jack About Formal Verification

https://queue.acm.org/detail.cfm?id=3819084
2•yarapavan•20m ago•0 comments

LLM from Scratch: a small LLM running inside MIT's Scratch

https://github.com/Broyojo/llm_from_scratch
3•alexkranias•21m 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.