Skip to content

Instantly share code, notes, and snippets.

View Obooman's full-sized avatar

Oboo Cheng Obooman

View GitHub Profile
@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 / 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 / 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;

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 / 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>
@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 / 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 / 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 / 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 / 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