frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Token spend is not token capital

https://twitter.com/TJWXF3/status/2067080353081356313
1•tomjwxf•1m ago•0 comments

Not everything needs to be groundbreaking

https://pipsthoughts.substack.com/p/not-everything-needs-to-be-groundbreaking
1•PenPressman•1m ago•0 comments

Malaysia's AI agent-powered messaging app Respond.io raises $62.5M

https://techcrunch.com/2026/06/15/malaysias-respond-io-raises-62-5m-eyes-acquisitions-in-north-am...
2•doppp•6m ago•0 comments

I Built a POS App for Businesses That Still Use Notebooks and Excel

https://www.indiehackers.com/post/i-built-a-pos-app-for-businesses-that-still-use-notebooks-and-e...
2•cas8398•7m ago•0 comments

US approval of Paramount/Warner Bros. deal surprised DOJ lawyers, report says

https://arstechnica.com/tech-policy/2026/06/us-approval-of-paramount-warner-bros-deal-surprised-d...
4•derbOac•13m ago•0 comments

Agentic Grocery Shopping on Uber Eats

https://www.uber.com/us/en/blog/uber-cart-assistant/
2•samrohn•14m ago•0 comments

Indian telecom operator Reliance sabotages Telegram access outside India

https://twitter.com/durov/status/2066945969854234977
3•aayushdutt•21m ago•0 comments

Show HN: SciFigureAI – AI figure maker for research papers

https://scifigureai.com
2•jiangyifeng•23m ago•0 comments

ZFSBootMenu

https://zfsbootmenu.org
3•porjo•25m ago•0 comments

Headroom

https://github.com/chopratejas/headroom
2•marc__1•26m ago•0 comments

Helios: Turn Code into Video

https://www.heliosrender.com
2•wahnfrieden•29m ago•0 comments

Upgrading My Git Embedding Program for Zig 0.16

https://louislefebvre.net/tech/zig-upgrade-16/
2•louislef299•32m ago•0 comments

From AGI to ASI

https://deepmind.google/research/publications/239142/
2•danielmorozoff•36m ago•0 comments

Playbook on how to make an AI Movie (this one got funded)

https://twitter.com/PJaccetturo/status/2066870939644813487
2•titusblair•36m ago•0 comments

MicroGPT and Interactive Walkthrough

https://researcher111.github.io/ML-Security-Public/labs/lab-02/microgpt.html
2•learning2Grow•36m ago•0 comments

Leaked OpenAI financials show $38.5B loss and compute burn

https://runtimewire.com/article/openai-leaked-financials-altman-compute-burn
5•TechApocalypse•36m ago•2 comments

From AGI to ASI

https://arxiv.org/abs/2606.12683
2•danielmorozoff•36m ago•0 comments

Cursor Says 1.5T Parameter Coding Model Is Training on 100k GPUs

https://runtimewire.com/article/cursor-1-5t-model-100000-gpus-compile
4•TechApocalypse•37m ago•0 comments

Hackers Publish Knicks and Madison Square Garden Data Online

https://www.404media.co/hackers-publish-knicks-and-madison-square-garden-data-online/
4•Cider9986•46m ago•2 comments

GE-265 / Dartmouth Time-Sharing System Revisited

https://icm.museum/blog/?p=564
5•sdf_pubnix•48m ago•0 comments

The AI Boom's Hunt for Cash Hits a New Corner of the Bond Market

https://www.wsj.com/finance/investing/the-ai-booms-hunt-for-cash-hits-a-new-corner-of-the-bond-ma...
3•ilreb•49m ago•0 comments

Slopmith (popular Rocksmith inspired guitar game) slapped with DMCA takedown

https://old.reddit.com/r/rocksmith/comments/1u6jg96/dmca_takedown_notice_for_slopsmith/
3•webprofusion•51m ago•1 comments

Show HN: Otty – a native and beautiful terminal emulator

https://otty.sh/
3•ilchenearly•52m ago•0 comments

Revised Rules of Engineering Leadership

https://lethain.com/revised-rules-of-engineering-leadership/
2•RyeCombinator•54m ago•0 comments

Show HN: Building a Stateful AI Agent

https://github.com/surya17495/centri
2•suryaankata•1h ago•0 comments

DIY crane bot that tidies up a room

https://hackaday.com/2026/06/15/building-a-ceiling-based-crane-robot-to-keep-a-room-clean/
5•soupspaces•1h ago•1 comments

Seventeen Camels and Where They Can Take You

https://mathenchant.wordpress.com/2026/06/15/seventeen-camels-and-where-they-can-take-you/
2•akkartik•1h ago•0 comments

Flax debugging: making a hash of things

https://www.gilesthomas.com/2026/06/hashing-jax-parameters
2•gpjt•1h ago•0 comments

Multiple mastra NPM packages compromised

https://github.com/mastra-ai/mastra/issues/18045
4•varunsharma07•1h ago•1 comments

Should nicotine be regulated like a narcotic?

https://www.nature.com/articles/d41586-026-01903-z
4•ilreb•1h ago•1 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.