frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rememori – zero-dependency agent memory that runs anywhere JavaScript runs

https://rememori.dev
1•GiorgioDotcom•1m ago•0 comments

Use the alphabet: human-friendly geocoding, unlike what3words

https://ssrn.com/abstract=6879364
1•edmund_day•1m ago•0 comments

PDF 2.0: New Features, Real-World Impact

https://pdfa.org/pdf-2-0-new-features-real-world-impact/
1•Tomte•2m ago•0 comments

SMS for Hobbyist Projects

https://payne.org/projects/sms-for-hobbyists/
1•payne92•3m ago•1 comments

Show HN: DocFlow – AI documentation updates for GitHub pull requests

https://aicodedocumentationgenerator.com/
1•Aldasams•5m ago•0 comments

Fediverse.info: Social media that belongs to you

https://fediverse.info/
1•rapnie•7m ago•0 comments

CorvinOS – an agentic OS where GDPR/EU AI Act compliance can't be switched off

https://github.com/CorvinLabs/CorvinOS
1•shumway•10m ago•0 comments

Claude Code Antigravity CLI Agents Skill

https://github.com/markfulton/claude-antigravity-agents
1•DotSauce•10m ago•0 comments

Show HN: Mondael.com – Institutional Intelligence for Prediction Markets

https://mondael.com
1•16th_hop•11m ago•0 comments

Show HN: Sonn a reasoning layer that nudges coding agent before it makes mistake

https://sonn.dev
1•AlexSonn•12m ago•0 comments

Show HN: Phobos – A tiny scale-free kernel language with tile-DAG support

https://www.joa-ebert.com/posts/2026-07-07-phobos-lang/
2•joajoa•13m ago•0 comments

Eliminating Go bound checks with unsafe

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

Most AI Work Can Wait

https://tomtunguz.com/ai-execution-routing/
1•speckx•13m ago•0 comments

Show HN: Excogni – open-source cognitive training that can't leak your email

https://xcgni.com/
1•brna-2•14m ago•0 comments

Amazon aims to raise $25B from bond sale, Bloomberg News reports

https://www.reuters.com/legal/transactional/amazon-aims-raise-25-billion-bond-sale-bloomberg-news...
2•enlightpixel•14m ago•0 comments

ScreenStack Is Looking for Design Partners

1•ud0•14m ago•0 comments

Mark Zuckerberg's biggest legal nightmare yet could cost Meta $1.4T

https://www.the-independent.com/tech/mark-zuckerberg-meta-fine-trillion-b3010281.html
9•wrxd•14m ago•0 comments

OpenCRA

https://github.com/borisRadonic/OpenCRA
3•BorisRadonic•17m ago•1 comments

The Gap Map v0.1

https://www.currentai.org/blogs/introducing-the-gap-map-v0-1
1•surprisetalk•18m ago•0 comments

Show HN: Sprytools – 26 small developer APIs behind one key

https://sprytools.com/api/
1•grenzfrei•18m ago•0 comments

Netherlands recruited 29 top scientist leaving U.S. under Trump

https://nltimes.nl/2026/07/07/netherlands-recruited-29-top-scientist-leaving-us-trump
2•jacquesm•18m ago•1 comments

Hacking the bureaucracy to get stuff done (2020)

https://www.zainrizvi.io/blog/hacking-the-bureaucracy-to-get-stuff-done/
1•cdirkx•18m ago•0 comments

A visual calculator to estimate and compare LLM API pricing

https://neutraloverdrive.com/tools/token-calculator/
1•brancpa•19m ago•0 comments

Software is eating the world, AUTONOMOUSLY

https://2030.marketing/software-is-eating-the-world-autonomously/
1•TechOnionKing•19m ago•0 comments

Space Force's high-powered electro beam nullifies hostile satellites

https://newatlas.com/military/space-force-meadowlands-satellite-blinding-beam-weapon/
3•geox•20m ago•0 comments

Show HN: SigMap – deterministic repo maps for AI coding agents

https://sigmap.io
2•cees007•20m ago•0 comments

Ask HN: What are alternative to Upwork for side gig?

2•user7878•21m ago•1 comments

Show HN: Sdlc factory built on pi.dev:intent->DDD->architecture->tested code

https://github.com/arman-jalili/guardian-framework
1•arman-w-jalili•21m ago•0 comments

Court allows far-right leader Marine Le Pen to run for president

https://www.nbcnews.com/world/europe/france-far-right-marine-le-pen-presidential-election-macron-...
2•Alien1Being•22m ago•1 comments

A design system for Rust/egui where token violations fail the build

https://ouroboros-ui.typezerolabs.com
1•mauriciojuba•22m 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.