<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Frankie Valentine</title>
    <description>The latest articles on DEV Community by Frankie Valentine (@v3frankie).</description>
    <link>https://dev.to/v3frankie</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F88781%2Fb427a7be-7605-494e-8c51-4627ac596ca5.png</url>
      <title>DEV Community: Frankie Valentine</title>
      <link>https://dev.to/v3frankie</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/v3frankie"/>
    <language>en</language>
    <item>
      <title>Minified: Setup your Mac for development, 2020 edition.</title>
      <dc:creator>Frankie Valentine</dc:creator>
      <pubDate>Wed, 12 Feb 2020 05:18:09 +0000</pubDate>
      <link>https://dev.to/v3frankie/minified-setup-your-mac-for-development-2020-edition-32l</link>
      <guid>https://dev.to/v3frankie/minified-setup-your-mac-for-development-2020-edition-32l</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Updated 3/27/2020: Removed create-react-app global install as it is now recommended to use npx.&lt;br&gt;
Updated 7/21/2020: Fixed typos.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A minified version of my first Dev.to &lt;a href="https://dev.to/v3frankie/setup-your-mac-for-development-2020-edition-1c8a"&gt;post&lt;/a&gt;. If you need a more detailed walkthrough I suggest reading it first!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Initial setup:

&lt;ul&gt;
&lt;li&gt;Filevault: On&lt;/li&gt;
&lt;li&gt;Disable Ask Siri&lt;/li&gt;
&lt;li&gt;Location Services: On (Limited)&lt;/li&gt;
&lt;li&gt;Check software updates&lt;/li&gt;
&lt;li&gt;Photos app &amp;gt; disable iCloud sync&lt;/li&gt;
&lt;li&gt;Messages app &amp;gt; configure iMessage accounts&lt;/li&gt;
&lt;li&gt;App Store &amp;gt; install previously installed applications&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Terminal Finder Commands:

&lt;ul&gt;
&lt;li&gt;Show Library Folder &amp;gt;  &lt;code&gt;chflags nohidden ~/Library&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Show hidden files &amp;gt;  &lt;code&gt;defaults write com.apple.finder AppleShowAllFiles YES&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Show path bar &amp;gt; &lt;code&gt;defaults write com.apple.finder ShowPathbar -bool true&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Show status bar &amp;gt; &lt;code&gt;defaults write com.apple.finder ShowStatusBar -bool true&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;System Preferences:

&lt;ul&gt;
&lt;li&gt;Keyboard &amp;gt; Text &amp;gt; Disable “Correct spelling automatically”&lt;/li&gt;
&lt;li&gt;Security and Privacy &amp;gt; Firewall &amp;gt; On&lt;/li&gt;
&lt;li&gt;Security and Privacy &amp;gt; General &amp;gt; Allow App Store and identified developers&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Alfred:

&lt;ul&gt;
&lt;li&gt;Install &lt;a href="https://www.alfredapp.com/" rel="noopener noreferrer"&gt;here&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Purchase &lt;a href="https://www.alfredapp.com/powerpack/" rel="noopener noreferrer"&gt;Powerpack&lt;/a&gt; or activate license on install&lt;/li&gt;
&lt;li&gt;Install &lt;a href="https://gist.github.com/felixqueisler/e0268924a409275c6daec735aa79616b#file-minimal-2019-alfredappearance" rel="noopener noreferrer"&gt;Alfred Theme Minimal 2019 · GitHub&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Command Line Tools, Homebrew &amp;amp; Casks:

&lt;ul&gt;
&lt;li&gt;Install Command Line Tools &lt;code&gt;xcode-select --install&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install Homebrew &lt;code&gt;/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install Node and pin &lt;code&gt;brew install node &amp;amp;&amp;amp; brew pin node&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install &lt;a href="https://formulae.brew.sh/formula/" rel="noopener noreferrer"&gt;Casks&lt;/a&gt;:
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;brew cask install hyper
brew cask install visual-studio-code
brew cask install google-chrome
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Hyper, zsh &amp;amp; oh-my-zsh:

&lt;ul&gt;
&lt;li&gt;Open Hyper&lt;/li&gt;
&lt;li&gt;Check if zsh is installed &lt;code&gt;zsh --version&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;If not, install &lt;code&gt;brew install zsh&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Change shells &lt;code&gt;chsh -s /bin/zsh&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Check shell change &lt;code&gt;echo $SHELL&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install oh-my-zsh: &lt;code&gt;sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Setup Homebrew alias: &lt;code&gt;nano ~/.zshrc&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;Add alias:  &lt;code&gt;alias brewup=‘brew update; brew upgrade; brew cleanup; brew doctor’&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Add zshconfig alias: &lt;code&gt;alias zshconfig=“code ~/.zshrc”&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Save file: &lt;code&gt;CTRL + O&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Exit: &lt;code&gt;CTRL + X&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;Git and SSH

&lt;ul&gt;
&lt;li&gt;Config Git:

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;git config --global user.name “First Last” (keep the quotes)&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git config --global user.email “Email” (keep the quotes)&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git config --get user.name&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git config --get user.email&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;  Git alias setup:

&lt;ul&gt;
&lt;li&gt;Add below code to  &lt;code&gt;code ~/.gitconfig&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Replace name and email
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[user]
name = First Last
email = student@example.com
[alias]
a = add
ca = commit -a
cam = commit -am
s = status
pom = push origin master
pog = push origin gh-pages
puom = pull origin master
puog = pull origin gh-pages
cob = checkout -b
[color]
ui = auto
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;SSH:

&lt;ul&gt;
&lt;li&gt;Check if one exists: &lt;code&gt;ls ~/.ssh/id_rsa&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Generate key and replace email: &lt;code&gt;ssh-keygen -t rsa -b 4096 -C “student@example.com”&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Add key: &lt;code&gt;ssh-add ~/.ssh/id_rsa&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Go to github.com and add new key to profile in Settings&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;VS Code:

&lt;ul&gt;
&lt;li&gt;Open Command Palette and add shell command: &lt;code&gt;shell command: Install ‘code’ command in PATH’&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install JavaScript support from Welcome screen&lt;/li&gt;
&lt;li&gt;Install Atom keyboard shortcuts from Welcome screen&lt;/li&gt;
&lt;li&gt;Install extensions:

&lt;ul&gt;
&lt;li&gt;npm Intellisense&lt;/li&gt;
&lt;li&gt;Path Intellisense&lt;/li&gt;
&lt;li&gt;ESLint&lt;/li&gt;
&lt;li&gt;Prettier - Code formatter&lt;/li&gt;
&lt;li&gt;Live Share&lt;/li&gt;
&lt;li&gt;Bookmarks&lt;/li&gt;
&lt;li&gt;Auto Close Tag&lt;/li&gt;
&lt;li&gt;Bracket Pair Colorizer 2&lt;/li&gt;
&lt;li&gt;DotENV&lt;/li&gt;
&lt;li&gt;GraphQL&lt;/li&gt;
&lt;li&gt;indent-rainbow&lt;/li&gt;
&lt;li&gt;Live Server&lt;/li&gt;
&lt;li&gt;Debugger for Chrome (if using Chrome)&lt;/li&gt;
&lt;li&gt;Peacock&lt;/li&gt;
&lt;li&gt;Color highlight&lt;/li&gt;
&lt;li&gt;Markdown Preview Enhanced&lt;/li&gt;
&lt;li&gt;Babel JavaScript&lt;/li&gt;
&lt;li&gt;Git History&lt;/li&gt;
&lt;li&gt;Simple React Snippets&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Install themes:

&lt;ul&gt;
&lt;li&gt;Atom One Dark&lt;/li&gt;
&lt;li&gt;Atom One Light&lt;/li&gt;
&lt;li&gt;Github theme&lt;/li&gt;
&lt;li&gt;Material theme pack&lt;/li&gt;
&lt;li&gt;Icon pack:

&lt;ul&gt;
&lt;li&gt;Material icon&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;Optional: 

&lt;ul&gt;
&lt;li&gt;Zeit theme: &lt;code&gt;curl https://zeit-theme.now.sh | tar xvz -C ~/.vscode/extensions&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;JetBrains Mono font family change:

&lt;ul&gt;
&lt;li&gt;Install the font &lt;a href="https://www.jetbrains.com/lp/mono/" rel="noopener noreferrer"&gt;here&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Open Font Book &amp;gt; Hit + &amp;gt; Locate the font folder in Downloads&lt;/li&gt;
&lt;li&gt;Hyper setup: 

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;code ~/.hyper.js&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Change fontFamily to JetBrains Mono&lt;/li&gt;
&lt;li&gt;Change fontSize to 16&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;VS Code setup:

&lt;ul&gt;
&lt;li&gt;Open Command Palette&lt;/li&gt;
&lt;li&gt;Search ‘user settings’ (JSON)&lt;/li&gt;
&lt;li&gt;Font Family JetBrains Mono&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;  Google Chrome dev tools theme:

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/taniarascia/new-moon-chrome-devtools" rel="noopener noreferrer"&gt;Tania Rascia: New Moon Dev Tools Theme&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;n-install, npm, &amp;amp; Yarn

&lt;ul&gt;
&lt;li&gt;Install n: &lt;code&gt;brew install n&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Make cache folder and change permissions:

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;sudo mkdir -p /usr/local/n&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;sudo chown -R $(whoami) /usr/local/n&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;sudo chown -R $(whoami) /usr/local/bin /usr/local/lib /usr/local/include /usr/local/share&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Install Yarn: &lt;code&gt;brew install Yarn&lt;/code&gt;
&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;mySQL, MongoDB, &amp;amp; note on other Databases

&lt;ul&gt;
&lt;li&gt;Tap services: &lt;code&gt;brew tap homebrew/services&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install mySQL: &lt;code&gt;brew install mysql@5.7&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Tap MongoDB: &lt;code&gt;brew tap mongodb/brew&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Install MongoDB: &lt;code&gt;brew install mongodb-community@4.2&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;CLI’s:

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;npm install -g now&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;npm install -g netlify-cli&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;npm install -g surge&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;npm install -g gatsby-cli&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;npm install -g vue-cli&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;brew install hub&lt;/code&gt; (Github official CLI in beta)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Additional Apps:

