frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

"Careless People" author sues Meta

https://www.engadget.com/2202234/careless-people-sarah-wynn-wiliams-sues-meta/
1•NordStreamYacht•1m ago•0 comments

SEC Proposes Rescission of Regulation NMS Rules

https://www.sec.gov/newsroom/press-releases/2026-54-sec-proposes-rescission-regulation-nms-rules-...
1•noitpmeder•1m ago•1 comments

What's New in Soulver 4?

https://documentation.soulver.app/whats-new-in-soulver-4
1•ksec•1m ago•0 comments

Secret gifts from public swell Treasury's coffers

https://www.bbc.co.uk/news/articles/cvgdn3134w1o
2•thunderbong•3m ago•0 comments

Going Critical

https://meltingasphalt.com/interactive/going-critical/
1•surprisetalk•6m ago•0 comments

Tom Stoppard's Arcadia saved lives

https://lithub.com/how-tom-stoppards-arcadia-literally-saved-lives/
1•speckx•6m ago•0 comments

The first open-source, agentic video production system

https://github.com/calesthio/OpenMontage
1•grajmanu•6m ago•0 comments

BadBlocker: 11M Users, One Server Call Away from Compromise

https://www.island.io/blog/badblocker-11-million-users-one-server-call-away-from-compromise
1•Tomte•7m ago•0 comments

Digital Restaurants: The rarity of the pad and pen

https://micahblachman.com/p/digital-restaurants
1•subdomain•8m ago•0 comments

Incident CVE-2026-LGTM

https://nesbitt.io/2026/06/26/incident-report-cve-2026-lgtm.html
2•mooreds•8m ago•0 comments

Show HN: Repositron a typed CRUD for SQLAlchemy with no per-table boilerplate

https://repositron.fa.dev.br/
1•felipeadeildo•10m ago•0 comments

Show HN: Novakit.tech – pre-built Claude Code skills, no prompting required

https://novakit.tech/
1•snehalpateldev•10m ago•0 comments

Show HN: Ponder – the best articles and essays on the internet

https://www.readponder.com/
2•wingdiction•10m ago•0 comments

Guardrails for Offensive AI Agents

https://dest.host/b/guardrails-for-offensive-ai-agents/
2•escape_42•14m ago•0 comments

Google hallucinated that I am sponsored by Ground News

https://www.youtube.com/post/UgkxsAIUDMQTYc15yQqURsGy0Kg7O1x2TtnB
8•RicoElectrico•15m ago•0 comments

The world is heating up, and policies are not helping

https://theoryofchange1.substack.com/p/summer-is-coming-what-game-of-thrones
1•ewidar•16m ago•0 comments

Show HN: Jargo – a Golang port of Pipecat for conversational-AI apps

https://github.com/gojargo/jargo
2•fallais•16m ago•0 comments

Space Shuttle Endeavour's 20-story vertical display

https://californiasciencecenter.org/about-us/samuel-oschin-air-and-space-center/go-for-stack
1•uticus•17m ago•0 comments

For Whom the Bell Curves

https://hollisrobbinsanecdotal.substack.com/p/for-whom-the-bell-curves
1•HR01•18m ago•0 comments

Best run X account in the Canadian startup world

https://x.com/falcongx_
1•cts-i-cts-d•19m ago•0 comments

OpenCQRS 2 Is There

https://github.com/open-cqrs/opencqrs
2•goloroden•20m ago•0 comments

Bevy – A refreshingly simple data-driven game engine built in Rust

https://github.com/bevyengine/bevy
3•modinfo•21m ago•0 comments

Tar: A slop-free alternative to rsync

https://drewdevault.com/blog/rsync-without-rsync/
4•surprisetalk•21m ago•1 comments

Onplana – ChatGPT and Claude do work through one shared project plan

https://onplana.com/agents
2•Onplana•22m ago•0 comments

Free Software and LLM Contribution Policies

https://www.sicpers.info/2026/06/free-software-and-llm-contribution-policies/
3•grahamlee•23m ago•0 comments

Show HN: Regulo – an adaptive semaphore for saturation control

https://github.com/greenstick/regulo
2•bnjemian•23m ago•0 comments

White House asks OpenAI to limit its next model release

https://www.cnn.com/2026/06/25/tech/openai-limit-release-white-house
3•TechTechTech•24m ago•0 comments

Engineering for Bounded Cognition

https://shapeofthesystem.com/posts/2026/02/03/bounded-cognition
2•supermatt•25m ago•0 comments

Imposter scams led fraud reports to FTC in 2025, causing $3.5B in losses

https://www.cnbc.com/2026/06/26/imposter-scams-led-fraud-reports-to-ftc-in-2025-3point5-billion-l...
2•pseudolus•27m ago•0 comments

The closed-source LLM premium has collapsed

https://runware.ai/blog/the-closed-source-llm-premium-has-collapsed
3•theally•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.