-
Brian Han
I started to really enjoy typing on my mechnical keyboard.
Gotta love that clickity-clack!
I was more motivated to make this whole “doing dev stuff on PC” a real thing and I knew I would be writing mo...
-
Brian Han
package.json should look like this:
{
"name": "every-new-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && e...
-
Brian Han
The Problem
It’s difficult for everyone to commit to using a new tool. It’s not maintainable to ask every team member to install a new plugin. This is generally the problem with any new tools you want...
-
Brian Han
Install
Parcel is a really great alternative to Webpack. If I decide I want to use SCSS in my project, I usually reach for Parcel as my preferred way of compiling SCSS to CSS.
Create a new project, in...
-
Brian Han
squash
In Git, squashing is a way to combine commits — newer commits you choose to
squash will meld into older commits. Doing this results in a cleaner commit history.
When I was at IBM working on Ca...
-
Brian Han
I build a lot of websites and simple prototypes using Node.js and Sass.
Both of them are great for what I do at work and for my own side projects.
Where I work at Bluemix, we’re interested in using th...