Here is the solution for error message 'Failed to load libGL.so' when launch Android Virtual Device (AVD) from Android Studio 0.2 on Ubuntu 13.04 32 bit:
Install 'Free Implementation of the OpenGL API-GLX development files' (libgl1-mesa-dev) package from Ubuntu Software Center
or type this command at terminal
sudo apt-get install libgl1-mesa-dev
Credit: http://learnedstuffs.wordpress.com/2012/07/17/fixing-ubuntu-error-failed-to-load-libgl-so/
Software. Consulting. Business Solution. Application Development. Information Technology
Friday, July 12, 2013
Tuesday, July 9, 2013
C# Questions and Answers – Part 3
What is an anonymous class?
An anonymous class is a class that does not have a name. An anonymous class created by using the new keyword and and a pair of brace defining the fields and values.
How to prevent a calculation overflowed in C#?
Use checked keyword. For example: checked (operand1 + operand2); checked and unchecked keyworks are for integer arithmetic such as int and long
What is a partial class?
When we split a number of methods, fields, and constructors of a class into many files, we can use partial keyword.
Previous posts:
C# Questions and Answers
C# Questions and Answers – Part 2
C# Questions and Answers – Part 3
An anonymous class is a class that does not have a name. An anonymous class created by using the new keyword and and a pair of brace defining the fields and values.
How to prevent a calculation overflowed in C#?
Use checked keyword. For example: checked (operand1 + operand2); checked and unchecked keyworks are for integer arithmetic such as int and long
What is a partial class?
When we split a number of methods, fields, and constructors of a class into many files, we can use partial keyword.
Previous posts:
C# Questions and Answers
C# Questions and Answers – Part 2
C# Questions and Answers – Part 3
Subscribe to:
Posts (Atom)
What Makes A Software Programmer a Professional? - CodeProject
Summary article written by Rob Kraft in https://www.codeproject.com/Articles/5129182/What-Makes-A-Software-Programmer-a-Professiona...
-
These keyboard shortcuts are helpful. Some of them are not document in Visual Studio 2010 Express, for example: <Ctrl> F5 to run the ...
-
What is a view? A view can be thought of as either a virtual table or a stored query. The data accessible through a view is not stored in th...
-
It’s fun to check my email account recent activity. Here is the fun. Someone attempted to log in to my account from other countries. It is g...