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
; remove newline characters | |
; Win + X | |
#x:: | |
Send ^x | |
StringReplace, clipboard, clipboard,`r`n,, All | |
Send ^v | |
return |
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
--- youscrobbler.user.js Tue Sep 09 23:39:36 2014 | |
+++ youscrobbler.user.mod.js Tue Sep 09 23:54:07 2014 | |
@@ -2,7 +2,7 @@ | |
// @name YouScrobbler | |
// @namespace userscripts.org | |
// @author http://www.lukash.de | |
-// @description Scrobbles the currently watching YouTube video to last.fm. | |
+// @description Scrobbles the currently watching YouTube video to last.fm. - modified by github.com/0x4a: moved button below video, changed autoscrobble-time from 3/4 to 2/3 | |
// @identifier http://userscripts.org/scripts/source/119694.user.js | |
// @include http://*.youtube.com/watch?*v=* |
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
data:text/html, <script src="http://ajaxorg.github.io/ace-builds/src-min/ace.js" data-ace-base="src" charset="utf-8" type="text/javascript"></script> <div id="ed" style="position:absolute;top:0;left:0;right:0;bottom:0"></div> <script>ed=ace.edit("ed");</script> |
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
data:text/html, <html contenteditable> |
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
#!/bin/bash | |
# make an alias | |
git config --global alias.initempty '!git init && git commit -m "(initial empty commit)" --allow-empty' |
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
#!/bin/bash | |
rsync -rvhW --no-compress --size-only --progress <source> <destination> |
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
$(".foobar").css('outline', '1px solid red') |
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
#NoEnv | |
#SingleInstance, Force | |
#Warn | |
SendMode Input | |
OnExit, ExitSub | |
; takes a rrggbb hex number from clipboard and pastes it to standard | |
; windows color selector as three dec numbers | |
; pick colors |
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
; insert date - win + y | |
#y::Send %A_YYYY%-%A_MM%-%A_DD%{Space} | |
; insert time - win + a | |
#a::Send %A_Hour%-%A_Min%-%A_SEC%{Space} | |
; insert date + time - win + q | |
#q::Send %A_YYYY%-%A_MM%-%A_DD%_-_%A_Hour%-%A_Min%-%A_SEC%{Space} |
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
$(function() { | |
debug.init(); | |
//debug.load(); | |
}); | |
(function(debug, $, undefined) { | |
// https://stackoverflow.com/a/14223953 | |
// https://stackoverflow.com/a/1216743 |