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: July 2012
Crosstool: libraries/packages needed
Not having the libexpat1-dev package sucks. it’s not checked in the install or configure but fails during the make. Lots of pages do not include that one. I wanted to edit the #1 result from a search like this but … Continue reading
Eclipse: Neat Shortcuts
From an interaction with Erich Styger: To get a List of keyboard shortcuts: CTRL+SHIFT+L To search for a keyboard shortcut: CTRL+3 To Switch between files in Editor: CTRL+F6 (I like this better) or CTRL+E
Posted in Eclipse IDE
Leave a comment
Virtualization: VirtualBox vs VMPlayer
My recommendation: VMPlayer I’ve been playing around with virtualization software at work trying to setup my environment and I’m firmly in the VMPlayer camp now. Issue: Dealbreaker for me was USB support and in particular SD card support. Neither software … Continue reading
Android: Fragment v4 support exception
After trying out fragments without using the v4 support library, I tried a layout using fragments and kept running into this exception. What does this exception mean and how do I fix it? It’s pretty simple. This is the main … Continue reading
Posted in Android, troubleshooting
Tagged android, error inflating class fragment, exception, fragment, v4 support
3 Comments
Eclipse: Memory/JVM Optimizations (.eclipse.ini)
Found a helpful post for setting your Eclipse IDE environment. Eclipse is a big memory hog so you can increase Eclipse’s memory setting in the [eclipse path]/.eclipse.ini file. Here is what I change/add: According to blog.normation.com PermSize controls the size … Continue reading
Factory Pattern: Benefits
Currently Reading Designing Professional C++ 1. (Main Benefit) factories abstract the object creation process; you can easily substitute a different factory in your program. Just as you can use polymorphism with the created objects, you can use polymorphism with factories. … Continue reading
Android: HelloFragment
Created one of the most basic examples of using Fragments. Seems like most people are using Fragments these days so spent some time trying it out. If you’re trying to see a real basic example here is one. https://github.com/fangstar/HelloFragment res/layout/main.xml … Continue reading