Full HTTPS REST server in Node.js

I will show you now, how to write a simple HTTPS JSON REST server using node.js components. Grab a beer, open your IDE and let’s start hacking. 0. Create certificates. If you don’t have valid https certificates, you can generate one for testing purposes. If you need one cool certificate, you can join cacert community. … Read more

/away for a while

Since I am at this perfect location for couple of weeks and will have bandwidth only to do my daily job I will not be able to read all of my mails, but I will check shopov.bogomil -at- gmail.com if you want to drop me a line. I will be offline from IRC also.

Mozilla, Softpedia and addons

I just received an email : Mozilla Balkans info widget, one of your products, has been added to Softpedia’s database of software programs for the Windows operating system. It is featured with a description text, screenshots, download links and technical details on this page: http://www.softpedia.com/get/Internet/Internet-Applications-Addons/Mozilla-Extensions/Mozilla-Balkans-info-widget.shtml The description text was created by our editors, using sources … Read more

Capture API

I am looking forward Capture API to become part of Firefox soon. It’s really cool if I have the opportunity to capture my camera and my microphone. function success(data) { var container = document.createElement(“div”); document.body.appendChild(container); for (var i in data) { var img = document.createElement(“img”); img.src = data[i].uri; container.appendChild(img); } } function error(err) { alert(err.message … Read more