sudo apt-get install gpa seahorse
brew install gpg
| // ==UserScript== | |
| // @name FO-9000 ("Forking Over 9000") | |
| // @version 1.09 | |
| // @description A significantly-improved variant of Hit Forker. UPDATE: Caveman-speak and single-word requester names when horizontal space is at a premium. | |
| // @author Cuyler Stuwe (salembeats) | |
| // @icon https://i.imgur.com/snRSm80.gif | |
| // @include https://worker.mturk.com/?over9000* | |
| // @include https://worker.mturk.com/?end_signin=1&over9000* | |
| // @grant GM_log | |
| // @grant GM_setClipboard |
| # vim:ft=zsh ts=2 sw=2 sts=2 | |
| # | |
| # agnoster's Theme - https://gist.github.com/3712874 | |
| # A Powerline-inspired theme for ZSH | |
| # | |
| # # README | |
| # | |
| # In order for this theme to render correctly, you will need a | |
| # [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts). | |
| # Make sure you have a recent version: the code points that Powerline |
| function* copiesOf(val) { | |
| if(Array.isArray(val)) { | |
| while(true) yield [...val]; | |
| } | |
| else if(val === null) { | |
| while(true) yield null; | |
| } | |
| else if(typeof val === "object") { | |
| while(true) yield {...val}; |
| #!/bin/bash | |
| mkdir -p ~/.config/nvim/dein && \ | |
| git clone https://github.com/Shougo/dein.vim ~/.config/nvim/dein/repos/github.com/Shougo/dein.vim |
| " ==================================== | |
| " NeoVim Configuration file for Pi | |
| " Cuyler Stuwe | |
| " Version 1.1 | |
| " ==================================== | |
| " | |
| " Description: | |
| " | |
| " Neovim configuration with a decent balance of functionality and light weight | |
| " for editing code on the Raspberry Pi 3B+. |
| // ==UserScript== | |
| // @name Contribute to "Seen" API | |
| // @namespace salembeats | |
| // @version 1.03 | |
| // @description When browsing mTurk, mark seen HITs as seen. | |
| // @author Cuyler Stuwe (salembeats) | |
| // @include https://worker.mturk.com/ | |
| // @include https://worker.mturk.com/projects | |
| // @include https://worker.mturk.com/projects/ | |
| // @include https://worker.mturk.com/projects?page_size* |
| // ==UserScript== | |
| // @name Public -Testing Headers | |
| // @namespace salembeats forked by jrw254 (sabedth) | |
| // @version 1.1 | |
| // @description Links to whatever you want on the Overview & Earnings Bar Original code by salembeats with a small tweak to place inside this specific navbar | |
| // Combine this with Forking Panda Links on mTurk Dashboard for double the links! | |
| // @author Cuyler Stuwe (salembeats) forked by jrw254 (sabedth) | |
| // @include https://worker.mturk.com/dashboard* | |
| // @include https://worker.mturk.com/tasks* | |
| // @include https://worker.mturk.com/projects* |
| // ==UserScript== | |
| // @name Forking Panda Links on mTurk Dashboard | |
| // @namespace salembeats | |
| // @version 1.21 | |
| // @description UPDATE: Takes you to front-page for TH and MTC. Links to a handful of mTurk tool start screens on mTurk dashboard. | |
| // @author Cuyler Stuwe (salembeats) | |
| // @include https://worker.mturk.com/dashboard* | |
| // @grant GM_xmlhttpRequest | |
| // @connect turkerhub.com | |
| // @connect mturkcrowd.com |
| // ==UserScript== | |
| // @name Forking Short | |
| // @namespace salembeats | |
| // @version 1.00 | |
| // @description Keeps the Hit Forker log short (trimming off old HITs first) for performance purposes. | |
| // @author Cuyler Stuwe (salembeats) | |
| // @include https://worker.mturk.com/?finder_beta | |
| // @include https://worker.mturk.com/?hit_forker | |
| // ==/UserScript== |