frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Update: Acabei de abrir O SDK no GitHub → github.com/mathhMadureira/orka

1•matteusmadu•52s ago•0 comments

The Battle with Anthropic Is the Start of a New Kind of Conflict

https://www.nytimes.com/2026/06/16/opinion/anthropic-fable-ai-trump-administration.html
1•furcyd•3m ago•0 comments

I built a fail-closed execution gate for AI agents

https://kronyqldemo.netlify.app/demo/ase-proof
1•Auditome•4m ago•0 comments

Total Iran Economic Damage Estimate

https://www.fdd.org/analysis/2026/04/23/total-iran-economic-damage-estimate/
1•littlexsparkee•6m ago•0 comments

Qode – The first AI agent that can generate 50k line codebases in one prompt

https://github.com/akshaylakkur/Q
1•akshayl284•7m ago•1 comments

Silicon Motion exec: Retail SSD market has almost disappeared

https://www.tomshardware.com/pc-components/ssds/the-retail-ssd-market-has-almost-disappeared-says...
5•Lihh27•11m ago•0 comments

Guardrails for Reuse in AI from ClimateSOS Foundational Charter

1•safiume•12m ago•0 comments

An Interview with Eugene Jarvis of Robotron, Defender and Stargate Fame

https://www.gamedeveloper.com/production/eugeneology-an-interview-with-eugene-jarvis
1•evo_9•14m ago•0 comments

VibeThinker-3B achieves 80.2 on LCBv6

https://twitter.com/WeiboLLM/status/2066870851841274249
3•moondistance•16m ago•1 comments

Mathup

https://mathup.xyz/
1•runarberg•16m ago•0 comments

GLM-5.2: Frontier Intelligence, Open Weights

https://twitter.com/Zai_org/status/2066938937344495629
3•zixuanlimit•17m ago•0 comments

Hacking group claims major hack of Novo Nordisk and attempted $25M extortion

https://www.reuters.com/legal/government/hacking-group-claims-major-hack-novo-nordisk-attempted-2...
2•nnmg•17m ago•0 comments

Anthropic "pauses" token-based billing for its Claude Agent SDK

https://arstechnica.com/ai/2026/06/anthropic-pauses-token-based-billing-for-its-claude-agent-sdk/
3•cdrnsf•18m ago•0 comments

The Context Moat

https://richard.dulude.vc/fieldnotes/the-context-moats
1•AnhTho_FR•19m ago•0 comments

5 Stages of a Domain Expiration

https://medium.com/@thesuperrepemail/the-5-stages-of-a-domain-expiration-e1653544c605
1•mssblogs•19m ago•0 comments

What is the most intense way to learn something?: On giving talks

https://chillphysicsenjoyer.substack.com/p/what-is-the-most-intense-way-to-learn
1•crescit_eundo•21m ago•0 comments

Hiring Founding Engineer Roles

https://www.flynavi.com/careers
1•flyingforreal•21m ago•1 comments

When Content Costs Nothing

https://steelmill.substack.com/p/when-content-costs-nothing
1•AzariaK•22m ago•0 comments

Linux 7.1 is here to end the Intel 486 era – and do some serious legacy clean up

https://www.zdnet.com/article/say-goodbye-to-486-processors-linux-7-1-lands/
4•CrankyBear•22m ago•0 comments

Trump administration won't allow G7 member countries to regain access to Fable

https://twitter.com/AndrewCurran_/status/2066925774498910592
2•Filligree•23m ago•0 comments

Nixpkgs Cooldowns

https://determinate.systems/blog/nixpkgs-cooldown/
2•nicksergeant•25m ago•0 comments

From abandoned gaming PC to 14 minute K8s cluster provisioning

https://www.droppedasbaby.com/posts/hl1/
1•offbyone42•26m ago•0 comments

Fable 5 back? 44 delivery channels carrier pigeon included- RFC 2549,3–5 day SLA

https://isfable5available.com/
1•bArmageddon•27m ago•1 comments

Asked Fable to Make the Backrooms

https://backrooms.mom/
2•bxclltkfz•29m ago•0 comments

Is It Possible to Block Childrens' Access to Social Media? [video]

https://www.youtube.com/watch?v=2jJeSgO_MGo
3•Erikun•29m ago•0 comments

GitHub Models is no longer available to new customers

https://github.blog/changelog/2026-06-16-github-models-is-no-longer-available-to-new-customers/
2•herrkanin•30m ago•0 comments

Mark Zuckerberg Orders Employees Have Fun After Brutal Layoffs Culled Colleagues

https://futurism.com/artificial-intelligence/mark-zuckerberg-employees-fun-hackathon-layoffs
4•randycupertino•32m ago•0 comments

Use AI without compromising data security or privacy

https://www.privatemode.ai/
1•pros•32m ago•0 comments

Birth rates may not be falling because of economics or morality

https://morbidcuriosity.substack.com/p/the-demographic-end-of-history
2•pnwpnw•32m ago•0 comments

Can gzip be a language model?

https://twitter.com/nathanrs/status/2066924065521357093
1•talhof8•33m 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.