Posts

Showing posts from July, 2014

Python programmer get job at IIT Bombay

Image
Hello friends , I am back with good news for you.if you know the python programming language and want to get job than Indian institute of technology better known as a IIT Bombay is ready to give you job as Research assistant in their FOSEE  project. For that qualification is you should have to complete your B.E/B.TECH/M.E/M.Tech from recognize university and you should have  a deeper  knowledge of python programming language.plus they will consider your active participation in Scipy, Sympy, Numpy, matplotlib and all other related to Python For more details visit this page

23 things to do in everyday life- a post from times of india e-paper

Hello friends,  Everyone wants a success in his/her life . but for that he/she doing is important. i was reading newspaper.there was one awesome post so i think that i should have to share it. please read this carefully and try to implement it in your life.This things will bring you self confidence in you 23 daily habits that will make you smarter. This is the post  from "Times of India" e-news paper . I found that may be  helpful to you. so i am posting here it.I hope this will helpful to you.click on below link to read it READ TIMES OF INDIA POST

Java programs to control mouse events using awt.robot class

Hello everyone as i have told you in my last post i will give you the some programs to control the mouse events such as mouse right and left click , mouse scroll up and down event , mouse release event and other. first program is to move mouse pointer on your screen  : import java.awt.Robot ;   public class MouseClass {   public static void main ( String [ ] args ) throws Exception {   Robot robot = new Robot ( ) ; robot. mouseMove ( 300 , 550 ) ;   } }

java awt.Robot class - A magic in your hand !!!!!!!

Hello friends, i am back with some new stuff for you. Today i am gonna tell you a very interesting and powerful library in java programming language.and that is java awt.Robot class.Using this class one can control your mouse, keypress control , mouse scrolling events , screenshots and many more.in short using this class whole control of you computer or laptop is in your hand. now how to operate it ? Here i am assuming that you have a basic knowledge of java language. first you need to create a class and need to import awt.robot class   using   import java.awt.Robot;   statement.