.:: Welcome To My Personal Blog ::.

Friday, September 16, 2011

Microsoft Corporation Unveils Re-imagined Windows Operating System Named as Windows 8

After a long anticipation tech giant Microsoft has taken the wraps off the next generation of its new Windows operating system Windows 8. The Windows 8 Developer Preview Edition is now available to download and use for testing purpose. Steven Sinofsky, the President of Windows department of Microsoft Corporation, formally introduced Windows 8 on the Build Developers' Conference in California. Refers to a focus on Microsoft Windows 8, Steven Sinofsky said, "We re-imagined Windows. From the chip-set to the user experience." The system will function through one of two interfaces; a traditional desktop, similar to that seen in previous editions of Windows, and a tablet version, known as Metro. Metro features larger, chunky controls of the sort that best suit touchscreen use. The current lack of such an input method is widely seen as the reason why few Windows 7 tablets exist. Microsoft said that it would also be launching its own online marketplace - the Windows Store - to sell downloadable applications.

Thursday, September 15, 2011

CSE Carnival 2011, SUST

The CSE Society and Department of Computer Science and Engineering of Shahjalal University of Science and Technology (SUST), Sylhet is organizing an annual festival titled CSE Carnival 2011 at SUST campus from September 22 to 24, 2011. This annual festival is being organized each year to promote creative ideas and expertise in the field of computer science and engineering and to encourage undergraduate students to sharpen, use and expose their technical excellencies in a competitive fashion.
This year a nation-wide competition titled ‘National Collegiate Software Competition’ (NCSC) is going to be organized for the first time ever in Bangladesh with the cooperation of Ministry of ICT, Bangladesh. 

Sunday, July 3, 2011

Programming with C Tutorial - Part 2

Variables and Arrays :



A variable is an identifier that is used to represent a single data item i.e. a numerical quantity or a character constant. The data item must be assigned to the variable and this will then be easily accessible from the program by referring the variable name. A simple example of declaring and using variables is given below :
int a, b, c;
char d;
float e, f; 
a = 1;
b = 2;
c = 3; 
d = 'a'; 
e = 4.01;
f = 5.02; 
c = a + b;

Tuesday, June 7, 2011

"ফেরিওয়ালা" (ferioala.com) - Hawker of the New Generation

 Now-a-days, technology stretches its glorious hand to each and every part of our daily life. It gives us much pleasure to lead an easier life. We can be informed about the whole world within a second only. Again we can represent ourselves to the whole world within a single moment. Internet is such a thing, that helps us in this task. By using Internet, we can get the whole world through a simple web browser. And this can be a good way to represent not only ourselves but also our motherland Bangladesh. "ফেরিওয়ালা" is such an attempt to represent our country to the whole world.

Sunday, April 24, 2011

Beginner's Guide To Travel With Perl - Part 9

Sorting:

There is a built-in sort function/subroutine in Perl for sorting array elements. This is done by just writing "sort @name_of_the_array;". But it sorts the elements alphabetically according to their ASCII value. This sort function sorts lexically
Example:
use strict;
main(@ARGV);
sub main
{
    my @arr = ("abc", "abcd", "defg", "def", "ijklm", "ijkl", "nop", "nop", "aaa", "AAA");
    print "before sort : @arr\n";        #before sort : abc abcd defg def ijklm ijkl nop nop aaa AAA
    @arr = sort @arr;
    print "after sort : @arr\n";        #after sort : AAA aaa abc abcd def defg ijkl ijklm nop nop
}

Friday, April 22, 2011

Programming with C Tutorial - Part 1

Now-a-days, C is the basic language to learn programming. To learn programming using C is so much easy. Here, the basic things and fundamentals of C programming will be described. Hope it will help the beginners.

C Character Set:

C uses the uppercase letters A - Z,  the lowercase letters a - z,  the digits 0 - 9, and certain special characters
as building blocks to  form basic  program elements (e.g., constants, variables, operators, expressions, etc.).
The special characters are -
+     -     *     /     =     %     &     #     !     ?     ^     "     '     ~     \ 
|     <     >     (     )     [     ]     {     }     :     ;     .     ,     _      (blank space)

