frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI under investigation by group of state attorneys general

https://www.reuters.com/business/openai-under-investigation-by-coalition-state-attorneys-general-...
1•Soumya_Max•1m ago•0 comments

Google sues alleged operators of an AI-powered phishing kit

https://www.reuters.com/legal/government/google-targets-ai-powered-phishing-new-york-lawsuit-2026...
1•Soumya_Max•1m ago•0 comments

Building Software vs. Building a House

1•filup•5m ago•0 comments

Domain-Specific AI for Pharma, Biotech and Medical Professionals

https://www.noah.bio/
1•ilreb•5m ago•0 comments

UK may ban social media for children under 16

https://techcrunch.com/2026/06/14/uk-may-ban-social-media-for-children-under-16/
1•SilverElfin•5m ago•0 comments

Long-Form Video Understanding: Bottlenecks and Design Choices – Part 1

https://yinghonglan.substack.com/p/long-form-video-understanding-bottlenecks
1•rented_mule•6m ago•0 comments

Show HN: Descript Meets Screen Studio with Upload to YouTube / Free

https://www.screen.cam/
1•johnwheeler•7m ago•0 comments

Oil prices fall on US-Iran agreement

https://www.cnn.com/2026/06/14/business/oil-prices-iran-peace-agreement
2•captn3m0•11m ago•1 comments

DBOS: A Database-Oriented Operating System

https://dbos-project.github.io/blog/intro-blog.html
2•teleforce•18m ago•0 comments

Anthropic's new Agent SDK pricing is a win for Codex

https://clor.com/blog/anthropics-new-agent-sdk-pricing
2•jacobgold•20m ago•0 comments

Show HN: G# –> a new dotnet language like Go/Swift/Kotlin with C# interop

https://davidobando.github.io/gsharp/
1•DavidObando•20m ago•0 comments

WWDC26: Rediscover the HTML select element [video]

https://www.youtube.com/watch?v=ACsHgWwP9Io
1•tambourine_man•21m ago•0 comments

You Can Game AI Peer Review with Presentation-Only Revisions

https://arxiv.org/abs/2606.13044
1•ilreb•22m ago•0 comments

Learning to Measure Time in Love and Loss

https://www.nytimes.com/2013/12/29/fashion/learning-to-measure-time-in-love-and-loss.html
2•ChaseRensberger•25m ago•1 comments

Choose a Claude Plan

https://support.claude.com/en/articles/11049762-choose-a-claude-plan
1•teleforce•27m ago•0 comments

The MDN MCP Server

https://developer.mozilla.org/en-US/blog/introducing-mdn-mcp-server/
1•soheilpro•28m ago•0 comments

UFC to pay White House fighters in crypto issued by Trump company

https://www.theguardian.com/us-news/2026/jun/14/white-house-ufc-fighters-crypto
4•krambs•30m ago•0 comments

Teaching Machine Learning to Software Engineers

https://arxiv.org/abs/2606.14618
1•ilreb•33m ago•0 comments

Using OSINT to find the real One Piece ocean drop location [video]

https://www.youtube.com/watch?v=eY-W9gmwxhg
1•phyzix5761•35m ago•0 comments

Nvidia Is the Federal Reserve of AI

https://ramansharma.substack.com/p/nvidia-is-the-federal-reserve-of
2•intrepidsoldier•43m ago•0 comments

Show HN: Dream Server – Turn your PC, Mac, or Linux box into a private AI server

https://github.com/Light-Heart-Labs/DreamServer
2•dreamserver•43m ago•0 comments

Horizons JPL Solar System Data Demo and NASA DSN Updates: Datastar, Common Lisp

https://horizons.lambda-combine.net/
1•adityaathalye•47m ago•0 comments

Inside the 24 hours that led to pulling Fable 5

https://www.businessinsider.com/why-white-house-ordered-export-controls-anthropic-mythos-fable-20...
5•twostorytower•55m ago•1 comments

Ask HN: What did you think of Apple's announcements around their 27 OS releases?

1•Austin_Conlon•1h ago•0 comments

Enterprise AI Agents Are Leaving the Server

https://focused.io/lab/enterprise-ai-agents-are-leaving-the-server
1•mooreds•1h ago•0 comments

British forces intercept Russian shadow fleet tanker in the Channel

https://www.reuters.com/world/europe/uks-starmer-says-armed-forces-intercepted-russian-shadow-fle...
2•MilnerRoute•1h ago•0 comments

I built a defense procurement marketplace – free for vendors

https://birka.ai
1•jaywashere•1h ago•0 comments

Agentic Credit Card MCP

https://robinhood.com/us/en/support/articles/agentic-credit-card/
1•barbacoa•1h ago•0 comments

Pyhn 0.4.0: Hacker News in your terminal

https://github.com/toxinu/pyhn
3•toxinu•1h ago•0 comments

Surge in scams as fraudsters use AI to target people

https://www.bbc.com/news/articles/cwykp9ygxlvo
3•1659447091•1h ago•0 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.