frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

British lawmakers are in a jam over changes to the definition of marmalade

https://apnews.com/article/marmalade-citrus-definition-uk-eu-paddington-079c72d9051cc03c75cad3f35...
1•HieronymusBosch•1m ago•0 comments

FB >> HTTPS://Www.facebook.com/NaoriSymbiotics.Get/

https://www.facebook.com/NaoriSymbiotics.Get
1•nerrrashu•1m ago•0 comments

14-Year Journey Away from ORMs – PGenie, SQL-First Postgres Code Generator

https://nikita-volkov.github.io/pgenie-in-production-part-1/
1•mpweiher•3m ago•0 comments

On Mar 28, 2026 >50% of users access Google over IPv6 for the first time

https://www.google.com/intl/en/ipv6/statistics.html
1•NavinF•10m ago•1 comments

I'm not feeling the async pressure

https://lucumr.pocoo.org/2020/1/1/async-pressure/
1•sixhobbits•12m ago•0 comments

Show HN: BuilderPulse – Daily intelligence from 10 sources for indie hackers

https://github.com/BuilderPulse/BuilderPulse
1•blacktechnology•13m ago•0 comments

Managed, Real-Time OLAP Infrastructure

https://modolap.com/
1•ronfriedhaber•15m ago•0 comments

Pfsync Packet Header Field Renamed to Avoid AI Bug Report Noise

https://undeadly.org/cgi?action=article;sid=20260413055845
1•somat•20m ago•0 comments

The IPv6 Mess (2002)

https://cr.yp.to/djbdns/ipv6mess.html
1•tgma•21m ago•0 comments

Show HN: Using Telegram as an indexed system for geo-notes

1•migelo•22m ago•0 comments

Ask HN: Who is your favourite Entrepreneur/Visionary?

2•wasimsk•23m ago•1 comments

European civil servants are being forced off WhatsApp

https://www.politico.eu/article/european-civil-servants-new-messaging-services/
2•ZacnyLos•26m ago•0 comments

Online age checks are coming in Europe

https://www.politico.eu/article/online-age-checks-are-coming-europe-children-social-media/
1•ZacnyLos•27m ago•0 comments

Can you steal $10k from a locked iPhone? [video]

https://www.youtube.com/watch?v=PPJ6NJkmDAo
1•ProfDreamer•29m ago•0 comments

GraphQL vs. REST: 18 Claims Fact-Checked with Primary Sources

https://wundergraph.com/blog/fact-checking-graphql-vs-rest
2•jensneuse•31m ago•1 comments

Has the Era of the Mega-Layoff Arrived?

https://www.wsj.com/business/has-the-era-of-the-mega-layoff-arrived-928f061d
1•erehweb•31m ago•0 comments

A premium infrastructure layer for hotels and event booking

https://cooveb-organizers-waitlist-gules.vercel.app/
1•sshinde•34m ago•0 comments

CERN Joins the OpenSearch Software Foundation as an Associate Member

https://opensearch.org/blog/cern-joins-the-opensearch-software-foundation/
1•Lunar5227•41m ago•0 comments

Show HN: Robust alternative to OpenClaw

https://github.com/opentalon/opentalon
3•opak•44m ago•1 comments

More Communities Like This?

1•ayorke•45m ago•0 comments

Show HN: Job Scraper for LinkedIn

https://chromewebstore.google.com/detail/job-scraper-for-linkedin/kkafipickfibnamoijjgamklecmmbbmf
1•qwikhost•46m ago•0 comments

Show HN: Agent Armor, a Rust runtime that enforces policies on AI agent actions

https://github.com/EdoardoBambini/Agent-Armor-Iaga
4•edoardobambini-•49m ago•2 comments

Coming Soon: Things That Matter in AI

https://www.technologyreview.com/2026/04/14/1135298/coming-soon-10-things-that-matter-in-ai-right...
2•joozio•50m ago•0 comments

AI Tremor-Print: Biometric Identification System

https://github.com/peterretief/biometric
1•peter_retief•51m ago•1 comments

Allbirds stock sees a wild surge of 582% on pivot from sneakers to AI

https://www.businessinsider.com/allbirds-stock-price-ai-newbird-gpus-compute-gpuaas-bird-shoes-20...
1•outlore•51m ago•0 comments

RIP Pull Requests (2005-2026)

https://www.latent.space/p/ainews-rip-pull-requests-2005-2026
1•swyx•53m ago•0 comments

JIT Compilers and Cache Coherency

https://joelsiks.com/posts/jit-compilers-and-cache-coherency/
3•joelsiks•59m ago•0 comments

AI Eyebrow Filter: Try Eyebrow Editor Online – AILab Tools

https://www.ailabtools.com/eyebrow-filter
1•minimk•1h ago•0 comments

EU age verification app ready as Europe moves to curb kids' social media access

https://www.reuters.com/world/eu-age-verification-app-ready-europe-moves-curb-childrens-social-me...
2•taubek•1h ago•0 comments

A Black-Box Contract Engine for Agentic Software Development

https://github.com/elmacnifico/dojo
2•feedyourhead•1h ago•0 comments
Open in hackernews

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

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