frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ongoing Supply Chain Attack Targets CrowdStrike NPM Packages

https://socket.dev/blog/ongoing-supply-chain-attack-targets-crowdstrike-npm-packages
2•TheCleric•2m ago•0 comments

Show HN: Users Loop – SaaS feedback, roadmaps and helpdesks

https://usersloop.com
1•awcode•5m ago•2 comments

Slow Social Media

https://herman.bearblog.dev/slow-social-media/
2•rishikeshs•7m ago•0 comments

Strawman Fallacy

https://en.wikipedia.org/wiki/Straw_man
1•chynkm•10m ago•0 comments

I got the highest score on ARC-AGI again swapping Python for English

https://jeremyberman.substack.com/p/how-i-got-the-highest-score-on-arc-agi-again
1•freediver•12m ago•0 comments

Trump's Son-in-Law Jared Kushner Co-Founds Brain Co. Partnered with OpenAI

https://finance.yahoo.com/news/trumps-son-law-jared-kushner-193009346.html
4•nsoonhui•14m ago•1 comments

First Direct Evidence of Gladiator Fights Against Brown Bears

https://archaeology.org/news/2025/09/08/first-direct-evidence-of-gladiator-fights-against-brown-b...
2•gmays•14m ago•0 comments

September 15, 2025: The Day the Industry Admitted AI Subscriptions Don't Work

https://blog.kilocode.ai/p/why-ai-subscriptions-cannot-work
1•olelves•17m ago•0 comments

Advertising in Microsoft Excel

2•BLKNSLVR•27m ago•0 comments

Online sportsbooks. A security and fraud nightmare (2015)

https://justink.svbtle.com/online-sports-books-a-security-nightmare
1•nodesocket•32m ago•0 comments

Brzozowski Derivatives: Exercise in Combinatory Style

https://blog.zdsmith.com/posts/brzozowski-derivatives-an-exercise-in-combinatory-style.html
3•Bogdanp•37m ago•0 comments

Alberta first province to add citizenship marker to driver's licences

https://www.cbc.ca/news/canada/calgary/alberta-drivers-licence-identification-card-citizenship-1....
1•geox•37m ago•0 comments

Irssi: IRC Client in a Docker Image

https://hub.docker.com/_/irssi
3•razodactyl•39m ago•0 comments

TaxClicker Calculators

https://taxclicker.com/
1•transfon•39m ago•0 comments

Storyboarder

https://wonderunit.com/storyboarder/
1•gpi•39m ago•0 comments

Show HN: npm-daycare, an NPM proxy that filters out recent & small packages

https://github.com/stack-auth/npm-daycare
1•n2d4•43m ago•0 comments

Show HN: Navi - First AI Voice Computer

https://www.hinavi.ai/
1•andyprevalsky•43m ago•0 comments

TikTok to Be Acquired by Oracle, Silver Lake and Andreessen

https://www.bloomberg.com/news/articles/2025-09-16/tiktok-buyers-group-to-include-oracle-silver-l...
4•marc__1•44m ago•1 comments

The Move from Blue Systems to TechPaladin

https://akselmo.dev/posts/bluesystems-to-techpaladin/
2•pabs3•48m ago•0 comments

Developer of the Year: Daniel Stenberg

https://daniel.haxx.se/blog/2025/09/13/developer-of-the-year/
3•pykello•50m ago•1 comments

NASA, Northrop Grumman Assessing Cygnus XL Engine Burn Plan

https://www.nasa.gov/blogs/spacestation/2025/09/16/nasa-northrop-grumman-assessing-cygnus-xl-engi...
1•corvad•51m ago•0 comments

Workday Signs Definitive Agreement to Acquire Sana – Sep 16, 2025

https://investor.workday.com/2025-09-16-Workday-Signs-Definitive-Agreement-to-Acquire-Sana
1•corvad•54m ago•0 comments

Fed Divisions Thrust Powell into Uncharted Territory

https://www.wsj.com/economy/central-banking/fed-reserve-voters-division-dissent-99e932a6
2•sandwichsphinx•56m ago•0 comments

Aperiodic Tilings V: The Refinable Frontier

https://www.chiark.greenend.org.uk/~sgtatham/quasiblog/aperiodic-refine/
1•PaulHoule•57m ago•0 comments

Ask HN: How to deal with fake job applicants?

4•rswerve•57m ago•3 comments

Inletsctl – the fastest way to create self-hosted tunnels

https://github.com/inlets/inletsctl
1•thunderbong•58m ago•0 comments

AT&T made Google Call Screen

https://about.att.com/blogs/2025/ai-digital-receptionist.html
2•corvad•58m ago•1 comments

Inaccessible Island Rail

https://en.wikipedia.org/wiki/Inaccessible_Island_rail
1•tofof•58m ago•0 comments

"China keeps the algorithm": Critics attack Trump's TikTok deal

https://arstechnica.com/tech-policy/2025/09/china-keeps-the-algorithm-critics-attack-trumps-tikto...
4•duxup•59m ago•3 comments

Trump DOJ erases report showing far-right violence outpaces 'all other types'

https://www.alternet.org/trump-right-wing-terrorism/
17•clipsy•1h ago•2 comments
Open in hackernews

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

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