frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: PDR AI – Open-source startup accelerator engine for non-technical chaos

https://github.com/Deodat-Lawson/LaunchStack
2•DaggerDreaming•2m ago•0 comments

I pulled IRS filings for the org that wrote Meta's model legislation

https://old.reddit.com/r/linux/comments/1rtd51g/update_i_pulled_irs_filings_for_the_org_that/
2•theseusares•3m ago•1 comments

New Mexico's Child-Safety Case Could Change Social Media Forever

https://kancelaria-skarbiec.pl/en/meta-newmexico-trial/
1•doener•5m ago•0 comments

Museum of Questionable Medical Devices

https://www.museumofquackery.com/
1•nomilk•9m ago•0 comments

Race conditions in generated code (tested across 10 models, 5 runs)

https://forward.deployed.agency/blog/check-call-deduct
1•birdculture•9m ago•0 comments

Meta allegedly targeted ads at teens based on their emotional state (2025)

https://www.business-humanrights.org/en/latest-news/meta-allegedly-targeted-ads-at-teens-based-on...
1•doener•10m ago•0 comments

Free nonce and API key generator

https://www.aegisoptikon.com/security-demo.html
1•Coppernickske•17m ago•0 comments

Hardening macOS (Updated to Tahoe)

https://www.bejarano.io/hardening-macos/
1•ricardbejarano•18m ago•0 comments

Torturing Rustc by Emulating HKTs

https://www.harudagondi.space/blog/torturing-rustc-by-emulating-hkts/
1•g0xA52A2A•19m ago•0 comments

International Oscar Favorites Are Offering a Complicated New View of America

https://www.nytimes.com/2026/02/25/magazine/international-oscar-favorites-are-offering-a-complica...
1•coloradoave22•23m ago•0 comments

Learn Claude Code

https://learn-claude-agents.vercel.app/en/
1•samuel246•25m ago•0 comments

Why is this program erroneously rejected by three C++ compilers?

https://stackoverflow.com/questions/5508110/why-is-this-program-erroneously-rejected-by-three-c-c...
1•tornikeo•29m ago•0 comments

The Effect of High-Tech Clusters on the Productivity of Top Inventors: Comment [pdf]

https://michaelwiebe.com/assets/moretti/moretti_comment_aer.pdf
1•luu•31m ago•0 comments

Major Aging Related Metabolic Shifts Occur Around Ages 44 and 60

https://www.nature.com/articles/s43587-024-00692-2
2•LarsDu88•32m ago•1 comments

Real Ollama Admin UI

https://github.com/ollama-admin/ollama-admin
1•eriscodev•36m ago•1 comments

Google AI Pro users getting locked out of Antigravity

https://discuss.ai.google.dev/t/google-ai-pro-subscription-antigravity-quota-not-working-as-adver...
1•anticensor•37m ago•0 comments

Coding After Coders: The End of Computer Programming as We Know It

https://www.nytimes.com/2026/03/12/magazine/ai-coding-programming-jobs-claude-chatgpt.html
1•bgarbiak•38m ago•0 comments

Italy ruling tells millions they have lost the right to citizenship

https://www.cnn.com/2026/03/14/travel/italy-citizenship-law-restrictions-constitutional-court
3•maxloh•40m ago•0 comments

How to write a good prompt for generating images

https://nanobananaprompt.club
2•w-mobai•44m ago•0 comments

LA's Tesla Diner is so dead, not even the tech bros are eating there

https://www.sfgate.com/la/article/tesla-diner-la-22071684.php
2•MilnerRoute•46m ago•0 comments

Study finds human aging happens in bursts

https://news.stanford.edu/stories/2024/08/massive-biomolecular-shifts-occur-in-our-40s-and-60s-st...
3•thunderbong•47m ago•0 comments

Become a Claude Certified Architect

https://anthropic.skilljar.com/claude-certified-architect-foundations-access-request
1•donutshop•47m ago•0 comments

Show HN: Kromacut – Open-source tool for multi-color 3D prints from images

https://github.com/vycdev/Kromacut
2•vycdev•48m ago•0 comments

I built a vocabulary trainer for people who read English books

https://www.vokabelwunder.de
1•zuzzl•49m ago•0 comments

Adobe to pay $75M to settle US lawsuit over hard-to-cancel subscriptions

https://www.dexerto.com/entertainment/adobe-to-pay-75m-to-settle-us-lawsuit-over-hard-to-cancel-s...
3•gregdoesit•50m ago•0 comments

Pi Day

https://en.wikipedia.org/wiki/Pi_Day
2•beardyw•58m ago•0 comments

Slashdot Is Down

https://slashdot.org
2•xtracto•59m ago•0 comments

How the world lives with AI [pdf]

https://static1.squarespace.com/static/631d02b2dfa9482a32db47ec/t/696fdc02d5b1030cb064d15a/176893...
1•Manheim•1h ago•1 comments

Curation and Its Side Effects

https://www.autodidacts.io/curators-skim/
2•Tomte•1h ago•0 comments

Meta reportedly plans layoffs as AI costs increase

https://www.theguardian.com/technology/2026/mar/13/meta-layoffs-ai
2•dilawar•1h ago•1 comments
Open in hackernews

Ask HN: What are you currently trying to figure out?

3•gooob•10mo 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•10mo ago
Trying to figure out what to do next and what to do with my life.
gooob•10mo ago
how's that going? what are your current options?
sherdil2022•10mo ago
Not going good.
scottmcdot•10mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.