I love self hosted apps, or BYOS (Bring Your Own Server). Today, with cloud providers like Linode, AWS, Rackspace and Digital Ocean, you can quickly spin up a VPS and deploy these applications to the cloud. My favorites at the moment are the following: Mailpile.is: https://www.mailpile.is/ What Makes Mailpile Different? Search – Powerful search &…
Month: February 2015
JavaScript Module Pattern
The Javascript module is a great design pattern for Javascript coders. It makes code simple to read and easy to use. It allows you to hide private methods inside your module and expose public properties that you want to expose when you use the Revealing Module Pattern. More importantly you can say bye bye to…