Add below in .tmTheme
file
<dict>
<key>name</key>
<string>Function call</string>
<key>scope</key>
<string>meta.function-call variable.function</string>
<key>settings</key>
<dict>
fontStyle
Add below in .tmTheme
file
<dict>
<key>name</key>
<string>Function call</string>
<key>scope</key>
<string>meta.function-call variable.function</string>
<key>settings</key>
<dict>
fontStyle
SSH RSA Key Generation
Mac
ssh-keygen -t rsa -b 4096 -C "<email_address>"
pbcopy < ~/.ssh/id_rsa.pub
WSL
ssh-keygen -t rsa -b 4096 -C ""
This article is not only to help those who are entering front-end development world but also organize what I have in my brain and advance to the next level. The process is obviously not optimal but personal and full of mistakes. However, I think there might be a couple of lessons even in mistakes.
It is essential to get familiar with terminal environment if you decide to become a front-end developer. Most of the configurations for development are under the hood and terminal is the gateway to reach them.
1.1 Update OS X and install Xcode
Git is an open source version control system. Git is often considered as a software only for programmers and developers, however, it is very useful for web designers as well. If you are a UX/UI designer who can use Git, it would be much easier for you to work with developers. In addition, they will love you.
This is an article for essential Git commands that I use very often. I will not cover the basic concept of it here. Instead, I will list up essential and useful Git commands that I use very often to save your time to look up those commands.
I assume you are using git hosting services such as Github or Bitbucket, and able to use git commands through terminal.
1. Setup local and remote Git repository
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops | |
"generators": false, // enable generators | |
"objectLiteralComputedProperties": false, // enable computed object literal property names |