To run this, you can try:
curl -ksO https://gist.githubusercontent.com/nicerobot/2697848/raw/uninstall-node.sh
chmod +x ./uninstall-node.sh
./uninstall-node.sh
rm uninstall-node.sh
| /* | |
| * object.watch polyfill | |
| * | |
| * 2012-04-03 | |
| * | |
| * By Eli Grey, http://eligrey.com | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ |
| // ---------------------------------------------------------- | |
| // A short snippet for detecting versions of IE in JavaScript | |
| // without resorting to user-agent sniffing | |
| // ---------------------------------------------------------- | |
| // If you're not in IE (or IE version is less than 5) then: | |
| // ie === undefined | |
| // If you're in IE (>=5) then you can determine which version: | |
| // ie === 7; // IE7 | |
| // Thus, to detect IE: | |
| // if (ie) {} |
| /** | |
| * | |
| * | |
| * Copyright 2011 Aaron K. Saunders, Clearly Innovative Inc | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a> |
| .rotate(@val) { | |
| -moz-transform: rotate(@val); /* FF3.5+ */ | |
| -o-transform: rotate(@val); /* Opera 10.5 */ | |
| -webkit-transform: rotate(@val); /* Saf3.1+, Chrome */ | |
| -ms-transform: rotate(@val); /* IE9 */ | |
| transform: rotate(@val); | |
| /* IE6-IE8 */ | |
| @radians: ~`parseInt("@{val}") * Math.PI * 2 / 360`; | |
| @costheta: ~`Math.cos("@{radians}")`; |
| var name = ""; // Name des Zahlungsempfängers | |
| var account = ""; // Kontonummer des Zahlungsempfängers | |
| var BNC = ""; // BLZ des Zahlungsempfängers | |
| // hier wird der Verwendungszweck generiert: "RG <Rechnungsnummer> KD <Kundennummer>" | |
| var reason = "RG%20"+grandtotalrecord.name()+"%20KD%20"+grandtotalrecord.client().id(); | |
| var URL = "bank://singlepayment?"; | |
| URL += "name=" + name.replace(/\ /g,"+"); | |
| URL += "&account=" + account; |
| // Created by Guillermo Enriquez on 09/10/2012. | |
| // Copyright 2012 nacho4d. All rights reserved. | |
| int main(int argc, char *argv[]) { | |
| NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; | |
| int retVal = UIApplicationMain(argc, argv, @"Application", @"AppDelegate"); | |
| [pool drain]; | |
| return retVal; | |
| } |
| function countCSSRules() { | |
| var results = '', | |
| log = ''; | |
| if (!document.styleSheets) { | |
| return; | |
| } | |
| for (var i = 0; i < document.styleSheets.length; i++) { | |
| countSheet(document.styleSheets[i]); | |
| } | |
| function countSheet(sheet) { |
To run this, you can try:
curl -ksO https://gist.githubusercontent.com/nicerobot/2697848/raw/uninstall-node.sh
chmod +x ./uninstall-node.sh
./uninstall-node.sh
rm uninstall-node.sh
| <script> | |
| var Constants = { | |
| saveURL: 'http://random/birthday/saveimage.php', | |
| w: 500, | |
| h: 500, | |
| x: 200, | |
| y: 200 | |
| }; |
| -(void)manageRotation; | |
| -(UIScrollView*)scrollview; | |
| -(void)setCurrentPage_:(id)page; | |
| -(void)setScrollingEnabled_:(id)enabled; | |
| -(void)refreshScrollView:(CGRect)visibleBounds readd:(BOOL)readd; | |
| -(void)setScrollsToTop_:(id)value; // New property added | |
| @end |