&lt;ul&gt;
&lt;li&gt;Notion&lt;/li&gt;
&lt;li&gt;Slack&lt;/li&gt;
&lt;li&gt;Firefox Developer Edition&lt;/li&gt;
&lt;li&gt;Spectrum&lt;/li&gt;
&lt;li&gt;Numi&lt;/li&gt;
&lt;li&gt;Magnet&lt;/li&gt;
&lt;li&gt;Pocket&lt;/li&gt;
&lt;li&gt;Parcel&lt;/li&gt;
&lt;li&gt;Dashlane&lt;/li&gt;
&lt;li&gt;Spark&lt;/li&gt;
&lt;li&gt;Postman&lt;/li&gt;
&lt;li&gt;GraphQL Playground&lt;/li&gt;
&lt;li&gt;Dozer&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>mac</category>
      <category>2020</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Setup your Mac for development, 2020 edition.</title>
      <dc:creator>Frankie Valentine</dc:creator>
      <pubDate>Wed, 01 Jan 2020 08:08:36 +0000</pubDate>
      <link>https://dev.to/v3frankie/setup-your-mac-for-development-2020-edition-1c8a</link>
      <guid>https://dev.to/v3frankie/setup-your-mac-for-development-2020-edition-1c8a</guid>
      <description>&lt;p&gt;Please see end of article for revisions and updates.&lt;/p&gt;

&lt;p&gt;My first post on Dev.to will be an extension of my first Medium post from January of 2018. This post has been removed because I no longer continue to support Medium and will be posting on Dev.to from here on out.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introduction and goals
&lt;/h2&gt;

&lt;p&gt;It’s been a while and I’m ready to come back and tackle another post for getting setup with your Mac in 2020. I still have a relatively similar setup and things haven’t changed much aside from getting more in touch and a lot more comfortable using new tools.&lt;/p&gt;

&lt;p&gt;This will give you a more advanced setup and these tools will require proper research to become more in touch with each of them. The introduction to this post is purely getting started, but I wanted to include it, just as I had it in my first one. Feel free to skip down to further sections if you are already set up with the intro stuff.&lt;/p&gt;

&lt;p&gt;The initial setup of your Mac includes Filevault as a setup step. I recommend using it. Also, location services are handy because you can use Find My to locate your device. I recommend this enabled too.&lt;/p&gt;

&lt;p&gt;I would be quick to mention that if you haven’t already opened up your System Preferences and make sure you don’t have any new software updates.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgwpksshz7yw8mygkz5s3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgwpksshz7yw8mygkz5s3.png" alt="Alt Text" width="664" height="220"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Keeping your system up to date is crucial. Keep an eye out for updates on the regular.&lt;/p&gt;

&lt;p&gt;If you are short on space I would also suggest loading up the Photo's app and disabling iCloud sync in the preferences. Messages also needs to be configured if you are an iMessage user so go ahead and load that up as well. I would recommend keeping this app pretty clean as messages can take up a lot of storage.&lt;/p&gt;

&lt;p&gt;Finally, head to the App Store after you have completed this step and install each of the applications you use with your devices that are also Mac Apps. Upon completing this we can get into the nuts and bolts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Terminal and System Preferences
&lt;/h2&gt;

&lt;p&gt;Open your Terminal via the search bar in the top right corner. This is also called &lt;em&gt;Spotlight&lt;/em&gt; which is a quick way to pull up applications on your system. When the Terminal is up make sure you use the command &lt;code&gt;pwd&lt;/code&gt; to show where you are located in the system (i.e. /Users/you).&lt;/p&gt;

&lt;p&gt;If at any point the following commands give you a permission error. This means you are not granted Administer privileges to utilize the Command Line. You will have to use the &lt;code&gt;sudo&lt;/code&gt; command before and type in your password in Terminal.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F22mgsni3dy7s5ad0pymf.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F22mgsni3dy7s5ad0pymf.jpg" alt="Alt Text" width="697" height="478"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The following commands will greatly increase the accessibility of your Mac during development.&lt;/p&gt;

&lt;p&gt;Show Library folder:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;chflags nohidden ~/Library
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Show hidden files:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;defaults write com.apple.finder AppleShowAllFiles YES
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Show path bar:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;defaults write com.apple.finder ShowPathbar -bool true
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Show status bar:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;defaults write com.apple.finder ShowStatusBar -bool true
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Go to System Preferences for the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Keyboard &amp;gt; Text &amp;gt; Disable “Correct spelling automatically”&lt;/li&gt;
&lt;li&gt;Security and Privacy &amp;gt; Firewall &amp;gt; On&lt;/li&gt;
&lt;li&gt;Security and Privacy &amp;gt; General &amp;gt; Allow App Store and identified developers&lt;/li&gt;
&lt;li&gt;File Sharing &amp;gt; Off&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Alfred
&lt;/h2&gt;

