Skip to content

Instantly share code, notes, and snippets.

View Obooman's full-sized avatar

Oboo Cheng Obooman

View GitHub Profile

Keybase proof

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:

@Obooman
Obooman / nginx.conf
Created August 17, 2016 03:53 — forked from thoop/nginx.conf
Official prerender.io nginx.conf for nginx
# 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;
@Obooman
Obooman / array_max.js
Created August 1, 2016 03:55
Get max value of an array.Use apply.
function maxInArray( array ){
return Math.max.apply([], array)
}
@Obooman
Obooman / mac_Phost
Created July 26, 2016 07:48
Mac access parallels windows server host
10.211.55.5 site.windows.com
@Obooman
Obooman / parallels host
Created July 26, 2016 07:47
parallels windows host to access Mac's server
# C:/Windows/System32/drivers/etc
# Change it's write perssion before modify hosts file
10.211.55.2 local.mysite.com
@Obooman
Obooman / grid.css
Last active July 15, 2016 09:23
Grid system for flex layout needs.REALLY powerful.
.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;
@Obooman
Obooman / ReactNativeNativeModule.m
Last active June 28, 2016 10:04
react-native native module
#import "SomeClass.h"
RCT_EXPORT_METHOD(method:(NSArray *)shareList source:(NSDictionary *)source callback:(RCTResponseSenderBlock)callback)
{
callback(@"hello-demo")
}
@Obooman
Obooman / ReactNativeNativeMethods.js
Last active June 28, 2016 09:58
react native native modules
var { Method } = require('react-native').NativeModules;
// ...
componentDidMount(){
Method.run();
}
@Obooman
Obooman / placeholder selector.css
Created June 28, 2016 05:44
placeholder selector
::-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;