frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Programmable timer web app (for gym workouts or stretching sessions)

https://timer.jotaen.net
6•jotaen•4h ago•1 comments

Show HN: Woxi - Open-source Mathematica / Wolfram Language reimplementation

https://woxi.ad-si.com
244•adius•12h ago•39 comments

Show HN: Posts grew 6x since ChatGPT, but success rate remained relatively flat

https://www.orangecrumbs.com/stories/show-hn
2•oyster143•47m ago•1 comments

Show HN: KidScreen, a finite YouTube shelf chosen by parents

https://kidscreen.app
34•Tintly•11h ago•29 comments

Show HN: Seisin – a desktop app that turns your job search into analytics

https://getseisin.com
5•LudbaSH•7h ago•0 comments

Show HN: Mooneva Cycle – Offline period tracker with no servers and no accounts

https://github.com/aradar46/Mooneva-Cycle-Private-Period-Tracker
3•aradar46•3h ago•0 comments

Show HN: Tamron Lens Utility Alternative on Linux

https://github.com/yikerman/tamron-lens-control
79•xiaoyu2006•5d ago•8 comments

Show HN: Git-knife – Edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
163•YonathanTesfaye•1d ago•100 comments

Show HN: Line9 – A Mermaid rendering engine with its own layout

https://line9.ai/diagram
83•jumpalongjim•6d ago•30 comments

Show HN: Smarter Shell History for Zsh

https://github.com/overflowy/zhist
11•overflowy•9h ago•5 comments

Show HN: Meteor shower, planet alignment, eclipse kit

https://lifesprites.com/share/0ACA25
8•jmtrevarton•9h ago•18 comments

Show HN: /show-me: agent skill for compact visual representations

https://www.humanlayer.com/blog/show-me-skill
5•dhorthy•6h ago•1 comments

Show HN: StarryKit – MCP for editable slides, posters and all visual designs

https://github.com/StarryKit/starrykit-plugin/
3•Mine77•4h ago•0 comments

Show HN: iPhone app takes simultaneous images from 2 lenses, fuses into 1 photo

https://photosynthesis.camera
322•sajomes•4d ago•299 comments

Show HN: Write.md – A free, open-source, themeable Markdown editor for macOS

https://writemd.app/
99•danielbilekq•1d ago•76 comments

Show HN: Snipsy – turn photos into a dated stamp keepsake, sent the same day

https://hosting-pages.netlify.app/snipsy
2•ashwinn11•6h ago•1 comments

Show HN: Harbofly, reclaim the 20–100GB of dev caches on your Mac

https://harbofly.app
2•buildcomcarlos•6h ago•0 comments

Show HN: Tanchi – Open-source AI prospecting agent that only automates email

https://github.com/tanchihq/tanchi
2•saysb•6h ago•1 comments

Show HN: Pane – An open-source browser that turns your work into living websites

https://github.com/abhishek-verma/Pane
2•vermaabhishek39•6h ago•1 comments

Show HN: CrewScore – coverage check for AI agent prompts (0.6.11)

https://crewscore.ai/
2•shmindmaster•6h ago•0 comments

Show HN: Sheetscope – query your documents with SQL

https://sheetscope.com/
2•ptkenn•6h ago•1 comments

Show HN: Dynobox – A test runner for AI agent skills and workflows

https://github.com/dynobox/dynobox
2•bhkdotdev•6h ago•0 comments

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

https://github.com/AntigmaLabs/ante
163•ubermon•2d ago•90 comments

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

https://cactuscompute.com/needle
525•HenryNdubuaku•2d ago•178 comments

Show HN: My pocket-sized Personal IoT device. Data-local by default

4•AJTSheppard•6h ago•0 comments

Show HN: Aphorio – 3,250,000 WebSocket sends in 0.002 seconds (Ryzen 9 9900X)

https://github.com/prettydiff/aphorio
3•austin-cheney•6h ago•1 comments

Show HN: What US households pay for electricity and gas, by state, since 2001

https://energy-maps.com
7•ebaumer•10h ago•2 comments

Show HN: AI 3D pop-out videos for Reels, Shorts and ads

https://videopopy.com
3•wowinter15•10h ago•1 comments

Show HN: GitHub Actions self-hosted runners on Modal Sandboxes

https://github.com/modal-projects/runner-modal
2•botirk•7h ago•1 comments

Show HN: Toposonico, a Music Map and Recommender

https://toposonico.com/#lon=9.9318&lat=-4.6522&z=14.00&entity=track&rowid=8714
2•deppep•7h ago•1 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)