Skip to content

Instantly share code, notes, and snippets.

View cheeaun's full-sized avatar
📬
Subscribe to my newsletter https://cheeaun.substack.com/

Chee Aun cheeaun

📬
Subscribe to my newsletter https://cheeaun.substack.com/
View GitHub Profile
@cheeaun
cheeaun / rdrc2014.md
Last active August 29, 2015 14:03
RedDotRubyConf 2014 links & resources
@cheeaun
cheeaun / bus-stops.geojson
Created April 28, 2015 12:56
Bus stops in SG
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cheeaun
cheeaun / bus-stops.geojson
Created April 29, 2015 06:21
A more accurate list of bus stops in Singapore
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cheeaun
cheeaun / disapproval.txt
Created May 26, 2015 05:03
Disapproval
ಠ_ಠ
@cheeaun
cheeaun / polypage.moo.js
Created December 11, 2008 11:56
This gist is now deprecated. Go to http://github.com/cheeaun/polypage/
/*
* PolyPage 0.5 - for Mootools
*
* Copyright (c) 2007 New Bamboo (new-bamboo.co.uk)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* Additional help and information can be found at: http://code.new-bamboo.co.uk/polypage
*
@cheeaun
cheeaun / cross-browser-display-inline-block.css
Created February 5, 2009 05:18
Cross-browser display: inline-block
/*
* Cross-browser display: inline-block
*
* References:
* - http://foohack.com/2007/11/cross-browser-support-for-inline-block-styling/
* - http://www.getonthenet.eu/css-howto-cross-browser-inline-block/
*/
a{
display: -moz-inline-box; /* Firefox 2 */
@cheeaun
cheeaun / .gitconfig
Created February 8, 2009 14:49
.gitconfig with custom merge tools
[user]
email = email@email.com
name = Your Name
[core]
autocrlf = false
[merge]
tool = diffmerge
[mergetool "tortoisemerge"]
cmd = C:/Program\\ Files/TortoiseSVN/bin/TortoiseMerge.exe /base:\"$BASE\" /mine:\"$LOCAL\" /theirs:\"$REMOTE\" /merged:\"$MERGED\"
keepBackup = false
@cheeaun
cheeaun / border-radius.css
Created March 2, 2009 03:17
Cross-browser border-radius except IE6/7
div{
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-ms-border-radius: 5px;
}