frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Googleworkspace/CLI isn't optimized – Test your skills

https://tessl.io/eval-runs/019cc02f-bb26-76e0-a7c9-598a7337edb7
1•sjmaplesec•25s ago•1 comments

Humanoid robot: The evolution of Kawasaki’s challenge

https://kawasakirobotics.com/in/blog/202511_kaleido/
1•hhs•32s ago•0 comments

Grith

https://grith.ai/
1•handfuloflight•2m ago•0 comments

Leave the Kurds alone. We are not guns for hire

https://thenewregion.com/posts/4762
2•inaros•3m ago•0 comments

When to Use BFF and Should It Replace API Gateway?

https://reactdevelopment.substack.com/p/when-to-use-bff-and-should-it-replace
1•javatuts•4m ago•0 comments

Show HN: Real-time collaborative editing plugin for Blender

https://github.com/arryllopez/meerkat
1•arryleo10•5m ago•0 comments

Essential use cases for web scraping data extraction

https://spidra.io/blog/7-essential-use-cases-for-web-scraping
1•joelolawanle•7m ago•1 comments

Show HN: Crazly – structured AI workflows instead of random prompts

https://crazly.pro/
1•starup-guy•7m ago•0 comments

The next generations of Bubble Tea, Lip Gloss, and Bubbles are available now

https://charm.land/blog/v2/
1•atkrad•7m ago•0 comments

Trampolining Nix with GenericClosure

https://blog.kleisli.io/post/trampolining-nix-with-generic-closure
1•ret2pop•8m ago•1 comments

Show HN: I mapped 954K addresses because AI hallucinated my trash day

https://trashalert.io
1•hudtaylor•11m ago•1 comments

VoiceVista – Resurrection of Microsoft Soundscape for the Blind and VI

https://www.applevis.com/apps/ios/navigation/voicevista
1•Fr0styMatt88•14m ago•0 comments

Show HN: A new package manager for Ada

https://github.com/tomekw/tada
1•tomekw•14m ago•1 comments

JavaScript Note: ToggleEvent.source and Dialog.closedBy

https://jsdev.space/toggleevent-source-dialog-closedby/
1•javatuts•14m ago•0 comments

Stanford EE 292P: How China will 'quarantine' Taiwan

https://hnvr.medium.com/week-9-geopolitics-and-national-security-ee-292p-atoms-bits-and-the-natio...
1•malchow•14m ago•0 comments

AI Agents Have Senior Engineer Capabilities and Day-One Intern Context

https://equatorops.com/resources/blog/ai-agents-need-consequence-awareness
1•bobjordan•14m ago•1 comments

Migrating a 300GB PostgreSQL database from Heroku to AWS with minimal downtime

https://argos-ci.com/blog/heroku-to-aws-migration
2•neoziro•15m ago•0 comments

Eclipse GlassFish: This Isn't Your Father's GlassFish

https://omnifish.ee/eclipse-glassfish-this-isnt-your-fathers-glassfish/
2•henk53•15m ago•0 comments

Show HN: LM Canvas – current chat interfaces suck, so I built a canvas for LLMs

https://twitter.com/maxleedev/status/2029695170040529306
1•max-lee-dev•16m ago•0 comments

The Sandboxed Open-Source Agent that is 70% cheaper than E2B

https://coasty.ai:443/
1•nkov47as•18m ago•1 comments

MrBeast fired a video editor after Kalshi accused employee of insider trading

https://apnews.com/article/mrbeast-jimmy-donaldson-kalshi-7a8bb7e2aecee7428bcc2dd1eb08ac67
1•petethomas•18m ago•0 comments

Stop Using Grey Text

https://catskull.net/stop-using-grey-text.html
2•catskull•18m ago•0 comments

Show HN: The CTO Game – Scale your infra in real-time, under pressure

https://thectogame.com/
1•frenchmajesty•21m ago•0 comments

Labubu sues 3D printer maker Bambu Lab for items made by its users

https://www.tomshardware.com/3d-printing/labubu-sues-3d-printer-maker-bambu-lab-for-items-made-by...
2•josephcsible•22m ago•0 comments

Amazon Appears to Be Down

https://arstechnica.com/gadgets/2026/03/amazon-appears-to-be-down-with-over-20000-reported-problems/
2•samizdis•22m ago•0 comments

Feeling the Effects of 260k Federal Jobs Lost

https://www.nytimes.com/2026/03/05/climate/climate-forward-science-federal-cuts.html
3•geox•25m ago•0 comments

Show HN: AI Resume Chatbot – recruiters can chat with your resume

https://airesume.chat
1•hanishabsigh•26m ago•0 comments

Surviving the Streaming Dungeon with Kafka Queues

https://rion.io/2026/02/02/surviving-the-streaming-dungeon-with-kafka-queues/
1•rionmonster•31m ago•0 comments

Jemalloc

https://github.com/jemalloc/jemalloc
1•flykespice•31m ago•0 comments

AdonisJS 7.0.0 Has Been Released

https://adonisjs.com/
2•krthr•31m 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.