frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: SafeRun – Replay debugging and inline prevention for AI agents 2

1•Tidianez•36s ago•0 comments

Small note on solving x^(n/m) = a

https://12000.org/my_notes/solving_equation/index.htm
1•oliverkwebb•44s ago•0 comments

Stop paying $360/year to access your own email history

https://mailvaulty.com
1•khaledsabae•3m ago•0 comments

Show HN: My custom Statusline for Claude Code (Python wrapper around claudeline)

https://gist.github.com/Reebz/741c5647c860fe0b5214f39d9d887240
1•Reebz•11m ago•0 comments

San José State leaped to No. 2 in national computer science ranking

https://edsource.org/2026/san-jose-state-coding-skills-ranking/758707
1•littlexsparkee•12m ago•0 comments

Ask HN: How to make the best of the Mega IPO/ Index fund debacle?

2•jppope•19m ago•2 comments

Professional Scripted product demos with GSAP with Claude

https://spanthi.com/blog/gsap-choreography/
1•vein05•20m ago•0 comments

Experimenting with graph-based semantic memory for AI agents

https://github.com/AEndrix03/Graft
2•AEndrix03•23m ago•0 comments

Intuit to lay off over 3k employees to refocus on AI

https://techcrunch.com/2026/05/20/intuit-to-lay-off-over-3000-employees-to-refocus-on-ai/
2•wapasta•23m ago•0 comments

Technology creates an illusion of control that risks robbing us of meaning

https://www.punkt.ch/blogs/editorials/punkt-losing-traction
5•James72689•29m ago•0 comments

How not to care online: Survival guide for staying human

https://www.jpost.com/health-and-wellness/article-884204
1•heavydevil•30m ago•0 comments

White House briefs AI firms on plans for model review

https://www.reuters.com/legal/litigation/white-house-briefs-ai-firms-plans-model-review-informati...
2•petethomas•36m ago•0 comments

Did AI Game the Commonwealth Prize?

https://unherd.com/2026/05/invasion-of-the-literary-bots/
1•627467•42m ago•1 comments

LAN-LOK: The Antarctic DOS Sabotage Game Lost for 34 Years

https://alphapixeldev.com/lan-lok-the-antarctic-dos-sabotage-game-lost-for-34-years-part-1/
1•miffe•44m ago•0 comments

What Models? Helps Match Local AI Models to Your Hardware

https://whatmodelscanirun.com/
1•javatuts•45m ago•0 comments

SecretScanner is an open-source tool for discovering passwords, API, tokens

https://github.com/deepfence/SecretScanner
2•javatuts•47m ago•0 comments

Open-source Discord alternative GoofCord has been released

https://github.com/Milkshiift/GoofCord
4•javatuts•49m ago•0 comments

The hype literacy toolkit for journalists

https://akademie.dw.de/hype-literacy/
2•johnshades•49m ago•0 comments

Regarding what ever happened to Cohere's Command-A series of models

https://old.reddit.com/r/LocalLLaMA/comments/1tizmar/re_what_ever_happened_to_coheres_commanda_se...
1•Terretta•50m ago•1 comments

Elon Musk's X admits noncompliance with Australia child protection request

https://www.reuters.com/legal/litigation/elon-musks-x-admits-noncompliance-with-australia-child-p...
3•1vuio0pswjnm7•50m ago•0 comments

Physicists confirm 'negative time' is real by asking the atoms themselves

https://www.livescience.com/physics-mathematics/quantum-physics/physicists-confirm-negative-time-...
2•cpncrunch•53m ago•0 comments

Creating Feedback Loops with Snapshotting [video]

https://vimeo.com/1194170218
1•Austin_Conlon•53m ago•0 comments

Convicted Felon Gets $1M/Year to Sell Obsolete Internet Service. You Pay for It

https://www.propublica.org/article/alaska-telecom-subsidies-roger-shoffstall
2•1vuio0pswjnm7•53m ago•1 comments

Pokemon Gen2 Compression Myth

https://old.reddit.com/r/TruePokemon/comments/hwluk9/while_it_is_true_that_iwata_did_write_a_new/
1•birdculture•58m ago•0 comments

The Letter S, by Donald Knuth [pdf]

https://gwern.net/doc/design/typography/1980-knuth.pdf
3•bambax•1h ago•0 comments

Parameter-Efficient Fine-Tuning Methods for Pretrained Language Models

https://www.computer.org/csdl/journal/tp/2026/06/11364256/2dAZTYlgxVu
1•teleforce•1h ago•0 comments

Vollebak alters emotions with new sonic jacket

https://www.designboom.com/technology/vollebak-sonic-jacket-emotional-resonance-chamber-body/
1•thunderbong•1h ago•0 comments

An AI system to help scientists write expert-level empirical software

https://www.nature.com/articles/s41586-026-10658-6
2•anigbrowl•1h ago•0 comments

I reverse engineered Apple's video wallpapers

https://github.com/kageroumado/phosphene
23•kageroumado•1h ago•2 comments

Show HN: Remote Job Board

https://www.remotejobs.place
2•beefive•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.