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
| + (UIImage *)imageWithImage:(UIImage *)image scaledToSize:(CGSize)newSize | |
| { | |
| //UIGraphicsBeginImageContext(newSize); | |
| UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0); | |
| [image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)]; | |
| UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext(); | |
| UIGraphicsEndImageContext(); | |
| return newImage; | |
| } |
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
| require 'net/http' | |
| require 'thread' | |
| $o = [('a'..'z'),('A'..'Z'),(0..9)].map{|i| i.to_a}.flatten; | |
| $n_found = 0 | |
| $mutex = Mutex.new | |
| def generate | |
| generated = (0...4).map{ $o[rand($o.length)] }.join; | |
| 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
| #!/bin/bash | |
| # Schedule this to run once a day with cron. Doesn't matter what time since it parses yesterday's hits (by default). | |
| # I only tested this on the Marco.org server, which runs CentOS (RHEL). No idea how it'll work on other distributions, but it's pretty basic. | |
| # Required variables: | |
| RSS_URI="/rss" | |
| MAIL_TO="your@email.com" | |
| LOG_FILE="/var/log/httpd/access_log" |
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 | |
| ## GrabSnap -- An automated screenshot and osx iSight imaging tool | |
| ## Requires isightcapture in the path | |
| ## grabsnap.sh [name] [interval in seconds] [number of monitors] | |
| ## [2011.04.11] | |
| INTERVAL=60 | |
| PICTURE_DIR="$HOME/Pictures/grabsnap" | |
| MONITORS=1 |
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
| // suggested shell cmd line to run this: | |
| // | |
| // mongo --shell example2.js | |
| // | |
| // Note: the { out : … } parameter is for mongodb 1.8+ | |
| db.things.insert( { _id : 1, tags : ['dog', 'cat'] } ); | |
| db.things.insert( { _id : 2, tags : ['cat'] } ); | |
| db.things.insert( { _id : 3, tags : ['mouse', 'cat', 'dog'] } ); | |
| db.things.insert( { _id : 4, tags : [] } ); |
NewerOlder