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
    
  
  
    
  | <settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd"> | |
| <mirrors> | |
| <mirror> | |
| <id>maven-default-http-blocker</id> | |
| <mirrorOf>external:http:*</mirrorOf> | |
| <name>Pseudo repository to mirror external repositories initially using HTTP.</name> | |
| <url>http://0.0.0.0/</url> | |
| <blocked>false</blocked> | 
  
    
      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
    
  
  
    
  | self.addEventListener('install', function(event) { | |
| // event.waitUntil( | |
| // caches.open('v1').then(function(cache) { | |
| // return cache.addAll([ | |
| // '/sw-test/', | |
| // '/sw-test/index.html', | |
| // '/sw-test/style.css', | |
| // '/sw-test/app.js', | |
| // '/sw-test/image-list.js', | |
| // '/sw-test/star-wars-logo.jpg', | 
  
    
      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
    
  
  
    
  | // ==UserScript== | |
| // @name Sloppy Logger | |
| // @require https://code.jquery.com/jquery-3.4.1.min.js | |
| // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js | |
| // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description log uncaght window exceptions and write them in the document as bootstrap alert html elements | |
| // @author Sloppy Lopez | |
| // @match http*://*/ | 
  
    
      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
    
  
  
    
  | <scheme name="Github Contrast XXL (rainglow) Sloppy" version="142" parent_scheme="Darcula"> | |
| <option name="FONT_SCALE" value="1.0" /> | |
| <metaInfo> | |
| <property name="created">2019-04-18T00:50:22</property> | |
| <property name="ide">idea</property> | |
| <property name="ideVersion">2019.1.0.0</property> | |
| <property name="modified">2019-04-18T00:50:31</property> | |
| <property name="originalScheme">Github Contrast XXL (rainglow) Sloppy</property> | |
| </metaInfo> | |
| <option name="LINE_SPACING" value="1.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
    
  
  
    
  | <scheme name="Github Contrast XXL (rainglow) Sloppy" version="142" parent_scheme="Darcula"> | |
| <option name="FONT_SCALE" value="1.0" /> | |
| <metaInfo> | |
| <property name="created">2019-04-18T00:17:39</property> | |
| <property name="ide">idea</property> | |
| <property name="ideVersion">2019.1.0.0</property> | |
| <property name="modified">2019-04-18T00:17:55</property> | |
| <property name="originalScheme">Github Contrast XXL (rainglow) Sloppy</property> | |
| </metaInfo> | |
| <option name="LINE_SPACING" value="1.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
    
  
  
    
  | function cat | |
| ccat $argv | |
| end | 
  
    
      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
    
  
  
    
  | <mtTheme> | |
| <id>Sloppy</id> | |
| <editorColorsScheme>Sloppy Darkness</editorColorsScheme> | |
| <dark>true</dark> | |
| <name>Sloppy Theme</name> | |
| <colors> | |
| <color id="background" value="000000ff"/> | |
| <color id="foreground" value="b0bec5ff"/> | |
| <color id="text" value="607d8bff"/> | |
| <color id="highlight" value="425b67ff"/> | 
  
    
      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
    
  
  
    
  | <scheme name="Github Contrast XXL (rainglow) Sloppy" version="142" parent_scheme="Darcula"> | |
| <option name="FONT_SCALE" value="1.0" /> | |
| <metaInfo> | |
| <property name="created">2019-04-09T16:28:18</property> | |
| <property name="ide">idea</property> | |
| <property name="ideVersion">2019.1.0.0</property> | |
| <property name="modified">2019-04-09T16:28:22</property> | |
| <property name="originalScheme">Github Contrast XXL (rainglow) Sloppy</property> | |
| </metaInfo> | |
| <option name="LINE_SPACING" value="1.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
    
  
  
    
  | function cleanDockerLocal | |
| echo -e "Stoping Docker containers 💃" | colorStuff | |
| docker kill (docker ps -q) | colorStuff | |
| echo -e "Deleting Docker containers 🔥" | colorStuff | |
| docker rm (docker ps -a -q) | colorStuff | |
| echo -e "Deleting Docker images 💥" | colorStuff | |
| docker rmi (docker images -q) | colorStuff | |
| echo -e "cleanDockerLocal done! 🀄" | colorStuff | |
| end | 
  
    
      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
    
  
  
    
  | function colorStuff | |
| while read -l input | |
| switch $input | |
| case "*error*" | |
| set_color red | |
| echo $input | |
| case "*warning*" | |
| set_color yellow | |
| echo $input | |
| case "*" | 
NewerOlder
        