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
    
  
  
    
  | # Download and Install the Latest Updates for the OS | |
| apt-get update && apt-get upgrade -y | |
| # Set the Server Timezone to CST | |
| echo "America/Chicago" > /etc/timezone | |
| dpkg-reconfigure -f noninteractive tzdata | |
| # Enable Ubuntu Firewall and allow SSH & MySQL Ports | |
| ufw enable | |
| ufw allow 22 | 
  
    
      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/sh | |
| # ======================= | |
| # = MySQL linux install = | |
| # ======================= | |
| # To begin with, a simple MySQL install: | |
  
    
      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
    
  
  
    
  | --- | |
| - name: Install Ruby 2.3.3 | |
| hosts: all | |
| remote_user: ubuntu | |
| become: yes | |
| tasks: | |
| - name: Check if Ruby is installed | |
| command: which ruby | |
| register: ruby_check | |
| ignore_errors: yes | 
  
    
      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
    
  
  
    
  | " Specify a directory for plugins | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'scrooloose/nerdtree' | |
| "Plug 'tsony-tsonev/nerdtree-git-plugin' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'airblade/vim-gitgutter' | 
  
    
      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
    
  
  
    
  | CC = gcc | |
| LD = gcc | |
| CFLAGS = -Wall -pipe | |
| OFLAGS = -c -I/usr/include | |
| LFLAGS = $(CFLAGS) -L/usr/lib/ | |
| SOURCES = $(wildcard *.c) | |
| OBJECTS = $(SOURCES:.c=.o) | 
  
    
      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
    
  
  
    
  | //https://stackoverflow.com/a/14033636 | |
| //http://medialize.github.io/URI.js/ | |
| ;; // prevents code from breaking if the previous scrips is not syntactically correct | |
| (function (name, definition) { | |
| if (typeof module != 'undefined') module.exports = definition(); | |
| else if (typeof define == 'function' && typeof define.amd == 'object') define(definition); | |
| else this[name] = definition(); | |
| }('ROUTER', function () { | |
| var utils = { | |
| quoteRegExp: function (string) { | 
  
    
      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
    
  
  
    
  | 'use strict'; | |
| class Monad { | |
| constructor(a) { this._value = a; } | |
| '>>='(f) { return f(this.value()); } | |
| static create(a) { return new Monad(a); } | |
| value() { return this._value; } | |
| } | |
| var val = Monad.create(10) ['>>='] | 
  
    
      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
    
  
  
    
  | /* | |
| One element progress bar | |
| by KaKi87 | |
| 22.03.18 | |
| */ | |
| /* | |
| Get browser prefix (for CSS) | |
| https://stackoverflow.com/questions/8889014/setting-vendor-prefixed-css-using-javascript | |
| https://davidwalsh.name/vendor-prefix | 
  
    
      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
    
  
  
    
  | """ Configuration vim | |
| """ Leader to Ctrl + s | |
| let mapleader=' ' | |
| syntax enable | |
| """ Local language to us | |
| """ setlocal spell spelllang=en_us | |
| set number |