frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Anthropic: Alibaba-Linked Operators Used 25k Accounts to Mine Claude for Qwen

https://runtimewire.com/article/anthropic-alibaba-qwen-claude-distillation-claims
2•ryanmerket•1m ago•0 comments

Internet traffic in Venezuela dropped 45% after a magnitude 7.5 earthquake

https://twitter.com/emot/status/2069932384770777090
1•emot•3m ago•0 comments

The engineering bottleneck has moved

https://productnow.ai/blogs/the-engineering-bottleneck-has-moved
1•kadhirvelm•4m ago•0 comments

Powerful 7.5 magnitude earthquake hits Venezuela

https://www.cnn.com/2026/06/24/americas/venezuela-earthquake-latam-intl
1•lawrencejgd•5m ago•0 comments

How Europe Became the World Champion of Heat Deaths

https://quillette.com/2026/06/24/how-europe-became-the-world-champion-of-heat-deaths/
1•delichon•6m ago•0 comments

Show HN: Built an Obsidian plugin that rephrases your writing without takin over

https://rephrasethis.co
2•gpickett00•14m ago•0 comments

Blogging Can Just Be Stating the Obvious

https://blog.jim-nielsen.com/2026/blogging-stating-the-obvious/
1•Curiositry•18m ago•0 comments

Drug to prevent organ rejection after kidney transplant tops standard treatment

https://www.reuters.com/business/healthcare-pharmaceuticals/drug-prevent-organ-rejection-after-ki...
1•iancmceachern•18m ago•0 comments

A Diner's Guide to Mars

https://mceglowski.substack.com/p/a-diners-guide-to-mars
1•anitil•19m ago•1 comments

Show HN: Valence – Real-time emotion detection from voice, as an API

https://docs.getvalenceai.com/welcome
1•chloevalence•20m ago•0 comments

Building Agent Telemetry for LLMs

https://lexifina.com/blog/building-agent-telemetry-for-llms
1•alansaber•22m ago•0 comments

Software engineers are facing an 'identity crisis bordering on depression'

https://www.businessinsider.com/software-engineers-face-an-ai-identity-crisis-vc-partner-says-2026-6
1•clumsysmurf•22m ago•0 comments

World Action Models: A Survey

https://arxiv.org/abs/2606.20781
1•simonpure•23m ago•0 comments

A New Text Only Social Media Network

https://www.skrrl.com/
1•AMILLI_AI_CORP•23m ago•1 comments

EvoForest-WM: Discovered Neuro-Symbolic World Model for Multivariate Time-Series

https://gist.github.com/kayuksel/cbb304038471befead2c1926610e9ff4
1•kayuksel•34m ago•0 comments

Anthropic says Alibaba illicitly extracted Claude AI model capabilities

https://www.reuters.com/world/china/anthropic-says-alibaba-illicitly-extracted-claude-ai-model-ca...
5•madars•38m ago•2 comments

Show HN: Docket Fleet – mobile device cloud

https://fleet.docketqa.com
2•boriskurikhin•39m ago•0 comments

Japan's AI goldrush faces backlash as data centers sprout up in urban areas

https://www.japantimes.co.jp/environment/2026/06/21/data-center-pushback/
1•mikhael•41m ago•0 comments

M5StackChan AI Desktop Robot

https://shop.m5stack.com/products/stackchan-kawaii-co-created-open-source-ai-desktop-robot
1•rglover•42m ago•0 comments

Aurora Loom, luminous 3D strands woven into a living Aurora

https://sand-morph.up.railway.app/aurora-loom
1•echohive42•49m ago•0 comments

Code as Agent Harness

https://arxiv.org/abs/2605.18747
2•matt_d•50m ago•0 comments

Free UX Review for websites, web apps and mobile apps

https://momocentral.com/pages-we-train-our-designers-you-get-a-free-ux-review/
2•su_yuen•50m ago•1 comments

A CVE Dispute

https://daniel.haxx.se/blog/2026/06/24/a-cve-dispute/
5•chmaynard•55m ago•0 comments

Show HN: Mcplexer.com

https://mcplexer.com
2•maxrev17•55m ago•0 comments

Why can't online purchases be as easy as point-of-sale purchases?

1•jkyrlach•58m ago•0 comments

Spatially distributed complex organic matter detected in Mars crater

https://www.science.org/doi/10.1126/sciadv.adx0047
2•Jimmc414•59m ago•0 comments

Al-1.0 – A lightweight attribution logging engine for transformers

https://github.com/RayFromBoston/AI-Source-Engine
1•RayfromBoston•1h ago•1 comments

Show HN: DesktopMCP – Let AI See and Operate your Linux desktop

https://github.com/varbhat/desktopmcp
2•varbhat•1h ago•1 comments

Introduction to the DOM for Vulnerability Researchers

https://www.youtube.com/watch?v=Pwta5nZtVNA
2•wetw0rk•1h ago•0 comments

A magnitude 6.9 earthquake has struck near Iwate Pref Japan

https://www3.nhk.or.jp/nhkworld/en/news/weather-disaster/earthquake/
7•momentmaker•1h ago•3 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.