frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

PostgreSQL Credential Rotation in Production: A Zero-Downtime Runbook

https://www.elydb.com/blog/postgresql-credential-rotation-production
1•thunderbong•1m ago•0 comments

Ask HN: What's your experience with PoW captchas against form spam?

1•pentacent_hq•2m ago•0 comments

A full-featured terminal user interface for hledger plain-text accounting

https://github.com/thesmokinator/hledger-textual
1•willm•4m ago•0 comments

Ask HN: What are all the bad things that AI companies have done which we forgot

1•Imustaskforhelp•4m ago•0 comments

Ask HN: Is Zero Trust Architecture Overkill?

1•devinabox•8m ago•0 comments

Show HN: Formal – Formal verification for AI-generated code using Lean 4

https://github.com/yamafaktory/formal
1•yamafaktory•9m ago•0 comments

Show HN: What's SBTI

https://whatssbti.com/
1•aitooltrek-com•10m ago•0 comments

Show HN: Terminal Style Web Component

https://github.com/spider-hand/terminal-element
1•spider-hand•10m ago•0 comments

Show HN: ApplePy – Embed and Call Swift from Python (Like PyO3, but for Swift)

https://github.com/jagtesh/ApplePy
1•sheepscreek•12m ago•1 comments

Show HN: PrepLists – a directory of 500 prep centers and 3PLs for sellers

https://preplists.com
1•devequijo•12m ago•0 comments

Feature Vomit

https://public.grugnotes.com/keizo/blog/feature-vomit/
1•keizo•12m ago•0 comments

Show HN: Telegram feed reader using DNS TXT records for Iran's Internet shutdown

https://github.com/sartoopjj/thefeed
2•znano•15m ago•0 comments

Trump says US will blockade Strait of Hormuz

https://www.cnn.com/2026/04/12/world/live-news/iran-us-war-talks-trump
2•Tomte•15m ago•1 comments

White Rabbit meets quantum entanglement

https://home.cern/news/news/computing/white-rabbit-meets-quantum-entanglement
1•bookofjoe•17m ago•0 comments

Ask HN: What is the best way to get your first users?

1•Mohd_Umar•17m ago•4 comments

158-year-old home distilling ban ruled unconstitutional

https://www.reuters.com/legal/government/us-appeals-court-declares-158-year-old-home-distilling-b...
2•PessimalDecimal•19m ago•1 comments

Dario Says Continual Learning Is Solved. Is It?

https://twitter.com/tianle_cai/status/2042459055483207818
1•gmays•19m ago•0 comments

Show HN: Kafkaesque – a wire-compatible mock Kafka

https://github.com/dcminter/kafkaesque
1•dcminter•23m ago•1 comments

HappyHorse AI Video Generator

https://openhappyhorse.io/
1•cathy246•26m ago•1 comments

LRTS – Regression testing for LLM prompts (open source, local-first)

https://github.com/rufus-SD/lrts
1•arthur-G•33m ago•0 comments

Metallic θ-phase tantalum nitride has thermal conductivity triple that of copper

https://www.science.org/doi/10.1126/science.aeb1142
2•bookofjoe•34m ago•1 comments

Seven countries now generate 100% of their electricity from renewable energy

https://www.the-independent.com/tech/renewable-energy-solar-nepal-bhutan-iceland-b2533699.html
19•mpweiher•34m ago•1 comments

Tell HN: OpenAI silently removed Study Mode from ChatGPT

19•smokel•35m ago•5 comments

Malvertising and the trend of curl – sh install on macOS

https://pgaleone.eu/security/2026/04/12/paying-google-to-hack-macos-users/
1•me2too•35m ago•0 comments

Simple Git Server

https://sigit.si/
1•kampak212•36m ago•1 comments

Ask HN: How to build an "AI native" company?

1•canxerian•37m ago•2 comments

My adventure in designing API keys

https://vjay15.github.io/blog/apikeys/
1•vjay15•38m ago•1 comments

Apple Is Launching an 'Ultra' Line of Products with New Capabilitie

https://www.entrepreneur.com/business-news/apple-is-launching-an-ultra-line
1•f1shy•39m ago•0 comments

Pro Max 5x Quota Exhausted in 1.5 Hours Despite Moderate Usage

https://github.com/anthropics/claude-code/issues/45756
125•cmaster11•40m ago•53 comments

The physics behind Flow Matching models [video]

https://www.youtube.com/watch?v=3mFNpeJQjmw
2•kburman•44m ago•1 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.