frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Solving Santa Claus Puzzle

https://wyounas.github.io/puzzles/concurrency/2026/01/10/how-to-help-santa-claus-concurrently/
1•simplegeek•2m ago•0 comments

Littlenavmap

https://github.com/albar965/littlenavmap
1•marklit•5m ago•0 comments

Datacentres drive up big tech's carbon emissions to a third of those of France

https://www.theguardian.com/us-news/2026/jul/11/microsoft-amazon-google-datacentre-carbon-emissio...
1•YeGoblynQueenne•5m ago•0 comments

Sonnet Encore/ST G4: How a Tiny Capacitor Destroyed a Rare Upgrade

https://retroreverend.com/blog/tantalum-fall-down-go-boom-how-a-tiny-capacitor-destroyed-one-of-t...
1•rbanffy•7m ago•0 comments

The Advantages of Flexible Typing

https://sqlite.org/flextypegood.html
1•ingve•9m ago•0 comments

Oh dear, did someone steal something from Apple?

https://www.businessinsider.com/apple-openai-trade-secrets-masimo-a123-jony-ive-2026-7
2•CrypticShift•11m ago•0 comments

Show HN: Sanbox, batteries included sandboxes for AI agents

https://sanbox.cloud
2•oryx1729•12m ago•0 comments

Google Opposes Site Blocking in Europe as US Piracy Blocking Plans Gain Momentum

https://torrentfreak.com/google-opposes-site-blocking-in-europe-as-u-s-piracy-blocking-plans-gain...
1•gslin•13m ago•0 comments

Death of the Status Update: Why 55% of Americans Stopped Posting on Social Media

https://ca.pcmag.com/social-media/16790/the-death-of-the-status-update-why-55-of-americans-stoppe...
2•thunderbong•14m ago•1 comments

Reflections on building a closed‑source consumer audio tool

https://github.com/AdBusterOfficial
1•Bo_Amigo_910•15m ago•0 comments

I built an AI strength coach because I wanted my training backed by real studies

https://github.com/clementrx/Performance-agent/tree/main
2•clementrx•17m ago•1 comments

CEO Pleads with AI Industry to Stop Charging So Much to Replace Human Labor

https://futurism.com/future-society/palo-alto-ceo-ai-arora-automation-labor
3•latexr•19m ago•0 comments

Show HN: Fenzo – Build an interactive course on any topic

https://fenzo.ai/
3•fahimulhaq•20m ago•0 comments

Show HN: Display Big Text on Screen

https://bigtext.net/
2•liquid99•22m ago•0 comments

Show HN: Spendict – a performance marketer's verdict for AI agents, over MCP

https://www.spendict.com/
2•ds246•26m ago•0 comments

Cloud Rebuild (Preview)

https://learn.microsoft.com/en-us/windows/configuration/cloud-rebuild/
1•taubek•31m ago•0 comments

Turbocharged solo dev – zooming out a couple of clicks

https://adjohu.com/blog/turbocharged-solo-dev/
1•adjohu•32m ago•0 comments

Children (Composition)

https://en.wikipedia.org/wiki/Children_(composition)
1•doener•34m ago•0 comments

Show HN: Lip Sync AI – Create Your Talking Videos Instantly

https://lipsyncai.co/
2•vtoolpro•36m ago•0 comments

AI-powered video generator SaaS Application for Sale

https://flippa.com/13365327-ai-powered-video-generation-platform-for-creating-viral-short-form-co...
1•kilincarslan•37m ago•1 comments

Movement Is Not Progress

https://frederickvanbrabant.com/blog/2026-07-10-movement-is-not-progress/
1•TheEdonian•37m ago•0 comments

Onemind.md – give your repo a memory without any extra tooling

https://github.com/lazardanlucian/onemind.md
1•lazardanlucian•40m ago•0 comments

I don't need you. I do

https://www.sunilshenoy.com/2026/07/12/i-dont-need-you-i.html
1•cybersunil•41m ago•0 comments

Yakr – a social-relay messaging protocol with Python and Rust implementations

https://github.com/MY20-PHEV/yakr
1•MY10-PHEV•47m ago•0 comments

Show HN: Grinta – a local-first coding agent built for long autonomous runs

https://github.com/josephsenior/Grinta-Coding-Agent
1•JosephSenior•49m ago•0 comments

How does a Dev's job look like in a few years?

1•korrak•50m ago•1 comments

Show HN: Runeward: Sandboxing AI agents with policy gates

https://runewardd.github.io/runeward/
1•tha_infra_guy•53m ago•0 comments

Big Tech to face fines for consumer protection failures, says EU official

https://www.ft.com/content/25640be5-a5bd-4548-81f9-bd0e16f87f35
3•giuliomagnifico•54m ago•1 comments

Leaked Documents Reveal Secret Russia-China Military Plan to Disable Starlink

https://united24media.com/world/leaked-documents-reveal-possible-secret-russia-china-military-pla...
3•vrganj•56m ago•0 comments

Show HN: DPDK vs. Af_XDP Latency Benchmarks Tested on Real NICs

https://github.com/ASherjil/ABTRDA3
2•CoreCppEngineer•57m 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.