&lt;p&gt;Alfred is a replacement to Spotlight. I cannot give enough light to how much my inspiration has increased to speed up my workflow using my Mac with Alfred. Alfred can be a productive companion to your web development workflow and I recommend purchasing the Powerpack (25 euros aka $28 US). Powerpack adds great features such as clipboard history, a snippet manager, and workflows which are excellent. I highly recommend using the snippet and clipboard tools for your code.&lt;/p&gt;

&lt;p&gt;Install Alfred: &lt;a href="https://www.alfredapp.com/" rel="noopener noreferrer"&gt;here&lt;/a&gt;&lt;br&gt;
I changed the shortcut to access Alfred to the shortcut that Spotlight uses &lt;code&gt;CMD + Spacebar&lt;/code&gt;. You can do this in the Spotlight settings in System Preferences. Locate the Keyboard Shortcuts tab in the bottom left to disable the shortcut or change it.&lt;/p&gt;

&lt;p&gt;More info is located at the &lt;a href="https://www.alfredapp.com/" rel="noopener noreferrer"&gt;Alfred&lt;/a&gt; site and &lt;a href="https://www.alfredapp.com/powerpack/" rel="noopener noreferrer"&gt;Powerpack&lt;/a&gt; page.&lt;/p&gt;

&lt;p&gt;Also, I use this awesome minimal theme from Felix Queisler:&lt;br&gt;
&lt;a href="https://gist.github.com/felixqueisler/e0268924a409275c6daec735aa79616b#file-minimal-2019-alfredappearance" rel="noopener noreferrer"&gt;Alfred Theme Minimal 2019 · GitHub&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Download the zip and click the theme file to activate it.&lt;/p&gt;
&lt;h2&gt;
  
  
  Command Line Tools, Homebrew &amp;amp; Casks
&lt;/h2&gt;

&lt;p&gt;Every developer utilizes &lt;em&gt;Command Line Tools&lt;/em&gt;. A simple terminal command will allow you to download these. It will ask you to confirm after you have entered the command.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;xcode-select --install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Homebrew &amp;amp; Casks
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://brew.sh/" rel="noopener noreferrer"&gt;Homebrew&lt;/a&gt;, it’s the missing package manager for MacOS, and quite powerful at that.&lt;/p&gt;

&lt;p&gt;Copy and paste the following code into your terminal to install Homebrew.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It will ask you to enter 'Return' to confirm the install.&lt;/p&gt;

&lt;p&gt;I ran into an issue upgrading Node with Homebrew and our Node version manager (discussed later). So we'll want to install it and pin the formula so it doesn't update to any newer versions. You can always 'unpin' it later on.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;brew install node
brew pin node
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Casks are an extension of Homebrew and it allows you to install applications with one command. It brings together 3888 Casks maintained by 5169 contributors. Search the casks &lt;a href="https://formulae.brew.sh/formula/" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Install these essentials:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;brew cask install ‘hyper’
brew cask install ‘visual-studio-code’
brew cask install ‘google-chrome’
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;del&gt;I ran into an issue of VSCode not wanting to open with MacOS's new Security and Privacy settings. If they fail to open you will have to go to System Preferences (Security and Privacy &amp;gt; General tab) and it will show at the bottom that you still wish to open the application.&lt;/del&gt;&lt;/p&gt;

&lt;p&gt;Also, if Chrome isn’t your browser of choice feel free to search another or use Safari. Firefox Developer Edition is getting quite good!&lt;/p&gt;

&lt;h2&gt;
  
  
  Hyper Terminal &amp;amp; oh-my-zsh
&lt;/h2&gt;

&lt;p&gt;Let’s talk a bit about that first Cask we installed, &lt;a href="https://hyper.is/" rel="noopener noreferrer"&gt;Hyper™&lt;/a&gt; terminal. It’s created by the individuals over at &lt;a href="https://vercel.com/" rel="noopener noreferrer"&gt;Vercel&lt;/a&gt; and their tools are incredible. I’ve really enjoyed using them.&lt;/p&gt;

&lt;p&gt;Hyper is an &lt;a href="https://electronjs.org/" rel="noopener noreferrer"&gt;Electron&lt;/a&gt; build terminal replacement. It’s completely built on HTML, CSS, and JavaScript. Cool, right?&lt;/p&gt;

&lt;p&gt;We will continue to utilize Hyper as our main terminal for the duration of this setup tour.&lt;/p&gt;

&lt;p&gt;Every new Catalina Mac will be utilizing &lt;em&gt;zsh&lt;/em&gt; shell or “z shell” instead of a Bash shell. We are going to have this setup for our machines now. If you already were on Bash in a previous installation it will still remain. Zsh is only for new accounts created with Catalina.&lt;/p&gt;

&lt;p&gt;Lets check if its installed already:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;zsh --version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If not lets install it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;brew install zsh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After the install lets set it as our default shell:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;chsh -s /bin/zsh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You may have to use &lt;code&gt;sudo&lt;/code&gt; here again or it will ask you to enter your login credentials to change the system shell. Sudo will be used less frequently after installing the n package later on, but I didn't run into any huge issues with sudo after a clean install of MacOS.&lt;/p&gt;

