frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Front End Rust Without Node

https://blog.urth.org/2022/02/14/frontend-rust-without-node
1•mahirsaid•1m ago•0 comments

What your phone knows could help scientists understand your health

https://news.stanford.edu/stories/2026/03/screenome-digital-habits-smartphone-mental-physical-health
1•XzetaU8•2m ago•0 comments

Scientists Transfer Longevity Gene

https://scitechdaily.com/scientists-successfully-transfer-longevity-gene-paving-the-way-for-exten...
1•thunderbong•4m ago•0 comments

AI Error May Have Contributed to Girl's School Bombing in Iran

https://thisweekinworcester.com/exclusive-ai-error-girls-school-bombing/
1•apolloartemis•8m ago•0 comments

How many options fit into a boolean?

https://herecomesthemoon.net/2025/11/how-many-options-fit-into-a-boolean/
1•luu•18m ago•0 comments

SK lays off nearly 1k workers at Georgia plant amid cooling automaker EV plan

https://apnews.com/article/georgia-electric-vehicle-battery-manufacturing-layoffs-workers-79a4ec7...
1•josephh•18m ago•0 comments

Ships in Gulf declare themselves Chinese to dodge attack

https://www.ft.com/content/eaecc3ce-ba4e-4e19-9d0a-6cf1536a5aed
4•KnuthIsGod•22m ago•0 comments

Doomscroll 14,333 cat pictures

https://cat.aadishv.dev/
2•aadishv•22m ago•2 comments

Unemployment Reasons, by Age and Education

https://flowingdata.com/2026/03/05/unemployment-reasons/
3•gslin•25m ago•0 comments

Using Rust and Postgres for everything: patterns learned over the years

https://kerkour.com/rust-postgres-everything
3•olalonde•27m ago•0 comments

Show HN: Quantum-PULSE – compress-then-encrypt vault for LLM training data

https://github.com/Naveenub/quantum-pulse
1•naveenub•28m ago•0 comments

You can get better code by exploiting model weights

https://kelvinfichter.com/pages/thoughts/train-harder/
1•kfichter•33m ago•0 comments

Show HN: BurnRate – Track what you spend on AI coding tools

https://getburnrate.io/
1•mwong17•36m ago•0 comments

Worming out molecular secrets behind collective behaviour

https://iisc.ac.in/events/worming-out-molecular-secrets-behind-collective-behaviour/
2•rainhacker•36m ago•0 comments

Show HN: Resend-CLI, unofficial Resend CLI built for AI agents and humans

https://github.com/shubhdeep12/resend-cli
1•Shubhdeep_12•36m ago•0 comments

Show HN: Rai – Add AI steps in your shell, scripts or CI/CD pipelines

https://appmakes.github.io/Rai/
1•perkit•36m ago•0 comments

Full-Text RSS site config files

https://github.com/fivefilters/ftr-site-config
1•microflash•37m ago•0 comments

Astronomers Spot a Cosmic Laser Halfway Across the Universe

https://www.universetoday.com/articles/astronomers-using-meerkat-spot-a-cosmic-laser-halfway-acro...
2•johnbarron•38m ago•0 comments

Trump has privately shown serious interest in U.S. ground troops in Iran

https://www.nbcnews.com/politics/white-house/trump-privately-shown-serious-interest-us-ground-tro...
7•johnbarron•39m ago•2 comments

Semi-formal reasoning helps agents reason about code without executing the code

https://arxiv.org/abs/2603.01896
1•dnw•41m ago•0 comments

Show HN: EdgeDox – Offline document AI on Android using Qwen3.5-0.8B

https://play.google.com/store/apps/details?id=io.cyberfly.edgedox&hl=en_US
1•cyberfly-labs•42m ago•0 comments

EA Javelin Anticheat job listing mentions future support for Linux and Proton

https://www.gamingonlinux.com/2026/03/ea-javelin-anticheat-job-listing-mentions-future-support-fo...
2•exploraz•50m ago•1 comments

Should AI web agents skip sponsored/ad results by default?

2•ilyasJosef•58m ago•3 comments

TCXO Failure Analysis

https://serd.es/2026/03/06/TCXO-failure-analysis.html
1•zdw•59m ago•0 comments

Google Workspace CLI Removes MCP Support

https://github.com/googleworkspace/cli/pull/275
1•waf•1h ago•0 comments

Armed robots take to the battlefield in Ukraine war

https://www.bbc.com/news/articles/c62662gzlp8o
3•dabinat•1h ago•0 comments

Show HN: CC Pocket – Control Claude Code/Codex from Your Phone

https://github.com/K9i-0/ccpocket
1•k9i•1h ago•0 comments

Readeck 0.22 Released

https://readeck.org/en/blog/202602-readeck-22/
1•Curiositry•1h ago•0 comments

Evolving Languages Faster with Type Tailoring (2024)

https://lambdaland.org/posts/2024-07-15_type_tailoring/
1•PaulHoule•1h ago•0 comments

Grammarly is using our identities without permission

https://www.theverge.com/ai-artificial-intelligence/890921/grammarly-ai-expert-reviews
7•LordAtlas•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.