frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Race to Reliable Visual Understanding

https://cacm.acm.org/news/the-race-to-reliable-visual-understanding/
1•visha1v•49s ago•0 comments

Show HN: Closedtab: a shared record for human-agent teams

https://www.npmjs.com/package/closedtab
1•omnivore•2m ago•0 comments

About Latency-focused disk benchmarks for Linux VPS environments

https://github.com/haydenjames/VPS-Disk-Latency-Bench
1•ashitlerferad•2m ago•0 comments

Context engineering for analytics agents: six months of building and rebuilding

https://blog.getcassis.com/context-engineering-for-analytics-agents/
1•matthieu_bl•3m ago•0 comments

Kog Laneformer 2B: The Latency-First Model Behind Kog Inference Engine

https://blog.kog.ai/kog-laneformer-2b-the-latency-first-model-behind-kog-inference-engine/
1•thomasjb•3m ago•0 comments

Show HN: Claude Code plugin to draw feedback and send it back into the session

https://github.com/tomreinert/claude-annotate
1•tom2948329494•5m ago•0 comments

2026 GPU Price Report

https://cast.ai/reports/gpu-price-report/
3•BlackPlot•10m ago•1 comments

Using Local Coding Agents

https://magazine.sebastianraschka.com/p/using-local-coding-agents
4•mariuz•12m ago•1 comments

ProtonVPN is AI support only. 4 days no human, made me BOTNET. Begging for help

1•protonisafk•13m ago•1 comments

SimpleX: A messaging platform with no user identifiers

https://github.com/simplex-chat/simplex-chat
2•mpfect•14m ago•0 comments

The People Who Will Thrive in the AI Age

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

GPT-5.5 Instant (June 2026) Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/gpt-5-5-instant-06-26
3•theanonymousone•21m ago•0 comments

Towards Automating Scientific Review with Google's Paper Assistant Tool

https://arxiv.org/abs/2606.28277
1•ilreb•21m ago•0 comments

Transformations

https://jauzo.com/2026/06/28/transformation/
1•kukkeliskuu•22m ago•1 comments

Linkedout: See how much data LinkedIn has on you

https://blog.alexewerlof.com/p/linkedout
3•hanifbbz•25m ago•1 comments

Metamorphic testing with Lean4-verified mutations finds compiler miscompilations

https://nowarp.io/blog/compiler-testing-part-2/
1•jubnzv_•25m ago•0 comments

HorseWood Reviews USA: Does This Men's Formula Deliver?

https://finance.yahoo.com/sectors/healthcare/articles/horsewood-urgent-report-2026-horse-19110038...
1•tagyhanu•26m ago•0 comments

LLM Medical Triage: Same Symptoms, Gender-Dependent Urgency

https://arxiv.org/abs/2606.03641
1•p4bl0•30m ago•0 comments

Show HN: PDF.chat

https://pdf.chat/
1•nadermx•34m ago•0 comments

Scaling Real-Time Streaming

https://systemsapproach.org/2026/06/29/scaling-real-time-streaming/
1•teleforce•38m ago•0 comments

EU countries move to revive temporary message-scanning regime

https://www.euronews.com/my-europe/2026/06/26/eu-countries-move-to-revive-temporary-message-scann...
6•latexr•43m ago•0 comments

Chinese host on vast.ai masquerading as US host

https://twitter.com/uzyn/status/2071498690414731513
2•uzyn•49m ago•1 comments

Show HN: AI Soulmate Sketch Tool

https://attractivenesstest.com/soulmate-sketch
1•beast200•50m ago•1 comments

Do Excellent Vulnerability Reports

https://daniel.haxx.se/blog/2026/06/29/do-excellent-vulnerability-reports/
1•cheeaun•52m ago•0 comments

XCP-ng: A sovereign alterbative to VMware

https://xcp-ng.org/
2•benterix•52m ago•0 comments

2 Years After Broadcom Destroyed VMware: Where Did Everything Land? [video]

https://www.youtube.com/watch?v=lpHsSaL-NJw
2•benterix•53m ago•0 comments

From Zoom to Research Reports: How Terapage's Interview Import Saves Your Time

https://zenodo.org/records/21024856
2•anasteciadunu•54m ago•0 comments

Show HN: Independent Wire – open-source AI newsroom that documents its own bias

https://independent-wire.org/
1•dnzschwnk•56m ago•0 comments

AI Glasses Will Impact the Future of Education

https://xg.glass/posts/network-exam-test/
2•__natty__•1h ago•0 comments

Welcome to Sloptopia: The Future of the Internet

https://www.vice.com/en/article/welcome-to-sloptopia-the-future-of-the-internet/
4•Michelangelo11•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.