frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

In What Universe Is Thinking Machines Lab Worth $50B

https://tickerfeed.net/articles/what-is-thinking-machines-lab-worth
1•sethops1•1m ago•0 comments

What you should know from a trove of ChatGPT conversations we analyzed

https://www.washingtonpost.com/technology/2025/11/18/chagpt-conversations-analysis-learnings/
1•1vuio0pswjnm7•1m ago•0 comments

Intel is listening, don't waste your shot

https://www.brendangregg.com/blog//2025-11-22/intel-is-listening.html
1•chmaynard•2m ago•0 comments

Layanan CS Air Asia

1•tarunjjwala•3m ago•1 comments

Building an AI generated animated kids yoga video for $5 in 48 hours

1•lucassmedley•4m ago•0 comments

Elon Musk's Grok chatbot ranks him as world history's greatest human

https://www.washingtonpost.com/technology/2025/11/20/elon-musk-grok/
1•1vuio0pswjnm7•4m ago•0 comments

How X national origin label is not a magic 8-ball at all

https://justapedia.org/wiki/User:Ron_Merkle/Personal_essays
1•kurtreed2•4m ago•0 comments

GravOpt – 20k-node MAX-CUT in ~7 minutes on a single CPU core

https://github.com/Kretski/GravOpt-MAXCUT
1•DREDREG•6m ago•1 comments

Begini cara Reschedule tiket Air Asia

1•tarunjjwala•6m ago•1 comments

Quantum router preserves delicate photon states

https://www.advancedsciencenews.com/quantum-router-preserves-delicate-photon-states/
1•geox•8m ago•0 comments

LangChain Cost Optimization with Model Cascading

https://github.com/lemony-ai/cascadeflow
1•saschabuehrle•12m ago•1 comments

Quantum Investment Bros: Have you no shame?

https://scottaaronson.blog/?p=9344
2•nsoonhui•12m ago•0 comments

Court Filings Allege Meta Downplayed Risks to Children and Misled the Public

https://time.com/7336204/meta-lawsuit-files-child-safety/
2•dataminer•15m ago•0 comments

Markdown Editors

https://github.com/mundimark/awesome-markdown-editors
2•wslh•16m ago•0 comments

Joe Rogan Experience #2416 – Dan Farah [video]

https://www.youtube.com/watch?v=NSFaaq3vhfY
1•keepamovin•19m ago•0 comments

Brazil's ex-president Bolsonaro arrested to prevent 'escape' court says

https://www.cnn.com/2025/11/22/americas/brazil-jair-bolsonaro-arrested-intl
2•marcodiego•19m ago•0 comments

Tell HN: Archive.today Partially Inaccessible

2•ZWoz•19m ago•0 comments

What's Lost When Stars Disappear from View

https://spectrum.ieee.org/scale-of-light-pollution
2•pseudolus•21m ago•0 comments

We don't talk enough about the best part of AI agents

https://michalkotowski.pl/writings/we-dont-talk-enough-about-the-best-part-of-ai-agents
1•kocie•25m ago•1 comments

Why is cognitive effort experienced as costly?

https://www.cell.com/trends/cognitive-sciences/abstract/S1364-6613(25)00287-6
2•thinkingemote•26m ago•1 comments

Values Aren't Subjective

https://aliveness.kunnas.com/articles/values-arent-subjective
1•ekns•30m ago•0 comments

WWII Enigma machine sells for over half a million dollars at auction

https://www.tomshardware.com/tech-industry/wwii-enigma-machine-sells-for-over-half-a-million-doll...
1•giuliomagnifico•31m ago•0 comments

Rereading Norbert Wiener's the Human Use of Human Beings at 75

https://spectrum.ieee.org/on-rereading-norbert-wieners-the-human-use-of-human-beings-at-75
2•quapster•33m ago•0 comments

FFmpeg-Rs Fundraising Initiative

https://typememetics.institute/fundraiser/ffmpeg-rs
3•thehappyfellow•33m ago•0 comments

Bagaimana Cara Berbicara Dengan AirAsia

1•sebrauf•36m ago•0 comments

Hardware and Firmware of an Embedded Wearable for Real-Time ECG and Respiration

https://www.mdpi.com/2079-9292/14/21/4276
2•PaulHoule•37m ago•0 comments

ACM Gordon Bell Prize Awarded for Tsunami Prediction Simulation

https://www.acm.org/media-center/2025/november/gordon-bell-prize-2025
1•pseudolus•39m ago•0 comments

Ask HN: Codex vs. Antigravity?

2•digitcatphd•40m ago•0 comments

Misusing Macros for fn and Profit [video]

https://www.youtube.com/watch?v=9-CIInQhBUs
1•icar•41m ago•0 comments

How to Fix a Typewriter and Your Life

https://www.nytimes.com/interactive/2025/11/20/us/typewriter-repair-seattle-bremerton.html
2•pseudolus•43m ago•1 comments
Open in hackernews

Ask HN: What are you currently trying to figure out?

3•gooob•6mo 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•6mo ago
Trying to figure out what to do next and what to do with my life.
gooob•6mo ago
how's that going? what are your current options?
sherdil2022•6mo ago
Not going good.
scottmcdot•6mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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.