frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I think tabs should be managed in a terminal

https://v0.app/chat/iterm-next-demo-gShY36OWRB7
1•novoreorx•2m ago•0 comments

Show HN: Pingora with Edward and Noah from Cloudflare (Netstack.fm Podcast Ep15)

https://netstack.fm/#episode-15
1•gdcbe•2m ago•0 comments

Blogging Gets Serious in 2001 with Warblogs and Movable Type – Cybercultural

https://cybercultural.com/p/blogs-rss-2001/
1•janandonly•5m ago•0 comments

Can We Trust AI as Customer Support?

1•adipm_tech•6m ago•0 comments

'The narwhals stop calling': how noise from ships is silencing wildlife, Arctic

https://www.theguardian.com/environment/2025/nov/25/shipping-noise-arctic-whales-narwhals-sound-q...
1•sipofwater•7m ago•0 comments

Study: The development of carbon-neutral data centres in space [pdf]

https://www3.ntu.edu.sg/CorpComms2/Research%20Papers/Nature%20Electronics_Wen%20Yonggang_Space%20...
1•giuliomagnifico•11m ago•0 comments

The Welch Labs Illustrated Guide to AI

http://www.welchlabs.com/resources/ai-book
1•m-hodges•11m ago•0 comments

Curious gravitational wave may hint at primordial black holes

https://www.science.org/content/article/curious-gravitational-wave-may-be-hint-primordial-black-h...
1•negativelambda•16m ago•0 comments

How the Kreb's cycle powers life and death – Nick Lane [video]

https://www.youtube.com/watch?v=vBiIDwBOqQA
1•zeristor•16m ago•0 comments

Leaving Google Maps and Waze behind: my journey to find my way around the world

https://alternativeto.net/news/2025/11/leaving-google-maps-and-waze-behind-my-journey-to-find-my-...
1•elliot_a•18m ago•0 comments

Where the rumored budget MacBook fits in Apple's laptop lineup

https://appleinsider.com/articles/25/11/21/where-the-rumored-budget-macbook-fits-in-apples-laptop...
2•alecco•19m ago•0 comments

Ask HN: What do u use for agent/agentic evals?

1•hhthrowaway1230•20m ago•0 comments

University student confronts lecturer for using Al-generated slides

https://youtu.be/_w3QRY_VNlc
1•savgore•20m ago•0 comments

The Embarrassing Ruby/Rails Subreddit Chronicles

https://andymaleh.blogspot.com/2025/11/the-embarrassing-rubyrails-subreddit.html
1•amalinovic•21m ago•0 comments

How I build internal developer tools inside a small team

https://patrickm.de/building-internal-dev-tools/
1•sneakyPad•21m ago•0 comments

Show HN: EGF – an open file format for educational games

https://zenodo.org/records/17635411
1•EGF-Format•24m ago•0 comments

Ruby and Its Neighbors: Lisp

https://noelrappin.com/blog/2025/11/ruby-and-its-neighbors-lisp/
1•unripe_syntax•29m ago•0 comments

Smallest runnable Mach-O (2018)

https://stek29.rocks/2018/02/03/minmacho.html
1•turrini•30m ago•0 comments

Musk Accidentally Proves Most MAGA Accounts on Twitter Live in Russia

https://www.thegodpodcast.com/p/moron-musk-accidentally-proves-most
7•doener•38m ago•0 comments

Genesis Mission – A National Mission to Accelerate Science Through AI

https://www.energy.gov/genesis
1•keepamovin•39m ago•1 comments

Trump Cancels Release of Crucial Economic Report to Hide His Failures

https://newrepublic.com/post/203619/donald-trump-cancels-release-gdp-economic-report
4•doener•39m ago•0 comments

Claude Is Down, Again

https://status.claude.com/incidents/1y63m9yzpjn2
2•imalerba•39m ago•1 comments

Quick–swap your avatar to purple, green, or a mix of both

https://purplepfp.com
1•BruceWok•41m ago•0 comments

LLMs have me feeling heavy

https://old.reddit.com/r/webdev/comments/1p5xtud/llms_have_me_feeling_heavy/
2•bundie•43m ago•1 comments

Shai-Hulud 2.0 Supply Chain Attack: 25K+ Repos Exposing Secrets

https://www.wiz.io/blog/shai-hulud-2-0-ongoing-supply-chain-attack
2•samuel246•45m ago•0 comments

Neoteny

https://en.wikipedia.org/wiki/Neoteny
2•nomilk•50m ago•0 comments

Ask HN: Who is building the next gyroscope app integrated with AI?

1•HipstaJules•52m ago•0 comments

Nvidia's 'I'm Not Enron' memo has people asking a lot of questions

https://www.theverge.com/business/828047/nvidia-enron-conspiracy-accounting
5•greg_V•52m ago•2 comments

Ai2 Dolma: 3T token open corpus for language model pretraining (2023)

https://allenai.org/blog/dolma-3-trillion-tokens-open-llm-corpus-9a0ff4b8da64
1•tosh•52m ago•0 comments

Implementing dependent types: how hard could it be? (Part 1)

https://jerrington.me/posts/2025-05-23-depty-impl.html
1•fanf2•52m ago•0 comments
Open in hackernews

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

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