Posts

Showing posts from 2014

Android Studio 1.0 Finally Released

Finally, some good news for Android Developer's as Google officially released the stable version of Android Studio(IDE) which was in beta for last two years so head over and download android studio and start building applications to share it with the rest of World. For Full Feature set of Android Studio be sure to check out Android Studio Page As you know Android Studio has new build system called Gradle-based build system , so you can learn all the basics, advanced topics on the official website of Gradle For all tips and tricks of Android Studio be sure to check out this Android tips and tricks page To learn more about the IDE which is based on Intellij IDEA Community Edition you can head over to the their Website. To learn more specific to our Android, they have made some Getting Started document , be sure to check it out that as well If you want be more familiar with the User Interface of Intellij IDEA, they have made separate section of User Interface for you guys

Let's predict Story of Film PK

Image
While everyone is predicting (or) assuming (or) guessing whenever they see some promotional events (or) songs, dialogue promo's of much anticipated film PK, So why not predict some story, so here we go First let's list out some points The title of Movie PK is derived from the name of the character played by Aamir khan, from various news sources the character full name is  Punmiya Kushal The film also stars Anushka Sharma, Boman Irani, Saurabh Shukla, Sushant Singh Rajput and Sanjay Dutt.  The central character Aamir Khan speaks Bhojpuri language, and he does some irrating things what most childern do when they are told not to do so and some strange looks to be differentiated Next Character Jagat Janani played by Anushka Sharma who is journalist waiting for to be get loved by main character. Next in list is Bhairon Singh played Sanjay Dutt who looks like to me as a brother (or) friend to PK. Then there are Sushant, Boman, Saurabh Shukla Now let's get to poin

How to Install Dependencies of Software Programs in Ubuntu

If you encounter any error while running some applications in Ubuntu, then you may got dependency problem which the application depends on, To solve this problem go to your terminal and type the command  sudo apt-get install -f  ,all your dependencies will be installed and you will be running your application error free.

How to skip permission to install software through terminal in Ubuntu

To install software's through terminal as simple as that with one simple command sudo apt-get install example-software , however in doing that you need to give permission in Y (or)  N But a simple tip (or) extended command to skip this step can be done by following command sudo apt-get install -y example-software

How to Install Node js on Ubuntu

If you are trying to install Node.js on Ubntu then follow the instruction given below Setup with Ubuntu: curl -sL https://deb.nodesource.com/setup | sudo bash - The above command just updates your system with the latest software builds. Install Node js which is in Ubuntu repository: sudo apt-get install nodejs Install build tools: sudo apt-get install build-essential For more information on various platforms visit the official doc on github .

How to Install ClamAV - Antivirus for Ubuntu

Although you don't need to install any antivirus software on your Ubuntu machine, however out of curiosity to keep your heart and mind rest in peace, you may try out open source antivirus project ClamAV . To do that just follow the steps ClamAV can be found for Ubuntu in the apt repository. Run this command to install ClamAV: sudo apt-get install clamav If you need clamd, you may also want to run: sudo apt-get install clamav-daemon If you require support for scanning compressed RAR files you first need to enable the non-free archive, and then you can install the RAR-plugin using: sudo apt-get install libclamunrar6 After successful installation, you may try searching for it in Dash, but to your surprise there is no GUI shipped with this product, either you can run it through terminal by typing help command ( clamscan --help ) and follow the instruction's provided in the help manual (or) You may install ClamTk - A GUI prov

How To Record Audio in Moto G Without Any Third Party Apps

Image
Although there is no in-built app (or) interface in the Moto G to record audio, however, there is a workaround from which you can record audio and save it. To do that just go to the Messaging app >>> New Message >>> Click on Attach >>> Record Audio Below is screenshots illustrating : Also Read:  How I Submitted My Blog to Google Search Now all you have to do is record your audio, play it and then remove it, Now you can find the audio automatically get saved in the memory, which you can access through any File Manager  (or) you can play it again in Google Play Music . Below are all my recordings saved in memory, which I have accessed through ES File Explorer (File Manager) So Enjoy all the fun stuff in the Moto G , if you have a better suggestion please voice your opinion in the comments section. Also Read:  How I loaded my website quick and fast

How to Unistall Software (or) Programs in Ubuntu Using the Terminal

If you want to uninstall the installed programs using Terminal follow these steps Open the terminal using ctrl + alt + t Browse your installed programs by entering the command dpkg --list and note down the name of package you desired to uninstall                                 (or)           dpkg --list to check if the package has the same as the program name        3. a) Uninstall the package (or) program only use the command sudo apt-get remove              Eg: sudo apt-get remove yelp                          b)To uninstall the program along with its configuration files use the command sudo apt-get --purge remove             Eg: sudo apt-get --purge remove yelp

How to solve blank screen terminal problem in Ubuntu

If you are a getting blank screen on your terminal in Ubuntu, also no command seems to work, then you may have the sourced the .bashrc file and added the line source .bashrc in .bashrc file.          So to solve this press ctrl + c   in terminal and you will get back to the normal terminal screen then  type gedit .bashrc and remove the line source .bashrc  in the .bashrc file

How to import android existing android project (or) non gradle project (or) android example project in android studio

So you have downloaded some sample android project , trying it to import into Android Studio to run it right, however android studio doesn't import so easily, you have make some customization to run it, follow these below steps to import non-gradle project into gradle project First Download any sample project unzip it and copy to our workspace folder Then, go to Android Studio click file --> import project --> select your downloaded folder --> ok Then, make a settings.gradle file and copy this include ':Name of your project' Then, make a local.properties file to include your sdk path, all projects in my android studio link to below sdk path, so edit and change this to your path sdk.dir=/home/umidtech/android-studio/sdk Then,last but not the least make a build.gradle file and copy this buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.7.0' } } apply p