A brilliant invention
2016-04-30
We live as long as we fly
I enabled SSL on the blog, but I'm not forcing it yet, still too much to tweak.
It's all thanks to the organization https://letsencrypt.org , which hands out certificates to anyone who wants one, and some handy software installs them on Windows Server (on Linux, support is native). I read about the software from a well-known dude https://weblog.west-wind.com/posts/2016/Feb/22/Using-Lets-Encrypt-with-IIS-on-Windows
Very funny, but only for programmers
Still addictive, and to think it was made in 1984!
I'm also amazed at how far progress has come - DOS games running in the browser.
<div id="dosbox"></div>
<br/>
<script type="text/javascript" src="/js/js-dos-api.min.js"></script>
<script type="text/javascript">
var dosbox = new Dosbox({
id: "dosbox",
onload: function (dosbox) {
dosbox.run("/files/lj/alley_cat.zip", "./CAT.EXE");
},
onrun: function (dosbox, app) {
console.log("App '" + app + "' is runned");
}
});
</script>