Vagrant goes a step further then VirtualBox, by automating all of the steps that you must take in order to create a virtual VM. You no longer need to go and download and ISO, go through each of the install processes, setup network cards, mount and unmount shares … [Read more...] about Introduction to Vagrant
JavaScript
How to setup Braintree Recurring Billing using NodeJS
Recurring billing is a complex feature that is too common in most modern SAAS applications, if you had the luxury of setting up recurring billing using a service like Authorize.net, you know what the pains and struggles that one has to go through in order to … [Read more...] about How to setup Braintree Recurring Billing using NodeJS
How to setup MathJax with a CMS(WordPress, Ghost) plus sweet syntax highlighting
Science is a way of thinking ― Carl Sagan If you are involved in any type of science (life science, social science, physical science, formal science) more then likely you are doing some type of math. If it's just basic arithmetic in sociology or advance … [Read more...] about How to setup MathJax with a CMS(WordPress, Ghost) plus sweet syntax highlighting
Free as in Beer | Why I work for Free just for you
Last month on January 17th I launched learnmean.com, at first it was just a simple landing page to try to get users to convert over to paying for my content. After all I did spend a large amount of effort and time creating the eBook and the video series, being … [Read more...] about Free as in Beer | Why I work for Free just for you
MEAN.IO Tutorial, PART 6 Moving over to production
This tutorial is now outdated. If you want to stay up to date with the MEAN Stack you will want to check out this Complete Guide instead. Moving over a MEAN application to production For this setup, I am using the following stack to serve my application to … [Read more...] about MEAN.IO Tutorial, PART 6 Moving over to production
CS 10 Berkeley class notes
Lecture 2:How 3D graphics works Films, television, print Video games million of polygons per seconds four stage pipeline modeling animation Lecture 3:Video games Shigeru Miyamoto Donkey kong Super Mario bros … [Read more...] about CS 10 Berkeley class notes
The switch statement in Javascript
In the following code it displays the switch command followed by a break. So you set your variable to the case you want to assign to it, and the price should appear in the pop up window. So what the switch command its doing it's going threw every single different … [Read more...] about The switch statement in Javascript
Writing conditional code in JavaScript
= assignment == equality === strict equality variable … [Read more...] about Writing conditional code in JavaScript