frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I made email signatures less boring

https://esigna.app
1•rodgetech•3m ago•0 comments

Emily Wilson on Translations and Language (Ep. 63)

https://conversationswithtyler.com/episodes/emily-wilson/
1•paulpauper•7m ago•0 comments

How To Choose A Subproblem

https://millicosm.substack.com/p/how-to-choose-a-subproblem
2•paulpauper•7m ago•0 comments

On Being a Conservative

https://casssunstein.substack.com/p/on-being-a-conservative
2•paulpauper•7m ago•0 comments

OneCLI Is Live on the 1Password Marketplace

https://onecli.sh/blog/onecli-1password-marketplace
2•Jonathanfishner•8m ago•0 comments

Turning robot video into training-ready data

https://www.eventual.ai/blog/announcing-daft-physical-ai
1•DISCURSIVE•14m ago•0 comments

Show HN: AI Secretary – Stop checking your phone "just in case"

https://github.com/mathigatti/telegram-ai-secretary
1•mathigatti•19m ago•0 comments

Show HN: Yaml2json.com, YAML/JSON converter that runs in the browser

https://yaml2json.com
1•zacattack8•19m ago•0 comments

Generative Bionics launches Gene.01 ahead of shipyard welding trials

https://runtimewire.com/article/generative-bionics-gene01-tactile-humanoid-shipyard-trials
1•ryanmerket•19m ago•0 comments

FDE Interview Questions

https://superml.org/tutorials/fde-interview-questions
2•bps1418•21m ago•0 comments

With the Help of Codex: A Reproducible Proof Against the Jacobian Conjecture

https://blog.clidey.com/a-reproducible-proof-against-the-jacobian-conjecture/
2•hemangkandwal•22m ago•0 comments

Agent Search Engine – an independent, hand-audited index of 247 AI agents

https://agentsearchengine.app
1•ASE-APP•23m ago•0 comments

Flathub's AI slop ban looks like it was the right call

https://www.omgubuntu.co.uk/2026/07/flathub-ai-slop-ban-data
4•csmantle•25m ago•0 comments

Huawei Just Built an Impossible Chip [video]

https://www.youtube.com/watch?v=8ekndZwyOzo
2•binyu•27m ago•0 comments

Show HN: Ekko – PQC encryption inside of your keyboard

https://useekko.app/
3•kvasilev•30m ago•0 comments

A Meta-Epistemological Reason for Rejecting AI-Written Philosophy

https://dailynous.com/2026/07/16/a-meta-epistemological-reason-for-rejecting-ai-written-philosophy/
1•zetamax•31m ago•0 comments

Flock Credibility Lost as It Repeatedly Lies to City Councils, Police, & Public

https://www.aclu.org/news/privacy-technology/tracking-alpr-cameras/flock-safety-credibility-lost-...
5•StatsAreFun•36m ago•0 comments

The surprising benefits of red light

https://www.economist.com/science-and-technology/2026/07/20/the-surprising-benefits-of-red-light
1•andsoitis•40m ago•0 comments

Quickly rewrite Git repository history

https://github.com/newren/git-filter-repo
2•modinfo•41m ago•0 comments

The Networking Wars: How Microsoft Crushed Novell

https://www.youtube.com/watch?v=5GAYaBU1SLQ
4•cable2600•42m ago•0 comments

Made $500k in 2 weeks and found 6 jobs. Here are the 7 prompts that I used

https://github.com/zfoong/Here-are-the-N-prompts-that
1•zfoong•46m ago•2 comments

A quick note on OmniWM, open source, and why giving credit matters

https://github.com/BarutSRB/OmniWM/discussions/497
2•mmcclure•47m ago•0 comments

Best Coding Fonts for Developers in 2026

https://www.jstools.space/blog/best-coding-fonts/
3•javatuts•47m ago•2 comments

Datasette Dashboards

https://romain-clement.net/projects/datasette-dashboards/
2•ankitg12•48m ago•0 comments

The Graph Was the Cheap Part

https://cameronwestland.com/the-graph-was-the-cheap-part/
1•camwest•48m ago•0 comments

OpenCircuitX

https://github.com/openlab-x/OpenCircuitX
2•firetesterlab•50m ago•0 comments

OpenAI Says Model Broke Out of Sandbox

https://twitter.com/kimmonismus/status/2079276434586210745
3•derangedHorse•51m ago•0 comments

$100 million for open source: A milestone built by the community

https://github.blog/open-source/maintainers/100-million-for-open-source-a-milestone-built-by-the-...
1•chmaynard•53m ago•0 comments

The road to epsilon-zero: Nim always ends, even with infinite ordinals

https://blog.plover.com/math/ordinals/02-wellfoundedness.html
2•pavel_lishin•59m ago•0 comments

MAGA Media Lap Up Trump's Election-Interference Exaggerations

https://www.nationalreview.com/news/maga-media-lap-up-trumps-election-interference-exaggerations/
1•petethomas•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.