frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I built a tiny proxy that gives GLM 5.2 vision (or any text LLM) – MIT

https://github.com/thomasunise/visionbridge
2•thomasunise•2m ago•0 comments

Show HN: Q a REPL for LLM inside the terminal

https://github.com/alaa-alawi/q
1•alaaalawi•2m ago•0 comments

Code is overpaying for AI. /tokendiet finds where

https://tokendiet.dev/
1•eMoka•2m ago•1 comments

A New Foundation for Tuxedo OS: Switching to Debian

https://www.tuxedocomputers.com/en/A-new-foundation-for-TUXEDO-OS-Switching-to-Debian.tuxedo
1•DavideNL•3m ago•0 comments

Sets up your AI agent for Cloudflare

https://developers.cloudflare.com/agent-setup/prompt.md
1•gurjeet•3m ago•0 comments

Hudson News self-checkout terminals add 3% "employee benefit" surcharge in NY

https://twitter.com/_ZachGriff/status/2074538643465683065
2•ilamont•3m ago•0 comments

Ask HN: Google's chilling effects on expressing democratic dissent

1•terabytest•4m ago•0 comments

Squish, a local LLM inference server for Apple Silicon

https://squish.run/blog/local-llm-fast-enough/
1•wscholl•4m ago•0 comments

Doing front end changes via LLMs is pain in the a*

https://github.com/mi60dev/visionaire-engine
1•mishonyAI•5m ago•1 comments

Show HN: Xls-reader – read legacy .xls in the browser, no upload, zero deps

https://zanlucathiago.github.io/xls-reader/demo.html
1•thiagozanluca•5m ago•0 comments

Proximity to Golf Courses and Risk of Parkinson Disease

https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2833716
1•bookofjoe•6m ago•0 comments

AI Neovim

https://github.com/s2xon/aeovim/
1•s2xon•8m ago•1 comments

Show HN: Last EHR – AI agent over a FHIR back end with human approval on writes

https://www.lastehr.com
1•betzsoftware•9m ago•0 comments

Muse Image and Muse Video

https://ai.meta.com/blog/introducing-muse-image-muse-video-msl/?_fb_noscript=1
1•surprisetalk•9m ago•0 comments

Scruter – Ads Intelligence SaaS

https://scruter.net
1•dritdoit•9m ago•0 comments

Never submit code you don't understand

https://dri.es/never-submit-code-you-do-not-understand
2•speckx•12m ago•1 comments

Ccl: Categorical Configuration Language

https://github.com/chshersh/ccl
2•linkdd•13m ago•0 comments

Auto: The AGI Compiler

https://github.com/RightNow-AI/auto
3•OsamaJaber•14m ago•2 comments

Policy Statement Concerning the Suppression of Accuracy in AI Systems

https://www.federalregister.gov/documents/2026/07/07/2026-13628/policy-statement-concerning-the-s...
3•petethomas•14m ago•0 comments

Tessera - an AI agent that refuses to answer without evidence

https://github.com/robert-vetter/tessera
2•robert-vetter•16m ago•0 comments

Amber the programming language compiled to Bash/Ksh/Zsh

https://amber-lang.com/
1•_superposition_•17m ago•0 comments

I use AI in creating my newsletter

https://petergasston.co.uk/how-i-use-ai-in-creating-my-newsletter/
2•speckx•18m ago•2 comments

Muse Image: Free AI Image Generator – Museimage.io

https://museimage.io/http:/localhost:3000
1•sarkory•18m ago•0 comments

Get Ready for the Powerful CSS Border-Shape Property

https://css-tricks.com/get-ready-for-the-powerful-css-border-shape-property/
1•gsky•19m ago•0 comments

Google's exponential path to climate-wrecking digital bloat

https://ketanjoshi.co/2026/07/01/googles-exponential-path-to-climate-wrecking-digital-bloat/
1•jonathandeamer•20m ago•0 comments

Fable Is Good

https://www.robinsloan.com/lab/fable-is-good/
2•janvdberg•21m ago•0 comments

AI recommends crap travel services

https://www.theguardian.com/business/2026/jul/02/ai-summaries-tripadvisor-hotel-reviews-downplay-...
1•mikelgan•21m ago•1 comments

Show HN: Claudeometer – Share and pool Claude usage across a team (macOS, OSS)

https://github.com/SGSI/claudeometer
1•WableSanket•22m ago•0 comments

Discord banned 8k users for posting benign grid images

https://www.theverge.com/games/962156/discord-accidental-bans-grid-images
4•logickkk1•22m ago•1 comments

Show HN: Bike4Mind – open-core AI workbench; any model, agents, RAG, self-host

https://github.com/Bike4Mind/bike4mind
1•erikbethke•22m 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.