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
| // 指定類別 | |
| http://lorempixel.com/200/200/abstract | |
| // 指定某類別的第幾張圖 | |
| http://lorempixel.com/200/200/abstract/2 |
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
| // 隨機圖片疊上文字 | |
| http://lorempixel.com/200/200/people/Vincent/ | |
| // 指定圖片疊上文字 | |
| http://lorempixel.com/200/200/people/3/Vincent/ |
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
| $ cd ~/.ssh | |
| $ ls | |
| # Lists the files in your .ssh directory |
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
| <link rel="stylesheet" href="css/mfglabs_iconset.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
| <i class="icon-cloud"></i> |
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
| <i class="icon-cloud icon2x"></i> |
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
| .icon2x { font-size: 2em; } | |
| .icon3x { font-size: 3em; } |
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
| <i class="icon-globe gradient icon3x"></i> |
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
| package efwuhn.test.app; | |
| import javax.jdo.annotations.IdGeneratorStrategy; | |
| import javax.jdo.annotations.Persistent; | |
| import javax.jdo.annotations.PrimaryKey; | |
| import javax.persistence.Entity; | |
| import com.google.appengine.api.datastore.Blob; | |
| @Entity |
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
| NSMutableDictionary* params = [[NSMutableDictionary alloc] init]; | |
| [params setObject:@"your custom message" forKey:@"message"]; | |
| [params setObject:UIImagePNGRepresentation(_image) forKey:@"picture"]; | |
| _shareToFbBtn.enabled = NO; //for not allowing multiple hits | |
| [FBRequestConnection startWithGraphPath:@"me/photos" | |
| parameters:params | |
| HTTPMethod:@"POST" | |
| completionHandler:^(FBRequestConnection *connection, | |
| id result, |