Thursday, April 21, 2011

Web designing - HTML Tutorial - 8

HTML Forms:

Forms in HTML are used with <form> tag. It starts with <form> and ends with </form>. <form> tag has some attributes like "name", "action", "method" etc.

There are several input elements in HTML form. Some of them are text field, password field, radio button, check box, button (submit or reset), drop down list etc.

Web designing - HTML Tutorial - 7

Lists in HTML:

Lists are of two kinds. They are -
                                               1. ordered list
                                               2. unordered list

For unordered list, <ul> tag is used - <ul> for starting and </ul> for ending the tag. ul stands for "unordered list".
For ordered list, <ol> tag is used - <ol> for starting and </ol> for ending the tag. ol stands for "ordered list".

<li> tag is used for each list element - <li> is for starting and </li> for ending.

Web designing - HTML Tutorial - 6

Formatting Text:
 
While typing in a word processor (i.e. Microsoft Office or Open Office), we can write our text with different formatting. In HTML, we can also do the same. Let's say something about the formatting.
  • Bold: "<b>" tag is used. "<b>" for start and "</b>" for end;
  • Strong: "<strong>" tag is used. "<strong>" for start and "</strong>" for end;

Tuesday, March 8, 2011

Web designing - HTML Tutorial - 5

Paragraph Tag (<p>, </p>) :
We may need to create paragraph while designing web page. We can do it by using "<p>" tag.The starting tag will be "<p>" and the ending tag will be "</p>". If we forget to use the ending tag, the browser may display the paragraph erroneously. But fortunately, most browsers can display paragraph correctly even if we forget to use the ending tag ("</p>"). Forgetting to use the tag is not a good practice.

Saturday, March 5, 2011

Beginner's Guide To Travel With Perl - Part 8

Function

So, what will be the next? It’s function. In Perl, functions have another name “Subroutines”. It’s almost easy like other programming languages. Let’s see some examples:

Example1:


use strict;
sub pr { #description of subroutine
print "inside the subroutine\n";
}
print "subroutine example\n";
print "calling it\n";
&pr; #calling subroutine, only “pr” also works here
print "The End\n";

Beginner's Guide To Travel With Perl - Part 7

Input/Output from user

Let’s see how to take input from user. It can easily be done by . stands for standard input. It can be abbreviated by using simple <>. By declaring a scalar variable and setting it equal to we set the variable equal to whatever will be typed by our user at the command prompt. But here’s a little problem. When we give input in command prompt and press enter, the variable also takes the newline character with the input. As a result an extra newline is printed while printing the value of the variable. To get rid of this problem we can use chomp() function. This function simply removes any erroneous line breaks and spacing from the end of our string.

Beginner's Guide To Travel With Perl - Part 6

Built-in Operators

Arithmetic Operator :

+ Addition
- Subtraction
* Multiplication
/ Division


Beginner's Guide To Travel With Perl - Part 5

Scope - Something Important

It’s time to say something important now. We can declare any variable in two ways – First is writing variable name with $ sign and assigning a value to it. The second is to write variable name $ sign and adding “my” before it when the variable is used first time.

Beginner's Guide To Travel With Perl - Part 4

Branching

We may have to use condition in some programs. The syntax will be the following:
if ( condition ) {
...
} elsif ( other condition ) {
...
} else {
...
}

Beginner's Guide To Travel With Perl - Part 3

Variables

It’s time to say something about variables now. Perl has three types of variables: scalars, arrays and hashes. Let’s think of them as “things”, “lists” and “dictionaries”. All variable names are a punctuation character, a letter or underscore, and one or more alphanumeric characters or underscores in Perl.

Beginner's Guide To Travel With Perl - Part 2

Strings

Let’s say something about strings. A string is a group of characters between two single quotes or two double quotes. If the characters are bounded with single quotes, the elements are not interpreted. But if they are bounded with double quotes, it means that the contents should be interpreted.

Beginner's Guide To Travel With Perl - Part 1

