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
| set nocompatible " be iMproved, required | |
| set mouse=a | |
| "Install plug plugin manager | |
| if empty(glob('~/.vim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
| \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
| endif |
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
| #!/usr/bin/env escript | |
| %%! -smp enable -sname erlshell -setcookie antidote | |
| % Connect a list of nodes to each other | |
| connect_nodes(Nodes)-> | |
| % Start the inter_dc on all nodes | |
| io:format("Starting~n"), | |
| [rpc:call(Node, inter_dc_manager, start_bg_processes, [stable]) || Node <- Nodes], | |
| % Get a list of all DCs descriptors |
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
| <?xml version="1.1" encoding="UTF-8"?> | |
| <!DOCTYPE keyboard SYSTEM "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
| <!-- Fri, 24 Feb 2006 Generated from KCHR: "French - numerical" --> | |
| <!--Last edited by Ukelele version 3.0.1.47 on 2015-12-29 at 10:03 (GMT+10)--> | |
| <keyboard group="126" id="-30741" maxout="1" name="French - numerical"> | |
| <layouts> | |
| <layout first="0" last="0" mapSet="ANSI" modifiers="commonModifiers"/> | |
| </layouts> | |
| <modifierMap defaultIndex="0" id="commonModifiers"> | |
| <keyMapSelect mapIndex="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
| import java.io.File; | |
| import java.lang.reflect.Field; | |
| import java.net.URI; | |
| public class Container extends File { | |
| private String this_is_private; | |
| protected String this_is_protected; | |
| String this_is_package; | |
| public String this_is_public; |
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
| DOTS=$(wildcard *.dot) | |
| .PHONY:all clean | |
| all: $(DOTS:.dot=.ps) | |
| clean: $(DOTS:.dot=.ps) | |
| rm -f $^ | |
| %.ps: %.dot | |
| dot -Tps $^ -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
| // ==UserScript== | |
| // @name ErfWorld Clicker! | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description The ErfWorld webcomic is nice. But I hate having to hunt the 'Next Page' button all the time. So now you can simply click on the current image to go to the next page! | |
| // @author Jonathan Sid-Otmane | |
| // @match http://archives.erfworld.com/*/* | |
| // @grant none | |
| // ==/UserScript== |
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 Fanfiction Click | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Allows me to click on fanfiction.net text | |
| // @author Jonathan | |
| // @match https://*.fanfiction.net/s/* | |
| // @grant none | |
| // ==/UserScript== |
NewerOlder