frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A forty-year-old problem, briefly available

https://www.parahealth.ai/company/dispatch/thesis
1•dylburns•2m ago•0 comments

Ray-Ban Meta and Oakley Meta AI Glasses Officially Available in Singapore

https://cnalifestyle.channelnewsasia.com/style-beauty/ray-ban-meta-and-oakley-meta-ai-glasses-sin...
1•kelt•3m ago•0 comments

Learning Material for Idiomatic Rust

https://corrode.dev/blog/idiomatic-rust-resources/
1•lwhsiao•3m ago•0 comments

Show HN: gcx – The Official Grafana Cloud CLI

https://github.com/grafana/gcx
1•annanay•3m ago•0 comments

Lufthansa cuts 20k flights to save money, fuel

https://www.upi.com/Top_News/World-News/2026/04/21/lufthansa-flight-cuts/6391776813766/
3•petethomas•7m ago•1 comments

Cursor partners with SpaceX on model training

https://cursor.com/blog/spacex-model-training
2•gzer0•10m ago•1 comments

NASA's Webb Helped Rule Out Asteroid's Chance of 2032 Lunar Impact

https://science.nasa.gov/blogs/webb/2026/03/06/how-nasas-webb-helped-rule-out-asteroids-chance-of...
1•mooreds•15m ago•0 comments

Drunk Post: Things I've Learned as a Senior Engineer

https://luminousmen.substack.com/p/drunk-post-things-ive-learned-as
4•zdw•18m ago•1 comments

Bloom filters: the niche trick behind a 16× faster API – Blog – incident.io

https://incident.io/blog/bloom-filters
5•birdculture•19m ago•0 comments

Enriching MMDB files with your own data using Go (2020)

https://blog.maxmind.com/enriching-mmdb-files-with-your-own-data-using-go/
1•mooreds•24m ago•0 comments

Developing Theory about the Development of Theory [pdf]

https://mintzberg.org/sites/default/files/article/download/developing_theory_about_the_developmen...
3•rzk•28m ago•0 comments

How Much Do GPU Clusters Cost?

https://newsletter.semianalysis.com/p/how-much-do-gpu-clusters-really-cost
2•stosssik•29m ago•0 comments

New Lazarus Apt Campaign: "Mach-O Man" macOS Malware Kit Hits Businesses

https://any.run/cybersecurity-blog/lazarus-macos-malware-mach-o-man/
1•lnguyen•31m ago•0 comments

Fuck you, pay me" by mike monteiro

https://www.youtube.com/watch?v=jVkLVRt6c1U
1•fuzztester•32m ago•1 comments

AI bot buying what agents can buy in 2026

https://dialtoneapp.com/2026/april/ai-bot-buying-report
2•fcpguru•33m ago•0 comments

US Criminally Charges Southern Poverty Law Center, Blanche Says

https://www.reuters.com/world/us-criminally-charges-southern-poverty-law-center-blanche-says-2026...
5•petethomas•38m ago•0 comments

Does your boss have AI brain?

https://www.milkkarten.net/p/boss-obsessed-ai-marketing
4•coloneltcb•42m ago•0 comments

Google Ads Keeps Marking My Site Compromised

3•earonesty•42m ago•0 comments

Single-minded pursuit of profit can get firms in trouble. Same thing with AI

https://news.harvard.edu/gazette/story/2026/04/single-minded-pursuit-of-profit-can-get-firms-in-t...
2•lukaspetersson•43m ago•0 comments

The reason your kids aren't getting married isn't what you think it is

https://tommyfalk567.substack.com/p/the-reason-your-kids-arent-getting
1•TommyFalk•45m ago•0 comments

The Next Era of Software Architecture Is Data-First

https://aimdb.dev/blog/data-driven-design
2•lukastyrychtr•56m ago•0 comments

Ask HN: Are there any engineering orgs that use incentives?

2•jppope•57m ago•1 comments

Claude Code is no longer a part of the Pro plan

11•csoham•58m ago•0 comments

SpaceX cuts a deal to maybe buy Cursor for $60B

https://www.theverge.com/science/916427/spacex-cursor-potential-deal-acquisition
2•htrp•58m ago•1 comments

BYD Looking to Open 20 Dealerships in Canada This Year

https://gmauthority.com/blog/2026/04/byd-looking-to-open-20-dealerships-in-canada-this-year/
2•whynotmaybe•1h ago•0 comments

Apple has an opportunity to rediscover humanity

https://www.theregister.com/2026/04/21/apple_ternus_rediscover_humanity/
3•LorenDB•1h ago•1 comments

Show HN: Agent Brain Trust, customisable expert panels for AI agents

https://github.com/bahulneel/agent-brain-trust
2•bahulneel•1h ago•0 comments

Show HN: Linux installer .exe without pendrives (secure-boot compatible)

https://www.1clicklinux.org/
2•arusekk•1h ago•0 comments

Show HN: Verdure Demo (Steam PC)

https://store.steampowered.com/app/4069810/VERDURE/
1•sakamotosan•1h ago•0 comments

Highlights from Git 2.54

https://github.blog/open-source/git/highlights-from-git-2-54/
2•thunderbong•1h ago•0 comments
Open in hackernews

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

3•gooob•12mo 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.