frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pgrust: Postgres in Rust

https://malisper.me/postgres-in-rust-regression-suite/
1•michaelssilver•1m ago•0 comments

Show HN: Let Claude/ChatGPT deploy your sites

https://mcp.so/servers/nippy
1•Jamie452•3m ago•0 comments

I built an AI tool that turns a product URL into a video ad

1•Ugcad•4m ago•0 comments

The Art of PostgreSQL

https://theartofpostgresql.com/
1•ahamez•7m ago•0 comments

Git Koans

https://stevelosh.com/blog/2013/04/git-koans/
2•janalsncm•12m ago•1 comments

Show HN: NearBye – macOS locks itself when your iPhone leaves the room

https://nearbye.gege.mn/
1•sadespresso•15m ago•0 comments

Tesla still has no real plan for Hardware 3 owners promised FSD

https://electrek.co/2026/07/22/tesla-hardware-3-fsd-no-plan-musk-earnings-call/
2•breve•17m ago•0 comments

Is your programming language unreasonable? (2015)

https://fsharpforfunandprofit.com/posts/is-your-language-unreasonable/
1•tosh•18m ago•1 comments

Show HN: A satellite control room from 100% open data, self-hosted in Europe

https://overwatch.confinia.io
2•clement_igonet•20m ago•0 comments

Cruller: Bun's Zig Runtime, Continued on Zig 0.16

https://ziggit.dev/t/cruller-buns-zig-runtime-continued-on-zig-0-16/16734
3•Erenay09•22m ago•0 comments

Google burning through cash with spiralling AI costs

https://www.bbc.com/news/articles/c235n47g8g8o
2•geox•25m ago•0 comments

Show HN: Northstar Browser

3•roschdal•28m ago•0 comments

UAE WPS Payroll Guide

https://adilrashidlone.substack.com/p/the-one-question-that-actually-tells
1•digitaldaddyme•33m ago•0 comments

French President Macron backs effort to ban kids under 15 from social media

https://fortune.com/2026/07/20/french-president-social-media-ban-lawmakers/
8•1vuio0pswjnm7•36m ago•0 comments

July 23 1985, Commodore introduced its Amiga 1000: 10 years ahead of its time

https://dfarq.homeip.net/amiga-1000-ten-years-ahead-of-its-time/
2•giuliomagnifico•38m ago•1 comments

The High Ponytail That Made Lydia Corbett Picasso's Muse

https://www.wsj.com/real-estate/lydia-corbett-picasso-muse-37f2e088
1•petethomas•49m ago•0 comments

The Computer, De-Invented

https://daylightcomputer.com
2•signa11•49m ago•0 comments

Calm Technologies That Excite Me

https://abhi.now/blog/calm-technologies/
2•signa11•51m ago•0 comments

Show HN: Mcpgen – Turn OpenAPI/Postman Specs into Python MCP Servers

https://github.com/JnanaSrota/mcpgen
1•princea747•53m ago•0 comments

Why care about programming languages

https://ebellani.github.io/blog/2026/why-care-about-programming-languages/
3•signa11•53m ago•1 comments

How good is your AI Gateway?

https://www.highflame.com/blog/the-three-moments-your-ai-gateway-can-ruin/
2•sharathr•55m ago•2 comments

Local AI that finds sensitive files on your Mac before attackers do

https://www.vaultsort.com/guardian
2•VaultSort•56m ago•0 comments

AI chatbots can be as effective as humans at emotional support, sometimes better

https://www.manchester.ac.uk/about/news/ai-chatbots-can-be-as-effective-as-humans-at-emotional-su...
1•giuliomagnifico•57m ago•0 comments

SteamForge – Modern PC Gaming Achievement Tracker (No Account Required)

https://steamforge.app/
1•Gengar•57m ago•0 comments

India's solar push idles factories unable to shake reliance on China

https://www.reuters.com/business/energy/indias-solar-push-idles-factories-unable-shake-reliance-c...
2•JumpCrisscross•1h ago•0 comments

Was the Hannibal Directive activated on October 7, 2023?

https://medium.com/freedomofthought/was-the-hannibal-directive-activated-on-october-7-2023-52b42f...
3•raynchad•1h ago•0 comments

Stop pretending billionaires built the future

https://www.elysian.press/p/billionaires-didnt-create-innovation
7•aard•1h ago•0 comments

Warsh Confuses Traders, Makes Them Guess Next Week's Rate Move

https://www.bloomberg.com/news/articles/2026-07-22/warsh-leaves-bond-traders-in-the-dark-on-next-...
1•petethomas•1h ago•0 comments

Show HN: I built my wife an ad-free news brief that fact-checks and flags bias

https://beamwire.ai/
1•malammar•1h ago•2 comments

ProkitQ – Free tools for entrepreneurs with no signup required

https://prokitq.com/tools
2•isurumahesh•1h ago•1 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.