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 2012
Font: Source Code Pro
I went to the Mobile Camp LA and one the things I took out of it was that as a coder I needed to switch to this awesome font, Source Code Pro. No more squinting to see if it is … Continue reading
WordPress: Twenty Eleven Theme : adding color scheme
I looked into making Child Themes and target adding another Color Scheme option for the Twenty Eleven Theme. Ideally what I wanted to change was the background color of the where all the posts were. Figured it out that that … Continue reading
BeagleBoard Xm: NFS boot
Here’s how I got the BB Xm to boot the rootfs over NFS. I’m doing this with the Ti Sitara Linux and their SDK installed certain configurations for NFS rootfs boot. Also, this is for booting the uEnv.txt and uImage … Continue reading
Qt: Ubuntu 10.04 compile errors
I’m building Qt 4.6.3 using sudo ./configure -opengl -opensource -confirm-license Issue: Basic XLib functionality test failed! Solution: sudo apt-get install libxext-dev Issue: All the OpenGL functionality tests failed! Solution I couldn’t figure out which exact package but I did the … Continue reading
Posted in Linux, Qt
Leave a comment
Topcoder: SRM 195 Div2 250pt Rounder
Pretty easy problem, though the topcoder solution was a single line which isn’t what I came up with. Reminder: Way of rounding: n = numerator d = denominator Always round up: (n+d)/d Round up by difference (n+(d/2))/d
Qt: QGraphicsView notes
Qt’s graphics/viewarchitecture has a non-visual class for holding the item data as a model (QGraphicsScene), and a class for visualizing the data (QGraphicsView). The way to add standard QWidgets to a scene is to create a QGraphicsProxyWidget for each QWidget, and add the … Continue reading
Ubuntu linux: downgrade package
Broke my Ubuntu by installing a development package of libgstreamer. How to downgrade it was Installed version: 0.10.34-1~lucid1 Downgrade to version: 0.10.28-1 I had to boot Ubuntu in recovery mode (press ESC during bootup) (selection at GRUB) then apt-get install … Continue reading