frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Adrafinil – keep a lid-closed Mac awake only while agents work

https://github.com/kageroumado/adrafinil
61•kageroumado•2h ago•36 comments

Show HN: E3d-pod2vid – AI pipeline that turns podcasts into YouTube-ready videos

https://github.com/spacepacket1/e3d-pod2vid
2•spacepacket•1h ago•0 comments

Show HN: Starglyphs - A constellation puzzle game based on Euler paths

https://starglyphs.com
2•telman17•1h ago•0 comments

Show HN: Kiso, an open-source publishing engine for Open Knowledge Format

https://oak-invest.github.io/kiso/
2•straumat•2h ago•0 comments

Show HN: Smart model routing directly in Claude, Codex and Cursor

https://github.com/workweave/router
200•adchurch•1d ago•108 comments

Show HN: Hacker News on a train station-style flip board

https://popflame.quickish.space/hn-flipboard/
97•PaybackTony•22h ago•20 comments

Show HN: DBOSify – Drop-in Temporal replacement built on Postgres

https://github.com/dbos-inc/dbosify-py
83•KraftyOne•3d ago•18 comments

Show HN: Wind particles on Mapbox from a single EXIF JPEG

https://www.us-wind-particle-map-demo.mapbox-exif-layer.com
3•zifanw9•5h ago•0 comments

Show HN: WebBase-III – dBASE III rebuilt in the browser with its own interpreter

https://github.com/DDecoene/WebBaseIII
94•ddecoene•3d ago•27 comments

Show HN: Autofit2 – End-to-end pipeline for multilingual text classification

https://github.com/neospe/autofit2
27•leschak•2d ago•2 comments

Show HN: A Living Neural Web in HTML5 Canvas

https://techoreon.github.io/verpad/canvas-playground.html
5•guptalog•6h ago•3 comments

Show HN:I got tired of spending 3hrs daily on job applications,so I automated it

https://jobspire.co.in/
4•cbyteai•8h ago•2 comments

Show HN: Turn images into audio that can be decoded with a spectrogram

https://nsspot.herokuapp.com/imagetoaudio/
9•jupr•3d ago•4 comments

Show HN: I made Google Trends for Hacker News by indexing 18 years of comments

https://hackernewstrends.com
794•ytkimirti•2d ago•153 comments

Show HN: The TypeScript Semantic Layer for ClickHouse

https://github.com/hypequery/hypequery
5•lureilly1•13h ago•4 comments

Show HN: Overfitted a 900KB Transformer to Compress a 100MB CSV into 7MB

108•spidy__•4d ago•65 comments

Show HN: Turn native language audio into flashcards and shadowing practice

https://lingochunk.com/try
90•alder•2d ago•37 comments

Show HN: Aerial-autonomy-stack – open-source perception-based drone swarms

https://github.com/JacopoPan/aerial-autonomy-stack
4•SufficientFix42•10h ago•0 comments

Show HN: OpenKnowledge – open source AI-first alternative to Obsidian/Notion

https://github.com/inkeep/open-knowledge
372•engomez•2d ago•170 comments

Show HN: Open Tag, the open source Claude Tag

https://github.com/CopilotKit/OpenTag
4•nathan_tarbert•11h ago•0 comments

Show HN: Bible as RAG Database

https://www.crosscanon.com/
159•jacksonastone•2d ago•91 comments

Show HN: Play puzzle games in a feed like TikTok

https://puzzle.express
6•trancence•13h ago•4 comments

Show HN: Nub – A Bun-like all-in-one toolkit for Node.js

https://github.com/nubjs/nub
274•colinmcd•3d ago•80 comments

Show HN: Wordit – Change One Letter, Keep the Chain Going

https://victorribeiro.com/wordit/
43•atum47•4d ago•30 comments

Show HN: LookAway, a Mac break reminder that knows when not to interrupt

https://lookaway.com
75•_kush•3d ago•25 comments

Show HN: peerd – AI agent harness that runs entirely in your browser

https://github.com/NotASithLord/peerd
74•NotASithLord•4d ago•23 comments

Show HN: Nimic – Pure Python as a systems language with AOT compilation

https://github.com/dima-quant/nimic
42•dima-quant•4d ago•28 comments

Show HN: TikZ Editor – WYSIWYG editor for figures in LaTeX

https://tikz.dev/editor/
449•DominikPeters•4d ago•74 comments

Show HN: Secs-man, a secrets manager you can (not) rely on

https://github.com/Fran314/secrets-manager-rs
30•Fran314•2d ago•19 comments

Show HN: Neural Particle Automata

https://selforg-npa.github.io/
88•esychology•4d ago•19 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)