frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: WSL Dashboard – an open-source,low-memory, high-performance GUI manager

https://github.com/owu/wsl-dashboard
2•GuardCalf•6m ago•0 comments

TIRx: An Open Compiler Stack for Evolving Frontier ML Kernels

https://tvm.apache.org/2026/06/22/tirx
1•matt_d•7m ago•0 comments

Prototyping data tools with AI, a case study: Solar and Battery Atlas

https://ember-energy.org/latest-updates/prototyping-data-tools-with-ai-a-case-study-solar-battery...
2•toomuchtodo•7m ago•1 comments

Stripe pre-launch security checklist for indie SaaS

https://github.com/galakurpi/stripe-prelaunch-security-checklist
1•jongalarraga•8m ago•0 comments

Show HN: A private pager for your AI agent loops

https://ask-a-human.ai
2•alexandroskyr•9m ago•1 comments

SeeDance 2.5 Is Stunning

https://twitter.com/Long4AI/status/2069262125776920582
3•vantareed•12m ago•0 comments

AI Wrote the Code. Nobody Knows Why It Made Those Decisions

https://brunelly.com/
2•rihabzt•16m ago•0 comments

Latexdiff online – diff two LaTeX files in the browser

https://thelatexlab.com/latexdiff-online/
1•sahiltll•16m ago•0 comments

Matrix and Quaternion FAQ

https://j3d.org/matrix_faq/matrfaq_latest.html
1•signa11•18m ago•0 comments

Who Does What? Team Topologies for the Agentic Platform

https://blog.owulveryck.info/2026/06/22/who-does-what-team-topologies-for-the-agentic-platform.html
1•owulveryck•19m ago•0 comments

Thousand-year-old ancient oak tree linked to 'Robin Hood' legend has died

https://abc7.com/story/thousand-year-old-ancient-oak-tree-tied-robin-hood-legend-has-died-wildlif...
1•ValentineC•21m ago•1 comments

Ask HN: Product idea validation made simple and streamlined

https://pmfboard.com/
1•connollystr•23m ago•0 comments

Mental Illness Does Not Cause Homelessness

https://truths-and-loves.ghost.io/mental-illness-does-not-cause-homelessness/
1•deterministic•26m ago•0 comments

The Lure of "Magic Bullets" in Reforming Schools

https://larrycuban.wordpress.com/2026/06/22/the-lure-of-magic-bullets-in-reforming-schools/
1•Tomte•27m ago•0 comments

Egypt denied flight to Seattle ahead of final World Cup group match

https://www.aljazeera.com/sports/2026/6/22/egypt-denied-flight-to-seattle-ahead-of-final-world-cu...
1•sbmthakur•27m ago•0 comments

Show HN: Cited – a searchable index of what experts recommend on podcasts

https://cited.co/
1•knothacker•28m ago•0 comments

In memory of the man who put red and green squiggles under words

https://devblogs.microsoft.com/oldnewthing/20260622-00/?p=112451
1•signa11•29m ago•0 comments

Show HN: A pure ARM64 Assembly web server, now on Linux with CGI for no reason

https://github.com/imtomt/ymawky/tree/linux
1•imtomt•31m ago•0 comments

73+ IoCs for the Impacket Hacking Library

https://github.com/ThatTotallyRealMyth/Impacket-IoCs
1•MeowMeowBinks•32m ago•1 comments

Show HN: Nobody at poker night wanted to be the dealer, so I built one

https://smartdealer.poker/
1•phillippcorreia•32m ago•1 comments

Show HN: Magpie-Search

https://github.com/xfloukiex-lab/magpie-search
1•Floukie•34m ago•0 comments

Intel's bLLC: An architectural response to AMD's 3D V-Cache

https://nasengetu.com/article/bllc-intel-answer-to-amd-3dvcache
1•StizzurpXDD•42m ago•0 comments

Will It Mythos?

https://swelljoe.com/post/will-it-mythos/
30•mindingnever•45m ago•7 comments

Kunal Shah to head WhatsApp; Meta invests nearly $1B in Cred

https://www.moneycontrol.com/europe/?url=https://www.moneycontrol.com/news/business/startup/kunal...
1•satyanash•47m ago•0 comments

Reddit now blocks all free API access besides RedReader

https://old.reddit.com/r/continuumreddit/comments/1u2monb/comment/oqyqn99/
5•Markoff•49m ago•2 comments

Valve engineers talk Steam Machine pricing and heatsinks

https://www.tomshardware.com/video-games/console-gaming/valve-engineers-talk-steam-machine-pricin...
3•Timofeibu•50m ago•0 comments

Valve describes just how brutal RAM negotiations are in 2026

https://www.theverge.com/games/953945/valve-steam-machine-memory-component-crisis
1•Timofeibu•51m ago•0 comments

GitHub Family

https://github.com/JohnsonArnek/Github-Family
1•progrr_vibe_art•1h ago•1 comments

Another Way to Compare the Two Largest Economies

https://www.unz.com/bhua/another-way-to-compare-the-worlds-two-largest-economies/
2•thelastgallon•1h ago•0 comments

Virtual scrolling becomes much simpler when scrolling by index instead of pixels

https://github.com/ceriousdevtech/cerious-scroll
1•ryoucerious•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.