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
// MARK: - tmp impl | |
// import FirebaseRemoteConfig | |
protocol RemoteConfigResult { | |
associatedtype ResultType | |
} | |
struct KeyType<T>: RemoteConfigResult { | |
typealias ResultType = T |
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
bool HelloWorld::init() | |
{ | |
if (!Layer::init()) { | |
return false; | |
} | |
Size visibleSize = Director::getInstance()->getVisibleSize(); | |
// Data |
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
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; } | |
body > *:first-child { |
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
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; } | |
body > *:first-child { |
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
#もばこんっ成果報告 | |
- 4/15 | |
- heroku で Hello World (好きな言語でよろ) node.jsでおk。 | |
- heroku で Perl Hello World できました、おk。 | |
- heroku で MySQL Hello World <---イマココ amon2でmysql使う感じで進めます。 | |
- heroku で Amon2動かしたWebアプリつくってみてちょ <---イマココ | |
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
#if ! __has_feature(objc_arc) | |
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC). | |
#endif |
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
UISearchDisplayController *searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:_sb contentsController:self]; | |
UIImageView *backgroundImage; | |
if ([[UIScreen mainScreen] applicationFrame].size.height > 460 ){ | |
backgroundImage = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"b1_bg_i5.png"]] autorelease]; | |
}else{ | |
backgroundImage = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"b1_bg.png"]] autorelease]; | |
} | |
backgroundImage.frame = [[UIScreen mainScreen] bounds]; |