frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

MLX: Basics

https://ml-explore.github.io/mlx/build/html/usage/quick_start.html
1•tosh•59s ago•0 comments

Show HN: Stint – Fire-and-forget AI agent orchestration

https://github.com/ilocn/stint
1•niceguy1827•2m ago•0 comments

Show HN: Let AI agents debug your Valkey/Redis

https://www.npmjs.com/package/@betterdb/mcp
1•kaliades•3m ago•0 comments

Aircraft Lease

https://en.wikipedia.org/wiki/Aircraft_lease
1•kamaraju•4m ago•0 comments

Who is footing the AI energy bill? Debate over data center electricity costs

https://www.cnbc.com/2026/03/13/ai-data-centers-electricity-prices-backlash-ratepayer-protection....
1•1vuio0pswjnm7•4m ago•0 comments

Productivity and Entropy

https://www.subbu.org/articles/2026/productivity-and-entropy/
1•kiyanwang•4m ago•0 comments

What's My ΔE(OK)JND?

https://www.keithcirkel.co.uk/whats-my-jnd/
1•grezesf•5m ago•1 comments

DoShare Personal Cloud - Your Cloud, Your Rules

https://getcloud.doshare.me
1•vednig•5m ago•0 comments

Tomorrow's World: Nellie the School Computer 15 February 1969 – BBC [video]

https://www.youtube.com/watch?v=f1DtY42xEOI
1•stevekemp•6m ago•0 comments

John Carmack about open source and anti-AI activists

https://twitter.com/id_aa_carmack/status/2032460578669691171
2•tzury•6m ago•0 comments

Gamers' Worst Nightmares About AI Are Coming True

https://www.wired.com/story/gamers-ai-nightmares-are-coming-true/
2•Brajeshwar•7m ago•1 comments

HSBC UK Banking App Blocks Use Until Sideloaded Bitwarden Is Removed

https://twitter.com/benonwine/status/2032160764845285606
1•hnburnsy•7m ago•0 comments

The Accidental Room (2018)

https://99percentinvisible.org/episode/the-accidental-room/
3•blewboarwastake•8m ago•0 comments

Hustlers are cashing in on China's OpenClaw AI craze

https://www.technologyreview.com/2026/03/11/1134179/china-openclaw-gold-rush/
1•aanet•10m ago•0 comments

Show HN: 724claw.icu – Anonymous vent wall for "shrimp workers" grinding 7×24

1•867762462f•10m ago•0 comments

Statement on Availability of Scientific Evidence on Climate Change

https://www.ametsoc.org/ams/about-ams/ams-statements/statements-of-the-ams-in-force/statement-on-...
1•geox•10m ago•0 comments

Show HN: MCPS – Cryptographic identity and message signing for MCP agents

https://mcp-secure.dev
1•AskCarX•12m ago•0 comments

Crypto Trader Loses Nearly $50M in Aave Trade, Protocol Offers $600K Fee Refund

https://decrypt.co/360961/crypto-trader-loses-nearly-50m-aave-trade-600k-fee-refund
3•wslh•12m ago•0 comments

Ender's Game by Orson Scott Card [pdf]

https://resources.finalsite.net/images/v1563819368/rcsdms/zubpw0ly7e6g3rm1n3fk/EndersGame.pdf
1•joebig•13m ago•0 comments

Show HN: I was tired of Loom so I built my own screen recorder

https://github.com/jkuri/reframed
1•kundi•14m ago•0 comments

Your AI coding benchmark is hiding a 2x quality gap

https://www.stet.sh/blog/both-pass
1•bisonbear•16m ago•0 comments

Journeying through Optimization with Heuristics [video]

https://www.youtube.com/watch?v=KnmgltlXSKI
1•matt_d•18m ago•0 comments

Cookie Jars Capture American Kitsch (2023)

https://www.eater.com/23651631/cookie-jar-trend-appreciation-collecting-history
1•NaOH•18m ago•0 comments

Why LLMs Are Not (Yet) the Silver Bullet for Unstructured Data Processing

https://unstract.com/blog/why-llms-struggle-with-unstructured-data/
1•naren87•18m ago•0 comments

Pyodide: a Python distribution based on WebAssembly

https://github.com/pyodide/pyodide
3•tosh•23m ago•0 comments

Ask HN: How do you promote a new platform and reach critical mass?

1•LeanVibe•23m ago•1 comments

CorridorKey: Perfect Green Screen Keys

https://github.com/nikopueringer/CorridorKey
1•QuantumNomad_•24m ago•1 comments

ECJ says EU states must change gender of citizens even if nat'l laws forbid it

https://brusselssignal.eu/2026/03/ecj-says-member-states-must-change-gender-of-citizens-even-if-n...
9•slater•24m ago•0 comments

Dark money group pays influencers $1.5K for posts attacking Democratic candidate

https://www.ms.now/news/kat-abughazaleh-dark-money-influencers
10•embedding-shape•24m ago•0 comments

TweetStyler – Stylish Unicode fonts for social media (especially X)

https://www.tweetstyler.com/
1•Rashka7•24m ago•1 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.