I hereby claim:
-
I am smallendian on github.
-
I am smallendian (https://keybase.io/smallendian) on keybase.
-
I have a public key ASCEFdA345wLsY7KnMtOkT8HMR_2Xn8QHtOl1z8TbllHHAo
| // ==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== |
| // ==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== |
| DOTS=$(wildcard *.dot) | |
| .PHONY:all clean | |
| all: $(DOTS:.dot=.ps) | |
| clean: $(DOTS:.dot=.ps) | |
| rm -f $^ | |
| %.ps: %.dot | |
| dot -Tps $^ -o $@ |
| 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; |
| <?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"> |
| #!/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 |
| 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 |
| #!/usr/bin/env python3 | |
| """ | |
| gitinit: For these times when you want push your current repository to github. gitinit creates a new public or private repository and then outputs the new url to configure your git remote. | |
| Pushing with https is _bad_, so that info is not shown | |
| """ | |
| __author__ = "Jonathan Sid-Otmane" | |
| import os | |
| import sys |
I hereby claim:
I am smallendian on github.
I am smallendian (https://keybase.io/smallendian) on keybase.
I have a public key ASCEFdA345wLsY7KnMtOkT8HMR_2Xn8QHtOl1z8TbllHHAo
| FROM erlang:21 | |
| ENV HANDOFF_PORT "8099" | |
| ENV PB_PORT "8087" | |
| ENV PB_IP "0.0.0.0" | |
| ENV PBSUB_PORT "8086" | |
| ENV LOGREADER_PORT "8085" | |
| ENV RING_STATE_DIR "data/ring" | |
| ENV PLATFORM_DATA_DIR "data" | |
| ENV NODE_NAME "antidote@127.0.0.1" |