frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Scroll through all 43252003274489856000 Rubik's Cube states

https://everycube.alen.is/
133•Alen123•6h ago•32 comments

Show HN: Needle2: 14MB agentic LLM for phones, wearables, smart home and robots

https://cactuscompute.com/needle
255•HenryNdubuaku•12h ago•98 comments

Show HN: I vibecoded a heavy lift drone

https://lukeiseman.substack.com/p/i-vibecoded-a-drone
5•liseman•1h ago•0 comments

Show HN: Seedle, daily -dle for Minecraft seeds

https://seedle.loch.tools/
2•lwansbrough•1h ago•0 comments

Show HN: My local climbing gym from photogrammetry

https://kmcheung12.github.io/climb-preview/tour/ae43c6e5
19•a_c•7h ago•3 comments

Show HN: Voice driven murder mystery, Interview AI suspects with your voice

https://www.whodunnitai.com/
195•MrRowTheBoat•1d ago•80 comments

Show HN: AI Pulse a fake LED strip beside the macOS Dock that shows agent status

https://github.com/leog/ai-pulse
11•leog_me•7h ago•4 comments

Show HN: Ante, a coding agent in a single binary that runs offline

https://github.com/AntigmaLabs/ante
124•ubermon•13h ago•75 comments

Show HN: Higher-dimensional lattices unfolded into the 2D plane

https://number-garden.com/?@THLP@
16•unitX•4d ago•1 comments

Show HN: A tiny LLM running at 21,000 tok/s on a $250 FPGA (Live Demo)

https://www.mikeayles.com/blog/on-chip-llm-kv260/
47•mikeayles•17h ago•17 comments

Show HN: Insidedb, an interactive, animated explainer of database internals

https://david-g-3654.github.io/insidedb/
4•davai-g•4h ago•0 comments

Show HN: A Project Oberon System version running on RISC-V instead of RISC-5

https://github.com/rochus-keller/OberonSystem/tree/op2-rv32
119•Rochus•1d ago•19 comments

Show HN: Opencodex, a free open-source coding agent for VSCode

https://github.com/matonhp5108/Opencodex
5•thephantomhider•6h ago•0 comments

Show HN: Pyrig – A tool that automates project setup and maintenance

https://github.com/Winipedia/pyrig
4•Winipedia•6h ago•0 comments

Show HN: PicPocket – Dedicated 'chats' for photo-sharing (share to organize)

https://picpocket.io/
5•amr_shawky•13h ago•0 comments

Show HN: Typegres 0.3 – SQL-as-your-API, safely (using Cap'n Web RPC)

https://typegres.com/
3•ryanrasti•7h ago•0 comments

Show HN: Calldiff – a CLI to see callstack diffs in all major languages

https://github.com/tanishqkancharla/calldiff
2•tanishqkanc•7h ago•0 comments

Show HN: Keen Code – an agentic-engineered coding agent

https://github.com/mochow13/keen-code
6•mochow13•7h ago•2 comments

Show HN: Design Engineering, as a Service

https://designshippers.com/?0
13•krm01•16h ago•5 comments

Show HN: Graph2agent; Mermaid diagrams, explained for agents

https://graph2agent.github.io/
3•alexandroskyr•8h ago•0 comments

Show HN: I made alchemical-cosmological PCB badges

https://github.com/KaiPereira/Alchemical-Cosmological-Badges
22•kaipereira•5d ago•3 comments

Show HN: 100% native Swift harness (NOT Electron)

https://github.com/Lore-Hex/QuillCode
12•ljlolel•16h ago•4 comments

Show HN: Watching browser fingerprinting calls via Chromium's Blink layer

https://kameleo.io/blog/this-is-the-closest-well-ever-get-to-reverse-engineering-anti-bots
11•brnbs•20h ago•0 comments

Show HN: Airy – Free, fast, and simple voice content creation

https://airy.so
45•login588•1d ago•16 comments

Show HN: Neolabs.fyi – 100 new AI labs by research area, valuation, and more

https://neolabs.fyi/
8•polyphilz•15h ago•2 comments

Show HN: DocSift convert a PDF once, give the model only the passages it needs

https://github.com/anishmoncivarghese/docsift
3•anishvarghese•15h ago•0 comments

Show HN: Hawser – sign, notarize, DMG, auto-update and license a Mac app

https://hawserkit.com/
3•yaveez•16h ago•0 comments

Show HN: Issue Apple and Google wallet passes from Node.js

https://github.com/getpassmint/passmint
5•alexpate•20h ago•0 comments

Show HN: 35k+ paper psychedelic library that knows LSD from Lumpy Skin Disease

https://consciousnesslibrary.org/
30•elliotec•1d ago•12 comments

Show HN: Today's cities on a globe of Earth's tectonic past and future

https://douwe.com/projects/tectonic_globe
35•dosinga•1d ago•9 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)