frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Backup Exchange Online Mailbox

https://www.crashplan.com/glossary/what-is-exchange-online-backup/
1•santoshcp•3m ago•0 comments

Demo: Frostsnap 2-of-3 Distributed Key Generation and Backups

https://frostsnap.com/demo/
1•frostsnap•6m ago•0 comments

Can pumping chemicals into the ocean help stop global heating?

https://www.theguardian.com/environment/2026/mar/10/sodium-hydroxide-ocean-global-heating-solution
1•philbo•6m ago•0 comments

Advanced Machine Intelligence (AMI) announces $1.03B funding round

https://amilabs.xyz/updates
1•matthieu_bl•6m ago•0 comments

Anthropic files lawsuit to block Pentagon blacklisting over AI use curbs

https://vechron.com/2026/03/anthropic-files-lawsuit-against-pentagon-over-ai-blacklist-and-claude...
1•GeorgeWoff25•7m ago•0 comments

Ten Signs a Claimed Mathematical Breakthrough Is Wrong (2008)

https://scottaaronson.blog/?p=304
2•adunk•10m ago•1 comments

We Need a Proper AI Inference Benchmark Test

https://www.nextplatform.com/compute/2026/03/09/we-need-a-proper-ai-inference-benchmark-test/5208100
2•jonbaer•11m ago•0 comments

I built a reader mode Chrome extension that works on any site

https://chromewebstore.google.com/detail/readr-–-clean-page-one-cl/acpeognnfhdbfdmdpkfbjgppjpgp...
2•Ogbon•14m ago•1 comments

Integrating SAST into DevSecOps

https://pvs-studio.com/en/webinar/26/
2•mare_maple•16m ago•0 comments

Will AI Client Applications Replace Browsers?

https://ahmethuseyindok.com/blog/will-ai-client-applications-replace-browsers
3•dokdev•20m ago•1 comments

Mozi, Jesus, and Care for Others

https://nonnobis.weebly.com/blog/mozi-jesus-and-love-for-others
2•kindkang2024•21m ago•0 comments

Page Agent – JavaScript in-page GUI agent

https://github.com/alibaba/page-agent
2•helloplanets•22m ago•0 comments

Show HN: JTC – JSON/YAML Type Checker Using TypeScript

https://github.com/disjukr/jtc
2•disjukr•24m ago•0 comments

Japr750 – Python cipher engine (18µs/char) + Decoding challenge

https://github.com/Ja1pr/Ja1pr-750
2•User750•24m ago•1 comments

Calling all who run inference in models

1•hpcaitech•25m ago•0 comments

FAA grounds all JetBlue flights after request from airline

https://apnews.com/article/faa-ground-stop-jetblue-e990b118812f467d904d92375b984d71
1•petethomas•26m ago•1 comments

Branching prompts instead of linear chat

1•macnorton•26m ago•0 comments

Source: Havana Syndrome investigation is "a CIA cover-up" – 60 Minutes [video]

https://www.youtube.com/watch?v=C1jmAj9OUOs
1•dataflow•26m ago•1 comments

Apple at 50: Decades of Thinking Different

https://www.youtube.com/watch?v=w8wt0LBCjXM
1•__patchbit__•27m ago•1 comments

Branching prompts instead of linear chat

1•macnorton•29m ago•0 comments

Veltora – Churn Risk Predictor

https://veltora-beta.vercel.app
1•tempoz•30m ago•1 comments

LoGeR – 3D reconstruction from extremely long videos (DeepMind, UC Berkeley)

https://loger-project.github.io
3•helloplanets•30m ago•0 comments

Alibaba tested 18 AI coding agents on 100 real codebases, spanning 233 days each

https://twitter.com/chrislaubai/status/2030931602872967460
2•MrBuddyCasino•31m ago•0 comments

Shared Hosting for Business Growth

1•neuraxhostpg•32m ago•1 comments

How are people do AI evals these days?

1•yelmahallawy•34m ago•0 comments

Show HN: Latchup – Competitive programming for hardware description languages

https://www.latchup.app/
2•fayalalebrun•39m ago•0 comments

Ghost Jobs: The Economy Built on Positions That Don't Exist

https://twitter.com/gothburz/status/2031109663874494773
1•taubek•40m ago•0 comments

DDR4 Sdram – Initialization, Training and Calibration

https://www.systemverilog.io/design/ddr4-initialization-and-calibration/
1•todsacerdoti•44m ago•0 comments

Trump Advisers Urge Him to Find Iran Exit Ramp

https://www.wsj.com/world/middle-east/trump-advisers-urge-him-to-find-iran-exit-ramp-fearing-poli...
2•petethomas•45m ago•0 comments

5,200 holes carved into a Peruvian mountain left by an ancient economy

https://newatlas.com/environment/5-200-holes-peruvian-mountain/
2•defrost•47m 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.