| layout | category | tags | |||||
|---|---|---|---|---|---|---|---|
post |
resource |
|
##specs
- html5 spec - the w3c spec, always handy
| # -*- coding: utf-8 -*- | |
| """ | |
| This script is forked originally from Dave Jeffery. The original implementation | |
| was very slow and deleted around 2 tweets per second. Making it multithreaded I | |
| am able to delete 30-50 tweets per second. | |
| @author: vik-y | |
| ---------------------------------------------------------------------------- | |
| This script will delete all of the tweets in the specified account. |
| import java.text.DecimalFormat; | |
| import java.util.Scanner; | |
| public class PayAmmount { | |
| public static void main(String[] args) { | |
| double payRate | |
| double hours; | |
| Scanner keyScanner = new Scanner(System.in); |
| // Photoshop Script to Create iPhone Icons from iTunesArtwork | |
| // | |
| // WARNING!!! In the rare case that there are name collisions, this script will | |
| // overwrite (delete perminently) files in the same folder in which the selected | |
| // iTunesArtwork file is located. Therefore, to be safe, before running the | |
| // script, it's best to make sure the selected iTuensArtwork file is the only | |
| // file in its containing folder. | |
| // | |
| // Copyright (c) 2010 Matt Di Pasquale | |
| // Added tweaks Copyright (c) 2012 by Josh Jones http://www.appsbynight.com |
| @implementation UIImage (WRExtensions) | |
| #pragma mark - | |
| #pragma mark Scale and crop image | |
| - (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize | |
| { | |
| UIImage *sourceImage = self; | |
| UIImage *newImage = nil; | |
| CGSize imageSize = sourceImage.size; |
| layout | category | tags | |||||
|---|---|---|---|---|---|---|---|
post |
resource |
|
##specs