frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pros and Cons of Solo Development

https://johnjeffers.com/pros-and-cons-of-solo-development/
3•johnj-hn•2m ago•0 comments

Companies hire more after AI adoption

https://ramp.com/data/heavy-ai-adopters-hire-more
2•mooreds•2m ago•0 comments

Google pulls the plug on Tenor API, killing GIF pickers around the web

https://9to5google.com/2026/06/30/google-tenor-api-gif-updates/
2•mooreds•2m ago•0 comments

Adding SEO fields to your Filament resources in 5 minutes

2•umun•2m ago•0 comments

The only volume stabilizer with a human touch

https://sites.google.com/view/adbuster-winapp
2•Bo_Amigo_910•3m ago•1 comments

What Is Partiful Selling?

https://www.theverge.com/report/960635/partiful-app-event-planning-data-palantir
3•aarvin_roshin•3m ago•0 comments

OpenWrt One – Open Hardware Router

https://openwrt.org/toh/openwrt/one
3•peter_d_sherman•3m ago•0 comments

Germany suspends Cispa cybersecurity director over China technology transfer

https://www.upday.com/uk/germany-suspends-cispa-cybersecurity-director-over-china-technology-tran...
2•titaniumrain•4m ago•0 comments

Show HN: Skeights – Serialize sklearn models to safetensors and JSON, no pickle

https://github.com/carbon-re/skeights
2•alxhslm•8m ago•0 comments

Claude has the worst pricing – but people want it

2•amukbils•10m ago•0 comments

Show HN: Boilerroom: dialer, call recording, and managed follow-up

https://boilerroom.ai
2•sadidrahimi•11m ago•0 comments

Quiet, My Exoself

https://kevinkelly.substack.com/p/quiet-my-exoself
2•thm•12m ago•0 comments

Beyond Prediction: Tail-Aware Scheduling for LLM Inference

https://yl3469.github.io/uniboost-icml26/
2•matt_d•12m ago•0 comments

Speedcube.de forum archive using wget and squashfs

https://github.com/SpeedcubeDE/speedcube.de-forum-archive
2•Felk•13m ago•1 comments

S3 is a better abstraction than NFS / networked block storage

https://kerkour.com/s3-vs-nfs
2•speckx•13m ago•0 comments

ShareClean: Clean sensitive data from logs before you paste them

https://github.com/OmarH-creator/ShareClean
3•OmarH-creator•14m ago•0 comments

ThinkingCap-Qwen3.6-27B: Qwen3.6 capabilities with 50% fewer thinking tokens

https://huggingface.co/bottlecapai/ThinkingCap-Qwen3.6-27B
2•victormustar•14m ago•0 comments

Graph-guard, a knowledge graph behind RAG for multi-hop retrieval

https://github.com/Jott2121/graph-guard
2•jott2121•16m ago•0 comments

Man sues DHS after agents tracked him down for sending a scathing email to ICE

https://www.npr.org/2026/07/06/nx-s1-5883784/dhs-ice-critic-lawsuit-free-speech
5•HotGarbage•17m ago•1 comments

Ripple Calculator: Complete Guide to XRP Profit and Conversion

2•blockyyr•17m ago•0 comments

Reasons to Stay Long

https://www.downtownjoshbrown.com/p/reasons-to-stay-long
2•mooreds•20m ago•0 comments

GitHub Has Restricted Access to Star Data

https://www.star-history.com/blog/github-stargazer-api-restriction/
3•tianzhou•20m ago•0 comments

Show HN: The ocean in Final Fantasy IX is made of Wang tiles

https://jawnston.com/wang/
2•jawnston•20m ago•1 comments

Show HN: Give your files an undo button

https://useundo.co/
2•dantelex•22m ago•0 comments

The Midwestern Exodus Is Finally Ending

https://www.wsj.com/us-news/akron-ohio-midwest-population-growth-5680accb
2•mooreds•23m ago•0 comments

All Star Wars Games Ever Made – Released, Cancelled and Mod Archive

https://swtorstrategies.com/2026/03/star-wars-games-complete-list.html
3•speckx•23m ago•0 comments

Despite political headwinds, CO tribe brings utility scale solar project online

https://text.npr.org/nx-s1-5779756
2•mooreds•24m ago•0 comments

Show HN: Venetianblinds.js – evenly spaced windows into text files

https://liveclip.substack.com/p/venetianblinds-js-text-sampler
2•firasd•28m ago•0 comments

I had Fable build several projects for me. I'm disturbed by what I saw [video]

https://www.youtube.com/watch?v=vS-gfLhxYDg
3•Bender•31m ago•0 comments

NYT profiles voters using chatbots

https://www.nytimes.com/2026/07/04/us/politics/voters-ai-chatbots-elections.html
3•zerolatitude•32m 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.