I hereby claim:
- I am aerouk on github.
- I am aero (https://keybase.io/aero) on keybase.
- I have a public key whose fingerprint is EFAB 2EAD 353B C6E3 5C83 5677 0A02 EF1C 2306 E7D5
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name WME UR Shortcuts | |
| // @namespace tbrks | |
| // @version 0.1.1 | |
| // @description Mark Update Requests as solved / not identified via keyboard shortcuts | |
| // @author tbrks | |
| // @license MIT | |
| // @include /^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor\/?.*$/ | |
| // @grant none | |
| // @run-at document-idle |
| #!/bin/sh | |
| for dir in */; do | |
| for file in "$dir"*.jpg; do | |
| cp "$file" "${file%/*}.jpg" | |
| break 1 | |
| done | |
| done |
| public static final Map<String, Integer> osuMods = new LinkedHashMap<String, Integer>(); | |
| public OsuListener() | |
| { | |
| osuMods.put("NF", 1); | |
| osuMods.put("EZ", 2); | |
| osuMods.put("HD", 8); | |
| osuMods.put("HR", 16); | |
| osuMods.put("SD", 32); | |
| osuMods.put("DT", 64); |
| { | |
| "color_scheme": "Packages/User/Monokai (SL).tmTheme", | |
| "font_face": "Consolas Bold", | |
| "font_options": | |
| [ | |
| "gray_antialias" | |
| ], | |
| "font_size": 11, | |
| "ignored_packages": | |
| [ |
| RewriteEngine On | |
| RewriteCond %{HTTP_HOST} !^$ | |
| RewriteCond %{HTTP_HOST} !^www\. [NC] | |
| RewriteCond %{HTTPS}s ^on(s)| | |
| RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] |
I hereby claim:
To claim this, I am signing this object:
| # youtube-dl & ffmpeg installer script | |
| # by aerouk | |
| # youtube-dl | |
| sudo curl https://yt-dl.org/downloads/2014.07.30/youtube-dl -o /usr/local/bin/youtube-dl | |
| sudo chmod a+x /usr/local/bin/youtube-dl | |
| # ffmpeg |
yum -y install java7yc to ensure it installed correctly.Now you can use the following command to get started:
yc style.css -o style.min.css
| <?php | |
| /* linkr self-hosted shortener | |
| * © aerouk 2014 | |
| */ | |
| $key = "your key"; | |
| $err = "/path/to/404"; // public_html/* | |
| if ( ! isset($_GET['url'])) showError($err); |