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
    
  
  
    
  | [user] | |
| name = Cristobal Heiss | |
| email = barbacoabq@gmail.com | |
| [core] | |
| editor = nano | |
| [alias] | |
| hist = log --oneline --graph --decorate --all | |
| [diff] | |
| tool = p4merge | |
| [difftool "p4merge"] | 
  
    
      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
    
  
  
    
  | #! /bin/bash | |
| echo 'Name of the project?' | |
| read projectName | |
| mkdir $projectName | |
| cd $projectName | |
| echo "Generating $projectName for you..." | |
| touch index.ts package.json | |
| echo '{ | |
| "name": "ts", | |
| "version": "1.0.0", | 
  
    
      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
    
  
  
    
  | { | |
| "quotes": [ | |
| "It's a dangerous business, Frodo, going out your door. You step onto the road, and if you don't keep your feet, there's no knowing where you might be swept off to.", | |
| " End? No, the journey doesn't end here. Death is just another path, one that we all must take. The grey rain-curtain of this world rolls back, and all turns to silver glass, and then you see it.", | |
| "Some who have read the book, or at any rate have reviewed it, have found it boring, absurd, or contemptible, and I have no cause to complain, since I have similar opinions of their works, or of the kinds of writing that they evidently prefer.", | |
| "Home is behind, the world ahead, and there are many paths to tread through shadows to the edge of night, until the stars are all alight.", | |
| "A cold voice answered: 'Come not between the Nazgûl and his prey! Or he will not slay thee in thy turn. He will bear thee away to the houses of lamentation, beyond all darkness, where thy flesh shall be devoured, and thy shrivelled mind be left na | 
  
    
      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
    
  
  
    
  | const getRandomInts = function(){return Math.floor(Math.random() * 10)}; | |
| const makeRandomInt= () => { | |
| let date = new Date(); | |
| let getNumbers = String(date.getMilliseconds()); | |
| let randomNum = getNumbers[getNumbers.length -1]; | |
| return Number(randomNum) | |
| } | |
| const allDigits = { | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| echo "Building this for you Cristobal" | |
| cd ~/Documents/my-repos | |
| mkdir $1 | |
| cd $1 | |
| mkdir src | |
| touch SET-UP.txt | |
| curl https://gist.githubusercontent.com/Ceheiss/804ef5b4be20e2c3c2fef49914a1c3fb/raw/1f97210c63fec0f5c9fb23e4360ceaaa750eb7a0/basic-setup.txt > SET-UP.txt | |
| touch .gitignore | |
| touch src/app.js | 
  
    
      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
    
  
  
    
  | ================================= | |
| ------- PROJECT SETUP --------- | |
| ================================= | |
| Hello, don't forget to do the following things in your brand new basic Node App: | |
| "scripts": { | |
| "test": "jest", | |
| "format": "prettier src/*.js --write" | |
| } | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| echo "Building a complete project for you" | |
| cd ~/Documents/my-repos | |
| mkdir $1 | |
| cd $1 | |
| mkdir src | |
| mkdir dist | |
| touch .gitignore | |
| touch .babelrc | |
| touch src/app.js | 
  
    
      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
    
  
  
    
  | ================================= | |
| ------- PROJECT SETUP --------- | |
| ================================= | |
| Hello, don't forget to do the following things in your brand new Node App: | |
| To use Jest, build with babel and send it to dist folder, and format everything with prettier (you can add src after jest if you want to test all the files): | |
| "scripts": { |