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
Family name: Marion | |
>Font name: Marion-Italic | |
>Font name: Marion-Bold | |
>Font name: Marion-Regular | |
Family name: Copperplate | |
>Font name: Copperplate-Light | |
>Font name: Copperplate | |
>Font name: Copperplate-Bold | |
Family name: Heiti SC | |
>Font name: STHeitiSC-Medium |
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
Family name: Copperplate | |
>Font name: Copperplate-Light | |
>Font name: Copperplate | |
>Font name: Copperplate-Bold | |
Family name: Heiti SC | |
Family name: Iowan Old Style | |
>Font name: IowanOldStyle-Italic | |
>Font name: IowanOldStyle-Roman | |
>Font name: IowanOldStyle-BoldItalic | |
>Font name: IowanOldStyle-Bold |
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
Family name: Copperplate | |
>Font name: Copperplate-Light | |
>Font name: Copperplate | |
>Font name: Copperplate-Bold | |
Family name: Heiti SC | |
Family name: Kohinoor Telugu | |
>Font name: KohinoorTelugu-Regular | |
>Font name: KohinoorTelugu-Medium | |
>Font name: KohinoorTelugu-Light | |
Family name: Thonburi |
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
git diff --shortstat "@{0 day ago}" |
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
# | |
# Uncrustify Configuration File | |
# File Created With UncrustifyX 0.4.3 (252) | |
# | |
# Alignment | |
# --------- | |
## Alignment |
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
cowsay -l | tail +2 | tr " " "\\n" | xargs -I {} cowsay -f {} "cowsay -f {} 'Message'" | lolcat |
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
# Dropzone Action Info | |
# Name: QiNiu | |
# Description: Upload file to QiNiu and get the link. | |
# Handles: Files | |
# Creator: nickcheng | |
# URL: http://nickcheng.com | |
# OptionsNIB: ExtendedLogin | |
# Events: Clicked, Dragged | |
# KeyModifiers: Command, Option, Control, Shift | |
# SkipConfig: No |
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
git archive --format=zip --output=cocos2dv2.zip release-2.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
NSString *domainName = [[NSBundle mainBundle] bundleIdentifier]; | |
[[NSUserDefaults standardUserDefaults] removePersistentDomainForName:domainName]; |
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 *smallVersion = @"3.8"; | |
NSString *bigVersion = @"3.10"; | |
if ([smallVersion compare:bigVersion options:NSNumericSearch] == NSOrderedAscending) { | |
NSLog(@"%@ is smaller than %@!", smallVersion, bigVersion); | |
} else { | |
NSLog(@"%@ is bigger than %@!", smallVersion, bigVersion); | |
} |