&lt;p&gt;After you have switched log out and log back in or restart your machine.&lt;/p&gt;

&lt;p&gt;Once you are logged back in fire up Hyper and enter:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;echo $SHELL
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Expected result: &lt;code&gt;/bin/zsh&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Oh My Zsh&lt;/em&gt; is an open-source driven framework for your zsh config. It comes with a bunch of different plugins, themes, and helpers to make your terminal look awesome inside.&lt;/p&gt;

&lt;p&gt;Install using:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Please view &lt;a href="https://github.com/ohmyzsh/ohmyzsh#using-oh-my-zsh" rel="noopener noreferrer"&gt;Using Oh-My-Zsh&lt;/a&gt; and get yourself acquainted. I’m running everything by default, but there are a ton of themes to choose from.&lt;/p&gt;

&lt;p&gt;I have a helpful alias setup with my zshrc file to keep Homebrew up to date and my system running smoothly that I manually enter when I begin my development work.&lt;/p&gt;

&lt;p&gt;To view your setup file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;nano ~/.zshrc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Arrow down until you see “# Example Aliases”&lt;br&gt;
Under this we can add:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;alias brewup=‘brew update; brew upgrade; brew cleanup; brew doctor’
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To save the file: &lt;code&gt;Control + O&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;To exit: &lt;code&gt;Control + X&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Every time we enter &lt;code&gt;brewup&lt;/code&gt; in Hyper we will be able to utilize all three commands at once. A better solution would be to have this on a crontab cycle where it utilized every week or so, but I have yet to implement that yet!&lt;/p&gt;

&lt;p&gt;Another helpful alias we could create while in the setup file access this setup file. We can make one while were in the file!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;alias zshconfig=“code ~/.zshrc”
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Bonus:&lt;/strong&gt;&lt;br&gt;
Two of the best features of having zsh is utilizing two necessary and useful plugins, zsh-autosuggestions &amp;amp; zsh-syntax-highlighting.&lt;/p&gt;

