frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We are entering the graph engineering phase

https://www.drjoshcsimmons.com/writing/we-are-entering-the-graph-engineering-phase
1•joshcsimmons•3m ago•0 comments

Tooly – Local JSON, YAML, CSV and Regex Tools

https://www.tooly.one/
1•hengery•4m ago•0 comments

Proof of Fermat Last Theorem from Scratch

https://www.youtube.com/watch?v=9f-hGSh8lF0
1•E-Reverance•4m ago•0 comments

India's Skyroot launches Vikram-1 in first private orbital rocket mission

https://www.reuters.com/science/indias-skyroot-launches-vikram-1-first-private-orbital-rocket-mis...
2•SilverElfin•10m ago•0 comments

The cost of the night shift and how to sleep it off

https://www.bbc.co.uk/news/articles/cp9errxl97go
1•mmarian•12m ago•0 comments

The Case for Systems Engineering in the Agentic Era

https://goyalankit.com/blog/the-case-for-systems-engineering-in-the-agentic-era
1•goyalankit•14m ago•0 comments

Fastest Lego Autoclicker (2025) [video]

https://www.youtube.com/watch?v=JmQeSDkcNjc
1•mot2ba•18m ago•0 comments

Show HN: Voice chat in a nostalgic private lobby

https://thepregamelobby.com/
1•gpsmsn•26m ago•0 comments

Resume Variants: Why You Need a Base Resume and Tailored Versions

https://www.roleframe.ai/blog/tailor-resume-to-job-description
1•larbisahli•30m ago•0 comments

Paintable electrodes could power creative and colorful wearable sensors

https://www.psu.edu/news/research/story/paintable-electrodes-could-power-creative-and-colorful-we...
1•geox•34m ago•0 comments

Hubble Detects an Isolated Stellar-Mass Black Hole Wandering the Milky Way

https://science.nasa.gov/missions/hubble/hubble-determines-mass-of-isolated-black-hole-roaming-ou...
1•TomerHaimovich•37m ago•0 comments

Men in Shorts Are Shaking Up Japan's Buttoned-Down Offices

https://www.nytimes.com/2026/07/19/world/asia/japan-cool-biz-tokyo-shorts-heat.html
3•sudo_cowsay•37m ago•0 comments

Study: AI Is Not Displacing Young Job Seekers (In Norway) – Yet

https://norwegianscitechnews.com/2026/07/ai-is-not-displacing-young-job-seekers-yet/
1•giuliomagnifico•39m ago•0 comments

Fayetteville officers fired for misusing license plate system

https://www.washingtonpost.com/business/2025/03/14/programming-jobs-lost-artificial-intelligence/
2•pir8life4me•47m ago•1 comments

Looking for a Fall 2026 / Winter-Spring 2027 Internship

1•cnnadozi•49m ago•0 comments

Could Modern Code Review Have Prevented Wp2shell?

https://www.hacktron.ai/blog/wp2shell
1•zeyu1337•50m ago•0 comments

AI for Systems is "AGI-Complete"

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

Security incident disclosure – July 2026

https://huggingface.co/blog/security-incident-july-2026
2•fdb•50m ago•1 comments

A curated list of tools and resources for vibecoders

https://github.com/ai-for-developers/awesome-vibe-coding
2•dariubs•1h ago•0 comments

Show HN: LectureToBook – Turn Videos into a PDF/ePub

https://lecturetobook.com/
1•h02•1h ago•0 comments

The device detecting the deadliest creature

https://www.smh.com.au/national/nsw/the-device-detecting-the-world-s-deadliest-creature-20260715-...
3•femto•1h ago•1 comments

Inside the Secret Math Society Known Simply as Nicolas Bourbaki

https://www.quantamagazine.org/inside-the-secret-math-society-known-as-nicolas-bourbaki-20201109/
3•pykello•1h ago•0 comments

Scrying the AMD GFX1250 LLVM Tea Leaves

https://chipsandcheese.com/p/scrying-the-amd-gfx1250-llvm-tea
3•mfiguiere•1h ago•0 comments

Show HN: Zlvox – 25 Free Developer Tools (AI, JSON, PDF) with Zero Tracking

https://zlvox.com/
3•team_zlvox•1h ago•1 comments

Impro is a handbook for running a cult

https://www.seangoedecke.com/impro/
5•zuzuleinen•1h ago•1 comments

TCG Price and Portfolio Tracker

https://www.collectiblez.app/
1•GogetaUI•1h ago•0 comments

Data centers have united Americans of both parties in a shared hatred

https://www.washingtonpost.com/technology/2026/07/18/how-data-centers-became-symbol-americans-rage/
3•1vuio0pswjnm7•1h ago•2 comments

Pygmalion as a Software Developer

https://kyle.au/blog/pygmalion-as-a-software-developer
2•kylephillipsau•1h ago•0 comments

AXI – Agent EXperience Interface

https://axi.md/
2•jeffscottward•1h ago•1 comments

Private jets flock to Montana – but locals can't afford the trailer park

https://www.bbc.com/news/articles/ckg92d8d40yo
1•tartoran•1h 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.