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
Category Archives: troubleshooting
Lesson Learned: O365 cloud mail nameserver change
Was a little careless today with helping someone transfer their GoDaddy domain and O365 mail to a new server (transferring their nameserver). When I looked at the GoDaddy domain DNS log, I saw all these entries that looked related to … Continue reading
Remote Debugging: Unable to find dynamic linker breakpoint function
Situation: Using QT Creater, trying to debug a program on remote device. I set the breakpoints on the IDE but the breakpoints are not active and program does not stop. Action: The “Unable to find dynamic linker breakpoint” seemed pretty … Continue reading
Posted in troubleshooting
Tagged debugging, qt, remote, unable to find dynamic linker breakpoint function
3 Comments
VirtualBox issue with SanDisk ImageMate
Using VirtualBox (arg!) at work and running into issue with SanDisk ImageMate 12-in-1 memory card reader (SDDR-89-A15). I’m running VirtualBox on a Windows 7 machine and it looks like a driver issue. I cannot figure out why VirtualBox cannot take … Continue reading
Posted in troubleshooting
Tagged 12-in-1, E_INVALIDARG, Failed to attach the USB device, imagemate, sandisk, SDDR-89, USB, virtualbox
Leave a comment
GDB: Remote target error
I was trying to debug a program on an ARM target and the debugger kept giving me this problem: gdb malformed packet Looking online, this error occurs because of a mismatch between the gdb on the host and the gdbserver … Continue reading
Git: git push -> No refs in common and none specified; doing nothing
If you see the error message, No refs in common and none specified; doing nothing Perhaps you should specify a branch such as ‘master’. fatal: The remote end hung up unexpectedly It is probably because you cloned an empty repository … Continue reading
Using gdb to debug program on target
Man I use to be a pro with gdb and debugging remote programs. I wrote a target-side stub for heaven’s sake. Now I can’t even remember how to do a basic connection. sad. Setup: Host: x86_64 Ubuntu (192.168.1.18) Target: ARM-based … Continue reading
Linux Qt: Boxes demo gluPerspective
I was compiling the Linux Qt Demo: Boxes for Qt4.8.1 and ran into these errors. Here’s how I fixed them: /home/mfang/dev/QtSDK/Demos/4.7/boxes/qtbox.cpp:329: error: ‘gluPerspective’ was not declared in this scope In qtbox.cpp and scene.cpp add: #include “GL/glu.h” Explanation: According to the … Continue reading
Posted in Linux, troubleshooting
Tagged boxes, gluperspective, linux, not declared, qt, reference, undefined
Leave a comment
Apigee Usergrid: Getting access token for Application User
I’m using Usergrid for my backend for my app and while I’m working on obtaining the access token for an application(normal) user I noticed an error in their documentation. Usergrid Documentation: http://api.usergrid.com/management/<org-name>/<app-name>/token?grant_type=password&username=<username>&password=<password> Testing it out I realized that it should … Continue reading
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