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
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 $? |
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 subclass(base, child) { | |
function temp() {} | |
temp.prototype = base.prototype; | |
child.prototype = new temp; | |
} | |
function a(){} | |
a.prototype = {foo: 'bar'}; | |
function b(){} |
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() { | |
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'; |
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
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 |
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
{ | |
'GYP_DEFINES': 'chromeos=1 clang=1 component=shared_library' | |
} |
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: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); |
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 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 */; |
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 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/* |
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
$ cat blah.cc | |
#include <iostream> | |
int main() { | |
int i = 0; | |
if (i || (i = 5)) | |
std::cout << "yay!"; | |
return 0; | |
} | |
$ g++ blah.cc |
NewerOlder