Category: <span>code</span>

Google Image Search

I don’t remember who exactly gave me this script. Must be either Verma or Manas, but this one is so cool. The code looks pretty easy and clear, though I didn’t try to understand it completely. So this is what you have to do. Open Google image search and search …

Finally….

This is one of the question you find being asked when browse for around 10-15 minutes. “Your message has not been sent. Discard your message?” from Gmail. “Are you sure you want to navigate from this page? Your message has not been sent. Press OK to continue, Cancel to stay …

Google Maps – Icons

This post is for playing with icons in Google Maps. In the previous post, the last example explained how to add markers when we click on the map. We will try to add custom markers and change the properties of different markers before and after creating them. In the first …

Google Maps

I have been using Google Maps for a long time (a nice way to kill time) and now I am using the Google Map API to create my own site (not a nice way to kill time). Was able to start with my work using the sample examples given in …

Bash spellchecker

Spell checking in bash is a cool feature which can be added by adding just one line in your bashrc file. shopt -s cdspell That’s all 🙂 Add that to your ~/.bashrc file. If you want to enable this for all the users, then append this to your /etc/bash.bashrc (in …

SSH Client…

I guess every GNU/Linux user must have sshed from one comp to another sometime or the other. We have different servers for various purposes in our college and ssh is a common thing. Most of the time, we end up typing some thing like ssh -XCYP hari@spider.nitt.edu Though not many …

LDTP Editor

Want to use LDTP to test your application? Or do you want to automate the actions you do often? Or are you a GNU/Linux user who want to show “magic” to your friends by recording your actions and playing them back? You can use LDTP for this. But one small …

Gedit Plugin

In this article, we’ll see how to write plugins for Gedit. Since plugin development is easy in Python, I’m planning to explain this using Python. When the first caveman programmer chiseled the first program on the walls of the first cave computer, it was program to paint the string “Hello, …

External Tools

  Often you would like to have a feature in gedit like, Compile when F7 is pressed, Compile and Run when F8 is pressed and more and more. One simple (grrr…) solution for this is to write our own plugins. But to write a plugin for gedit in python, you …