frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Decrypting a DPRK macOS infostealer: 571 values via CPU emulation

https://github.com/Darksp33d/hyperhives-macos-infostealer-analysis
1•darksp33d•10m ago•0 comments

ClearSpec – Turn vague goals into specs that AI agents can execute

https://www.clearspec.dev/
1•mikopiko•14m ago•0 comments

Global human population has surpassed Earth's sustainable carrying capacity

https://iopscience.iop.org/article/10.1088/1748-9326/ae51aa
1•littlexsparkee•15m ago•0 comments

Are We Augmented by AI Yet?

https://unskilled.blog/posts/are-we-augmented-by-ai-yet/
1•meysamazad•15m ago•0 comments

Asia's EVolution: How the Toyota Prius Comes to Die in Mongolia [video]

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

Show HN: A Framework for Evaluating Coding Agents on Sequential SWE

https://arxiv.org/abs/2604.03035
1•tdchaitanya•21m ago•0 comments

Mark Zuckerberg's turbulent bet on AI

https://www.ft.com/content/cd3c6867-2f73-417d-a299-fb91a57bfe08
2•bram98•23m ago•0 comments

OpenAI, Anthropic, Google unite to combat model copying in China

https://www.businesstimes.com.sg/international/global/openai-anthropic-google-unite-combat-model-...
2•doppp•25m ago•0 comments

Google AI Edge Eloquent (iOS)

https://apps.apple.com/us/app/google-ai-edge-eloquent/id6756505519
2•ukuina•28m ago•1 comments

Happiness is a maintenance problem, not a discovery problem

https://gist.github.com/emeitch/390360452a9f5e37fa39ff91c836edbd
1•emeitch•29m ago•0 comments

Sync Chrome Tabs Across Multiple Computers

https://www.rabbitpair.com/en/blog/chrome-tab-sync-across-devices-guide
1•xiguali•37m ago•0 comments

Gestify – Gesture Controls for Every Web Video

https://www.rabbitpair.com/en/blog/gestify-mobile-fullscreen-video-guide
1•xiguali•40m ago•0 comments

Old wisdom from StackOverflow (2021): Code quality is a competitive advantage

https://stackoverflow.blog/2021/10/18/code-quality-a-concern-for-businesses-bottom-lines-and-empa...
2•perpetua•50m ago•3 comments

Show HN: Wan 2.7 – AI Video Generator for Cinematic Content

https://wan27.co
1•danielmateo773•52m ago•0 comments

Brazil, India and Russia hold large reserves of rare earth but don't mine them

https://ourworldindata.org/data-insights/brazil-india-vietnam-and-russia-hold-large-reserves-of-r...
1•alphabetatango•52m ago•0 comments

Voxtype – Push-to-Talk Voice-to-Text for Linux and macOS

https://voxtype.io/
1•ticoombs•55m ago•1 comments

Show HN: Swarmed.DEV – The Autonomous AI Development Swarm

https://www.swarmed.dev
1•freezabb•57m ago•0 comments

Claude Is Not Your Architect. Stop Letting It Pretend

https://www.hollandtech.net/claude-is-not-your-architect/
1•gpi•59m ago•0 comments

Attention Residuals

https://arxiv.org/abs/2603.15031
1•djhemath•59m ago•1 comments

Agentic AI and Occupational Displacement: Multi-Regional Task Exposure Analysis

https://arxiv.org/abs/2604.00186
1•raviishgupta•1h ago•0 comments

Show HN: Coding Planets – turn GitHub contributions into sound and space

https://joaonetto.me/projects/music/
1•jnettome•1h ago•0 comments

MLX-Serve a Native LLM Runtime for Apple Silicon

https://ddalcu.github.io/mlx-serve/
2•ddalcu•1h ago•1 comments

Why We're Removing Our Programmatic Ads

https://prospect.org/2026/04/06/why-were-removing-our-programmatic-ads/
3•colinprince•1h ago•0 comments

Show HN: Portable offline LLM knowledge system that runs in browser

1•muthuishere•1h ago•0 comments

China Orders Bitchat Pulled from Apple App Store

https://decrypt.co/363367/china-orders-jack-dorseys-bitchat-pulled-from-apple-app-store
2•giuliomagnifico•1h ago•0 comments

DevTerm – Portable Terminal

https://www.clockworkpi.com/home-devterm
2•kristianpaul•1h ago•1 comments

Clockworkpi

https://www.clockworkpi.com
3•kristianpaul•1h ago•1 comments

Why the majority of vibe coded projects fail

https://www.reddit.com/r/ClaudeAI/s/Vkkzi4lUW0
19•juniormpakou•1h ago•10 comments

One Softie's View of the Evolution of Windows APIs

https://twitter.com/stevesi/status/2036921223150440542
4•jnord•1h ago•0 comments

Free Early Learning Content for Kids – Feedback Welcome

https://www.youtube.com/channel/UCuC2pezENaY3BTsDnACzY-w
1•fatbrother•1h ago•0 comments
Open in hackernews

Ask HN: What are you currently trying to figure out?

3•gooob•11mo 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•11mo ago
Trying to figure out what to do next and what to do with my life.
gooob•11mo ago
how's that going? what are your current options?
sherdil2022•11mo ago
Not going good.
scottmcdot•11mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.