CClerville's TechBlog
A place to dump my Tech Knowledge...
Pages
(Move to ...)
Home
Projects
About Me
▼
Friday, January 4, 2013
DemoApp Sencha Touch 2.1 + PhoneGap 2.2.0 + Android
›
As promised in my previous post , I will demonstrate how easy it is to access the camera of your Android device with PhoneGap's Camera A...
3 comments:
Thursday, January 3, 2013
Sencha Touch 2.1 + PhoneGap 2.2.0 + Android
›
This post aims to provide a guide for anyone who wants to package a Sencha Touch 2.1 app with PhoneGap(Cordova) 2.2.0 for Android. What Y...
28 comments:
Sunday, December 30, 2012
Sort an Array of 0s, 1s and 2s
›
Given an unsorted array of 0s, 1s and 2s, sort the array such that the 0s appear before the 1s and the 1s appear before the 2s. e.g: A[0,...
Saturday, December 29, 2012
Sort An Array of 0s and 1s
›
Given an unsorted array of 0s and 1s, sort the array such that the 0s appear before the 1s. e.g: A[0,1,1,0] --> A[0,0,1,1]. import ...
Remove Duplicate Characters in String
›
public class RemoveDuplicates { static String removeDups(String s) { if(s == null || s.length() <= 1) return s; boo...
Home
View web version