frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Agentic Awakening

https://theagenticawakening.com/
1•kiyanwang•54s ago•0 comments

AI Just Had Another Math Breakthrough–With Help from a High-School Dropout

https://www.wsj.com/tech/ai/ai-math-riemann-hypothesis-anthropic-openai-22f98a87
1•sonabinu•54s ago•0 comments

Walkable ASCII Cyberpunk City in One HTML File [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
2•SpyCoder77•9m ago•0 comments

Show HN: Tempered – AI Powered PC Optimizer

https://tempered.to/
2•AutomationGoat•12m ago•0 comments

Truth is no stranger to fiction

https://vincemichael.com/2026/06/18/truth-is-no-stranger-to-fiction/
1•jruohonen•16m ago•0 comments

Neural Networks: Backpropagation Concept with Manual Calculation

https://medium.easyread.co/neural-networks-backpropagation-concept-with-manual-calculation-748ac0...
1•bxcodec•16m ago•0 comments

Honest Government Ad – AI Data Centres [video]

https://www.youtube.com/watch?v=kON2ZI2BNj8
2•robrain•16m ago•1 comments

The Problem

https://intelligence.org/the-problem/
1•Bluestein•16m ago•0 comments

SXSW 2008: Download Squad and Google OpenSocial [video]

https://www.youtube.com/watch?v=--pAsR70_5U
1•mooreds•17m ago•0 comments

Show HN: DigitalEscapeTools – Privacy Tools

https://github.com/abdomk1998/awesome-digital-escape-tools
1•xabd•17m ago•0 comments

Show HN: The Map of Mathematics: Every structure a finite set can carry

https://murad-ahmadov.github.io/map-of-math/
1•Ahmadov114•18m ago•0 comments

Execution Is Getting Cheap Faster Than Verification Is

https://bharatsharma.pro/articles/execution-is-cheap-verification-isnt
1•mooreds•18m ago•0 comments

Open source, audited by GLM-5.3

https://huggingface.co/spaces/zai-org/OpenVuln
2•pama•21m ago•0 comments

The Non-Orientability of OAuth (2024)

https://workshop.vennfactory.com/p/the-non-orientability-of-oauth
1•mooreds•24m ago•0 comments

T3X/0 a Minimal Procedural Language

https://t3x.org/t3x/0/index.html
1•AlexeyBrin•24m ago•0 comments

Unsession.dev – open-source session management

https://unsession.dev/
1•cvolzer3•27m ago•0 comments

If Star Wars had a $10 Budget [video]

https://www.youtube.com/watch?v=0qy8Bnb9C1o
1•burnt-resistor•27m ago•0 comments

Dual Battery Automation in Home Assistant (Part 2)

https://du.nkel.dev/blog/2026-07-26_dual_battery_automation/
1•Helmut10001•29m ago•0 comments

Verifying Your FIDO2 Hardware Security Key: What a Browser Can Confirm

https://capytoolkit.com/blog/security-privacy/verifying-your-fido2-hardware-security-key-what-a-b...
1•ChillyCapy•30m ago•0 comments

Shove – a CLI tactics game Claude Fable 5 designed, built, and played

https://github.com/robss2020/claude-fable-5-having-fun
1•Bluestein•31m ago•0 comments

Show HN: Website Font Usage Explorer

https://explorer.withfudge.com
1•sim04ful•39m ago•0 comments

Title: Show HN: Gitoro – European Git Hosting, CI/CD and Collaboration Platform

https://gitoro.com/
2•steffenrudk•40m ago•1 comments

Hard to wake up for Fajr prayer so Ive developped an impossible to snooze alarm

https://play.google.com/apps/testing/com.appforfajr.app;https://groups.google.com/g/betatesters-f...
1•luckylokman•42m ago•1 comments

Title: DeepSeek V4 Is Live on ClawBox, and the Agentic Coding Jump Is Real

https://clawbox.com/blog/2026-08-14-deepseek-v4-is-live-on-clawbox-agentic-coding-jump
2•PeturID•42m ago•0 comments

Europe is stuck between "rock and a hard place" on launch costs & rocket reuse

https://arstechnica.com/space/2026/08/policy-experts-europe-stuck-between-rock-and-a-hard-place-o...
2•bell-cot•43m ago•1 comments

Writing and Reading Practices Revisited

https://www.laviniamarin.eu/writing-and-reading-practices-revisited/
1•plastic-enjoyer•48m ago•0 comments

Show HN: Agent-shell – vendor-neutral chat with AI agents in Emacs

https://xenodium.com/agent-shell-0-73-updates#agent-shell-enters-the-chat
3•xenodium•48m ago•1 comments

Build Airbnb on WordPress – Steem WP Plugin Generator

https://steem.dev/signin?next=%2Fapp%3Fproject%3D4e4419f5-0fbd-4371-9bec-0e4334a46388
1•startuphubai•48m ago•0 comments

STL Studio – a free, self-hosted library manager for 3D print files

https://github.com/RBStephenson/STL-Studio
1•azulrathas•50m ago•0 comments

Show HN: A Control Panel for Electronics Prototypes

https://blog.oxplot.com/electronics-prototype-control-panel/
2•oxplot•54m 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.