apm install
angular-snippets@8.0.2
atom-beautify@0.33.4
atom-typescript@13.6.1
emmet@2.4.3
file-icons@2.1.41
^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{8,}$
^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{8,}$
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | sudo apt-get install chromium-browser | |
| sudo apt-get install guake | |
| sudo apt-get install zsh | |
| // Install Curl | |
| sudo apt-get install curl | |
| // Install Git | |
| sudo apt-get install git-core | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | window.fbAsyncInit = function() { | |
| FB.init({ | |
| appId: '** App ID **', | |
| cookie: true, // enable cookies to allow the server to access | |
| // the session | |
| xfbml: true, // parse social plugins on this page | |
| version: 'v2.5' // use graph api version 2.5 | |
| }); | |
| }; | |
| (function(d, s, id) { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var startApp = function() { | |
| gapi.load('auth2', function() { | |
| // Retrieve the singleton for the GoogleAuth library and set up the client. | |
| auth2 = gapi.auth2.init({ | |
| client_id: '*** ID HERE ***', | |
| scope: 'https://www.googleapis.com/auth/userinfo.email', | |
| cookiepolicy: 'single_host_origin' | |
| // Request scopes in addition to 'profile' and 'email' | |
| }); | |
| attachSignin(document.getElementById('google_login')); |