I hereby claim:
- I am gmvi on github.
- I am 6eorge (https://keybase.io/6eorge) on keybase.
- I have a public key whose fingerprint is 1D8B 84F1 090E AEB4 6194 E304 D9BA 5EC1 84D6 5E3A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| client | |
| dev tun | |
| proto udp | |
| remote nl.privateinternetaccess.com 1194 | |
| resolv-retry infinite | |
| nobind | |
| persist-key | |
| persist-tun | |
| ca /etc/openvpn/ca.crt | |
| tls-client |
| [ | |
| // The following mappings standardize certain actions across windows and mac to facilitate muscle memory | |
| { "keys": ["alt+w"], "command": "close" }, | |
| { "keys": ["alt+t"], "command": "new_file" }, | |
| { "keys": ["alt+shift+t"], "command": "reopen_last_file" }, | |
| { "keys": ["alt+y"], "command": "redo" }, | |
| { "keys": ["alt+o"], "command": "prompt_open_file" }, | |
| { "keys": ["alt+]"], "command": "indent" }, | |
| { "keys": ["alt+["], "command": "unindent" }, | |
| { "keys": ["alt+shift+]"], "command": "next_view" }, |
Custom Theme (structure and styling)
Code for Custom Theme
| // ==UserScript== | |
| // @name Last.fm Pirate Search | |
| // @author MadhATTER6 | |
| // @description Adds Pirate Bay search links to the buy buttons in Last.FM | |
| // @version 2.2 | |
| // @updateURL https://userscripts.org/scripts/source/138251.user.js | |
| // @match http://last.fm/* | |
| // @match http://www.last.fm/* | |
| // ==/UserScript== |
| Promise.prototype.nodeify = function nodeify(fn) { | |
| return this.then(function nodeify_resolve(result) { | |
| fn(null, result); | |
| return result; | |
| }, function nodeify_reject(err) { | |
| fn(err); | |
| throw err; | |
| }); | |
| } |
| ## You can use hide_arg_tooltip(func) to get an object which will act like a | |
| ## function, but will not have an argument tooltip in IDLE. The docstring will | |
| ## still be shown, however. This is similar to how the default help and quit | |
| ## objects work. | |
| ## | |
| ## You can also use it as a function decorator | |
| def hide_arg_tooltip(func): return _function(func) | |
| class _function: |
| VendTTP Client-Server Communication | |
| (guest-login patch based on revision 3.2) | |
| ========================================= | |
| new guest log-in request: | |
| { | |
| "type" : "guest" | |
| } | |
| no confirmation response |
###login types:
##sqlite create table statement
CREATE TABLE accounts (id integer primary key, username text unique, srnd text unique, pin text, pin_on_rfid boolean, balance real,
| Specs for VendTTP Client-to-Server Communication | |
| revision 3.3 | |
| ============================================================== | |
| Notes: | |
| * <"asdf"|"uiop"> means either "asdf" or "uiop" | |
| * ( ) means attibute may be null | |
| * ~ prefix means non-literal placeholder value | |
| * all requests should be shorter than 512 characters (this may be removed in the future) | |
| * the client should not send a request before receiving the response to a previous non-stand-alone request |