frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Self hosting a PDS isn't hard (so far)

https://www.coryd.dev/posts/2026/self-hosting-a-pds-isnt-hard-so-far
1•cdrnsf•1m ago•0 comments

Eliminating Go bounds checks with unsafe

https://blog.andr2i.com/posts/2026-07-06-eliminating-go-bound-checks-with-unsafe
1•olexsmir•1m ago•0 comments

Charlotte's Jujutsu Tutorial

https://char.lt/blog/2026/07/jj-vcs/
1•olexsmir•2m ago•0 comments

Disney Jr. & AI Animation Outfit Animaj Release 'Ozzy Fox' on YouTube

https://www.cartoonbrew.com/series/disney-jr-animaj-ozzy-youtube-264646.html
1•ortusdux•4m ago•0 comments

Is "jobs" a four-letter word?

https://benn.substack.com/p/is-jobs-a-four-letter-word
1•herbertl•4m ago•0 comments

I built a digital F1 garage to learn how Formula 1 cars work

https://paddockpass.app
1•jdluk87•5m ago•1 comments

Everybody's Weirded Out by AI–Except the People Who Foist It on Us

https://newrepublic.com/article/213004/everybody-weirded-ai-except-people-foist-us
2•jamesgill•6m ago•0 comments

FAA lets Boeing sign off on 737 MAX, 787 airworthiness certificates again

https://www.cnbc.com/2026/07/17/faa-boeing-737-max-787.html
4•hmm37•7m ago•0 comments

SpaceX and the myth of independent Wall St research

https://www.ft.com/content/ce345155-d897-4f49-b7c8-13680e3b5434
2•aanet•8m ago•1 comments

Show HN: LIA – a self-hosted multi-agent AI assistant (FastAPI and LangGraph)

https://github.com/jgouviergmail/LIA-Assistant
1•jgo94•8m ago•0 comments

The Myth of Artificial Intelligence (2021)

https://www.hup.harvard.edu/books/9780674278660
1•1vuio0pswjnm7•11m ago•0 comments

Traces of the Other – Are DMT Entities Real?

https://osf.io/preprints/psyarxiv/8qvgy_v2
1•QueensGambit•11m ago•0 comments

Interview with Matheus Moreira about Lone Lisp and Linux Kernel

https://alexalejandre.com/interviews/interview-with-matheus-moreira/
1•veqq•15m ago•0 comments

SatNOGS: A Ground Station for Under €100

https://telcokwaks.com/posts/satnogs/
1•vbernat•15m ago•0 comments

LAN Orangutan Self-hosted network discovery for homelabbers v3.0.1 is out

https://github.com/291-Group/LAN-Orangutan
1•291Group•16m ago•0 comments

Show HN: How we review ~400k lines of Go code nobody has seen

https://www.spacemolt.com/news/the-bot-that-reads-the-code
1•statico•16m ago•0 comments

Specs Are the Deliverable

https://jlmr.dev/posts/specs-are-the-deliverable/
2•jelmersnoeck•17m ago•0 comments

Windows 0-day drops the same day Microsoft releases record number of patches

https://arstechnica.com/security/2026/07/windows-0-day-drops-the-same-day-microsoft-releases-reco...
4•NGRhodes•17m ago•0 comments

Texas spent $4.5M in Spy SUVs that scan phones in 3 minutes

https://letsaddresstexas.substack.com/p/texas-spent-45-million-on-israeli
4•Muhammad523•19m ago•0 comments

Hi

https://veritect.vercel.app
2•mantle_labs•24m ago•2 comments

C Strings: A 50-Year Mistake

https://longtran2904.substack.com/p/c-strings-a-50-year-mistake
1•theanonymousone•28m ago•0 comments

Show HN: Like Claude Code for Images

https://visuali.io
2•visuali•30m ago•0 comments

More than 100 homes destroyed in Norway fire

https://www.reuters.com/business/environment/more-than-50-homes-destroyed-norway-fire-2026-07-17/
3•littlexsparkee•30m ago•0 comments

Show HN: Sentinel – open-source QA agent that reads your code before it clicks

1•asenna•31m ago•0 comments

AMD Ryzen 7 7700X3D Review: 3D V-Cache Gaming Performance for Less – HotHardware

https://hothardware.com/reviews/amd-ryzen-7-7700x3d-gaming-cpu-review
3•rbanffy•34m ago•0 comments

I Made My Blog Solar-Powered – An Update

https://louwrentius.com/i-made-my-blog-solar-powered-a-huge-update.html
2•louwrentius•34m ago•0 comments

GPT-5.6 Sol Ultra built a full Chrome V8 exploit chain from patch commits

https://www.hacktron.ai/blog/watching-gpt-55-sol-ultra-write-a-chrome-exploit-exploit-development...
2•nyku•35m ago•0 comments

When Rust Gets Ugly

https://corrode.dev/blog/ugly/
3•ethanplant•37m ago•0 comments

What Makes Humans Stupid

https://nautil.us/what-makes-humans-stupid-1282459
2•rbanffy•38m ago•0 comments

LANA Project Interim Report 2026: Computer-Assisted Verification of IUT Theory [video]

https://www.youtube.com/watch?v=KADN5NHmIfw
1•amichail•41m 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.