frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Browser-Based Tempest – Transmitting VHF Morse via Monitor EMI Leakage

https://github.com/TA1EEI/vhf-morse-transmitter-monitor
1•TA1EEI•53s ago•0 comments

Industry Standard Tools: de facto tools used in various trades

https://industrystandard.tools/
1•throw0101a•1m ago•0 comments

AI Backlash Comes to the Classroom

https://www.axios.com/2026/09/07/ai-schools-backlash-bans-new-york-los-angeles
1•1vuio0pswjnm7•3m ago•0 comments

Clustering and Anomaly Detection on Handwritten Digits

https://stochastic.blog/clustering-and-anomaly-detection-on-handwritten-digits/
2•Anon84•5m ago•0 comments

Trump Floats Renaming New Mexico as 'New America,' Prompting Pushback

https://www.nytimes.com/2026/09/07/us/politics/trump-rename-new-mexico.html
1•dgellow•6m ago•0 comments

Sequencing-free On-chip detection of lung cancer [pdf]

https://www.nature.com/articles/s41698-026-01547-2.pdf
1•wslh•6m ago•0 comments

Audiowave – bid to own a channel. Post whatever you'd like

https://audiowave.lol
1•archemistz•7m ago•0 comments

Vibe coding made writing cheap. It made reading expensive

https://blog.crossui.com/2026/09/vibe-coding-made-reading-expensive
2•linb•8m ago•0 comments

Everything Everywhere All At Once was edited on an old iMac (2022)

https://www.inverse.com/entertainment/everything-everywhere-all-at-once-editor-interview
2•asimovDev•11m ago•0 comments

Has the DVD-hacking case made a t-shirt illegal? (2000)

https://www.cnn.com/2000/TECH/computing/09/08/decss.shirt.idg/index.html
1•1970-01-01•12m ago•0 comments

A meta-analysis of 3 different notions of software complexity

https://typesanitizer.com/blog/complexity-definitions.html
1•harperlee•12m ago•0 comments

SoapUI: The Most Popular API Testing Tool

https://www.soapui.org/tools/soapui/
1•janandonly•13m ago•0 comments

AI Agents Aha Moment

https://k1024.org/posts/2026/2026-09-06-ai-agents-aha/
1•edward•16m ago•0 comments

Could life exist on Venus? Peptides survive harsh acid

https://www.universetoday.com/articles/could-life-exist-on-venus-peptides-survive-harsh-acid
2•Betelbuddy•16m ago•0 comments

The Shortest IPv6 Addresses

https://ache.one/notes/vanity-ipv6
2•torutofu•17m ago•0 comments

Show HN: Rucc – C compiler in Rust, now compile and run SQLite

https://github.com/tamnd/rucc/pull/624
1•tamnd•19m ago•0 comments

Sound Could Make Sense of Big Data

https://spectrum.ieee.org/data-sonification-stephen-roddy
1•pseudolus•20m ago•0 comments

Guest Terminal:~$

https://i.xiaohan.dev/
2•Bluestein•20m ago•0 comments

Ask HN: 3.5 inch diskette read errors, would a period correct drive do better?

3•rietta•20m ago•0 comments

Room and Pillar Mining

https://en.wikipedia.org/wiki/Room_and_pillar_mining
1•simonebrunozzi•21m ago•0 comments

The next valuable file on your computer won't contain your work

https://tansei.io/blog/ai-agent-skills-workflows-as-files
1•Pooja_Tansei•21m ago•0 comments

Pinch Points – a Rust game with crabs

https://agourlay.github.io/pinch-points-a-rust-game-with-crabs/
1•agourlay•22m ago•1 comments

lsfg-vk v2.0.0

https://lsfg-vk.dev/blog/release-v2.0.0/
2•ErenayDev•24m ago•0 comments

Show HN: Neuro, a compiled language for AI that matches Clang -O2

https://github.com/PanzerPeter/Neuro
1•PanzerPeter•25m ago•1 comments

Show HN: A brainstorm canvas with no back end, running on Chrome's on-device AI

https://idea.xiaohan.dev
1•hanstyle•25m ago•0 comments

A Modest Proposal

https://systemsapproach.org/2026/09/07/a-modest-proposal/
2•teleforce•28m ago•0 comments

De-Brainrot Vacations

https://devz.cl/posts/i-spent-my-vacations-de-brainrotting/
74•DanielVZ•29m ago•16 comments

Show HN: BorderCut – Remove image backgrounds locally in 8 kB, without ML

https://github.com/kong75/bordercut
2•kong75•30m ago•2 comments

Nuxt co-creator Alexandre Chopin joins Encore

https://encore.dev/blog/alexandre-chopin-joins-encore
2•machekb•30m ago•0 comments

Splash-free urinals for global sustainability and accessibility

https://academic.oup.com/pnasnexus/article/4/4/pgaf087/8098745?login=false
43•u1hcw9nx•31m ago•15 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.