frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GifBook – turn any GIF into a printable flipbook (free)

https://www.mrbray.com/gifbook
1•mrbray•3m ago•1 comments

Uncensored Open-Weight Models: Redistribution as the Persistence Layer

https://arxiv.org/abs/2609.05241
1•sbulaev•5m ago•0 comments

Things to Do with Tailscale

https://toce.ch/101-things-to-do-with-tailscale/
2•cyb0rg0•6m ago•0 comments

Arm Mali G2-Ultra NX GPU: desktop-class mobile gameplay with AI-native graphics

https://newsroom.arm.com/blog/arm-mali-g2-ultra-nx-ai-native-mobile-graphics
1•Re-Tails•6m ago•0 comments

Why the Harness Matters More Than the Model [video]

https://www.youtube.com/watch?v=n9xKblqyQ28
2•mellosouls•9m ago•0 comments

Pope's Top US Cardinals Visit Silicon Valley, Warn Millions Will Lose Jobs

https://www.thelettersfromleo.com/p/pope-leo-xivs-top-us-cardinals-visit
1•MaxLeiter•12m ago•0 comments

Magnum Opus

https://nexum.fyi/
1•wbeebe•13m ago•1 comments

Sen. Kennedy rails against AI developers as 'high IQ stupid people'

https://www.politico.com/news/2026/09/06/kennedy-ai-developers-high-iq-stupid-people-01066756
1•apical_dendrite•15m ago•0 comments

Blast Radius 1.0

https://blastradius.dpdns.org/
1•codebyaditya•20m ago•0 comments

How the heart, lungs and brain work together to shape experience

https://medicalxpress.com/news/2026-09-heart-lungs-brain.html
1•mdp2021•24m ago•0 comments

Show HN: DragonRuby Game Toolkit Shaders (Hotloaded)

https://www.youtube.com/watch?v=Y7Oc2V5fDUc
1•amirrajan•25m ago•1 comments

I tested 10 model/harness combinations on the same Three.js task

https://alvins82.github.io/hangar-harness-model-tests/
2•alvins82•30m ago•0 comments

GamersNexus and LG: Or why rooting your TV is a bad idea

https://leaflet.pub/p/did:plc:yhgc5rlqhoezrx6fbawajxlh/3muwrqenzfk2n
2•drasticactions•32m ago•0 comments

Ask HN: Anyone else feeling uneasy with the latest developments in AI?

3•sensitivekt9q3•42m ago•4 comments

mSpace

https://www.researchgate.net/publication/37538009_mSpace_Exploring_The_Semantic_Web_A_Technical_R...
2•andsoitis•45m ago•0 comments

Reigning – A sovereign 1-frame billboard where you dethrone the king with crypto

https://reigningfor.lol
2•rodriguezlizarr•49m ago•0 comments

Hyperboloids made out of sticks [video]

https://www.youtube.com/watch?v=CJCL92W8Z9w
2•o4c•52m ago•0 comments

A Screensaver for LG's Spying Smart TVs

https://weowntheglass.com
6•taylorfinley•52m ago•0 comments

Show HN: Claude Style Patch – A dropin Claude.MD section for improving Claudish

https://github.com/andrewroxby/claude-style-patch
2•AndrewRoxby•53m ago•2 comments

Tree Calculus

https://olydis.medium.com/a-visual-introduction-to-tree-calculus-2f4a34ceffc2
3•MelonUsk•56m ago•1 comments

One Question

https://www.tonightweanswer.com/
2•Elokote•57m ago•0 comments

Denzel Explains AI "Slop"

https://www.reddit.com/r/ClaudeCode/comments/1w9e1tg/denzel_explains_ai_slop/
6•freakynit•57m ago•0 comments

Show HN: Browser only CSV editor, data never leaves your machine

https://csvpreview.com
2•anshulsahni•59m ago•0 comments

The most Unreasonable Music Video build by Astra, it's amazing

https://www.youtube.com/watch?v=_h1KgS169iM
2•modinfo•1h ago•0 comments

Object A – Visible Passes

https://heavens-above.com/PassSummary.aspx?satid=60235&lat=30.0324&lng=-98.2969&loc=Unnamed&alt=0...
3•tocs3•1h ago•0 comments

SidePulse: Agent Status, at a Glance (LEDs in MacBook Pro SD Slot)

https://sidepulse.io/
3•gregsadetsky•1h ago•0 comments

How well do agents use test/verification techniques?

https://danluu.com/agentic-testing/
5•vinhnx•1h ago•0 comments

AI Is Making Us Build Too Much

https://sjg.io/writing/ai-is-making-us-build-too-much/
2•gmays•1h ago•0 comments

Show HN: Jackalope.dev

https://jackalope.dev/
3•ghosts_•1h ago•1 comments

A desktop tool written in Rust to lock GRUB with a physical USB rescue key

https://github.com/sysdev-0/grubst
2•devsys000•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.