Tuesday, December 31, 2013

Search Google Drive files from Chrome and Firefox

 Ιf you are a lot into Google Drive and use either Chrome or Firefox, then this tip is for you.

Search Google Drive files from Chrome

 If you’re using Chrome, we have a couple of options here. Install Google Drive Quick Search extension for chrome. Once the installation is complete and extension is ready to use, just type drive in the address bar and hit TAB key. Now you can enter what you want to search for.

 If you don’t like extensions, alternatively you can follow these simple steps:

-Right click on the Chrome address bar.
- Edit Search Engine… from the menu options.  (This will open the settings page for Search Engines in Chrome.)
-Alternatively you may directly enter chrome://settings/searchEngines in the address bar and skip above steps.
-Scroll down to “Other search engines” and add a new search engine.
-Enter “Google Drive” as the name for your search engine or whatever you would like to call it, “drive” as the keyword you’ll type for activating search (again your choice) and URL as https://drive.google.com/?hl=en&tab=bo#search/%s
  Now you’re ready to use new search module. Enter your keyword “drive”, hit TAB key and enter your search term.

Wednesday, September 11, 2013

Completely remove Eclipse from Ubuntu and its dependencies.

Open a terminal (Ctlr+alt+T) and type the following lines :

     sudo apt-get autoremove eclipse
     rm -r ~/.eclipse/


This will uninstall the dependencies too that were installed along with eclipse.

Saturday, September 7, 2013

Install Eclipse JDT on top of CDT.

  All versions of eclipse have a standard base, then a specific set of plugins, depending on the version you are using.

  All you have to do is go to the Help > Install New Software menu, select the eclipse update site

(e.g. for the last one released at the moment"Kepler - http://download.eclipse.org/releases/kepler") , and under the Programming Languages section, select Eclipse Java Development Tools(Or you can type it on the search bar).

  If you don't see the Java Developement Tools in the list, click on the "already installed" link on the install page--you may already have the Java tools installed!

  That's all :-)

Wednesday, July 24, 2013

Free dropbox account !

Just click the following link and create your own dropbox account ! 
 ---->  http://db.tt/DR1gOXan  <----

Monday, June 24, 2013

How to execute *.sh files on Linux

Hey everyone, this is a very simple tutorial which shows you how to execute .sh files step by step:

1)Download the file that you are going to execute e.g. "name_of_file.sh" and save it in a folder you desire e.g Downloads

2)Open the Terminal (  Ctrl+Alt+T )

3)Now type cd ~/Downloads (With this command we change the default directory "/" to "/Downloads")

4)Then type chmod +x name_of_file.sh to make your file executable.

5)Then type sh ./name_of_file.sh to execute the file.

Move minimize, maximize and close buttons Ubuntu Linux 13.04!

The easiest way to move the minimize, maximize and close buttons to the right in Ubuntu 13.04!

A) Open a terminal window. (Ctrl+Alt+T)

B)  Type in the following command :

gsettings set org.gnome.desktop.wm.preferences button-layout ':minimize,maximize,close'

then hit Enter and you are done .

Friday, May 10, 2013

How to link .o file to your c or c++ project using Netbeans !


You need to add your .o file as an external library. So just follow the following steps:
  1. Go to Project Properties
  2. Under the Build->Linker options, add a library to the Libraries section
  3. Click 'Add Library File'
  4. Navigate to your .o file and select the absolute path option
  5. Clean and Rebuild
And it's done.

How to make Geany default text editor on Ubuntu Linux !


 Just open a terminal (Ctrl + Alt + T) and type the following command :
 xdg-mime default geany.desktop $(grep MimeType /usr/share/applications/geany.desktop | sed 's/MimeType=//' | sed 's/;/ /g')

Monday, April 8, 2013

How to quit a telnet session (Windows, Linux and Mac Systems)

Question: How do I end a telnet session/window?
This assumes that you’ve started a telnet conection through the Linux command prompt. (you can do so by typing: “telnet address port“)

Answer: To end your current telnet session you must reach the telnet prompt and type quit(or close).
Here are the steps for doing so:

1. Open the telnet prompt by holding down the ‘Ctrl’ key and push the ‘]’ key. (prompt:  Telnet>)

2. Type quit.
3. Push the ‘Enter’ key.

That's all.