I hereby claim:
- I am juanvallejo on github.
- I am juanvallejo (https://keybase.io/juanvallejo) on keybase.
- I have a public key whose fingerprint is 9098 4926 82F5 96E0 843C C8D9 F04C 541A 21C8 0C8A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| //paste this into chrome console | |
| var win = window.frames[1]; | |
| var doc = win ? win.document.documentElement : document; | |
| var inputs = doc.getElementsByTagName("input"); | |
| if(win && inputs && inputs.length) { | |
| console.log("Loading, please wait..."); | |
| console.log("Realizing realizations..."); | |
| console.log("Loading loading sign..."); | |
| var inp; | |
| for(var i=0;i<inputs.length;i++) { |
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="robbyrussell" | |
| # Example aliases |
| /** | |
| * Provided without license, as is. | |
| * | |
| * @program main.js | |
| * | |
| * @author juanvallejo | |
| * @date 10/7/14 | |
| * | |
| * initialize and execute main program | |
| * |
| servers = ( | |
| { address = "eu.irc6.net"; chatnet = "IRCnet"; port = "6667"; }, | |
| { address = "open.ircnet.net"; chatnet = "IRCnet"; port = "6667"; }, | |
| { address = "irc.efnet.org"; chatnet = "EFNet"; port = "6667"; }, | |
| { | |
| address = "irc.undernet.org"; | |
| chatnet = "Undernet"; | |
| port = "6667"; | |
| }, | |
| { address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; }, |
| // @author juanvallejo | |
| // paste this into chrome console and press ENTER | |
| var win = window.frames[1]; | |
| var doc = win ? win.document.documentElement : document; | |
| var inputs = doc.getElementsByTagName("input"); | |
| if(win && inputs && inputs.length) { | |
| console.log('Working, please wait...'); | |
| var inp; | |
| for(var i=0;i<inputs.length;i++) { | |
| inp = inputs[i]; |
| colorscheme kolor | |
| syntax on | |
| set smartindent | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set expandtab |
| #add vim colors | |
| set-option -g default-command "reattach-to-user-namespace -l zsh" | |
| set -g default-terminal "screen-256color" | |
| #remap prefix to Control + a and remap key bindings | |
| set -g prefix C-a | |
| unbind C-b | |
| bind C-a send-prefix | |
| bind '"' split-window -c "#{pane_current_path}" | |
| bind % split-window -h -c "#{pane_current_path}" |
| // define runtime constants | |
| var PORT = 8000; | |
| // import modules needed to make the server (http and filesystem modules for now) | |
| var http = require('http'); | |
| var fs = require('fs'); | |
| var server = http.createServer(requestHandler); | |
| function requestHandler(request, response) { |
| #!/bin/env node | |
| /** | |
| * Provided under the MIT License (c) 2014 | |
| * See LICENSE @file for details. | |
| * | |
| * @file server.js | |
| * | |
| * @author juanvallejo | |
| * @date 1/22/15 |