View smartmontools.patch
diff --git a/smartmontools b/smartmontools | |
index 975c018..89feba5 100755 | |
--- a/smartmontools | |
+++ b/smartmontools | |
@@ -127,7 +127,7 @@ case "$1" in | |
fi | |
;; | |
status) | |
- status_of_proc -p $SMARTDPID $SMARTD smartd && exit 0 || exit $? | |
+ status_of_proc -p $PIDFILE smartd smartd && exit 0 || exit $? |
View fast-merge-object.js
function subclass(base, child) { | |
function temp() {} | |
temp.prototype = base.prototype; | |
child.prototype = new temp; | |
} | |
function a(){} | |
a.prototype = {foo: 'bar'}; | |
function b(){} |
View inject-requestautocomplete-magento-extension.js
(function() { | |
var host = 'https://rawgit.com/chromium/requestautocomplete-magento-extension/master/'; | |
var script = document.createElement('script'); | |
script.src = host + 'js/requestautocomplete/checkout.js'; | |
script.onload = function() { requestAutocomplete.enable(); }; | |
document.documentElement.appendChild(script); | |
var link = document.createElement('link'); | |
link.href = host + 'skin/frontend/base/default/css/requestautocomplete/checkout.css'; |
View xmonad.hs
import XMonad | |
import XMonad.Hooks.DynamicLog | |
import XMonad.Hooks.ManageDocks | |
import XMonad.Util.Run(spawnPipe) | |
import XMonad.Util.EZConfig(additionalKeys) | |
import System.IO | |
myManageHook = composeAll | |
[ className =? "Gimp" --> doFloat | |
, className =? "Xmag" --> doFloat |
View chromium.gyp_env
{ | |
'GYP_DEFINES': 'chromeos=1 clang=1 component=shared_library' | |
} |
View chromiumcodereview-loc.js
javascript:var t=0;Array.prototype.forEach.call(document.querySelectorAll('[name=patch] td:nth-of-type(7)'),function(e){t+=eval(e.textContent.replace(/[lines ,]/g,'').replace('-','+'));});alert(total); |
View gist:5708457
// ==UserScript== | |
// @name Refresher and scroller | |
// @namespace refresh-and-scroll | |
// @description Refreshes page after 5s and scrolls to 1000px. | |
// @match https?://yourdomain.com/* | |
// @version 0.1 | |
// ==/UserScript== | |
window.addEventListener('load', function() { | |
window.scrollTop = 1000 /* px from the top */; |
View reload.user.js
// ==UserScript== | |
// @name Tree Reloader | |
// @namespace tree-reloader | |
// @description Reloads the tree | |
// @match http://build.chromium.org/* | |
// @match https://build.chromium.org/* | |
// @match http://chromegw.corp.google.com/* | |
// @match https://chromegw.corp.google.com/* | |
// @match http://chromium-build.appspot.com/* | |
// @match https://chromium-build.appspot.com/* |
View gist:2649716
$ cat blah.cc | |
#include <iostream> | |
int main() { | |
int i = 0; | |
if (i || (i = 5)) | |
std::cout << "yay!"; | |
return 0; | |
} | |
$ g++ blah.cc |
NewerOlder