Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Hill investigates after F-35 parts diverted to Hong Kong(politico.com)
    discuss
  2. Resend · Email for Developers(resend.com)
    1comments
  3. White House launches Trump TV following press bans(thehill.com)
    discuss
  4. Anthropic Principle(wikipedia.org)
    discuss
  5. Et Tu, Brute? Economic Misalignment in Personal AI Agents(arxiv.org)
    discuss
  6. I said no and Apple said yes(dbushell.com)
    discuss
  7. Robot bunnies deployed in Florida to fight invasive pythons(popsci.com)
    1comments
  8. Police hugging AI so tight, soon we'll all be pre-crime suspects(responsiblestatecraft.org)
    discuss
  9. The Sun Doesn't Shine on Me (2006)(fullhoffman.com)
    discuss
  10. KeiroLabs – Web research infrastructure for AI agents(keirolabs.cloud)
    1comments
  11. EncryptedLLM: Privacy-Preserving Large Language Model Inference(icml.cc)
    discuss
  12. The agents never stop. A council can(flurdy.com)
    1comments
  13. How to cut back on social media addiction(shuaibkhan.com)
    discuss
  14. Show HN: Z8Log – Structured logging your AI coding agent can query(z8log.com)
    discuss
  15. Trusted directories for listing your Mac app(reddit.com)
    discuss
  16. RippleNav – A web instrument provides real-time visual feedback on thought focus(ripplenav.org)
    discuss
  17. Saudi's Ceer unveils first EVs(reuters.com)
    discuss
  18. Welcome Silona Bonewald, New MetaBrainz Foundation Executive Director(metabrainz.org)
    1comments
  19. Show HN: Easytris – Tetris that wants you to win(medv.io)
    discuss
  20. A Tribute to Donald Knuth (2024)(paramrathour.github.io)
    discuss
  21. Create AI Image Free – No Sign-Up Needed(createaiimage.net)
    discuss
  22. Scanner says the HTML attachment is clean. What happens when you open it?(mohitkhare.com)
    discuss
  23. Chewbacca's Ancestor Is Real(maxhawtdawg.com)
    discuss
  24. The Set of Math-Sterpieces(paramrathour.github.io)
    discuss
  25. Reverse-Engineering Jane Street's ASIC(mooofin.github.io)
    discuss
  26. How people are testing AI agents?
    discuss
  27. Frontier Overhangs(stratechery.com)
    discuss
  28. Some Old Expectations for the New Apple(taoofmac.com)
    discuss
  29. Physics Problem Finder(beneke7.github.io)
    discuss
  30. The Armored Sarcophagus Saving Ukrainian Soldiers(theatlantic.com)
    discuss

Show HN: Cheap and easy throwaway VPN server

2 pointsby 1h agoa.l3x.in
2 comments
1h agoHN ↗

You don't even need wireguard really, you could just use ssh -D by itself, then either your browser (or foxyproxy) or individual app can point to the local socks proxy, or you can use tun2socks to make a tun(4) network interface out of it. Optionally you can use a network namespace to only route certain apps through it.

Or ssh -w can do the tun(4) interface for you, and supports both layer 2 and layer 3.

True that it won't be using UDP (or sshuttle can fix TCP-in-TCP issues for you), but for my usecase it works out better anyway, as many places I frequent restrict UDP usage. Even China doesn't block SSH.

16m agoHN ↗

Fair, I still have to find a place that restricts UDP but iirc WireGuard should offer TCP as well.

By the way, if you check out the repository's README it already shows the SSH use case, but why not to have WireGuard available too? with it there's no need to manually setup any application to use/not use SOCKS, it's as simple as click "Connect" in the WireGuard client and all the traffic including ICMP and what not is tunneled through the server. It can even be installed at the router level so to have all the LAN traffic tunneled automatically, can't easily do that with SSH.

Different use cases, not saying SSH isn't valid, I just prefer WireGuard UX.