frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Excel Adds Nested Arrays

https://techcommunity.microsoft.com/blog/microsoft365insiderblog/put-multiple-values-in-one-cell-...
1•azhenley•41s ago•0 comments

Near-Total Liquid Heat Capture Keeps AI Racks Cool

https://spectrum.ieee.org/fanless-liquid-cooled-ai-servers-coolit
1•rbanffy•1m ago•0 comments

Show HN: Critic – Review code with the agent that wrote it

https://www.critic.run/
1•snyy•1m ago•0 comments

Patents on laser designation and machine-aided targeting

https://signal-docket.pages.dev/
1•measurablefunc•3m ago•0 comments

Funny VideosHow to Start a Faceless YouTube Channel with AI: A Complete Guide

https://coursiv.io/blog/how-to-start-a-faceless-youtube-channel-with-ai
1•Asifulla•3m ago•0 comments

Tidewater Island Fishing Game

https://dgreenheck.github.io/tidewater/
1•memalign•3m ago•0 comments

The Rise of Audio AR

https://www.dbreunig.com/2024/04/10/the_rise_of_audio_ar.html
1•dbreunig•5m ago•0 comments

One URL, Three Different Tricks

https://isc.sans.edu/diary/33366
1•speckx•6m ago•0 comments

Startups I am curious, what ERP system do you guys use?

https://agaro.ai/
1•yusufghyasi•6m ago•0 comments

The Qodo Agentic Toolbox: A CLI-powered Quality counterpart for coding agents

https://docs.qodo.ai/agentic-toolbox
1•aanthonymax•6m ago•0 comments

The grey box of post-quantum cryptography standards

https://ravital.github.io/blog/2026/09/23/pqc
1•nomnoms•8m ago•0 comments

Nigel Richards – The best Scrabble player [video]

https://www.youtube.com/watch?v=zfH2Jwuf3sM
1•chirau•8m ago•0 comments

Middle powers are rethinking espionage

https://www.economist.com/international/2026/09/22/how-middle-powers-are-rethinking-espionage
1•harry_nutsachs•10m ago•0 comments

A Million Agents Is a Distributed System Problem

https://www.instacloud.com/blogs/a-million-agents-is-a-distributed-systems-problem
1•tonychang430•10m ago•0 comments

The Pitești Experiment

https://undevaincomunism.com/the-pitesti-experiment-darkest-chapter-of-reeducation-torture-and-be...
1•jruohonen•11m ago•0 comments

Jensen Huang vs. the A.I. Doomers [the Ezra Klein Show]

https://www.nytimes.com/2026/09/23/opinion/ezra-klein-podcast-jensen-huang.html
1•paulpauper•12m ago•0 comments

From the Voice of Dickie Jones

https://blog.nathanlangley.dev/posts/dickie-jones.html
1•ninjahawk1•13m ago•1 comments

Lifelogging with Large Language Models

https://jaan.io/lifelogging-with-large-language-models
1•paulpauper•13m ago•0 comments

Mysteries of AI Generalization

https://www.astralcodexten.com/p/mysteries-of-ai-generalization
1•paulpauper•13m ago•0 comments

The Power of AI: Mass Collaboration

https://www.cppdepend.com/blog/ai-real-power-mass-collaboration/
2•cppfirst•14m ago•0 comments

Show HN: DeutschDNA – German Tutor Skill for Claude Code and Codex

https://github.com/ahmtsahin/deutsch-dna
1•impala64•14m ago•0 comments

Show HN: Busbar self-hosted execution boundary for Agentic Apps

https://github.com/GetBusbar/busbar
1•mangatgoyal•14m ago•0 comments

Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design

https://github.com/devdotfast/whiteboard
12•sidharthkmenon•15m ago•0 comments

Show HN: Devc – an alternate CLI for launching devcontainers

https://github.com/rameshvarun/devc
1•varunramesh•20m ago•0 comments

Open AI in the Wild: Adoption and Adaptation of Open Models on R/LocalLLaMA

https://dl.acm.org/doi/abs/10.1145/3805689.3812421
1•theanonymousone•21m ago•0 comments

Return-to-office policy in 2026: 8 of 75 top UK employers require 5 office days

https://www.wfhjobs.co.uk/wfh-jobs-research/rto-policy-facts-and-statistics
2•FreddieSO•21m ago•1 comments

Paper2agent Turns Static Papers into Live AI Tools

https://spectrum.ieee.org/paper2agent-ai-agents-research-papers
2•rbanffy•21m ago•0 comments

35 years ago I did it all myself

https://twitter.com/jasonfried/status/2103170272467767753
2•tosh•21m ago•0 comments

For Computer Use, the harness matters as much as the model

https://www.stagehand.dev/evals
15•MiguelG719•23m ago•6 comments

Meta employees don't like to be filmed with there own glasses [video]

https://www.youtube.com/shorts/6Abwd13odL4
2•pixvi•23m 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.