frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A Claude Code skill to analyze your chess games

https://github.com/brumar/chess-postmortem-skills
47•brumar•2h ago•30 comments

Show HN: Jev Plays Pokémon Red

https://jev-pokemon.vercel.app/
241•pancomplex•1d ago•97 comments

Show HN: Reladraw – A diagram language where you decide where to place things

https://github.com/reladraw/reladraw
3•jpwalsh234•1h ago•0 comments

Show HN: Spivak's Calculus formalized in Lean 4 – every theorem, every problem

https://github.com/stormj-UH/spivak-lean
2•jsLavaGoat•1h ago•0 comments

Show HN: Jev predicting your life choices

https://quiz.seek.ws/
2•sdrth•1h ago•1 comments

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

https://hackeratlas.com/
76•andrearitossa•1d ago•24 comments

Show HN: I checked 1M free proxies – 1 in 5 working ones injected scripts

https://github.com/maximilianfeix/proxy-scraper
4•taventix•4h ago•1 comments

Show HN: Make math automatic with Mathy

https://gmays.com/making-math-automatic-with-mathy/
101•gmays•5d ago•35 comments

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

https://www.gptbeyond.com/try?home=1
18•kdautaj•21h ago•4 comments

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

https://github.com/devdotfast/whiteboard
407•sidharthkmenon•2d ago•138 comments

Show HN: Jevgpt – reinventing the wheel with another wheel

23•kunggaochicken•2d ago•2 comments

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

https://cms-sfx-demo.apeleg.com/
84•emurlin•2d ago•30 comments

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

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

Show HN: Print Graph Paper

https://printgraphpaper.app/
4•artiomartiom•10h ago•0 comments

Show HN: AgentRun: DSL to turn agents into workflows

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

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

https://github.com/dsummersl/treepeat
69•91awebsi•4d ago•8 comments

Show HN: Agentic CUDA Kernel Optimizer

https://github.com/bertaye/agentic-cuda-optimizer
36•bertaye•1d ago•11 comments

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

https://road-about-a-theme.pinedesk.biz/
12•91awebsi•1d ago•8 comments

Show HN: Recurse – Develop and deploy specialist agents faster

https://recurse.run
5•ozankabak•20h ago•4 comments

Show HN: Make cursed fonts like Times New Bastard

https://bastardica.mitpit.com
850•MitPitt•2d ago•123 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
11•hamilton_app•1d ago•12 comments

Show HN: Gutcheck, grep for meaning with a local CPU model

https://github.com/sfmqrb/gutcheck
3•sfmqrb•12h ago•0 comments

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

https://github.com/RoyWiggins/jevlang
4•roywiggins•14h ago•0 comments

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

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

Show HN: Most Hated Tools

https://www.mosthatedtools.app/
30•leonagano•2d ago•20 comments

Show HN: Drop – A rootless Linux sandbox with gVisor support

https://droprun.sh/
189•mixedbit•4d ago•63 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•23h ago•0 comments

Show HN: JevBench, a reproducible benchmark for typed decision models

https://benchmarkheaven.com/jev-models
148•florianstandhar•4d ago•38 comments

Show HN: Doom or Bloom, map your AI worldview

https://www.doom-or-bloom.com
56•transitivebs•1d ago•48 comments

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

https://github.com/BackTrackCo/tenjin-agent
3•AliAbdoli•17h ago•0 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)