frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pyinfra Is Underrated

https://pyinfra.com
1•zxspectrumk48•1m ago•0 comments

Why Argentina Has Almost No Black People [video]

https://www.youtube.com/watch?v=FiPSZ_eaRPo
2•baranul•4m ago•1 comments

Test

1•adnane4•5m ago•3 comments

Trend Has Russian Men Smashing Their iPhones for a Manlier Look

https://www.odditycentral.com/videos/bizarre-trend-has-russian-men-smashing-their-iphones-for-a-m...
5•jethronethro•7m ago•0 comments

On Claude's Clotted Writing Style

https://blog.kierangill.xyz/clotted-claude
2•kierangill•7m ago•0 comments

The Newest Vegas Loop Stations Will Blow Your Mind [video]

https://www.youtube.com/watch?v=e7vFCP3PtuA
1•Topfi•10m ago•0 comments

Nvidia DGX Spark as a daily driver

https://daniel.lawrence.lu/blog/2026-07-15-dgx-spark-as-daily-driver/
2•plun9•11m ago•1 comments

Photo going viral of Lionel Messi with baby Lamine Yamal(2024)

https://www.euronews.com/culture/2024/07/16/two-legends-the-story-behind-the-2007-photo-going-vir...
1•rawgabbit•11m ago•0 comments

Wigolo: Local first web search agent

https://knockoutez.github.io/wigolo/
1•handfuloflight•13m ago•0 comments

Welcome to the wild world of AI Argentina

https://www.thenerve.news/p/uki-goni-argentina-javier-milei-peter-thiel-ai-non-human-corporations
3•billybuckwheat•18m ago•0 comments

Show HN: BlazeRules – YAML rule engine for streaming data, 3M records/SEC

2•jspuri•22m ago•0 comments

Show HN: Chalie – AI peer not employee

https://github.com/chalie-ai/chalie
2•dylangrech92•22m ago•1 comments

The Voice of Google

https://www.newyorker.com/culture/the-weekend-essay/the-voice-of-google
1•joebuckwilliams•22m ago•1 comments

Kimi: Threat or Menace?

https://techcrunch.com/2026/07/18/kimi-threat-or-menace/
2•zaikunzhang•23m ago•0 comments

Modder Runs GTA III Inside GTA: San Andreas on an In-Game TV

https://videocardz.com/newz/modder-runs-gta-iii-inside-gta-san-andreas-on-an-in-game-tv
3•croes•28m ago•0 comments

Local-first, turn-based threads for most things

https://github.com/research-farm/substrate
1•nocam•31m ago•1 comments

Kq – jq but 1.5x faster on paths, from a language with no GC/lifetimes

https://github.com/kanso-lang/kq
2•ClayShentrup•33m ago•0 comments

Ask HN: What percentage of HN users are developers?

1•wseqyrku•34m ago•2 comments

America Is Sitting on the Largest Oil Deposit, but There's a Catch [video]

https://www.youtube.com/watch?v=SIklReulhVs
1•Bender•35m ago•0 comments

Show HN: Seed and Series raised last week

https://choclatenews.substack.com/p/choclate-weekly-011
1•dariusogenyiebu•36m ago•1 comments

Show HN: My Fable 5 Project Was a Multiraft Database and Blob Store

https://meetthecluster.github.io/
1•SamInTheShell•38m ago•0 comments

Head cooling intervention improves mental health markers

https://www.sciencedirect.com/science/article/pii/S0001691826006724?via%3Dihub
2•geox•41m ago•0 comments

Orion Browser by Kagi

https://orionbrowser.com/
1•sebjones•42m ago•1 comments

Show HN: Bothread, multiple AI coding agents talk, share one repo, no collisions

https://github.com/AdamACE9/bothread
1•AdamACE9•46m ago•0 comments

How to Sell a Kettle

https://www.economist.com/business/2026/07/16/how-to-sell-a-kettle
2•bazzmt•49m ago•0 comments

FIFA World Cup Triggers a Global Anti-Piracy Crackdown

https://torrentfreak.com/fifa-world-cup-triggers-a-global-anti-piracy-crackdown/
2•gslin•52m ago•0 comments

Two Loops: How China's Open AI Strategy Reinforces Its Industrial Dominance [pdf]

https://www.uscc.gov/sites/default/files/2026-03/Two_Loops--How_Chinas_Open_AI_Strategy_Reinforce...
2•pash•52m ago•0 comments

I argued with the father of open source for 2 years Now the AI fight is the same

https://fortune.com/2026/07/03/open-source-ai-same-fight-as-software-fight-1980s-david-siegel-two...
2•t-3•53m ago•0 comments

What Year Was?

https://whatyearwas.com/
2•danololik•55m ago•1 comments

JupyDash – turn any Jupyter notebook into a dashboard

https://plathsoven.github.io/jupydash-releases/
3•Entropnt•57m 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.