frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Jev Plays Pokémon Red

https://jev-pokemon.vercel.app/
177•pancomplex•15h ago•76 comments

Show HN: Hacker Atlas - A map of what Hacker News talks about

https://hackeratlas.com/
32•andrearitossa•15h ago•9 comments

Show HN: Make math automatic with Mathy

https://gmays.com/making-math-automatic-with-mathy/
84•gmays•4d ago•25 comments

Show HN: A game about fake news and memes

https://unspin.app/
13•azermite•5h ago•10 comments

Show HN: Ekselio – Loveable for finance workflows (local first)

https://www.gptbeyond.com/try?home=1
12•kdautaj•8h ago•2 comments

Show HN: Jevlang. delegate every if/while condition to Jev

https://github.com/RoyWiggins/jevlang
3•roywiggins•2h ago•0 comments

Show HN: I discovered roads in the US across > 1000 themes

https://road-about-a-theme.pinedesk.biz/
10•91awebsi•13h ago•5 comments

Show HN: Recurse – Develop and deploy specialist agents faster

https://recurse.run
5•ozankabak•7h ago•1 comments

Show HN: Jevgpt – reinventing the wheel with another wheel

19•kunggaochicken•2d ago•1 comments

Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design

https://github.com/devdotfast/whiteboard
399•sidharthkmenon•1d ago•131 comments

Show HN: Tenjin – A Jev based x402 tool router for Claude Code

https://github.com/BackTrackCo/tenjin-agent
2•AliAbdoli•5h ago•0 comments

Show HN: Doom or Bloom, map your AI worldview

https://www.doom-or-bloom.com
56•transitivebs•12h ago•44 comments

Show HN: Air-gapped file encryption as self-decrypting HTML page

https://cms-sfx-demo.apeleg.com/
83•emurlin•1d ago•29 comments

Show HN: Hamilton – a no-internet Android health dashboard, named after my dog

https://play.google.com/store/apps/details?id=com.gads.hamilton&hl=en_US
9•hamilton_app•16h ago•12 comments

Show HN: Koi.rest – watch some fish and regain your balance

https://koi.rest
215•hxii•1d ago•60 comments

Show HN: Paper-docx – agent-native Python-docx fork with 78% fewer DOCX failures

https://github.com/paper-instruments/paper-docx
6•i_rush_carriers•10h ago•0 comments

Show HN: Agentic CUDA Kernel Optimizer

https://github.com/bertaye/agentic-cuda-optimizer
32•bertaye•18h ago•11 comments

Show HN: AgentRun: DSL to turn agents into workflows

https://github.com/Parcha-ai/agentrun
45•miguelrios•2d ago•12 comments

Show HN: Treepeat – Code similarity detection using Tree-sitter

https://github.com/dsummersl/treepeat
65•91awebsi•3d ago•8 comments

Show HN: BuyerCue – Find potential customer by paid-placement evidence

https://www.buyercue.io
2•apsquared•8h ago•1 comments

Show HN: Make cursed fonts like Times New Bastard

https://bastardica.mitpit.com
847•MitPitt•2d ago•123 comments

Show HN: Aslmp, an async Python SLMP client for Mitsubishi MELSEC PLCs

https://github.com/AcaysiaChem/aslmp
3•AiasT•10h ago•0 comments

Show HN: Digitron – a virtual analog synth and sequencer

https://apps.apple.com/us/app/digitron-synthesizer/id6737997923
2•sillydevices•10h ago•0 comments

Show HN: I couldn't deal with another Claude Code tab

https://aidash.dev/
4•grollat•11h ago•2 comments

Show HN: Most Hated Tools

https://www.mosthatedtools.app/
28•leonagano•1d ago•20 comments

Show HN: Avoid smooth spinners, use low-FPS spinners

https://nh2.me/low-fps-spinners/low-fps-spinners.html
21•nh2•1d ago•27 comments

Show HN: I made a WWI dogfight game that runs in the browser

https://www.gamedev.pl/ay/biplane-skirmish
3•fullstackwife•12h ago•4 comments

Show HN: Encryption as a Service

https://rypt.dev/
3•levidurfee•12h ago•2 comments

Show HN: Choreoglyphs – our new, invisible writing system

https://choreoglyphs.com/
5•spython•13h ago•2 comments

Show HN: CiteRank, track whether ChatGPT and Perplexity cite your site

https://citerank.thecompound.tech
2•kyisaiah47•14h ago•2 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

https://github.com/nickyvanurk/everwilds
28•nickyvanurk•1y ago

Comments

ricardobayes•1y ago
Still to this day I have not seen an MMORPG that has as smooth movement and camera system as WoW.
okdood64•1y ago
Camera movement in FFXIV is fine. Character movement was a bit clunky but still very usable.
kristoff200512•1y ago
Yes, I think so too! I'm not sure why, but even though technology has advanced so much compared to before, there still isn't an online game that can surpass it.
nickyvanurk•1y ago
To replicate that feel is pretty much the point of this project.
MacNCheese23•1y ago
Do i see this correctly, TCP-based Websocket with JSON messages that are parsed?

That is very much removed from any MMORPG type of communication.

One of the hardest parts of a client/server MMO architecture is the network layer, which uses a lossless/retry/fault-prove UDP-based protocol. Everything else sits on top. Luckily, there are tons of sample libraries by now, I suggest peeking at the leaked SW Online sony code which includes the source for their implementation.

jaoane•1y ago
World of Warcraft uses TCP, which is the correct choice because the current state is the sum of all previous updates. So why not let the kernel handle the hairy parts?
setr•1y ago
>because the current state is the sum of all previous states

I don't think that's true, except for the server? From the client's perspective, the current state is whatever the hell the server thinks is the sum of all previous state. So you generally don't need lossless message passing; you just need to be able to resync periodically, and trying to resend on lost messages is probably a waste of time if you can sync straight to current state

If the client/server were deterministically simulated -- thus every event must be fully represented on both sides to be in sync -- then sure, but I'm fairly positive no MMO does that

jaoane•1y ago
That’s not how it works in World of Warcraft though. The server only sends the client the absolute state of the world on login. Then it’s all relative updates. Like: unit X lost 13 hit points. The client derives the current state from that. So UDP is inappropriate because you need things to be ordered.
MJGrzymek•1y ago
I get net::ERR_CERT_COMMON_NAME_INVALID on everwilds.io (chrome android)