Skip to content

Instantly share code, notes, and snippets.

@jiahuang
jiahuang / ScrollableGridView.java
Created May 4, 2012 04:20
gridview inside of scrollview
// http://pastebin.com/KMcwGrS8
public class ScrollableGridView extends GridView {
boolean expanded = true;
public ScrollableGridView(Context context)
{
super(context);
}
@jiahuang
jiahuang / dropStash
Created April 29, 2012 03:47
drop unstaged changes in git
http://stackoverflow.com/questions/52704/how-do-you-discard-unstaged-changes-in-git
git stash save --keep-index
git stash drop
@jiahuang
jiahuang / example_mapStringify.js
Created April 20, 2012 05:06
javascript trying to stringify map results
/*
Let's say I have this html
<table id="switchesTbl">
<tr>
<td><div class="addButton" type="switch"></div></td>
<td><div class="createLabel">Switch</div></td>
<td><input type="text" class="createInput" value="s1"/></td>
<td><div class="createLabel">Description</div></td>
<td><input type="text" class="createInput" value="d1"/></td>
<td><div class="createLabel">Default</div></td>
@jiahuang
jiahuang / tags.json
Created October 26, 2011 02:01
How to display a route with the Google Maps API?
["Google Maps","js"]