As an old coder involved in difference languages, once upon a time, I planned to arrange a FAQ(A.K.A Cheat sheet) for the languages I might use not every day but occasionally. I never did it. However, someone did. Here is some essential cheat sheets, posted by vikas in DesignZum, which […]
Utilities
Found a great post which is about “Old coder(s)”, I’m not that old yet, however, just like the author said, I need to plan it, right now, cause what I am now is right what he was, experienced in manny fields, and a developer like that is the least one […]
When you are running into bugs or issues in you Android Apps, callstack information of your components would be very much helpful, defintely. Here is a post I’v found in freescale community, auther by MingZhou, it instructs you have get the caller stack information for you Android App or components. […]
I installed a new virtual machine(Ubuntu 12.04 LTS) for test purpose, everyting went OK during the installation. However, when I tried to launch my virtual machine after done with the installation, found it always stuck at the startup screen showing "Installing VMWare Tools, Please wait…".
One of my VS2008 Project can not run debug, however the output windows will trace out a message like this, “Binary was not build with debug information”, when I try run this project in debug mode. The problem is, as the error message suggests, you have not built your project […]
Issue description: One of my program(A) got binded with an UDP port (20500) which should be assigned to another program(B), here are the steps for trace down where A binded this port: 1. start the process with strace log: strace -f -s 128 -o proxy.strace ./pxyserverapp_redhat 2. Find out the […]
About Phabricator, just like what said in Phabricator.org: Phabricator is a collection of open source web applications that help software companies build better software. My task here is setup Phabricator on a brand new PC. Target OS: Ubuntu 12.04 32 bit Target PC: Dell Opmix 380 Here we go.
I bought myself a new notebook last Saturday, and installed a lot develop softwares on it. But when I tried to install Visual Studio 2010, I got a error like this: [code] [08/06/13,23:08:05] Microsoft .NET Framework 4: [2] Error code -939523550 for this component is not recognized. [08/06/13,23:08:05] Microsoft .NET […]
I installed ia32-libs, but got an error like this while compiling my program(already added -m32 option to CPPFLAG arguments in the Makefile) [code] jacky@ubuntu-msdk:/opt/workspace/msdk/src/msdk_client32$ make /usr/include/features.h:324:26: fatal error: bits/predefs.h: No such file or directory compilation terminated. /usr/include/features.h:324:26: fatal error: bits/predefs.h: No such file or directory compilation terminated. g++ -m32 -I./../base_shm […]