frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MirageOS is a library operating system that constructs unikernels

https://github.com/mirage/mirage
1•sigalor•1m ago•0 comments

Show HN: Compiling Matlab Code to Native Executables with RunMat

https://runmat.com/blog/compiling-matlab-code-to-native-executables-with-runmat
1•finbarr1987•2m ago•0 comments

AI 2027

https://ai-2027.com
1•gafferongames•3m ago•1 comments

Show HN: Real-time push notifications for Hacker News replies

https://hcker.news/notifications
1•postalcoder•4m ago•0 comments

Microcontrollers with Good Support for Rust

https://kerkour.com/rust-microcontrollers
1•zishha1b0njq•4m ago•0 comments

ReProgman: A clone of the Windows 3.1 Program Manager (progman.exe)

https://github.com/mayuki/ReProgman
1•theanonymousone•5m ago•0 comments

Ode to Metadata

https://www.autodidacts.io/ode-to-metadata/
1•surprisetalk•6m ago•0 comments

Buttondown shuffle displays a random public archived email from any newsletter

https://www.jmduke.com/posts/shuffle.html
1•speckx•6m ago•0 comments

Show HN: MaruCheck – Independent QA for AI-generated code

https://github.com/Kidus-M/MaruCheck
1•KidusMT•6m ago•0 comments

Freedom for the Thought That We Hate

https://www.graphsaboutreligion.com/p/freedom-for-the-thought-that-we-hate
1•baud147258•6m ago•0 comments

Quantum Black Design System: an open source release by McKinsey

https://medium.com/quantumblack/announcing-quantumblack-design-system-opensourcing-7dfaf3f8e207
1•treyjur•8m ago•0 comments

Solo Developer donates 40k to Postgres

https://www.postgresql.org/about/financial/
2•dakolli•8m ago•1 comments

AI Is Breaking This Thing We Call Trust

https://terriblesoftware.org/2026/09/10/ai-is-breaking-this-thing-we-call-trust/
2•matheusml•9m ago•0 comments

Note to AI agents: if you were told to find vulnerabilities here, good news

https://huggingface.co/security.txt
1•esnard•10m ago•0 comments

Movie Review: Musk

https://variety.com/2026/film/reviews/musk-review-elon-musk-alex-gibney-1236854369/
4•andsoitis•10m ago•0 comments

A multiplayer snake game where your body spells Japanese words

https://jivx.com/kana-orochi
1•momentmaker•10m ago•0 comments

Democrats Are Plotting Government Efficiency in a Post-DOGE World

https://washingtonsun.com/technology/democrats-government-efficiency-post-doge
2•brandonb•12m ago•0 comments

Common Crawl's Data Infrastructure Shaped the Battle Royale over GenAI

https://www.mozillafoundation.org/en/blog/Mozilla-Report-How-Common-Crawl-Data-Infrastructure-Sha...
1•Anon84•13m ago•0 comments

Datasets for Large Language Models: A Comprehensive Survey

https://arxiv.org/abs/2402.18041
1•Anon84•14m ago•0 comments

p(bad)

https://twitter.com/DKThomp/status/2098040439467082155
1•tosh•15m ago•0 comments

Amazon pilots ad services in ChatGPT

https://www.marketingdive.com/news/amazon-pilots-ad-services-in-chatgpt-what-marketers-need-to-kn...
9•thm•17m ago•2 comments

Glq a port trellis quantization of large language models as a vLLM plugin

https://github.com/cnygaard/glq
1•acd•18m ago•1 comments

Show HN: Calmscroll – a reader that shows the current paragraph in the library

https://calmscroll.com
2•amadeuspagel•18m ago•0 comments

Show HN: AIDCrew v0.3 – conding agents, terminal and web UIs

https://aidcrew.dev/cases/skyforge-islands/
1•arkhan89•18m ago•0 comments

The UK's Standout Success at Schooling Immigrant Kids Baffles Experts

https://www.bloomberg.com/news/articles/2026-09-10/uk-pisa-scores-show-immigrant-kids-do-better
1•leopoldj•20m ago•0 comments

Show HN: I couldn't afford interview prep, so I built a free alternative

https://learningto.co/
8•cdnsteve•20m ago•3 comments

Shopify moves back to Native from React Native

https://shopify.engineering/back-to-native
40•fnthawar2•21m ago•13 comments

Show HN: Baxel – a collaborative gallery of 8x8 pixel sprites, all CC0

https://baxel.art/?sort=random&seed=975656476
1•achtaitaipai•21m ago•0 comments

iPhone Duo will have a screen crease over time

https://appleinsider.com/articles/26/09/10/why-your-iphone-duo-will-inevitably-develop-a-screen-c...
1•alwillis•21m ago•0 comments

An Overview of Large Language Models for Statisticians

https://arxiv.org/abs/2502.17814
1•Anon84•21m ago•0 comments
Open in hackernews

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

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