frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How do people in the US describe customer service in 2026?

https://www.theguardian.com/us-news/2026/jun/20/guardian-readers-consumer-battles
1•dredmorbius•7s ago•0 comments

'Toy Story 2' – A Classic Movie Nearly Destroyed by a Single Line of Code

https://www.wsj.com/business/media/toy-story-5-saved-pixar-78e29161
1•bookofjoe•1m ago•1 comments

François Englert (1932 – 2026)

https://home.cern/francois-englert-1932-2026/
2•toomuchtodo•5m ago•1 comments

Systemd 261 released with systemd-sysinstall, IMDSD, and storagectl

https://www.phoronix.com/news/systemd-261
2•logickkk1•5m ago•0 comments

Show HN: GitGauge – A Way to Try Tell If a Repo Is Authentic

https://github.com/Davey2Waveyy/gitgauge
1•davey2wavey•6m ago•0 comments

Stochastics

https://stochastics.vercel.app/
1•talos-better•6m ago•0 comments

The F-15 Strike Eagle II Reborn Through Reverse Engineering

https://www.youtube.com/watch?v=aIPKkOpIiF8
1•coolwulf•7m ago•0 comments

Tipp-Kick

https://boardgamegeek.com/boardgame/1644/tipp-kick
1•ofrzeta•10m ago•0 comments

Codex (GPT-5.5, Plus plan) – rate-limit cost per token jumped 10x+ since June 16

https://github.com/openai/codex/issues/28879
3•e2e4•13m ago•0 comments

AI Is Discovering the Doorman Fallacy [video]

https://www.youtube.com/watch?v=f-QzIum9bNU
1•bane•14m ago•0 comments

Europe swelters under heatwave, France restricts alcohol consumption

https://www.reuters.com/business/environment/europe-swelters-under-heatwave-prompting-crisis-talk...
2•montalbano•18m ago•0 comments

A short story about Indian scammers who called the cops on themselves

https://xcancel.com/zachxbt/status/2067938523986932005#m
1•Cider9986•22m ago•0 comments

The Scorpion and the Frog

https://en.wikipedia.org/wiki/The_Scorpion_and_the_Frog
1•password54321•22m ago•0 comments

Show HN: Alloy – a PyTorch backend and inference engine for Apple Silicon

https://github.com/rayanht/alloy
1•rayanht•23m ago•0 comments

Ask HN: Why are desktop AI apps so heavy?

1•yconst•25m ago•2 comments

Show HN: Botacts – Phonebook of AI Bots

https://botacts.com
1•christoph123•30m ago•0 comments

Dallas Fed: 30% of housing cost increase driven by unauthorized immigration [pdf]

https://www.dallasfed.org/~/media/documents/research/papers/2026/wp2607.pdf
20•silexia•31m ago•9 comments

EEG Machine

https://micahetter.me/EEGMachine/
2•geerlingguy•35m ago•0 comments

DOS Library utilizing a second CPU core

https://github.com/arjunae/2core_dos
1•beebix•40m ago•0 comments

Ask HN: What is your #1 practical lesson or "aha" moment from coding with AI?

2•johndavid9991•43m ago•3 comments

Supermarket giant Tesco sues VMware for breach of contract

https://www.theregister.com/software/2025/09/03/supermarket-giant-tesco-sues-vmware-for-breach-of...
14•wglb•46m ago•1 comments

A Day with Laravel #59 – Hand-curated Laravel packages, tutorials and trends

https://a-day-with-laravel.happyto.dev/p/a-day-with-laravel-059
1•happytodev•54m ago•1 comments

Show HN: LoopFlow – loop engineering for Claude Code

https://github.com/faisalishfaq2005/loopflow
2•faisalishfaq•55m ago•0 comments

Linux Eliminates the Strncpy API After Six Years of Work, 360 Patches

https://www.phoronix.com/news/Linux-7.2-Drops-strncpy
29•simonpure•56m ago•8 comments

You're Accountable for the Team. You're Not in Charge of It

https://yourdevteamcoach.com/blog/youre-accountable-for-the-team-youre-not-in-charge-of-it
3•sea-gold•59m ago•1 comments

The UK will scan asylum seekers' faces for age checks

https://www.wired.com/story/facial-age-estimate-uk-asylum-seekers/
6•Lihh27•1h ago•0 comments

Trump says he no longer views Anthropic as a threat after G7 meeting

https://thenextweb.com/news/trump-anthropic-not-national-security-threat-axios-interview
19•billybuckwheat•1h ago•2 comments

Incorrectly Generated RSA Keys: How I Learned to Recover Lost Plaintexts

https://academic.oup.com/comjnl/article-abstract/66/6/1342/6995423?redirectedFrom=fulltext
2•rbanffy•1h ago•0 comments

Seeing the world in radio waves with the QuadRF

https://hackaday.com/2026/06/20/seeing-the-world-in-radio-waves-with-the-quadrf/
16•ikbdsk•1h ago•0 comments

RFC 9958: Post-Quantum Cryptography for Engineers

https://datatracker.ietf.org/doc/html/rfc9958
2•hasheddan•1h ago•0 comments
Open in hackernews

My self-hosted local LLM server setup

https://old.reddit.com/r/LocalLLM/comments/1ub1iu2/my_selfhosted_llm_server_setup_to_access_open
2•onthemarkdata•3h ago

Comments

onthemarkdata•3h ago
I set up an inference server so I can hit my own open-weight models from my laptop anywhere, with nothing exposed to the public internet. Sharing in case it's useful to others, and to hear how people are doing this differently.

The request path: Client (laptop on Tailscale) → Tailscale Aperture (AI gateway — auth + routes by model name) → llama-swap → vLLM → GPU

What I like about it: - Access runs over Tailscale, so it's end-to-end encrypted and gated by OAuth. No open ports and no reverse proxy to babysit.

- llama-swap loads models on demand: if the requested model isn't running, it starts a vLLM child process, and if a model sits idle for ~5 min, it kills it to free VRAM. Useful when juggling models on one box.

- vLLM handles inference (currently Qwen3.6 27B).

I can also just SSH in to work directly on the GPU — adding models, fine-tuning, and so on.