Something about Perl

Perl is a high-level, general-purpose, interpreted, dynamic programming language. Perl was originally developed by Larry Wall in 1987 as a general-purpose Unix scripting language to make report processing easier. Since then, it has undergone many changes and revisions and become widely popular amongst programmers. Perl borrows features from other programming languages including C, shell scripting (sh), AWK, and sed. The language provides powerful text processing facilities without the arbitrary data length limits of many contemporary Unix tools, facilitating easy manipulation of text files. Perl gained widespread popularity in the late 1990s as a CGI scripting language, in part due to its parsing abilities.

Friday, February 11, 2011

Configuring a WEB or HTTP Server using Microsoft Windows Server 2003 OS


.:: Web Server ::.

A web server can be referred to as either the hardware, the computer or the software, the computer application that helps to deliver content that can be accessed through the internet. Most people think a web server is just the hardware computer, but a web server is also referred to as the software computer application that is installed in the hardware computer. A web server is what makes it possible to be able to access content like web pages, or other data from anywhere as long as it is connected to the internet. The hardware part is what houses the content, while the software part is what makes the content accessible through the internet. The most common use of web servers are to host websites but there are other uses like data storage or for running enterprise applications. There are also different ways to request content from a web server. The most common request is the Hypertext Transfer Protocol (HTTP), but there are also other requests like the Internet Message Access Protocol (IMAP) or the File Transfer Protocol (FTP).

Configuring a FTP Server using Microsoft Windows Server 2003 OS


.:: File Transfer Protocol ( FTP ) ::.

File Transfer Protocol (FTP) is a standard network protocol used to copy a file from one host to another over a TCP/IP based network, such as the Internet. FTP is built on a client-server architecture and utilizes separate control and data connections between the client and server. FTP users may authenticate themselves using a clear-text sign-in protocol but can connect anonymously if the server is configured to allow it.

Configuring a DNS Server using Microsoft Windows Server 2003 OS

.:: DNS Server ::.

The Domain Name System (DNS) is a hierarchical naming system built on a distributed database for computers, services, or any resource connected to the Internet or a private network. It associates various information with domain names assigned to each of the participating entities. Most importantly, it translates domain names meaningful to humans into the numerical identifiers associated with networking equipment for the purpose of locating and addressing these devices worldwide. An often-used analogy to explain the Domain Name System is that it serves as the phone book for the Internet by translating human-friendly computer hostnames into IP addresses. For example, the domain name www.google.com translates to the addresses 209.85.146.104 (IPV4).

Configuring a DHCP Server using Microsoft Windows Server 2003 OS


.:: DHCP SERVER ::.

The Dynamic Host Configuration Protocol (DHCP) is an auto configuration protocol used on IP networks. Computers that are connected to IP networks must be configured before they can communicate with other computers on the network. DHCP allows a computer to be configured automatically, eliminating the need for intervention by a network administrator. It also provides a central database for keeping track of computers that have been connected to the network. This prevents two computers from accidentally being configured with the same IP address.

Sunday, January 30, 2011

ICC World Cup 2011 - Theme Song (Bangla - Mar Ghuriye) With Lyrics

The lyrics of ICC World Cup 2011 Theme Song (Bangla - Mar Ghuriye) is given below. Wish all Bangladeshi people will enjoy it . . . . . . . . .

ICC World Cup 2011 - Theme Song and Others

The official theme song of ICC World Cup 2011 is "De Ghuma Ke". It was released worldwide on 31 December 2010. This song is composed by the trio of Shanker-Ehsaan-Loy (Shanker Mahadevan, Ehsaan Noorani and Loy Mendonsa). The song is sung in Hindi, Bangla and Sinhala. It has been sung by Shankar Mahadevan and Divya Kumar and marketed by Ogilvy and Mather

Friday, January 28, 2011

ICC World Cup 2011


The ICC World Cup 2011 is going to be started on 19th February 2011. The opening ceremony will be held on 17th February 2011. The Final match of the ICC World Cup 2011 would take place on 2nd April, 2011.

Popular Posts