frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Opinion: I Was Not Allowed to Type Prompts into ChatGPT During My Chalk Talk

https://inpreparation.substack.com/p/opinion-i-was-not-allowed-to-type
1•mold_aid•2m ago•1 comments

Show HN: Waisly – a budgeting app that never asks for your bank login

https://getwaisly.app/en
1•Vadim7j7•2m ago•0 comments

JSP for Practical Program Design (1996)

https://archive.org/details/jspforpracticalp0000dudm
1•turtleyacht•4m ago•1 comments

Phone Number Carrier and Line Type with Python and the Telnyx Number Lookup

https://telnyx.com/resources/phone-number-carrier-lookup-python
1•harpreetseehra•6m ago•0 comments

Show HN: Irongate – Serverless Auth on AWS

https://github.com/RobinSrimal/irongate
2•maltaro•6m ago•0 comments

Show HN: HackerNows – Native iOS HN Client

https://hackernows.app/
2•maguszin•7m ago•0 comments

Private equity firm acquires MariaDB (2024)

https://k1.com/k1-acquires-mariadb/
1•elisaado•8m ago•0 comments

BIS Annual Report AI Scenarios

https://www.bis.org/publ/arpdf/ar2026e1.htm
1•2716057•10m ago•0 comments

Show HN: I built an automated productivity system (Telegram –> Notion)

https://singhos.com/
2•RS_Singh•13m ago•0 comments

Loop Engineering – Andrew Ng

https://twitter.com/AndrewYNg/status/2071988145667928442
3•vismit2000•13m ago•0 comments

How to Save a Claude Chat as a PDF [video]

https://www.youtube.com/watch?v=TkucXHpChDE
2•quysala12•22m ago•0 comments

Eight irritating ways America has ruined this World Cup

https://inews.co.uk/sport/football/world-cup-america-eight-irritating-ways-4489438
2•jjgreen•24m ago•2 comments

The Internet I Grew Up with Doesn't Exist Anymore

https://cleberg.net/blog/internet.html
2•felixdoerp•26m ago•1 comments

TokenBudgeting: Our Conversations with Enterprises on Token Spend

https://newsletter.semianalysis.com/p/tokenbudgeting-our-conversations
1•felixdoerp•27m ago•0 comments

When Impressive Performance Gains Do Not Matter

https://blog.colinbreck.com/when-impressive-performance-gains-do-not-matter/
2•signa11•28m ago•0 comments

MacBook Air M4 for development: 1 year review

https://notnotp.com/notes/macbook-air-m4-for-dev/
1•chmaynard•33m ago•0 comments

Apple 'Hide My Email' Vulnerability Reveals Peoples' Real Email Addresses

https://www.404media.co/apple-hide-my-email-vulnerability-reveals-peoples-real-email-addresses/
2•sashk•33m ago•0 comments

Apple iPhone 18 Pro supplier list, parts and photos exposed in Tata data leak

https://www.reuters.com/business/media-telecom/apple-iphone-18-pro-supplier-list-parts-photos-exp...
3•aravpanwar•34m ago•0 comments

Building AGI Using Language Models (2020)

https://bmk.sh/2020/08/17/Building-AGI-Using-Language-Models/
1•rzk•37m ago•0 comments

Stop handwaving away nearly every petition that gains traction on this website

https://petition.parliament.uk/petitions/771707
3•robin_reala•37m ago•0 comments

Shoe Tray Forming Machine

https://eggtraytz.com/shoe-tray-forming-machine/
1•shuliymachinery•38m ago•1 comments

Transcribe.cpp – ggml speech-to-text inference engine

https://github.com/handy-computer/transcribe.cpp
1•sipjca•40m ago•0 comments

We put a Redis server inside our runtime

https://encore.dev/blog/redis-runtime
5•eandre•42m ago•0 comments

The YAML document from hell (2023)

https://ruuda.nl/2023/the-yaml-document-from-hell
1•vismit2000•43m ago•0 comments

Ask HN: Which GitHub features are needed in a code forge before you can migrate?

2•pksunkara•44m ago•1 comments

Asahi Linux 7.1 Progress Report

https://asahilinux.org/2026/06/progress-report-7-1/
72•pantalaimon•46m ago•7 comments

AI models' values are different from most people's

https://www.economist.com/briefing/2026/06/25/ai-models-values-are-very-different-from-most-peoples
2•felixdoerp•48m ago•0 comments

Universal Path Converter

https://universalpathconverter.com/
1•ankitg12•49m ago•0 comments

How Do Products Like LLM Gateways/VPN Handle User Payments?

1•Maxshot•50m ago•0 comments

Ask HN: How do you provide your AI agents with access to credentials/secrets?

2•pietz•51m 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.