A collection of simple-style layouts, all of which look approximately like this:
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 Click to delete | |
| // @author Antonio Bueno | |
| // @namespace userscripts.atnbueno.com | |
| // @description This script deletes page elements if clicked twice while simultaneously pressing Alt, Control, and Shift | |
| // @version 2.0 | |
| // @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
| ################################################################################################### | |
| # This is a very simple .bashrc file that I'm using on a daily basis. # | |
| # It completely replaced my zsh setup, and should be relatively simple to understand and modify. # | |
| # # | |
| # Built by Moritz (mo-mar.de) - just do whatever you want with it, according to the Unlicense: # | |
| # https://choosealicense.com/licenses/unlicense/ # | |
| # # | |
| # Simple installation: # | |
| # wget https://go.momar.de/bashrc -O ~/.bashrc # | |
| ################################################################################################### |
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
| { | |
| "title":"DIY-untitled", | |
| "onScreen":{ | |
| "main":[ | |
| "1234567890", | |
| "qwertyuiop", | |
| "asdfghjkl", | |
| "[SHIFT][XK:z[UNDO]][XK:x[CUT]][XK:c[COPY]][XK:v[PASTE]]bnm[DEL]", | |
| "[TOOL][ALTGR:,][SPACE][][][SYM:.][ENTER]" | |
| ], |
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
| javascript:(function() { | |
| function copyToClipboard(text) { | |
| if (window.clipboardData && window.clipboardData.setData) { | |
| /*IE specific code path to prevent textarea being shown while dialog is visible.*/ | |
| return clipboardData.setData("Text", text); | |
| } else if (document.queryCommandSupported && document.queryCommandSupported("copy")) { | |
| var textarea = document.createElement("textarea"); | |
| textarea.textContent = text; |
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
| * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } |
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
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 SCRIPT | |
| // @description SCRIPT DESCRIPTION | |
| // @icon https://raw.github.com/sepehr/userscript-SCRIPT/master/SCRIPT.png | |
| // | |
| // @author Sepehr Lajevardi <[email protected]> | |
| // @namespace http://github.com/sepehr | |
| // @downloadURL https://raw.github.com/sepehr/userscript-SCRIPT/master/SCRIPT.user.js | |
| // | |
| // @license GPLv3 - http://www.gnu.org/licenses/gpl-3.0.txt |
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 perl | |
| use common::sense; | |
| use AnyEvent; | |
| use AnyEvent::HTTP; | |
| use JSON; | |
| # Get your API key here: | |
| # http://imgur.com/register/api_anon | |
| my $imgur_api_key = '69696969696969696969696969696969'; # XXX - replace me | |
| my $imgur_upload = 'http://api.imgur.com/2/upload.json'; |
