Recent Posts
-
March 17, 2017
Create desktop entry for an application in Ubuntu
I just installed Android Studio 2.3 in my Ubuntu computer. Everything is fine. But there is a little problem that there is no an icon for it.So today, I want to share with you how I create an desktop entry for an application, such as: Android Stud...
-
March 14, 2017
Installing nodejs and npm in Linux from binaries
There are few ways to install nodejs in Linux. You can install it with: Node Version Manager Ubuntu Package Manager Maintained Ubuntu Packages Standard Binary PackagesToday, I am going to introduce you how to install Nodejs with Standard Binar...
-
February 25, 2017
Request permissions by java in Android version 23+
In android with version >= 23, you need to request some permissionsin java code. To register some permissions, follow these steps: Step 1: Declare variables private List<String> permissions;private static final int REQUEST_PERMISSION_...
-
February 09, 2017
Build static library cpp in Ubuntu
Library is very important when you build some kind of big systems. Some advantages of library are: You have to write less code Easy to fix code Easy to share to others …In this post, I am going to share one way to build static library in Ubunt...