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
| // | |
| // NSData+HexString.h | |
| // | |
| // Copyright (c) 2013, Leigh McCulloch. All rights reserved. | |
| // BSD-2-Clause License: http://opensource.org/licenses/BSD-2-Clause | |
| // | |
| #import <Foundation/Foundation.h> | |
| @interface NSData (HexString) |
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
| /* Google - Standard new analytics code. Replace the UA-XXXXXXXX-X and example.com. */ | |
| (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
| (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
| m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
| })(window,document,'script','http://www.google-analytics.com/analytics.js','ga'); | |
| ga('create', 'UA-XXXXXXXX-X', 'example.com'); | |
| ga('send', 'pageview'); | |
| /* Catch any outbound links, register them with Google Analytics. | |
| Outbound links will be displayed in your analytics account as 'out/[outbound url]'. |
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
| # Author: Leigh McCulloch | |
| # License: BSL-1.0 (http://www.opensource.org/licenses/BSL-1.0) | |
| # | |
| # This script takes arguments from the command line and autotypes | |
| # them with tab separators into the last selected application. | |
| # This can be used from one application to auto-type into another | |
| # application. | |
| # | |
| # Command line usage: | |
| # osascript autotype.spct [username] [password] |
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
| // NSString_stripHtml.h | |
| // Copyright 2011 Leigh McCulloch. Released under the MIT license. | |
| #import <Foundation/Foundation.h> | |
| @interface NSString (stripHtml) | |
| - (NSString*)stripHtml; | |
| @end |
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 recursive_delete($dir) { | |
| $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir), RecursiveIteratorIterator::CHILD_FIRST); | |
| foreach ($iterator as $file) { | |
| $path = $file->__toString(); | |
| if($file->isDir()) { | |
| rmdir($path); | |
| } else { | |
| unlink($path); | |
| } | |
| } |
NewerOlder