frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Edge is dropping older extensions(Manifest V2), affecting popular privacy tools

https://www.malwarebytes.com/blog/news/2026/08/edge-is-dropping-older-extensions-affecting-popula...
1•BearBest•1m ago•0 comments

You're Absolutely Right

https://www.lesswrong.com/posts/u8TdDutDyaSxG76hn/you-re-absolutely-right
1•LinchZhang•13m ago•1 comments

Show HN: Rule-lite – Tiny dependency-free TS engine for JSON conditional rules

https://github.com/tejas821/rule-lite
1•tejas821•13m ago•0 comments

From assistance to execution: How enterprises put AI to work

https://openai.com/index/how-enterprises-put-ai-to-work/
2•vcfgdev•15m ago•0 comments

A unified CLI for native OS keychains – x keyring

https://www.x-cmd.com/blog/260811/
1•Zhengqbbb•18m ago•0 comments

OpenLiving - A data center you can live in [video]

https://www.youtube.com/watch?v=BwkBXNOPa_w
1•inatreecrown2•21m ago•0 comments

Pixel Watch 5 adds a feature Apple Watch desperately needs

https://www.cultofmac.com/news/pixel-watch-5-insulin-resistance-trends
2•ValentineC•29m ago•0 comments

Examples for use of AI and especially LLMs in major mathematical developments

https://mathoverflow.net/questions/502120/examples-for-the-use-of-ai-and-especially-llms-in-major...
1•vismit2000•29m ago•0 comments

Show HN: Agent Memory Leaderboard – first public results for AI memory systems

https://agentmemoryleaderboard.ai/leaderboard/academic/textual
2•IreneAI•34m ago•0 comments

SLAC: CPU-to-GPU Side-Channel Attacks via System-Level Cache on Apple Silicon

https://arxiv.org/abs/2608.09075
2•sbulaev•37m ago•0 comments

Clamiga: Common Lisp for the Amiga

https://nnamgreb.de/blog/Clamiga+-+Common+Lisp+for+the+Amiga
2•emptybits•38m ago•0 comments

Dart 3.13

https://dart.dev/blog/announcing-dart-3-13
1•wstrange•40m ago•0 comments

Show HN: I'm tired replying my social media visitors, I let AI agent handle it

https://www.agle.app/
1•tapriliando•41m ago•0 comments

Notation as a Tool of Thought (1980)

https://www.jsoftware.com/papers/tot.htm
1•colinprince•43m ago•0 comments

Tech adds phone tracking to license plate readers, associating devices with cars

https://theconversation.com/new-tech-adds-phone-tracking-to-license-plate-readers-associating-dev...
7•asdefghyk•44m ago•1 comments

Two weeks later and Adsense is still serving up Scareware

https://bsky.app/profile/redbluething.bsky.social/post/3mswnjfufs22v
2•redbluething•44m ago•0 comments

'Near-autonomous' AI agents attack Taiwan's nuclear safety agency

https://www.theregister.com/security/2026/08/12/near-autonomous-ai-agents-attack-taiwans-nuclear-...
4•Bender•54m ago•0 comments

Tailscale says deeply buried 16-year-old SQLite bug caused last year's outages

https://www.theregister.com/databases/2026/08/12/tailscale-says-deeply-buried-16-year-old-sqlite-...
3•Bender•55m ago•0 comments

Terabytes of credentials leaked in supply-chain attack

https://arstechnica.com/security/2026/08/terabytes-of-credentials-leaked-in-massive-supply-chain-...
2•Bender•56m ago•0 comments

When Will AI Take My Job?

https://www.whenwillaitakemyjob.ai/
4•yetanothermonk•57m ago•1 comments

Why your Amazon order confirmation emails have become so unhelpfu

https://www.theverge.com/ai-artificial-intelligence/977733/amazon-order-emails-google-gmail-ai-ag...
5•cebert•57m ago•1 comments

Show HN: ZKE – A macOS-style multi-cluster Kubernetes console over QUIC

https://github.com/togettoyou/zke
1•togettoyou•1h ago•0 comments

The next AI interface may not be a chatbot

https://hajek.no/posts/2026/next-ai-interface-not-chatbot
1•kamphey•1h ago•0 comments

Doable: Self-hosted AI app builder for teams

https://github.com/doable-me/Doable
1•indigodaddy•1h ago•1 comments

Production-ready detection and response queries for osquery

https://github.com/chainguard-dev/osquery-defense-kit
2•ankitg12•1h ago•0 comments

Why must a socialist also be woke?

https://www.ft.com/content/1b0a8ed9-d55a-49ea-971e-39e01e588632
5•alephnerd•1h ago•10 comments

Looks like Claude is down anyone else

3•codehead•1h ago•2 comments

Could Rocky's musical language in Project Hail Mary work

https://www.scientificamerican.com/podcast/episode/could-rockys-musical-language-in-project-hail-...
2•pavel_lishin•1h ago•0 comments

Trump to allow use of cyber tools to target transnational criminal organizations

https://www.reuters.com/world/trump-signed-memo-allow-use-cyber-tools-target-transnational-crimin...
2•oogali•1h ago•1 comments

Show HN: Meowdoku – a no-signup daily cat logic puzzle

https://meowdoku.pro/
1•trywork2026•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.