Angularjs is a great framework. The problem is that minification is a bit more complicated because of angular’s dependency injection. This project shows how you can minify an angular app. You can find more information here.
Saturday, February 14, 2015
Grunt is amazing! It automates tasks for you in the most amazing way. It allows you to run tests, minify css/js files, combine js files and much much more.
Saturday, February 14, 2015
Css is awesome, but it has a lot of limitations. For example, lets say that you have 1 color that you place everywhere (brand color). If you wanted to change this color, you would either go through each css file looking for it with control+f/cmd+f or you would do a find and replace. That’s very inefficient. Less allows you to code css like a programming language. How does it work?
Saturday, February 14, 2015
If you haven’t already, look at how to initialize React here. You can find more information here.
Saturday, February 14, 2015
I’ve heard some nice things about Facebook’s ReactJS Framework. So here’s how to setup React with Node. You can find more information here.g
Saturday, February 14, 2015
AngularJS is amazing but I realized that I don’t actually have a guide on how to use it from scratch… So here we go. You can find more information here.
Saturday, February 14, 2015
NodeJS has the amazing npm, which is one of my favorite package managers. It handles all your modules neatly inside the package.json file. This is great for the server side, but what about the client side? That’s where bower comes in handy.
Saturday, February 14, 2015
This post is all about the differences between Express v3 and v4. You can find more information here.
Saturday, February 14, 2015
This is the old way of using Browserify with React and Node. To see the new version, look at Using React with Grunt and Browserify.
Friday, February 13, 2015
This post is a little different. I’m going to be turning my JavaToRemember Repo into a post so that it’s easier to search. You can find the old README.md here. Credits to source article here…
Saturday, February 7, 2015
string tree graph sorting bit manipulation regex hashmap socket file
Closures are a very interesting feature of JavaScript. To understand how they really work, you must read this amazing article by Gustavo Duarte. You can find it here.
Saturday, February 7, 2015
In swift, when we want to iterate over a sequence, we use a generator. It’s not the same as a generator in python or in javascript. This post is all about how to create and use them. More information about them can be found here.
Monday, February 2, 2015
There is an amazing article that mentions the more important differences between the 2 versions of python. You can find it here.
Monday, February 2, 2015
Decorators allow you to modify a function when it gets called. It’s used for things like memoization that keeps track of return statements. You can find more information here.
Monday, February 2, 2015
A cool feature to be able to modify multiple things at once is refs
. By placing a ref on html elements inside a component’s render return, you can access them anywhere inside the component’s methods. Here’s the Egghead Video for you to follow along.
Sunday, February 1, 2015