frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Escape Incident Tracker

https://ai-escape.watch/#registry
1•FinAck-Sec•2m ago•1 comments

Look, Mom, I pressed a button

https://galoisrepresentations.org/2026/09/05/look-mom-i-pressed-a-button/
1•robinhouston•4m ago•0 comments

The Evolution of Coding Agents

https://twitter.com/kushbhuwalka/status/2096856441063870969
1•kushbhuwalka•4m ago•0 comments

LG smart TVs caught logging audio with screen off and snooping on local devices

https://www.notebookcheck.net/LG-smart-TVs-caught-logging-audio-with-screen-off-and-snooping-on-l...
1•chris_overseas•5m ago•0 comments

Show HN: I wrote a guide to rendering video from plain HTML/CSS/GSAP

https://sidheart.gumroad.com/l/lyudd
1•SifatAhmed•5m ago•1 comments

Who Cares If AI Is Conscious–It's Basically Alive

https://www.wired.com/story/who-cares-if-ai-is-conscious-its-basically-alive/
1•joozio•5m ago•0 comments

ORM experience, Redis speed, PostgreSQL durability,functions without boundaries

https://github.com/orbsh/okm
1•orbsh•6m ago•0 comments

Show HN: Plethora, Social platform and SDK around games and interactive content

https://plethora.studio/
1•pratt3000•7m ago•0 comments

Show HN: Open-source agent memory layer, 96% on LongMemEval, local-first

https://github.com/everest-an/Awareness-Market
1•AwarenessAI•9m ago•0 comments

PC Tweaker – Windows settings with per-change restore, built in Rust

https://github.com/AurelioAvila/pc-tweaker-app
1•Aurelioavila•13m ago•0 comments

Necessist, a tool to identify broken tests

https://github.com/trailofbits/necessist
1•mkhq•14m ago•0 comments

Privacy Leakage from Gradients in Split-LLM Training

https://arxiv.org/abs/2609.04382
1•hevalon•14m ago•0 comments

Laffer Curve

https://en.wikipedia.org/wiki/Laffer_curve
1•nomilk•16m ago•0 comments

Canadian Pedestrian Network Database

https://www150.statcan.gc.ca/n1/en/catalogue/34260004
1•marklit•21m ago•0 comments

CRISPR editing of ANGPTL3: one-time precision therapy for dyslipidaemia

https://www.nature.com/articles/s41392-026-02605-8
1•emerongi•22m ago•0 comments

1M Lines of AI-Assisted Code in 2025

https://jonathanclark.com/posts/ai-coding-million-lines-2025.html
1•profstasiak•24m ago•0 comments

Elizabeth Holmes A24 Movie – You Can See Everything – Official Teaser HD [video]

https://www.youtube.com/watch?v=GGJSRFWALTI
1•sounddetective•27m ago•0 comments

Wan 3.0 at 68% of Alibaba Cloud's international list price, Prime at 78%

https://reapi.ai/models/wan-3-0
1•andrew06124•27m ago•0 comments

Pandora's Vox: On Community in Cyberspace (1994)

https://gist.github.com/kolber/2131643
1•Gecko4072•28m ago•0 comments

China Prepares for Space Warfare(apparently)

https://www.reuters.com/world/asia-pacific/us-china-arm-space-warfare-hunter-satellites-orbital-w...
2•KinetiNode•29m ago•0 comments

Show HN: Wb-Flow – Agentic Coding with Planned, Parallel Waves

https://github.com/wissemb11/wb-flow
2•wissemb1•30m ago•0 comments

Show HN: Remove people from photos by brushing over them

https://personremover.org/
2•fourfire•31m ago•0 comments

Astra made Van Gogh in a single pre computed step of 5291 excalidraw shapes

https://twitter.com/hive_echo/status/2096848073033146580
2•echohive42•31m ago•0 comments

Meta blocks accounts protesting Kushner-linked Albanian resort project

https://www.politico.eu/article/meta-blocks-accounts-politicians-journalists-and-activists-protes...
4•vrganj•34m ago•0 comments

Why 'sleepmaxxing' could be making your sleep worse

https://www.bbc.co.uk/news/articles/c99drr70m2eo
3•jeffwass•35m ago•0 comments

I Dislike TypeScript Because I've Never Maintained JavaScript Before

https://mayberay.bearblog.dev/i-dislike-typescript-because-ive-never-maintained-javascript-before/
1•mugamuga•41m ago•0 comments

LessHard: Less wrong about wanting [parody]

https://shimmermathlabs.com/lesshard.html
1•nwhitehead•44m ago•0 comments

What did she see? The intelligence scramble to retrace an accused spys footsteps

https://www.cbc.ca/news/politics/canada-china-spy-nato-intelligence-9.7331493
5•pir8life4me•53m ago•0 comments

23 years documenting the global LED transition of city lighting from space

https://twitter.com/astro_pettit/status/2096763479143469206
5•taubek•56m ago•0 comments

Collaborative Machine Knowledge Platform

https://haidaa.com/
2•AISETR•59m ago•1 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.