Archives
- January 2020
- October 2018
- September 2018
- August 2018
- June 2018
- April 2018
- February 2018
- January 2018
- July 2017
- June 2017
- March 2017
- October 2016
- July 2016
- September 2015
- August 2015
- February 2015
- October 2014
- September 2014
- August 2014
- June 2014
- May 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
Meta
Categories
- add
- admob
- algorithm
- android
- app
- App Idea
- beagleboard xm
- BigQuery
- broken
- C++
- cakephp
- case-sensitive
- clone
- codeigniter
- coding
- composer
- coursera
- cross compile
- crosstool
- dbus
- default value
- dependency injection
- diff
- eclipse
- emulator
- error
- file
- forbidden
- fragment
- gdb
- git
- gitolite
- google maps
- inorder
- install
- interview
- java
- jQuery
- link
- linux
- marakana
- mongodb
- NFS
- not working
- php
- preferences
- preorder
- process
- pulseaudio
- push
- qnx
- qt
- rails
- refactored
- reference
- relink
- remote
- ruby
- ruby on rails
- ruby on rails tutorial
- server
- service
- singleton
- svn
- TDD
- topcoder
- tortoisesvn
- troubleshooting
- ubuntu
- UI properties
- undefined
- user
- v3
- virtualbox
- zend
Top Clicks
- None
Monthly Archives: October 2011
Selection vs Insertion Sort
I would’ve thought the swapping of values in the sorted list in Insertion sort would be worse than doing more comparisons as in Selection sort. If you think about it though, when you have a hand of cards, I’m more … Continue reading
Posted in Coding
Leave a comment
Android Programming: @android:id/list vs @+id/list
Ran into this problem today in a layout. Threw me off for a bit. What’s the difference if I declare an ID @android:id/list vs @+id/list? For Example <ListView android:id=”@android:id/list” android:layout_width=”wrap_content” android:layout_height=”wrap_content” /> The tutorial explains it like this: The @ symbol in the id strings … Continue reading
Android Testing
Need to take a step back and learn how to use android test functionality. Going through Android Test tutorial. Never really learned JUnit testing so hopefully this an example of both.
Posted in Coding
Leave a comment
App Idea: Notable LA Restaurant App
Everyone likes to eat right? Yelp gives too many results especially if I just want to know what the “best” or “hottest” restaurants are. I was looking through a magazine of best restuarants of LA and was like I’m in some of … Continue reading
Android Programming: Google Maps troubleshooting
I’ve been working on my Groupon app off and on and been running into a problem when trying to load Google Maps. I’m able to load Google Maps as a stand alone program buy trying to include it within a … Continue reading
App Idea #2
I was perusing the August magazine of LA Times Magazine. Inside there’s a list of top restaurants. I never remember where the restaurants are, which neighboorhood or how close I am to one. What about an app sort of like … Continue reading
Generating a List of Primes: The Sieve of Eratosthenes
Learned of The Sieve of Eratosthenes from Cracking the Coding Interview Ed. 5. The Sieve of Eratosthenes is a highly efficient way to generate a list of primes. It works by recognizing that all non-prime numbers are divisible by a … Continue reading
Posted in Coding
Leave a comment