frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A 2026 Survey of Rust GUI Libraries

https://blog.wybxc.cc/blog/rust-gui-survey-2026/
1•birdculture•1m ago•0 comments

Principles of dependent type theory [pdf]

https://www.danielgratzer.com/papers/type-theory-book.pdf
1•fanf2•1m ago•0 comments

The Cool Things of Gleam

https://a.baez.link/3mtdbbp2dmc27
1•signa11•2m ago•0 comments

The lost airports of SimCity 3000 (2002)

https://web.archive.org/web/20021204030618/http://www.sc3000.com/knowledge/showarticle.cfm?id=091...
1•Lammy•4m ago•0 comments

Milky Way's fastest star orbits a black hole so close, it feels its spin

https://www.eso.org/public/news/eso2612/
1•thunderbong•4m ago•0 comments

Remindher

https://remindher.app/
1•adibenely•6m ago•0 comments

Space Sunshade

https://en.wikipedia.org/wiki/Space_sunshade
1•num42•6m ago•0 comments

Every Tech Bubble Obeyed the Same Rule. AI Is Next [video]

https://www.youtube.com/watch?v=KJxfSIvv920
1•mgh2•7m ago•0 comments

PureLiFi Debuts 10 Gbps "Connectivity DNA" and Bridges the 5G Gap

https://www.purelifi.com/purelifi-mwc-2026/
1•zeristor•10m ago•0 comments

Contextual News Search APIs: A Deep Comparison for AI, RAG, and Research

https://github.com/free-news-api/news-search-api-comparison
10•ermanos12•13m ago•0 comments

Nobody Explained the Schrödinger Equation Like This [video]

https://www.youtube.com/watch?v=X-q2eZVhff8
2•peter_d_sherman•14m ago•0 comments

VQL-Artifact.yaml

https://github.com/lexs201992-gif/Project-LION-Longcheer-Integrated-Overlay-Network-Virtualizaci-...
1•lexs201992-gif•21m ago•1 comments

Natural Number Game

https://adam.math.hhu.de/#/g/leanprover-community/nng4
1•it4rb•25m ago•0 comments

The next GitHub is not worth winning

https://davidpoblador.com/blog/the-next-github-is-not-worth-winning.html
1•serious_angel•26m ago•1 comments

Wiring up seven ESP32s to create a ~0.4B LLM

https://www.xda-developers.com/someone-wired-up-seven-esp32s-to-create-a-04b-llm-and-so-can-you/
3•epestr•29m ago•0 comments

Orelon – AI Video Generator for Cinematic Creation

https://orelon.ai/
1•duanhjlt•35m ago•0 comments

I built a tool to generate Cornell notes from YouTube videos

1•cristyg0101•42m ago•1 comments

Mojo by Example

https://ruhati.net/mojo/
3•ivell•42m ago•0 comments

Vale: Linter for Prose

https://github.com/vale-cli/vale
1•saikatsg•43m ago•0 comments

Ksumiyo – AI music generation with producer-level controls

https://www.ksumiyo.com
1•umangbhardwaj•48m ago•0 comments

The Python documentation is now available in Russian

https://blog.python.org/2026/08/the-python-documentation-is-now-available-in-russian/
1•runningmike•49m ago•1 comments

The Zen of AI

https://www.dtlarson.com/zen
2•derek-larson•50m ago•0 comments

A Test for AI Consciousness

https://gruhn.me/blog/2026-08-16/
1•saikatsg•52m ago•0 comments

Kestrel – I built a 900 KB macOS browser because Chrome ate my 8 GB Mac

https://github.com/bishosilwal/kestrel-browser
1•bisho_silwal•1h ago•1 comments

ISO 24495 [pdf]

https://cdn.standards.iteh.ai/samples/78907/d194fac21d6a45f38bfcfec9657f7498/ISO-24495-1-2023.pdf
1•saikatsg•1h ago•0 comments

Show HN: Zuse" One agent coordinating 20 Linear issues in worktrees

https://www.zuse.sh/
1•swarajbachu•1h ago•0 comments

Show HN: Sol-Luna Orchestrator – let Codex decide whether to delegate

https://www.npmjs.com/package/sol-luna-orchestrator
1•mahadansar•1h ago•0 comments

Markdown Without the Split Screen

https://medium.com/@chris.ahrweiler/markdown-without-the-split-screen-36627b3d7a55
1•docjojo•1h ago•0 comments

Show HN: Open sourcing MonsterWriter, piece by piece

https://www.monsterwriter.com/open-source.html
1•WolfOliver•1h ago•1 comments

Why aren't my two Cortex-A9 cores cache coherent?

https://thejpster.org.uk/blog/blog-2026-08-22/
2•signa11•1h 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.