frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Neural Siege – A Multi-Agent RL Combat Simulation

https://github.com/ayushdnb/Neural-Siege
1•luthor190397•57s ago•0 comments

4. How to Keep Using Nano Banana Pro After Gemini Replaces It with Nano Banana 2

1•zaaaaooo•1m ago•0 comments

Show HN: C-Suite Skills – a full exec team as skills

https://github.com/pollow/c-suite-skills
1•pollow•7m ago•0 comments

Veo 3 AI

https://veo-3-ai.org/
1•Evan233•11m ago•1 comments

Show HN: GitHub Repo Agent – an agent that explores and reasons on GitHub repos

https://github.com/gauravvij/GithubRepoAgent
1•gauravvij137•14m ago•0 comments

I Put a Full JVM Inside a Browser Tab

https://bmarti44.substack.com/p/i-put-a-full-jvm-inside-a-browser
2•todsacerdoti•16m ago•0 comments

Full speech pipeline in native Swift/MLX – ASR, TTS, speech-to-speech, on-device

https://github.com/ivan-digital/qwen3-asr-swift
1•ipotapov•16m ago•1 comments

People in northeast BC say rest of province should embrace year-round time zone

https://www.cbc.ca/news/canada/british-columbia/time-change-british-columbia-9.7112139
1•divbzero•17m ago•0 comments

California to require age verification for all OS including Linux

https://www.tomshardware.com/software/operating-systems/california-introduces-age-verification-law
3•hambes•18m ago•0 comments

Rare Not Random – Using Token Efficiency for Secrets Scanning

https://lookingatcomputer.substack.com/p/rare-not-random
1•boyter•19m ago•0 comments

Strict Monospace Font for LLM-CLI user using Chinese Japanese Korean, CodexMono

https://www.npmjs.com/package/@monolex/codexmono
1•monokist•23m ago•1 comments

Working on Things That Suck

https://mayberay.bearblog.dev/working-on-things-that-suck/
1•mugamuga•25m ago•0 comments

Ask HN: How Do Emergency Alerts on Phone Work?

2•rishikeshs•30m ago•2 comments

US President struggles to explain why he launched another Middle Eastern war

https://www.ft.com/content/fd31c6ad-39f0-4fae-851c-fadf44f006eb
10•Jimmc414•36m ago•3 comments

Apple Does Value (Week)

https://om.co/2026/03/02/apple-does-value-week/
1•tosh•37m ago•1 comments

The Pointless War Between The Pentagon and Anthropic

https://www.wsj.com/opinion/the-pointless-war-between-the-pentagon-and-anthropic-9284fd37
4•jrosenblatt•44m ago•1 comments

Show HN: wo; a better CD for repo management

https://github.com/anishalle/wo
1•itsagamer124•47m ago•0 comments

Show HN: AI gaming copilot that uses a phone camera instead of screen capture

https://github.com/ninja-otaku/Project_Aegis
1•Genome123•48m ago•0 comments

OpenAI Amends A.I. Deal with The Pentagon

https://www.nytimes.com/2026/03/02/technology/openai-pentagon-deal-amended-surveillance.html
4•fatboy•49m ago•2 comments

Show HN: Archilvx-Own your Twitter data because cloud tools will fail you

https://www.archivlyx.com/twitter-archive
1•ErinSunny•50m ago•0 comments

Israel hacked Iran traffic cams for years to pinpoint Khaemnei prior to strike

https://www.google.com/search?q=https://www.ft.com/content/1317d740-410c-46a2-97b7-6573e0477121
5•c420•52m ago•1 comments

What 10 Years of Building Social Apps Taught Me

https://twitter.com/nikitabier/status/1481118406749220868
2•metmirr•53m ago•0 comments

OSINT Expert Recreates Timeline of Operation Epic Fury in Interactive 3D Model

https://www.jfeed.com/news-world/operation-epic-fury-3d-replay
2•rapnie•57m ago•1 comments

Show HN: Trade Stocks and Crypto On-Chain with Full Transparency

https://www.aulico.com
2•rendernos•58m ago•0 comments

Buckle Up for Bumpier Skies

https://www.newyorker.com/magazine/2026/03/09/buckle-up-for-bumpier-skies
12•littlexsparkee•1h ago•1 comments

Claude's Constitution and Asimov's Laws

https://yadin.com/notes/asimov/
3•dryadin•1h ago•0 comments

Data-structure-typed – TreeMap, Heap, Graph and more for TypeScript

https://github.com/zrwusa/data-structure-typed
1•zrwusa•1h ago•0 comments

Stop macOS 26 nagging with one tiny policy tweak

https://www.theregister.com/2026/03/02/stop_tahoe_update/
2•fghorow•1h ago•0 comments

Is Mandarin superior for LLM data?

https://medium.com/@tjanmichela/the-language-of-intelligence-could-mandarin-be-the-secret-to-smar...
5•treebeard901•1h ago•3 comments

Show HN: DiffMem in production, Git-based AI memory

https://withanna.io
2•alexmrv•1h ago•0 comments
Open in hackernews

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

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