With Unix sockets you can even have in-order datagram semantics, which I think is just neat!
Thanks! Although I don't agree with all of the points, it was a good read.
Not sure if it's a new one, but I'm liking https://www.coursera.org/learn/financial-markets-global thus far.
Sadly no, but I don't think there's much of a ping difference on a good network. With WebRTC (datachannels in UDP mode) you just get the benefits of UDP (or lack thereof :)).
Basically yes, a custom datachannel implementation. Haven't updated it lately, but it's up at https://github.com/seemk/WebUDP
If I remember right, this one is over WebSockets and the server is compiled to js as well. My version had a native server and browser clients.
Quake's source code is very hackable. I forked ioquake3 for a personal project and it was surprisingly easy to add WebRTC support to the C codebase, so you could play it in your browser over WebRTC :)
The forked ioquake3 is available at https://github.com/seemk/ioq3 However it's not trivial to get it working at the moment, will hopefully soon come back to this project and finish it :D
You can. I've used WebRTC for multiplayer support in Quake 3 compiled to WebAssembly.
You can also prerender the tiles on a powerful machine and host them on a cheap instance (assuming you don't need very large regions). A while ago I created an OSM server (https://github.com/seemk/TileSweep) to do this…
Not really, I can still use my mobile ID just fine. Not even in a hurry to get my certificates updated.
Totally agree with your point on HOG + SVM, I think it is obsoleted by convolutional neural networks. I wrote a realtime human detection library [1] for a robotics project that used HOG + a simple neural net for…
Definitely a bit weird. Where are you located? The echo demo server is hosted in the Netherlands. That's how the round trip histogram looks for me in Estonia: https://i.imgur.com/iBoqwe4.png I'll take a look later if…
An "UDP" server for browser clients: https://github.com/seemk/WebUDP
Posted this recently in another thread, but maybe someone will find https://github.com/seemk/WebUdp useful as there have been many WebRTC threads lately. It's a WebRTC DataChannel server implementation for out of order,…
You might want to check out the project I've been working on: https://github.com/seemk/WebUdp It's a minimal WebRTC server implementation (SDP, STUN, SCTP, DTLS and everything else) contained in a single library. Note…
With Unix sockets you can even have in-order datagram semantics, which I think is just neat!
Thanks! Although I don't agree with all of the points, it was a good read.
Not sure if it's a new one, but I'm liking https://www.coursera.org/learn/financial-markets-global thus far.
Sadly no, but I don't think there's much of a ping difference on a good network. With WebRTC (datachannels in UDP mode) you just get the benefits of UDP (or lack thereof :)).
Basically yes, a custom datachannel implementation. Haven't updated it lately, but it's up at https://github.com/seemk/WebUDP
If I remember right, this one is over WebSockets and the server is compiled to js as well. My version had a native server and browser clients.
Quake's source code is very hackable. I forked ioquake3 for a personal project and it was surprisingly easy to add WebRTC support to the C codebase, so you could play it in your browser over WebRTC :)
The forked ioquake3 is available at https://github.com/seemk/ioq3 However it's not trivial to get it working at the moment, will hopefully soon come back to this project and finish it :D
You can. I've used WebRTC for multiplayer support in Quake 3 compiled to WebAssembly.
You can also prerender the tiles on a powerful machine and host them on a cheap instance (assuming you don't need very large regions). A while ago I created an OSM server (https://github.com/seemk/TileSweep) to do this…
Not really, I can still use my mobile ID just fine. Not even in a hurry to get my certificates updated.
Totally agree with your point on HOG + SVM, I think it is obsoleted by convolutional neural networks. I wrote a realtime human detection library [1] for a robotics project that used HOG + a simple neural net for…
Definitely a bit weird. Where are you located? The echo demo server is hosted in the Netherlands. That's how the round trip histogram looks for me in Estonia: https://i.imgur.com/iBoqwe4.png I'll take a look later if…
An "UDP" server for browser clients: https://github.com/seemk/WebUDP
Posted this recently in another thread, but maybe someone will find https://github.com/seemk/WebUdp useful as there have been many WebRTC threads lately. It's a WebRTC DataChannel server implementation for out of order,…
You might want to check out the project I've been working on: https://github.com/seemk/WebUdp It's a minimal WebRTC server implementation (SDP, STUN, SCTP, DTLS and everything else) contained in a single library. Note…