This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
21–30 of 93 posts
Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#22One of the interesting things about Polyglot is that nobody did it any sooner. It would have been feasible a decade ago or two ago.
Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#23I love the idea of applications which exist in one file which you can run anywhere. I've been working towards this with my serverless platform; you can build complex data-driven apps with just one .html file and mostly declarative HTML markup (thanks to web-components which are loaded from a remote server). With modern browser features, you don't need a bundling system. Once you do away with it; a whole universe is o…
Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#24On a related note -- when I see the minuscule filesize of the original Zelda game on emulators, I marvel at how little text/code/information could produce how much wonder, how far-reaching impact, and how many hours of enchantment for me. https://en.wikipedia.org/wiki/The_Legend_of_Zelda_(video_gam...
Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#25Wonder why they don't give a demo/link to the browser version
It's the same file, you just rename it to end in '.html'
Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#26I love the idea of applications which exist in one file which you can run anywhere. I've been working towards this with my serverless platform; you can build complex data-driven apps with just one .html file and mostly declarative HTML markup (thanks to web-components which are loaded from a remote server). With modern browser features, you don't need a bundling system. Once you do away with it; a whole universe is o…
Sadly a lot of browser features are inaccessible from non-https contexts.
https://developer.mozilla.org/en-US/docs/Web/Security/Defens...
Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#27Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#28Not cross-platform, but I'm reminded of the kkrieger game for Windows which was a 96k FPS game that looked visually impressive for the time. https://web.archive.org/web/20100304155706/http://www.thepro...
From that link: Still works on modern PCs! Was able to DL and launch.
Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#29[flagged]
Re: This game is a single 13 KiB file that runs on Windows, Linux and in the Browser
#30Earlier quoted context omitted.
Sadly a lot of browser features are inaccessible from non-https contexts.
Don't most (all?) browsers consider file:// and localhost to be secure for the sake of enabling those features? https://developer.mozilla.org/en-US/docs/Web/Security/Defens...
https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/COR...
The security risk : https://www.mozilla.org/en-US/security/advisories/mfsa2019-2...
You need a local webserver. Or bundle everything in one html file.