I hereby claim:
- I am obooman on github.
- I am oboochin (https://keybase.io/oboochin) on keybase.
- I have a public key whose fingerprint is E8DB 408F EAA6 88A1 949B 304C 5703 6F70 5EEF 3A59
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Change YOUR_TOKEN to your prerender token and uncomment that line if you want to cache urls and view crawl stats | |
# Change example.com (server_name) to your website url | |
# Change /path/to/your/root to the correct value | |
server { | |
listen 80; | |
server_name example.com; | |
root /path/to/your/root; | |
index index.html; |
function maxInArray( array ){ | |
return Math.max.apply([], array) | |
} |
10.211.55.5 site.windows.com |
# C:/Windows/System32/drivers/etc | |
# Change it's write perssion before modify hosts file | |
10.211.55.2 local.mysite.com |
.grid { | |
display: -webkit-box; | |
display: -webkit-flex; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-flex-wrap: wrap; | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap; | |
list-style: none; |
#import "SomeClass.h" | |
RCT_EXPORT_METHOD(method:(NSArray *)shareList source:(NSDictionary *)source callback:(RCTResponseSenderBlock)callback) | |
{ | |
callback(@"hello-demo") | |
} |
var { Method } = require('react-native').NativeModules; | |
// ... | |
componentDidMount(){ | |
Method.run(); | |
} |
::-webkit-input-placeholder { | |
color: red; | |
/* font-size text-decoration etc. */ | |
} | |
:-moz-placeholder { /* Firefox 18- */ | |
color: red; | |
} | |
::-moz-placeholder { /* Firefox 19+ */ |
/* Let's get this party started */ | |
::-webkit-scrollbar { | |
width: 12px; | |
} | |
/* Track */ | |
::-webkit-scrollbar-track { | |
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); | |
-webkit-border-radius: 10px; | |
border-radius: 10px; |