frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

No Silver Bullet [pdf]

https://www.cs.dartmouth.edu/~cs50/Reading/NoSilverBullet.pdf
1•abrbhat•29s ago•0 comments

AdaCore Supply Chain Security Evolution

https://www.adacore.com/blog/adacore-software-supply-chain-security-evolution
1•nikokrock•2m ago•0 comments

ISON Format

https://ison.dev/
1•blef•6m ago•0 comments

Show HN: Compile all your competitor research in one place

https://intel.comsync.in/
1•StupidoMaximo•7m ago•0 comments

LLM Epistemics

https://mccormick.cx/news/entries/llm-epistemics
1•chr15m•8m ago•0 comments

Show HN: Built a Cursor for Product Managers

https://www.brainstom.in/
1•ameyakhot•9m ago•0 comments

International Law of Self-Determination

https://en.wikipedia.org/wiki/Self-determination
1•sanbor•9m ago•0 comments

We don't need continual learning for AGI. What top labs are currently doing

1•kok14•10m ago•0 comments

Show HN: DeskShifter – Name, colour-code and switch macOS desktops

1•ViDesk•11m ago•0 comments

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

https://kerkour.com/rust-postgres-everything
1•enz•11m ago•0 comments

Midjourney in Korea (Alemwjsl)

https://www.alemwjsl.com/
1•alemwjsl•12m ago•0 comments

Grammarly Is Offering 'Expert' AI Reviews from Top Authors – Dead or Alive

https://www.wired.com/story/grammarly-is-offering-expert-ai-reviews-from-your-favorite-authors-de...
1•jmsflknr•12m ago•0 comments

Show HN: Terminal dashboard for managing Cursor cloud agents

https://github.com/ofershap/agents-control-tower
1•ofershapira•14m ago•1 comments

Inline Stopwords, Exceptions, and Wordforms

https://manticoresearch.com/blog/inline-tokenization-dictionary-configuration/
1•snikolaev•14m ago•0 comments

Essence – free focused log viewer for Mac

https://github.com/robert-v/Essence-public
1•rob3rth•16m ago•0 comments

I want to learn building editing

1•MAYAKINE•17m ago•0 comments

Show HN: OneManBSD – A self-containing OpenBSD build with all source in the ISO

https://bialamusic.com/onemanBSD/
1•bialamusic•18m ago•1 comments

Iran's 'Missile Cities' Have Become One of Its Biggest Vulnerabilities

https://www.wsj.com/world/middle-east/iran-underground-missiles-59b3492c
2•petethomas•19m ago•0 comments

Show HN: I built a new email interface

https://demo.define.app
1•johndamaia•20m ago•0 comments

Thoughts and Observations on the MacBook Neo

https://daringfireball.net/2026/03/599_not_a_piece_of_junk_macbook_neo
1•tosh•20m ago•1 comments

Noem Can't Explain Why She Hired 8-Day-Old Company for Ad Campaign

https://newrepublic.com/post/207381/kristi-noem-explain-company-ad-campaign
5•TrackerFF•21m ago•0 comments

Major airline bans 'barebeaters' across all 24 daily flights from UK airports

https://metro.co.uk/2026/03/04/major-airline-bans-barebeaters-across-24-daily-flights-uk-airports...
4•sieste•23m ago•0 comments

Can AI agents build real Stripe integrations? We built a benchmark to find out

https://stripe.com/blog/can-ai-agents-build-real-stripe-integrations
1•nerdyadventurer•23m ago•0 comments

CPU scam: Chuwi CoreBook X uses AMD Ryzen 5 5500U instead of 7430U

https://www.notebookcheck.net/CPU-scam-Chuwi-CoreBook-X-uses-AMD-Ryzen-5-5500U-instead-of-7430U.1...
2•yread•24m ago•0 comments

Show HN: Goccc – Claude Code cost tracker with MCP visibility

https://github.com/backstabslash/goccc
1•backstabslash•25m ago•0 comments

Zero Ethics AI: My Dystopian Wishlist

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

China's Luckin Coffee Acquires Blue Bottle

https://www.semafor.com/article/03/04/2026/chinas-luckin-coffee-acquires-blue-bottle
1•tosh•29m ago•0 comments

Who really invented television?

https://www.nationalgeographic.com/history/article/invention-television-tv-baird
1•Sikara•33m ago•0 comments

Show HN: Free AI skin analyzer – Baumann type and 10 skin scores from a selfie

https://fondayai.pages.dev/
1•nexiope•34m ago•0 comments

Show HN: CompScan, a local system health doctor (Rust, no telemetry)

https://github.com/vvk147/comp-scan
1•vvk147•35m ago•0 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.