&lt;p&gt;To install both of these you first clone them both in your oh-my-zsh custom plugins folder.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After cloning open your zshconfig and load them both into the plugins area of your settings file like so.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;plugins=(
    zsh-autosuggestions
    zsh-syntax-highlighting
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Git and SSH
&lt;/h2&gt;

&lt;p&gt;Git will be used as a version control system for your code. Most new Mac's come with Git pre-installed so this will be an overview of initializing it. You will constantly be committing and pushing code using Git. SSH will uniquely identify you (and your computer) when your computer is communicating with other computers. Imagine that. Just think of it as a fancy password. A lot of applications on the web require you to authenticate with SSH, like Heroku and Github.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Git&lt;/em&gt; first then. Let’s go back to Hyper.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git config —global user.name “First Last” (keep the quotes)
git config —global user.email “Email” (keep the quotes)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Use the same email address for Heroku, Git, Github, and SSH.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Confirm the changes have been made using:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git config —get user.name
git config —get user.email
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You should see your user name and email printed.&lt;/p&gt;

&lt;p&gt;I have added some alias commands to my git config file. Take a look at yours yourself using:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;code ~/.gitconfig
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;Remember we added the shell command in VS Code to view a specific file. You just used it!&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Mine looks like this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[user]
name = First Last
email = student@example.com
[alias]
a = add
ca = commit -a
cam = commit -am
s = status
pom = push origin master
pog = push origin gh-pages
puom = pull origin master
puog = pull origin gh-pages
cob = checkout -b
[color]
ui = auto
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The alias commands allow me to just type &lt;code&gt;git pom&lt;/code&gt; instead of… &lt;code&gt;git push origin master&lt;/code&gt;. &lt;/p&gt;

&lt;p&gt;To see a list of your config settings in Terminal check it with: &lt;br&gt;
&lt;code&gt;git config —list&lt;/code&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  SSH
&lt;/h3&gt;

&lt;p&gt;SSH the fancy password. Got it. Let’s check if you have one already.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ls ~/.ssh/id_rsa
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will return “No such file or directory” if you don’t have an SSH key yet.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/" rel="noopener noreferrer"&gt;Generate a key&lt;/a&gt;  using:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ssh-keygen -t rsa -b 4096 -C “student@example.com”
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="mailto:student@example.com"&gt;student@example.com&lt;/a&gt;&lt;/em&gt; is your actual email that you used with Git.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Expected result:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Generating public/private rsa key pair.
Enter file in which to save the key (/Users/student/.ssh/id_rsa):
Created directory ‘/Users/student/.ssh’.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /Users/student/.ssh/id_rsa.
Your public key has been saved in /Users/student/.ssh/id_rsa.pub.
The key fingerprint is:
88:54:ab:77:fe:5c:c3:7s:14:37:28:8c:1d:ef:2a:8d student@example.com
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You’ll be asked to enter a passphrase next. I suggest using one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Public vs. Private Keys&lt;/strong&gt;&lt;br&gt;
If you open:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;code ~/.ssh/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will see two files an “id_rsa” file and “id_rsa.pub” file. The .pub is the public and can be shared freely, the _rsa must be kept a secret.&lt;/p&gt;

&lt;p&gt;Go ahead and add your generated key to the authentication agent using:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ssh-add ~/.ssh/id_rsa
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will be prompted your passphrase and the identity will be added.&lt;/p&gt;

&lt;p&gt;Once this is completed you should head to Github and configure your newly generated key to interact properly with Github. Github has a helpful guide &lt;a href="https://help.github.com/en/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Visual Studio Code
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa33jgc7txx0cs974kwhq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa33jgc7txx0cs974kwhq.png" alt="Alt Text" width="800" height="335"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Visual Studio Code is more powerful than ever, thanks to awesome updates by the Microsoft team, and the amazing developer made extensions. I always hear those arguments about the hype with vim or utilizing your text editor through your command line, but now I can’t even imagine going that route.&lt;/p&gt;

&lt;p&gt;Go ahead and open up VSCode from Alfred. Previously installed using Casks.&lt;/p&gt;

&lt;p&gt;First, were going to view the Command Palette. The Command Palette is located under the View tab. Once it is clicked a drop down will appear and you will then search &lt;code&gt;shell command: Install ‘code’ command in PATH’&lt;/code&gt; and hit Enter.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F870ol9pw5ljb4j9xja6t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F870ol9pw5ljb4j9xja6t.png" alt="Alt Text" width="618" height="100"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This enables you to type &lt;code&gt;code ‘filename’&lt;/code&gt; in Hyper terminal to open up a file in VS Code. Really powerful and useful!&lt;/p&gt;

&lt;p&gt;At the Welcome screen select both, “Install support for JavaScript” and “Install support for keyboard shortcuts of Atom.” (Also found  &lt;a href="https://marketplace.visualstudio.com/items?itemName=ms-vscode.atom-keybindings" rel="noopener noreferrer"&gt;here&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;To view the keyboard shortcuts for Atom go &lt;a href="https://blog.bugsnag.com/img/posts/atom-cheat-sheet.png" rel="noopener noreferrer"&gt;here&lt;/a&gt;. They will be considerably helpful with the increasing the speed of your coding.&lt;/p&gt;

&lt;p&gt;Locate the sidebar icon for Extensions and search for these essential installs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;npm Intellisense&lt;/li&gt;
&lt;li&gt;Path Intellisense&lt;/li&gt;
&lt;li&gt;ESLint&lt;/li&gt;
&lt;li&gt;Prettier - Code formatter&lt;/li&gt;
&lt;li&gt;Live Share&lt;/li&gt;
&lt;li&gt;Bookmarks&lt;/li&gt;
&lt;li&gt;Debugger for Chrome (if using Chrome)&lt;/li&gt;
&lt;li&gt;Auto Close Tag&lt;/li&gt;
&lt;li&gt;Bracket Pair Colorizer 2&lt;/li&gt;
&lt;li&gt;DotENV&lt;/li&gt;
&lt;li&gt;GraphQL&lt;/li&gt;
&lt;li&gt;Live Server&lt;/li&gt;
&lt;li&gt;indent-rainbow&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  More VSCode &amp;amp; Bonus theme changes
&lt;/h3&gt;

&lt;p&gt;Some of these extensions aren’t plug and play and will require some setup. Just read through the links and check them out before installing.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=johnpapa.vscode-peacock" rel="noopener noreferrer"&gt;Peacock&lt;/a&gt; allows you to change the border window of VSCode to discern different workspaces.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=naumovs.color-highlight" rel="noopener noreferrer"&gt;Color Highlight&lt;/a&gt; highlights your style colors in the editor.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=mgmcdermott.vscode-language-babel" rel="noopener noreferrer"&gt;Babel JavaScript&lt;/a&gt; syntax highlighting for today's JavaScript standard.&lt;/p&gt;

&lt;p&gt;The great thing about VSCode is that it has Git support built in once a repository has been initialized, but &lt;a href="https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory" rel="noopener noreferrer"&gt;Git History&lt;/a&gt; allows you to view your history from within VSCode.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=shd101wyy.markdown-preview-enhanced" rel="noopener noreferrer"&gt;Markdown Preview Enhanced&lt;/a&gt; allows you to preview Markdown files, typically Github README's.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=burkeholland.simple-react-snippets" rel="noopener noreferrer"&gt;Simple React Snippets&lt;/a&gt; are snippets to speed up your React development.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Themes to search:&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Atom One Dark&lt;/li&gt;
&lt;li&gt;Atom One Light&lt;/li&gt;
&lt;li&gt;Github theme&lt;/li&gt;
&lt;li&gt;Material theme pack&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Icon pack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Material icon&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For my VSCode theme, I use the one built by Vercel. This one requires you to install via Hyper. What can I say I am a fanboy.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;curl https://zeit-theme.now.sh | tar xvz -C ~/.vscode/extensions
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart VSCode, select 'ZEIT' in Preferences &amp;gt; Color Theme&lt;/p&gt;

&lt;p&gt;Send them feedback if you run into any issues or wish to see changes!&lt;br&gt;
&lt;a href="https://twitter.com/shuding_/status/1074393919750881280?lang=en" rel="noopener noreferrer"&gt;Shu Ding original tweet&lt;/a&gt;&lt;/p&gt;



&lt;p&gt;The following are more &lt;em&gt;theme&lt;/em&gt; preferences that I have and love. I wanted to share them with you before moving forward.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Google Chrome Dev Tools Theme&lt;/em&gt;&lt;br&gt;
I recommend adding a theme to your Chrome Developer Tools as well. I use New Moon by Tania Rascia. There is a guide to getting this setup in the Github repository located &lt;a href="https://github.com/taniarascia/new-moon-chrome-devtools" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;JetBrains Mono Font&lt;/em&gt;&lt;br&gt;
Another thing I have discovered is the font JetBrains Mono. I use this with VSCode and with Hyper and it's a wonderful development typeface. Install it &lt;a href="https://www.jetbrains.com/lp/mono/" rel="noopener noreferrer"&gt;here&lt;/a&gt; and then apply it to both applications.&lt;/p&gt;

&lt;p&gt;To enable it in Hyper:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Enter Preferences by hitting &lt;code&gt;CMD + ,&lt;/code&gt; or using your new command with VSCode &lt;code&gt;code ~/.hyper.js&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If you use the first command it will most likely open with Chrome. You want to set your JavaScript files to open automatically with VSCode instead. When it opens in Chrome:&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
&lt;li&gt;Select File &amp;gt; Save Page As...&lt;/li&gt;
&lt;li&gt;Locate the file in your Downloads folder&lt;/li&gt;
&lt;li&gt;Right-click the file&lt;/li&gt;
&lt;li&gt;Select Get Info &lt;/li&gt;
&lt;li&gt;Expand the Open with: arrow&lt;/li&gt;
&lt;li&gt;Select VSCode&lt;/li&gt;
&lt;li&gt;Select Change All... and confirm&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After loading up your Hyper Preferences file you should change the fontSize to 16 and then add "JetBrains Mono" to the beginning of the fontFamily preference. Include the double-quotes.&lt;/p&gt;

&lt;p&gt;This is similar in VSCode. Enter the Command Palette by hitting &lt;code&gt;CMD + SHIFT + P&lt;/code&gt; and search 'user settings'. It should be on the main screen and add 'JetBrains Mono' to the beginning of the Font Family setting. Single quotes is fine in VSCode.&lt;/p&gt;
&lt;h3&gt;
  
  
  n-install &amp;amp; Yarn
&lt;/h3&gt;

&lt;p&gt;Homebrew installs the latest version of Node. Although, you may run into situations or learning where you need to utilize a certain version of Node.&lt;/p&gt;

&lt;p&gt;I use n-install to manage my Node versions.&lt;br&gt;
&lt;a href="https://github.com/tj/n" rel="noopener noreferrer"&gt;n - Node Version Manager&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Install using:&lt;br&gt;
&lt;code&gt;brew install n&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;n is a no BS, straightforward, simple version manager. It allows you to install the latest version of Node or utilize a stable version of your choosing. Earlier, Homebrew installed the latest version of Node. n allows us to utilize the LTS version or other versions we want of Node on the fly. Before installing I would suggest setting up your user permissions (code below) and cache folder if it's not present. However, it should be applied upon install.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# make cache folder (if missing) and take ownership
sudo mkdir -p /usr/local/n
sudo chown -R $(whoami) /usr/local/n
# take ownership of node install destination folders
sudo chown -R $(whoami) /usr/local/bin /usr/local/lib /usr/local/include /usr/local/share
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Another option is Node Version Manager.&lt;br&gt;
&lt;a href="https://github.com/creationix/nvm" rel="noopener noreferrer"&gt;nvm: Node Version Manager&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check out both repo’s and make your decision. You’ll want to follow the instructions to get this installed.&lt;/p&gt;
&lt;h3&gt;
  
  
  Yarn
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://yarnpkg.com/lang/en/" rel="noopener noreferrer"&gt;Yarn&lt;/a&gt; is another package manager for code. Version 2 was just released and I'm happy to get started with it. It is an elegant, reliable tool that you will definitely utilize.&lt;/p&gt;

&lt;p&gt;Install using:&lt;br&gt;
&lt;code&gt;brew install yarn&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  mySQL, MongoDB &amp;amp; a note on other Databases
&lt;/h2&gt;

&lt;p&gt;As a developer, you will need to utilize databases. I have currently only utilized MySQL and MongoDB. Databases are a whole topic within their own and it’s important to spend some time learning each of these! I would turn to a simple Codecademy course for MySQL and MongoDB has a great educational portion of their site dedicated to having you learn it first hand.&lt;/p&gt;

&lt;p&gt;Databases are rapidly changing, but these two are tried and true. I continue to use these frequently and depending on your project you will have different requirements or wish to use something newer like GraphQL (query language), EdgeDB, or FaunaDB.&lt;/p&gt;

&lt;p&gt;For mySQL, you need to tap the Homebrew services first and then install.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;brew tap homebrew/services
brew install mysql@5.7
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For MongoDB it's similar, but we need to tap MongoDB specifically.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;brew tap mongodb/brew
brew install mongodb-community@4.2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Additional setup may be required before using these databases. Follow along with the prompts in the terminal when using for the first time and you should be good to go!&lt;/p&gt;

&lt;h2&gt;
  
  
  Command Line Interfaces
&lt;/h2&gt;

&lt;p&gt;A lot of tools today are offering a whole set of functionality to interact with their products. I believe utilizing CLI’s is massively important for enhancing productivity when developing. I've listed ones that are documented well so you will have to check it out to figure out how to use them optimally.&lt;/p&gt;

&lt;p&gt;We didn’t get to go over these in the first edition, but let’s get into it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://vercel.com/download" rel="noopener noreferrer"&gt;Vercel CLI&lt;/a&gt; is Vercel’s CLI tool for dead simple deployment.&lt;br&gt;
&lt;code&gt;npm install -g vercel&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.netlify.com/docs/cli/" rel="noopener noreferrer"&gt;Netlify&lt;/a&gt; is a no frills builder, deployment tool and manager of modern web projects.&lt;br&gt;
&lt;code&gt;npm install -g netlify-cli&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/sintaxi/surge" rel="noopener noreferrer"&gt;Surge&lt;/a&gt; is a tool to publish web apps to a CDN.&lt;br&gt;
&lt;code&gt;npm install -g surge&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.gatsbyjs.org/docs/gatsby-cli/" rel="noopener noreferrer"&gt;Gatsby&lt;/a&gt; is a Static Site Generator and Progressive Application Generator.&lt;br&gt;
&lt;code&gt;npm install -g gatsby-cli&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;del&gt;&lt;a href="https://github.com/facebook/create-react-app" rel="noopener noreferrer"&gt;create-react-app&lt;/a&gt; creates a React app.&lt;br&gt;
&lt;code&gt;npm install -g create-react-app&lt;/code&gt;&lt;/del&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://cli.vuejs.org/" rel="noopener noreferrer"&gt;Vue CLI&lt;/a&gt; creates a Vue app.&lt;br&gt;
&lt;code&gt;npm install -g vue-cli&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/github/hub" rel="noopener noreferrer"&gt;Hub&lt;/a&gt; is a great tool to interface with Github from the command line. Github CLI is currently in beta.&lt;br&gt;
&lt;code&gt;brew install hub&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Additional applications not originally mentioned
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.notion.so/product" rel="noopener noreferrer"&gt;Notion&lt;/a&gt; is an all in one workspace. A truly incredible tool.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://spectrum.chat/" rel="noopener noreferrer"&gt;Spectrum&lt;/a&gt; is a community platform built for technology communities.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://numi.io/" rel="noopener noreferrer"&gt;Numi&lt;/a&gt; calculator. I love its note style calculation.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://magnet.crowdcafe.com/" rel="noopener noreferrer"&gt;Magnet&lt;/a&gt;  is a workspace organizer for Mac. This is a &lt;em&gt;paid&lt;/em&gt; App located in the App Store. The download link on the site will direct you. I recommend it over Spectacle.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://getpocket.com/" rel="noopener noreferrer"&gt;Pocket&lt;/a&gt;  is a save for later application. Insert articles, videos, notes, and pretty much anything else.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://parcelapp.net/" rel="noopener noreferrer"&gt;Parcel&lt;/a&gt; is the best delivery tracker.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.dashlane.com/" rel="noopener noreferrer"&gt;Dashlane&lt;/a&gt; is my password manager of choice.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://sparkmailapp.com/" rel="noopener noreferrer"&gt;Spark&lt;/a&gt; is email, done right.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.getpostman.com/" rel="noopener noreferrer"&gt;Postman&lt;/a&gt; is an Application Programming Interface (API) development Graphical User Interface (GUI). Yeah… a mouthful, but incredible.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dozermac.com/" rel="noopener noreferrer"&gt;Dozer&lt;/a&gt; allows you to clean up your menu bar.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;I hope this is a valuable resource for all Mac users! Development has been a continually changing environment and it’s easy to not have a direction to put yourself in to have a standard setup accessible. This post will continue to be extended in the future and I look forward to providing some guidance then.&lt;/p&gt;

&lt;p&gt;If you run into hurdles, errors, or mistakes. Please let me know so I can correct them!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Updated 2/4/2020&lt;/em&gt; I had a couple link errors and typos in this article. They have now been fixed. Also, I'm going to be posting a minified version of this without all of the fluff. Keep an eye out for that.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Updated 2/11/2020&lt;/em&gt; A minified version of this post and all of the steps included have been created. View the minified version &lt;a href="https://dev.to/v3frankie/minified-setup-your-mac-for-development-2020-edition-32l"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Updated 3/9/2020&lt;/em&gt; Added 'brew pin node' step after installing, zsh plugins, and removed VSCode note about it not being notarized with MacOS.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Updated 3/27/2020&lt;/em&gt; Removed create-react-app from global install list because it is now recommended to run using npx.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Updated 9/04/2020&lt;/em&gt; Updated ZEIT to Vercel and respectively now global install.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>webdev</category>
      <category>mac</category>
      <category>2020</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
