frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Postgres FDW: Pushdown is a negotiation

https://clickhouse.com/blog/postgres-fdw-pushdown-negotiation
1•saisrirampur•13m ago•0 comments

ARC-AGI Leaderboard

https://arcprize.org/leaderboard
2•rzk•18m ago•0 comments

Telefunc: Remote Functions

https://github.com/telefunc/telefunc
1•dvrp•21m ago•0 comments

AGI Singer: AGI Inventor – No Supreme Authority

https://medium.com/@miho999lv/agi-singer-agi-inventor-no-supreme-authority-b63d9bddac47
1•miho999lv•24m ago•0 comments

CRISPR enzyme kills cancer cells by shredding their DNA

https://www.nature.com/articles/d41586-026-02268-z
2•justworks•25m ago•0 comments

Understanding Is the New Bottleneck

https://www.geoffreylitt.com/2026/07/02/understanding-is-the-new-bottleneck.html
2•haritha1313•27m ago•0 comments

The Joy of Being Wrong

https://shortdiv.com/posts/the-joy-of-being-wrong/
2•haritha1313•39m ago•0 comments

On the Nature and Purpose of Code

https://blog.moertel.com/posts/2026-07-23-on-the-nature-and-purpose-of-code.html
2•chmaynard•41m ago•0 comments

The perils of parsing type inference declarations in C

https://sebsite.pw/w/20260725-auto.html
1•jandeboevrie•41m ago•0 comments

Researchers replace downloaded macOS apps with evil twins, Apple shrugs

https://www.theregister.com/security/2026/07/24/researchers-replace-downloaded-macos-apps-with-ev...
5•sbulaev•42m ago•0 comments

Herv AI – Spatial Intelligence

https://hervai.com
2•kayumbaherve•49m ago•0 comments

GitHub

2•Julipaz•49m ago•2 comments

Reactive Python Notebooks in Jupyter

https://github.com/ipyflow/ipyflow
1•smacke•55m ago•0 comments

Show HN: AI Anime Finder – Natural language semantic search for AniList

https://zlvox.com/tools/anime-finder
2•mrdisloyal•57m ago•0 comments

AutoCO: An Online Continuous Optimization System for Phase-Changing DB Workloads

https://dl.acm.org/doi/10.1145/3832323
2•matt_d•57m ago•0 comments

Extinct Media Museum Tokyo

https://extinct-media-museum.blog.jp/otemachi/
2•sohkamyung•58m ago•0 comments

Show HN: Rivers – a Rust/Python orchestrator with native OIDC and forward auth

https://github.com/ion-elgreco/rivers
1•ion-elgreco•1h ago•0 comments

Google Was a Lifeline for Publishers. Now Some Are Thinking of Cutting It Off

https://www.wsj.com/business/media/google-search-publishers-ai-content-0fb06e41
2•1vuio0pswjnm7•1h ago•1 comments

Companies are optimizing models for specific benchmarks

2•mzubairtahir•1h ago•0 comments

Split Screen – browser workspaces to replace tab sprawl (free, local)

https://github.com/MIR-2025/brave-ext/tree/main/splitscreen
2•ruusvuu•1h ago•1 comments

A Tale of Two Tailnets

https://blog.exe.dev/a-tale-of-two-tailnets
3•shintoist•1h ago•0 comments

Shawn Ryan announces partnership with glacier [video]

https://www.youtube.com/watch?v=yB05HiKCCuI[video]
1•smalltorch•1h ago•1 comments

The Global Justice Report

https://globaljusticeproject.wid.world/global-justice-report/
1•homarp•1h ago•0 comments

Trump announces 2028 presidential bid

https://www.smh.com.au/world/trump-announces-2028-presidential-bid-20260725-p60iho.html
12•jiggawatts•1h ago•4 comments

Uber: HR crisis - Darden MBA Case Study (2020)

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3207044
1•mgh2•1h ago•1 comments

"As millionaires we have a message for our new Prime Minister: Tax us."

https://proudtopay.org
5•teekert•1h ago•3 comments

Michael Stevens and Hannah Fry: The Rest Is Science

https://therestis.com/science
3•tomfakes•1h ago•0 comments

The Architecture of Deep Thought: Fight AI Speed with Cognitive Friction

https://varnam.substack.com/p/the-architecture-of-deep-thought
2•arthurfleck•1h ago•0 comments

Show HN: Sync Claude Code and Codex configs, with a board that shows the drift

https://github.com/slash9494/ai-config-sync-manager
1•slash9494•1h ago•0 comments

AWS announces AWS-bench, an open-source benchmark for AI agents on AWS

https://aws.amazon.com/about-aws/whats-new/2026/07/aws-bench/
2•gslin•2h 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.