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
void main() { | |
var person = { | |
"name" : "Marcin", | |
"age" : 48, | |
"foot": "left" | |
}; | |
var updates = { | |
"name": "Kaks", | |
"age": 25, |
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
Counting objects: 912, done. | |
Delta compression using up to 8 threads. | |
#!/bin/bash | |
# check if user passed name of the new remote repository | |
if [ -z "$1" ] | |
then | |
echo "No bitbucket repository name supplied" | |
exit 1 | |
fi |
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
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]]; | |
[[UINavigationBar appearance] setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault]; | |
[[UINavigationBar appearance] setShadowImage:[UIImage new]]; | |
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}]; | |
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; |