frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Olympia becomes first Washington city to pass polyamory protections

https://www.opb.org/article/2026/03/15/olympia-first-washington-city-polyamory-protection/
1•robtherobber•49s ago•0 comments

Video Shows How Globes Were Made by Hand in 1955. End of a 500-Year Tradition

https://www.openculture.com/2026/03/how-globes-were-made-by-hand-in-1955.html
2•speckx•3m ago•0 comments

Liminal Space

https://en.wikipedia.org/wiki/Liminal_space_(aesthetic)
1•tosh•3m ago•0 comments

Free Sora Generator

https://freesoragenerator.com
1•Mehedy2026•3m ago•0 comments

Comprehension Debt – the hidden cost of AI generated code

https://addyosmani.com/blog/comprehension-debt/
1•matthewsinclair•6m ago•0 comments

OjaNeuronLayer – High‑Performance CPU Neural Engine in C++ (AVX‑512) Hi HN

https://github.com/KilianDiama/OjaNeuronLayer_AVX512
1•diamajax•6m ago•0 comments

Ask HN: AI Agents for Economists?

1•fhoner•7m ago•0 comments

Most GitHub Actions OIDC trust policies allow any repo to assume AWS IAM roles

https://haitmg.pl/blog/github-actions-oidc-aws-backdoor/
1•gebalamariusz•8m ago•0 comments

Chargie – Charging Limiter for Laptops

1•kruger81•12m ago•0 comments

OpenClaw Is a Security Nightmare Dressed Up as a Daydream

https://composio.dev/content/openclaw-security-and-vulnerabilities
2•birdculture•12m ago•0 comments

Grace Hopper's Revenge

https://www.thefuriousopposites.com/p/grace-hoppers-revenge
1•ashirviskas•13m ago•1 comments

How Generative AI Is Transforming QA?

1•allenmatthew•14m ago•0 comments

Show HN: OpenCode Ensemble – parallel agent teams for OpenCode (plugin)

https://github.com/hueyexe/opencode-ensemble
1•huey77•17m ago•0 comments

US Covid Test Website Now Redirected to White House Hosted Page

https://www.whitehouse.gov/lab-leak-true-origins-of-covid-19/
1•phantomathkg•17m ago•0 comments

Rails Testing on Autopilot: Building an Agent That Writes What Developers Won't

https://mistral.ai/news/rails-testing-on-autopilot-building-an-agent-that-writes-what-developers-...
1•lis•18m ago•0 comments

Show HN: Market Physics Engine – simulate adoption friction before you build

https://marketphysics.eu/
1•Zologic•22m ago•2 comments

Video Encoding and Decoding with Vulkan Compute Shaders in FFmpeg 8.1

https://www.khronos.org/blog/video-encoding-and-decoding-with-vulkan-compute-shaders-in-ffmpeg
2•pandaforce•22m ago•0 comments

Why working in your team might feel like swimming in the glue

https://www.bolshchikov.com/p/the-real-reason-teams-break
1•bolshchikov•25m ago•0 comments

Claude vs. a €12 Bluetooth keyboard on Linux

https://jukkaniiranen.com/2026/03/claude-vs-bluetooth-keyboard-on-linux/
1•jukkan•26m ago•0 comments

Show HN: Jailbreaking an e-reader into a custom weather display

https://simons-blog.vercel.app/blog/kobo-root
1•SimonLeclere•29m ago•0 comments

Ask HN: Quick technical questions about LLMs

1•d--b•30m ago•0 comments

How do frontier AI agents perform in multi-step cyber-attack scenarios?

https://www.aisi.gov.uk/blog/how-do-frontier-ai-agents-perform-in-multi-step-cyber-attack-scenarios
1•lebovic•31m ago•0 comments

Anatomy of a War Premium: How Prediction Markets Are Pricing Oil

https://predictmarketcap.com/analysis/iran-oil-war-premium
1•collectedparts•31m ago•0 comments

Can LLMs Hack Enterprise Networks?

https://github.com/andreashappe/cochise
2•runningmike•32m ago•1 comments

Women burned at the stake in modern-day witch trial 'epidemic'

https://www.telegraph.co.uk/global-health/women-and-girls/women-burned-at-the-stake-in-papua-new-...
1•graemep•36m ago•1 comments

Morgan Stanley: Running Flux on 500 clusters with 100k+ containers

https://fluxcd.io/blog/2026/03/stairway-to-gitops-morgan-stanley/
1•stealthybox•37m ago•1 comments

Heavier Proton Discovered at LHC

https://www.theguardian.com/science/2026/mar/17/scientists-discover-heavier-proton-upgraded-detector
1•zabzonk•39m ago•0 comments

Switzerland built a secure alternative to BGP: SCION

https://www.theregister.com/2026/03/17/switzerland_bgp_alternative/
1•defrost•39m ago•1 comments

Show HN: I enriched 24K phytochemicals with trials, bioactivity, and patent data

https://github.com/wirthal1990-tech/USDA-Phytochemical-Database-JSON
1•wirthal1990•41m ago•0 comments

The adaptive design system for Tailwind CSS

https://www.skeleton.dev/
1•theorchid•43m ago•0 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.