frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mcpsense-proxy bridge legacy stateful MCP servers to the July28,2026 spec

https://github.com/comerade2134/mcpsense-proxy
1•light82083•46s ago•0 comments

The Competition Is Not the Problem

https://timleland.com/the-competition-is-not-the-problem/
1•TimLeland•2m ago•0 comments

Madden NFL 27 on Apple Arcade

https://www.apple.com/newsroom/2026/07/madden-nfl-27-arcade-edition-brings-gridiron-action-to-app...
2•nate•3m ago•0 comments

Emacs Docs: The modern documentation website Emacs deserves

https://emacsdocs.org
1•chiply•3m ago•1 comments

Asterism – a local-first knowledge graph that grows from your Claude chats

https://github.com/biditdas18/asterism
1•biditdas18•4m ago•0 comments

End-to-end encrypted secret sharing with the Web Crypto API

https://notnotp.com/notes/end-to-end-encrypted-secret-sharing-with-the-web-crypto-api/
1•chmaynard•7m ago•0 comments

Rural NY School District Will Be One of First to Bring Humanoid Robot into Class

https://nysfocus.com/2026/07/14/new-york-humanoid-robot-teacher-salamanca-school-district
1•amichail•9m ago•0 comments

"Light" Grub Alternative Package for Confidential Computing

https://www.phoronix.com/news/GRUB-Light-Approved-Fedora-45
2•Bender•11m ago•0 comments

Linux Foundation's Latest Foray Is to Standardize Payments for AI Agents

https://www.phoronix.com/news/Linux-Foundation-x402
1•Bender•11m ago•0 comments

NanoSASRec

https://github.com/eifuentes/nanoSASRec
1•efavdb•12m ago•0 comments

People Who Will Thrive in the AI Age

https://www.theatlantic.com/ideas/2026/06/ai-open-ai-anthropic/687689/
1•sodiumjoe•12m ago•0 comments

Beyond the Dashboard: Where Competitive Advantage Lives

https://www.library.hbs.edu/working-knowledge/beyond-the-dashboard-where-competitive-advantage-re...
1•paulpauper•13m ago•0 comments

Ambient Music via Conway's Game of Life

https://www.moishelettvin.com/life-ambient/
1•sys_call•14m ago•0 comments

Five Laws of Generative AI

https://isaaclyman.com/blog/posts/five-laws-of-ai/
1•aard•14m ago•0 comments

Why is Everybody Nostalgic About the 80s?

https://grimoiremanor.substack.com/p/why-is-everybody-nostalgic-about
1•paulpauper•15m ago•0 comments

Can you get a job at Bending Spoons?

https://www.wsj.com/business/bending-spoons-jobs-hiring-stock-eaed2b8e
1•paulpauper•15m ago•0 comments

Database Sharding

https://planetscale.com/blog/database-sharding
2•mahirsaid•16m ago•0 comments

AeroSLS – Simulated Single Level Strorage OS

https://aerosls.kubeworkz.io/
1•SpuriousReg•20m ago•0 comments

Blender 5.2 LTS Released with Many Great Enhancements

https://www.phoronix.com/news/Blender-5.2-Released
2•Bender•21m ago•0 comments

Run a Tor relay (not exit)

https://community.torproject.org/relay/
2•MMTlover•21m ago•0 comments

Blender 5.2 LTS

https://www.blender.org/download/releases/5-2-lts/
1•makizar•22m ago•1 comments

Open Sourcing the Atuin AI Server

https://blog.atuin.sh/atuin-ai-oss/
3•johnbehnke•23m ago•0 comments

How I built my site with no frameworks and Claude Code (PHP, vanilla JavaScript)

https://ivanmisic.net/blog/ai-tools/how-i-built-this-site-with-claude-code
2•imisic•25m ago•1 comments

Show HN: Poseberry: create AI influencers that pose with your products

https://poseberry.com
1•itsdevdaniel•27m ago•0 comments

Chinese CXMT to Match Micron's DRAM Manufacturing Capacity This Year

https://www.techpowerup.com/350726/chinese-cxmt-to-match-microns-dram-manufacturing-capacity-this...
1•yogthos•28m ago•0 comments

Why not LLMs?

https://codeberg.org/ethical-foss/open-slopware/src/branch/main/why_not_llms.md
4•lr0•29m ago•0 comments

US fossil fuel power spending to beat China for the first time in decades

https://www.reuters.com/business/energy/iea-forecasts-us-fossil-fuel-power-spending-beat-china-fi...
1•ironyman•31m ago•0 comments

The US may be hitting a tipping point for heat pumps

https://grist.org/energy/the-us-may-be-hitting-a-tipping-point-for-heat-pumps/
2•toomuchtodo•32m ago•1 comments

One Model or Twenty-Six?

https://www.supcpu.com/research/one-model-or-twenty-six/
1•romellogoodman•32m ago•0 comments

Uber's robotaxi lobbying effort puts it on a collision course with Waymo

https://techcrunch.com/2026/07/13/ubers-robotaxi-lobbying-effort-has-put-it-on-a-collision-course...
1•nickvec•32m 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.