frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ledgerly a live budget chart that runs in the browser (free, no signup)

https://6b929b8f01f0260a705fb34bdac44ec3.ctonew.app
1•nharvey•1m ago•0 comments

Manticore Search 29.9.0: Chunked auto-embeddings and MMAP columnar access

https://medium.com/@s_nikolaev/manticore-search-29-9-0-chunked-auto-embeddings-and-mmap-columnar-...
1•snikolaev•3m ago•0 comments

Neurogrid the Community Cloud for LLMs

https://neurogrid.cc
1•cheyodev•4m ago•1 comments

Mourning the Loss of AI Companions

https://www.nature.com/articles/s41562-026-02569-3
1•geox•5m ago•0 comments

Sidero Labs Joins Yardi

https://www.siderolabs.com/blog/sidero-labs-joins-yardi
1•robinhoodexe•5m ago•0 comments

A Blender BPY skill that helps smaller LLMs build better 3D models

https://github.com/capybala18/capybala-bpy-skill
1•capy00129•6m ago•1 comments

He Accused His Brother of Sexual Abuse. Then He Took on His Family

https://www.nytimes.com/2026/09/15/world/asia/thai-singha-beer-family-abuse-accusations.html
1•JumpCrisscross•12m ago•0 comments

Show HN: The web is dead. Keep this app alive

https://longlivethis.site
4•armstrongb•13m ago•3 comments

Agents Have Favorite Tools

https://ianbarber.blog/2026/09/14/agents-have-favorite-tools/
1•matt_d•16m ago•0 comments

Pisa 2025 Results

https://www.oecd.org/en/publications/2026/09/pisa-2025-results-volume-i_5265bfb1/full-report.html
1•mudil•16m ago•1 comments

AI vs. Human Value Drift

https://www.overcomingbias.com/p/ai-vs-human-value-drift
1•paulpauper•18m ago•1 comments

New AI Solves a Millennium Prize

https://thezvi.substack.com/p/brand-new-ai-solves-a-millennium
1•paulpauper•18m ago•0 comments

Supreme Court blocks Trump's plan to restrict mail-in ballots

https://www.bbc.com/news/articles/c5yjpdy4gjlo
4•colinprince•21m ago•1 comments

The Revolut breach just escalated

https://twitter.com/T3chFalcon/status/2099584270058537044
1•soltanov•21m ago•1 comments

Show HN: Analyzed 400 routes and driving a Tesla beats flying 65% of the time

https://flyortesla.com/insights
2•drewlem•28m ago•3 comments

Adapt or Perish: What Mathematicians Must Learn from Software Engineers

https://medium.com/@b1nj0y/the-misalignment-is-within-why-mathematics-must-embrace-the-ai-paradig...
1•b1nj0y•34m ago•0 comments

Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo

https://guides.visual-paradigm.com/mastering-graphviz-layout-engines-dot-neato-twopi-circo/
2•vismit2000•38m ago•0 comments

Linux from Scratch

https://www.linuxfromscratch.org/
2•sippingabonedry•41m ago•0 comments

A Faster Approach to Ethereum Wallet Activity Patterns and Transaction Summaries

https://chainledgerai.io/blog/beyond-bigquery-a-faster-approach-to-ethereum-wallet-activity-patte...
1•oculix-official•43m ago•0 comments

Streamlining Your Strategy: The Power of Automated Real Estate Descriptions

https://propdescai.io/blog/streamlining-your-strategy-the-power-of-automated-real-estate-descript...
1•oculix-official•45m ago•0 comments

Archkeel – coding agents declare architecture changes before they submit

https://github.com/rapiddweller/archkeel
1•ake2l•45m ago•0 comments

The Three Lives of Clausewitz: How Anglo-American Strategists Remade "On War"

https://smallwarsjournal.com/2026/07/21/three-lives-of-clausewitz-on-war/
1•bryanrasmussen•47m ago•1 comments

The Butlerian Secession

https://the-human-alliance.org/
2•tcorcos•48m ago•0 comments

Shuffling Is Not Enough: Breaking Permutation-Based Model Confidentiality

https://arxiv.org/abs/2609.12911
1•sbulaev•49m ago•0 comments

We Automate KiCad PCB Routing

https://autocuro.com/blog/how-we-automate-kicad-pcb-routing
3•teleforce•50m ago•0 comments

KiCad Routing Tools

https://github.com/drandyhaas/KiCadRoutingTools
3•teleforce•50m ago•0 comments

See how well you know the sizes of things

https://playdaily.org/size-it-up
4•Hemmaamlin•52m ago•0 comments

How to Build a Practical Household Bike Generator

https://solar.lowtechmagazine.com/2022/03/how-to-build-a-practical-household-bike-generator/
1•fosco•52m ago•1 comments

Superhuman acquires YC-backed notetaker Fathom

https://techcrunch.com/2026/09/14/superhuman-acquires-yc-backed-notetaker-fathom-as-productivity-...
1•doppp•1h ago•1 comments

Ask HN: How to Protect Your Brand Before AI Copies It?

1•soltanov•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.