Skip to content

Instantly share code, notes, and snippets.

View Obooman's full-sized avatar

Oboo Cheng Obooman

View GitHub Profile
@Obooman
Obooman / 0_reuse_code.js
Created June 30, 2017 03:46
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@Obooman
Obooman / Demo.js
Created June 9, 2017 05:19
Demo gist for react-native-crosswalk-webview javascript execute question
// Main.js
...
<View style={{height:800}}>
<TouchableHighlight onPress={ this.inj }>
<Text>Fire</Text>
</TouchableHighlight>
<CrosswalkWebView
source = {{ uri:'http://url.any.com' }}
javaScriptEnabled={true}
@Obooman
Obooman / index.android.js
Created June 9, 2017 04:42
New index.android.js writing for react-native-webview crosswalk.
/*
* You should replace path/to/project/node_modules/react-native-webview-crosswalk/index.android.js with current file.
* [email protected] & android 4.4.2 checked.
*/
import React, { PropTypes,PureComponent } from 'react';
import ReactNative, { requireNativeComponent, View } from 'react-native';
var {
NativeModules: { UIManager, CrosswalkWebViewManager: { JSNavigationScheme } }
@Obooman
Obooman / app.js
Created April 4, 2017 10:27 — forked from bingeboy/app.js
Upload and display image with NodeJS and Express.
/*
* Module dependencies.
*/
var express = require('express')
, routes = require('./routes')
, user = require('./routes/user')
, common = require('./routes/common')
, fs = require('fs')
, http = require('http')
, util = require('util')
@Obooman
Obooman / grant_root_remote_access.txt
Created March 23, 2017 13:28 — forked from tinchodev/grant_root_remote_access.txt
Grant Root Remote Access MySQL
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Edit /etc/mysql/my.cnf
Comment address binding bind-address = 127.0.0.1 to #bind-address = 127.0.0.1
@Obooman
Obooman / gh-pages-deploy.md
Created February 10, 2017 16:05 — forked from cobyism/gh-pages-deploy.md
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a subfolder to GitHub Pages

Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.

For the sake of this example, let’s pretend the subfolder containing your site is named dist.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).

@Obooman
Obooman / introrx.md
Last active February 6, 2017 11:24 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@Obooman
Obooman / UMD.js
Created February 1, 2017 06:54
UMD snippet.
(function (window, factory) {
if (typeof exports === 'object') {
module.exports = factory();
} else if (typeof define === 'function' && define.amd) {
define(factory);
} else {
window.eventUtil = factory();
@Obooman
Obooman / qrsqrt.js
Created January 3, 2017 07:29
Quakes's fast inverse square root algorithm, in JavaScript
/**
* References:
* [1] ftp://ftp.idsoftware.com/idstuff/source/quake3-1.32b-source.zip
* [2] http://www.lomont.org/Math/Papers/2003/InvSqrt.pdf
* [3] http://en.wikipedia.org/wiki/Newton%27s_method
* [4] https://developer.mozilla.org/en/JavaScript_typed_arrays
* [5] http://en.wikipedia.org/wiki/Fast_inverse_square_root
*/
const QUAKEx32 = 0x5f3759df
@Obooman
Obooman / gist:81d44215c5fc8c136819f21f75421e00
Created October 17, 2016 02:41 — forked from gistforme/gist:2398124
HTML4: Starting Template
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
</head>
<body>