In this fast growing IT field, technology is changing day by day. Therefore as the IT undergraduates, we must always update our knowledge and we should be aware of what's happening in the Information Technology world.Other thing is getting good results from the exams in our degree programs. There are so many good learning resources on the internet. We must ...
In this fast growing IT field, technology is changing day by day. Therefore as the IT undergraduates, we must always update our knowledge and we should be aware of what's happening in the Information Technology world.Other thing is getting good results from the exams in our degree programs. There are so many good learning resources on the internet. We must ...
From my previous post I told you how to start Perl programming on windows. After being familiar with the syntax of Perl, all what you need is a good IDE where you could write the programs, run and easily get the output while being in the same place. One of the IDEs I found convenient to use is the 'Eclipse' ...
From my previous post I told you how to start Perl programming on windows. After being familiar with the syntax of Perl, all what you need is a good IDE where you could write the programs, run and easily get the output while being in the same place. One of the IDEs I found convenient to use is the 'Eclipse' ...
I hope now you are familiar with this software since the Beta version and the Version 1.0 were released previously. Let's see what are the newly added features and the functionality of this software.This is the first window. Same as the previous versions. Enter the number of data points and proceed. Then you get ...
I hope now you are familiar with this software since the Beta version and the Version 1.0 were released previously. Let's see what are the newly added features and the functionality of this software.This is the first window. Same as the previous versions. Enter the number of data points and proceed. Then you get the data entering window. Here I ...
We learn Perl Programming for "Systems Programming and Design" subject. Since most of the students are using Windows as the main operating system and use Linux operating systems installed as virtual PCs on windows, I thought of writing this post and show you how to install Perl on windows and start Perl programming.All the major Linux operating systems are coming ...
We learn Perl Programming for "Systems Programming and Design" subject. Since most of the students are using Windows as the main operating system and use Linux operating systems installed as virtual PCs on windows, I thought of writing this post and show you how to install Perl on windows and start Perl programming.All the major Linux operating systems are coming ...
If you couldn't read the previous posts of this series, first read them. Part I, Part II, Part III, Part IV.Fortunately 12 Lab II had plug bases under the computers (In some other labs they were sealed I guess) and all of them were occupied. I shutdown a PC in the lab and plugged my laptop there. We had to ...
If you couldn't read the previous posts of this series, first read them. Part I, Part II, Part III, Part IV.Fortunately 12 Lab II had plug bases under the computers (In some other labs they were sealed I guess) and all of them were occupied. I shutdown a PC in the lab and plugged my laptop there. We had to ...
If you couldn't read the previous posts of this series, first read them. Part I, Part II, Part III.Before sleeping, I set the alarm to 5.00 A.M because I knew that otherwise I wouldn't be able to finish the project before delivering the presentation. After two hours the alarm was ringing. I got up with a terrible headache and despite ...
Read the Part I and Part II of this post, if you couldn't read yet. 31st October 2010I went to Sasika's place early in the morning. We integrated what we had developed so far with the interfaces that Sasika had developed. The functions to Search apartments, Display user account details and modify, Reserve and cancel reservations were not yet written ...
If you have not yet read the previous post, first read it. 29th October 2010After finishing the lab sheet, I built some web pages with basic interfaces and connected it with the database. I wrote some functions to register customers, to check the login username and password and redirect the user to another web page, if the user name and ...
When we were in the 2nd semester of the first year at SLIIT, we had to develop a web site for the Internet Technology and Applications (ITA) subject as an assignment. The important thing was 10% of the final marks for that subject was given for this assignment. So it was really important to do the assignment well and score ...
Coder Girl Lyrics:to be the keys underneath her finger tips Her class makes a brotha's back buffer wanna flipand be number one on her link listand get a callback, I'm in all capsfeels like my first hello worldwhat it is to run with a coder girland it ain't hard to like how she writeswith her pretty interface, plus her source ...
Google has become a part of my life. These are the google apps I use.Google Chrome My primary web browser is Google Chrome. This is very much faster than Firefox and Internet Explorer.Google Search Engine Google is my home page. With google search, everything is near my fingertips.
This java program accepts an email address as a user input and it can validate and give a particular error message if the email is invalid.import java.io.*;public class EmailValidate{ public static void main(String args[]) throws IOException { InputStreamReader isr = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(isr); String email; bool
From my previous post I told you that I was learning Shell Programming. Once I got familiar with Shell Scripting, I got to know that the commands we type in the terminal can also be executed from shell scripts if we include the command within the grave operators.eg: In Terminal = date In shell script = echo `date`Suddenly I got ...
For the 'Systems Programming and Design' subject at SLIIT, we have to learn Unix Shell Programming. Normally I like programming stuff, but from the beginning of this SPD subject I had no interest in learning that. Day by day the content I had to study increased. I had to find a solution to improve my interest towards learning this subject. ...