frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ConferenceRank – conference and journal deadlines for 980 CS venues

https://rabimba.github.io/ConferenceRank/
1•rabimba•27s ago•0 comments

Trump says AI will be renamed 'super intelligence' in all US documents

https://thehill.com/homenews/administration/6104142-trump-renames-ai-super-intelligence/
2•guardiangod•1m ago•0 comments

Avy Tab Switcher, Avy-style keyboard navigation for browser tabs

https://github.com/Artawower/avy-tab-swithcer
1•darkawower•2m ago•0 comments

A beginner-friendly, step-by-step guide – How to Fingerprint Popular honeypots

https://medium.com/meetcyber/how-to-fingerprint-popular-honeypots-from-your-laptop-fe3396a13211
1•ls1911•3m ago•0 comments

Tiny Startups Are Getting Even Smaller with Help from AI

https://www.wsj.com/tech/ai/startup-hiring-ai-staffing-8c626f75
1•nradov•3m ago•0 comments

Japanese used bookstores are seeing a surge in bulk orders for obscure books

https://twitter.com/Johnny_suputama/status/2102425777128292810
2•wahnfrieden•4m ago•0 comments

Support Fins – Stop Using Tree Support for Your 3D Prints [video]

https://www.youtube.com/watch?v=WGsi5SCurpM
1•luanmuniz•5m ago•0 comments

Horowitz Andreessen Academy

https://a16z.com/announcement/incubating-horowitz-andreessen-academy/
2•lquist•6m ago•0 comments

Go pace yourself Dario [video]

https://www.youtube.com/shorts/83X79cfuE3k
1•hsuduebc2•7m ago•0 comments

Dutch social network Hyves returns nearly 13 years after closure

https://nltimes.nl/2026/09/22/dutch-social-network-hyves-returns-nearly-13-years-closure
2•giuliomagnifico•8m ago•0 comments

Koòrdinate Thinking

https://github.com/UnmarkedPM/koord/tree/main/tools/skills/FlatSkill
1•bender90•9m ago•1 comments

Kalshi asks CFTC to allow margin trading on its platform

https://www.cnbc.com/2026/09/22/kalshi-asks-cftc-to-allow-margin-trading-on-its-platform-letting-...
3•thm•10m ago•0 comments

Wishing It So: Excerpt from Will and Attention by Meghan O'Gieblyn

https://www.nybooks.com/articles/2026/09/24/wishing-it-so-meghan-ogieblyn/
1•1vuio0pswjnm7•10m ago•0 comments

RomM – Self-Hosted ROM Library with Metadata from IGDB, Screenscraper, MobyGames

https://digitalescapetools.com/tools/romm.html
1•xabd•11m ago•0 comments

In the beginning, it was good –part 1

1•theubie•13m ago•1 comments

CoreQuarry

https://corequarry.com/
1•Non-monotonic•13m ago•0 comments

Show HN: Task and test management as YAML in your Git repo (VS Code)

https://github.com/gitoza-io/gitoza-lite
1•weiwen-weng•14m ago•0 comments

Musings on the Barrow Scale

https://www.centauri-dreams.org/2023/12/12/seti-musings-on-the-barrow-scale/
1•JumpCrisscross•14m ago•0 comments

What if you could experience the regret of a decision before making it?

https://regret.solvailabs.com/
1•theycallmeritik•14m ago•0 comments

Show HN: Optimized runtimes for three VLAs on Jetson Thor

https://github.com/Agents2AgentsAI/vla-edge
2•hhuytho•15m ago•0 comments

Launch HN: Coverage Cat (YC S22) – Umbrella insurance via your personal agent

https://www.coveragecat.com/
7•botacode•15m ago•3 comments

Show HN: Nomoreda – Browser EDA, MCP-Friendly, KiCad/Altium-Compatible

https://nomoreda.com/
1•VladimirIvlev•17m ago•0 comments

NASA Discovery Reveals Complex Water Systems on Early Mars

https://www.jpl.nasa.gov/news/nasa-discovery-reveals-complex-water-systems-on-early-mars/
2•gmays•18m ago•0 comments

TinyJev -Tiny Jev-style decision model that runs offline

https://github.com/ankit-aglawe/tinyjev
2•aglaweankit•19m ago•0 comments

Are the Government's Conversations with AI Accessible Under Public Records Laws? [pdf]

https://reason.com/wp-content/uploads/2026/09/Are-the-Goverments-AI-Conversations-Accessible.pdf
3•compiler-guy•19m ago•0 comments

German court rules Meta liable for scam ads on Facebook and Instagram

https://thenextweb.com/news/meta-scam-ads-ruling-germany-frankfurt-court
9•buzer•20m ago•3 comments

Priorities and principles for effective third party assessments

https://openai.com/index/priorities-principles-third-party-assessments/
1•samaysharma•22m ago•0 comments

Scaling Discovery Through Test-Time Communication

https://arxiv.org/abs/2609.21032
1•marojejian•22m ago•0 comments

Kclaw is a K8s-based IT-managed, multi-tenant AI assistant platform for teams

https://github.com/info-struct/kclaw
2•Ryan-info-struc•22m ago•1 comments

We put Jev in production against a cross-encoder. Here are the numbers

https://getunblocked.com/blog/jev-in-production-vs-cross-encoder/
5•dennispi•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.