Results 61 comments of Boris Gjenero
trafficstars

Just created Emscripten issue for this: https://github.com/kripken/emscripten/issues/5022

There are two obstacles restricting your Internet use from a browser. First, you have the [same-origin policy](https://en.wikipedia.org/wiki/Same-origin_policy) limiting where you can connect. You then only use certain protocols, and can't...

Here's Jason Scott's blog post on it: http://ascii.textfiles.com/archives/4546 I don't know if the site is still up, and forget where it was located.

For building you could: `emconfigure ./configure CPPFLAGS="-s USE_SDL=2 -s USE_SDL_NET=2" LDFLAGS="-s USE_SDL_NET=2"` I think this is stupid and maybe I should do something to make it more user-friendly. There, CPPFLAGS...

@veso266, you must be using an old version of Emscripten, which doesn't understand USE_SDL_NET. Current Emscripten incoming understands it. So, you need to either use a newer Emscripten, or build...

@veso266, you're trying to listen for incoming connections? I don't think WebSockets allows you to do that. You need to run a server which will accept a WebSockets connection and...

> PPS: I know this isn't in a scope of this issue but if my windows (and it also affects linux) keyboard layout is set to SL-SI (Slovenian) or anything...

I've thought about this before but never got around to implementing anything. For now I'm focusing on making more programs usable, fixing problems and improving performance. I was thinking I...

It seems BrowserFS is the best place for this. I created [a branch](https://github.com/dreamlayers/BrowserFS/tree/imlshybrid) based on https://github.com/dreamlayers/em-dosbox/issues/4#issuecomment-71932465 by @DerKoun. I got it to compile by putting `enableLs()` in `ImLsHybridStore` and making...