Posts

Showing posts from June, 2013

Install Sublime Text in Debian Linux

sudo add-apt-repository ppa:webupd8team/sublime-text-2 sudo apt-get update sudo apt-get install sublime-text After running this, Sublime Text 2 has been installed within the  /usr/lib/sublime-text-2  directory and can be launched from the Dashboard, or by typing  subl ,  sublime-text  or  sublime-text-2  into a Terminal window.

Swing Tutorial - 02 - Creating a Label on a Window.

Image
This tutorial will teach you how to create a text label on a Window frame in Java Swings. Label:   Label is a static text on a window. Like a title to something. Though you can make it change also when required but most of the time it is static.  Final output will look like this: Follow the steps: 1. Open any Java IDE such as Eclipse or Netbeans. 2. Create a New Project and name it anything such as: "Swing Tutorials" or "Swing Practice" or any name that you like to give it. 3. Create a Class in the default Package of the Project that you created and name it "LabelTutorial"

Swing Tutorial - 01 - Creating a Simple Frame of Window.

Image
This tutorial is simple and will teach you how to create a simple Window Frame in Java using Swings. Final output will look like this: Follow the steps: 1. Open any Java IDE such as Eclipse or Netbeans. 2. Create a New Project and name it anything such as: "Swing Tutorials" or "Swing Practice" or any name that you like to give it. 3. Create a Class in the default Package of the Project that you created and name it "FrameTutorials" A class will be automatically created which will have some boilerplate code that you write when you create a class in Java. It will look like this:

Educational Links part 1

Image
Here I am sharing some of the links to great free online resources. Check it. It will a miltipart  Blog. So keep visiting to check other parts too.