Username: Save?
Password:
Home Forum Links Search Login Register
    News: Welcome to the TechnoWorldInc! Community!
Participate in the fastest growing Technical Encyclopedia! This website is 100% Free. Please register or login using the login box above if you have already registered. You will need to be logged in to reply, make new topics and to access all the areas. Registration is free! Click Here To Register.
  Show Posts
Pages: 1 2 3 4 [5] 6 7 8 9 10 ... 27
57  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Web Design / Graphics Design/ Animation / What is a Domain Name and Where to Register? on: January 03, 2007, 01:00:37 PM
A domain name is an alias for an IP address. Now what is an IP address? An IP address is a numeric code that signifies where to look through the Internet for content. An example of an IP address would be 22.226.141.25. Rather than typing in a long and easily forgotten IP address, a domain name helps you by typing an easily remembered name to access the same site.

For example, www.domainsatretail.com is a domain name that points to a specific IP address. People can remember a domain name such as www.domainsatretail.com much easier than they can a long numeric code.

Domain names are everywhere as many use it everyday. Think of search sites. Google and Yahoo both have corresponding domain names www.google.com and www.yahoo.com. If you have ever sent an email you have used a domain name. For example when sending an email to [email protected], sympatico.ca is the domain name.

Now that we have a better understanding of domain names, we need to know which domain name to pick and where can we register it. The domain name chosen for a web site can be a very important decision of marketing your company on the Internet. Its quite easy to just say pick a catchy domain that everyone will remember to use and you are set. In most cases it is that simple and you are set on your way to register the domain. However, at times the domain name you want has already been taken. And then you must think of a secondary name that you wish to use that will be just as catchy as the first.

OK, now you have picked your domain name you want. What is next? You need to choose a registrar for you domain name registration. There are many registrars who sign up and are available for the year, but you get no service from them whatsoever.
58  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Internet / Broadband Speed Test on: January 03, 2007, 12:38:19 PM
Hello frnds ths stuff is for all those who want to check there BB speed

Do a speed test :

http://www.speakeasy.net/speedtest/

http://www.dslreports.com/stest

http://www.adslguide.org.uk/tools/speedtest.asp

Check your firewall settings, and also make sure that Windows Update was not updating anything.

By ths u will be able to knw abt the speed of downloading..... u r getting
59  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Windows / 7 Ways to Speed up and Optimize Windows XP on: January 03, 2007, 10:24:58 AM
Quick and easy
---------------------------------------------------------
After seeing how popular Blifaloo's guide to virus removal and prevention has become, I decided to write some more articles about taking care of your computer.
The following is a list of easy tweaks you can do to speed up the overall performance of your PC with Windows XP.

1. Disable File Indexing

Huh? This indexing service gets info from files on the hard drive and creates a "searchable keyword index."
If you don't use the XP search feature often to look for documents, you can turn this feature off, and the difference you'll notice is a slight increase in the time it takes for your computer to find a file, but an overall increase in general speed for everything else.
How to : From My Computer > right-click on the C: Drive > select Properties.
Uncheck "Allow Indexing Service to index this disk for fast file searching." Apply changes to "C: sub folders and files," and click OK.

2. Clean Up Prefetch, temp, and cache files

Huh? Windows stores a lot of temporary files that can be safely cleaned out once a month or so. This is also good to do before running virus or spyware scans, as it clears many things out of your system that would need to be scanned.
How to : Download CleanUp!
How to use CleanUp! : Download, Install, and Run.


3. Install some RAM

Huh? If you are running 128mb or 256mb of Ram, it's pretty cheap and easy to upgrade to 512mb. This is the only suggestion I will make that will actually cost money, but it's also the one that will best improve performance.
How to : Not sure how to install Ram, or even what kind you need or where to get it from?
Check out Blifaloo's article on how to Add Ram to your PC.

4. Remove Programs & files you no longer need or use

Huh? Having old games or other software you no longer use can take up a lot of space on your hard drive, which can lead to an overall decrease in your PC's performance.
How to : Removing old programs is easy. From the Control Panel click on the "Add or Remove Programs" Icon. You can safely remove programs like games, demos, and other software you no longer use. If you are not sure what a program is... don't delete it just yet. You can do an internet search to find out more about any mystery programs installed on your PC to decide to delete them or not.
Remember: Mp3 music files and videos you download can take up a lot of space. Go through your media files once a month or so and delete the ones you no longer use.

5. Turn off Windows Animations and Visual Effects

Huh? Fancy sliding, fading and animated effects that windows uses by default are easily turned off, and will make the reaction time of simple tasks like opening and moving windows, taskbars, etc... much quicker.
How to : From the Control Panel, click on the "System" icon. Click on the Advanced tab. Click the "Settings" button underneath "Performance". Uncheck the options related to animations, and other unneeded visual effects.
Personally, I only have 3 items checked in here: "smooth edges of screen fonts", "use common tasks in folders", and "use visual styles on windows and buttons". You can uncheck all of them if you like. But, just getting rid of all the animated features will help the responsiveness of your PC.

6. Remove unused Fonts

Huh? Having too many fonts can realllllllly slow down how fast programs start up. Some people say have no more than 500 fonts installed on WinXP, but I personally try to keep the number of fonts below 200. The less you have the faster your programs that use them (office software, graphic programs etc..) will load.
How to : From the Control Panel, click on the "Fonts" icon. You can delete the fonts you don't use here.
Remember: to keep the basics: Verdana, Arial, Times, Trebuchet, Courier, serif, sans-serif, Georgia, etc... Along with any fonts related to your business.

7. Get a Virus, Spyware and Malware Clean System

Huh? Chances are you have some sort of virus, spyware or malware on your computer.
How to : Get Adware and Spybot S&D in addition to a Firewall and Antivirus program.
60  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / JAVA / Java: Working With Buffers on: January 03, 2007, 12:14:58 AM
Working with buffers:
Buffers can be very useful in java since they can speed io operations a lot. Basically a buffer is a space allocated into memory for Bytes, Chars, and other data types to be entered. I have found Buffers really useful when writing Client/ Server applications.
You create a Buffer like this:

Code:
/*
* Buffer size
*/
int BUFFER_SIZE = 100;

/*
* Allocates a ByteBuffer
* with a size of a 100
*/
ByteBuffer byteBuffer = ByteBuffer.allocate(BUFFER_SIZE);

/*
* Makes an IntBuffer
*/
IntBuffer intBuffer = IntBuffer.allocate(BUFFER_SIZE);

/*
* Makes a Direct CharBuffer
*/
CharBuffer charBuffer = CharBuffer.allocateDirect(BUFFER_SIZE);


The way the Buffer works it has three different markers: position, limit and capacity.

Capacity: Capacity is the number set with the allocate(BUFFER_SIZE). That is basically how big the buffer is.

Limit: The Limit of the Buffer is the index of the first element that should not be read or written in the buffer. The limit of the buffer cannot be negative or greater that it’s capacity.

Position: The position of the Buffer is the place that the buffer is the next element to be read/ written.

The Different methods that edit the buffer just move those markers around. There are four methods that you should familiarize yourself with:

Buffer.clear();
Buffer.compact();
Buffer.flip();
Buffer.rewind();

clear(); The clear method when applied to a buffer sets the limit to the capacity and the position the 0. All that that means that when new data is added to the buffer it will overwrite the old data.

compact(); The compact method moves the elements between the current position and the limit to the begging of the buffer.

flip(); The flip method need to be called before reading the date from the buffer. When a flip is called the limit is set to the current position, and the position to 0.

rewind(); The rewind method sets the position to zero again in case you want to make the buffer ready for another draining. You would need to flip the buffer first though.

Direct vs. nonDirect buffers: Buffers can be either direct or nonDirect.
Direct: creating a direct buffer simply means that the buffer is allocated inside the native data structure. That means that data can be transferred to native resources without having to go trough the java data structure. That can heave a really good impact on performance.

NonDirect: if you create a buffer that will not interact with native resource (ex. Just to store a String) you should use a NonDirect Buffer.

Adding to a Buffer: when adding data to a buffer you can use the wrap() method;


Code:
String string = "Text to be added";
CharBuffer charBuffer = CharBuffer.allocate(string.length());
charBuffer.wrap(string);

Adding to a Buffer: When adding data to a buffer you can use the wrap() method. Note that when a buffer is created by wrapping it are never direct.

Code:
/*
*  wraps a string inside an buffer.
*/
String string = "Text to be added";
CharBuffer charBuffer = CharBuffer.allocate(string.length());
charBuffer.wrap(string);

or you could wrap entire blocks of data in a form of an array:

Code:
/*
* takes a byte array and wraps it into a buffer.
*/
byte[] data = “Text to be added”.getBytes(“UTF-8”);
ByteBuffer buffer1 = ByteBuffer.wrap(data);

Draining a Buffer: Buffers can be drained into any data type:

Code:
/*
* uses the get() method to fill a string.
*/
String fromBuffer = “”;
while (buffer.hasRemaining()) {
   fromBuffer += buffer.get();
}

Data Conversion: Data Conversion is an important aspect of buffers. You can use the factory methods to change a buffer from one type of another:

Code:
ByteBuffer byteBuffer = ByteBuffer.allocate(5);
IntBuffer intBuffer = byteBuffer.asIntBuffer();

Here is a list of conversions:

asShortBuffer();

asCharBuffer();

asIntBuffer();

asLongBuffer();

asFloatBuffer();

asDoubleBuffer();



Buffer can be really useful to work with. When creating a server/client application buffer can significantly increase your performance.
61  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / JAVA / Java: Multi-Column JList (swing) on: January 01, 2007, 02:20:09 AM
Ever wanted an aligned multi-column JList that allowed all columns to be selected as a single entry? Here's how.

*Note the column size will automatically become the size of the longest string, or largest picture, etc.

This example will show how to construct a JList with 3 columns, to add or remove is a simple editing job, as i'm sure you will notice the pattern in the

code.

To approach this we will need a CellRenderer, since the setup of this particular method will not change, it merely displays the components as we

describe, this method will be static.

The CellRenderer will more specifically a listcellrenderer and will implement JLabels for the entries of each column.
(Do not worry, the labels will not be grey)

CODE EXAMPLE:

Code:
import java.io.*;
import java.awt.*;
import java.util.*;
import java.text.*;
import javax.swing.*;
import java.awt.event.*; 
import javax.swing.event.*;

public class MultiColumn{
   
   JFrame       jf;
   JScrollPane scroll;
   JList      list;
   String[][]   columnData;
   
   public MultiColumn(){
      //create the frame and JList JPanel
      jf = new aFrame();
      //create element List array
      addElements();
      //set list for JList
      list.setListData(columnData);
      //create Renderer and dislpay
      list.setCellRenderer(new MyCellRenderer());
   }
   
   public void addElements(){
      //first number is number of rows, second is number of columns
      columnData = new String[4][3];
      //static setting of String[][]
      columnData[0][0] = "William";
      columnData[0][1] = "A";
      columnData[0][2] = "Wilson";
      //dynamic setting of String[][]
      for(int i=1;i<4;i++){
         columnData[i][0] = "William";
         columnData[i][1] = String.valueOf(i*13);
         Calendar c = new GregorianCalendar();
         columnData[i][2] = ((Date)c.getTime()).toString();
      }
   }
   
   public class aFrame extends JFrame{
      public aFrame(){
         super("Multi-Column JList Example");
         getContentPane().add(new PanelBuilder());
       
         // display rules
         setResizable(true);
         setLocation(250,50);
         setBackground(Color.lightGray);
           setDefaultCloseOperation(EXIT_ON_CLOSE);
           setSize(650, 400);
           setVisible(true);
      }
      private class PanelBuilder extends JPanel{
         public PanelBuilder(){
            GridBagLayout layout = new GridBagLayout();
            GridBagConstraints layoutConstraints = new GridBagConstraints();
            setLayout(layout);
             
            scroll   = new JScrollPane();
             list    = new JList();
             layoutConstraints.gridx    = 0; layoutConstraints.gridy = 0;
            layoutConstraints.gridwidth = 1; layoutConstraints.gridheight = 1;
            layoutConstraints.fill       = GridBagConstraints.BOTH;
            layoutConstraints.insets    = new Insets(1, 1, 1, 1);
            layoutConstraints.anchor    = GridBagConstraints.CENTER;
            layoutConstraints.weightx    = 1.0; layoutConstraints.weighty = 1.0;
            scroll = new JScrollPane(list,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
            JScrollPane. HORIZONTAL_SCROLLBAR_NEVER);
            layout.setConstraints(scroll, layoutConstraints);
             add(scroll);
         }
      }
       
   }
   
   static class MyCellRenderer extends JPanel implements ListCellRenderer{
      JLabel left, middle, right;
      MyCellRenderer() {
         setLayout(new GridLayout(1, 3));
         left    = new JLabel();
         middle   = new JLabel();
         right    = new JLabel();
         left.setOpaque(true);
         middle.setOpaque(true);
         right.setOpaque(true);
         add(left);
         add(middle);
         add(right);
      }
       
      public Component getListCellRendererComponent(JList list,Object value,int index,boolean isSelected,boolean cellHasFocus){
         String leftData    = ((String[])value)[0];
         String middleData    = ((String[])value)[1];
         String rightData    = ((String[])value)[2];
         left.setText(leftData);
         middle.setText(middleData);
         right.setText(rightData);
         if(isSelected){
            left.setBackground(list.getSelectionBackground());
            left.setForeground(list.getSelectionForeground());
            middle.setBackground(list.getSelectionBackground());
            middle.setForeground(list.getSelectionForeground());
            right.setBackground(list.getSelectionBackground());
            right.setForeground(list.getSelectionForeground());
         }
         else{
            left.setBackground(list.getBackground());
            left.setForeground(list.getForeground());
            middle.setBackground(list.getBackground());
            middle.setForeground(list.getForeground());
            right.setBackground(list.getBackground());
            right.setForeground(list.getForeground());
         }
         setEnabled(list.isEnabled());
         setFont(list.getFont());
         return this;
      }
   }
   
   
   public static void main(String args[]){
      MultiColumn jf = new MultiColumn();
   }
   
}

*NOTE all the imports are not necessary, but odds are in a program using such a setup, you will need them anyway.

Hopefully this code is clear, but the main things to understand is the columns are elements in a 2D array, the list selection needs to be set, and then apply the cell renderer, and it uses this list selection to create the list.
62  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / JAVA / Java: Wrapper Classes on: January 01, 2007, 02:17:29 AM
Decription on going to and from the java Object wrapper classes.

Wrapper classes to exactly what they say, they wrap primitive types (eg: int, double, etc) in Objects which can be placed into Vectors, and many, many other uses.

*Notice that an Object starts with a capital letter, while the primitives all start with a lowercase. Also notice that Strings are Ojects.

These Wrapper classes can be created in many ways, so i will start slow, simply returning objects with a String.

Integer from String:
Integer i = Integer.valueOf("125");

Double from String:
Double d = Double.valueOf("5.829754097");

Float from String:
Float f = Float.valueOf("8.43543");

Boolean from String:
Boolen b = Boolean.valueOf("true");
//This will represent true

Character from String:
Character c = Character.valueOf("G");


The more common use is given the primitive in a variable. This next section shows how to convert a variable to these wrapper classes and back to a primitive.

Integer:
int i = 5;
Integer I = Integer.valueOf(i); //Wrapper
int i2 = I.intValue(); //back to primitive

Float:
float f = 5.5f;
Float F = Float.valueOf(f); //Wrapper
float f2 = F.floatValue(); //back to primitive

Double:
double d = 5.55555;
Double D = Double.valueOf(d); //Wrapper
double d2 = D.doubleValue(); //back to primitive

Boolean:
boolean b = true;
Boolean B = Boolean.valueOf(b); //Wrapper
boolean b2 = B.booleanValue(); //back to primitive


*When dealing with strings you may also wish to use the following to get primitives from the Object String:

Integer:
int i = Integer.parseInt("234");

Double
double d = Double.parseDouble("234.6576533254");

Float:
float f = Float.parseFloat("234.78");

Long:
long l = Long.parseLong("23454654");

*Note you may wish to add the ().trim feature to these last ones, in the case of extra white space around your String, which may cause exceptions.
Example of trim:
String s = " William "; // displays as ' William '
String s2 = (s).trim(); //displays 'William'
63  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Cool Scraps Collection on: January 01, 2007, 01:49:44 AM
so all da rockers in da house say ROCK ONNNN....."ROCK ONNNN"
so all da headbangers in da house headbang......*HEADBANG*
so all da niggas in da house say YEAH NIGGA....."YEAH NIGGA"
so all da bitches in da house say YEAH BITCH...."YEAH BITCH"
SO NOW ALL U ROCKERS/NIGGAS/HEADBANGERS/HOMMIES/SWAYERS/SWINGERS/BITCHES/HOES......
ROCK ON/PARTY ON/RAPP ON/SWAY ON....
CAUSE DA NIGHT IS YOUNG....
AND YR IS ENDIN..
SO HAPPY NEW YR.....
AND BE NASTY.....
64  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Cool Scraps Collection on: January 01, 2007, 01:49:04 AM
I wish you Health...
So you may enjoy each day in comfort.

I wish you the Love of friends and family...
And Peace within your heart.

I wish you the Beauty of nature...
That you may enjoy the work of God.

I wish you Wisdom to choose priorities...
For those things that really matter in life.

I wish you Generousity so you may share...
All good things that come to you.

I wish you Happiness and Joy...
And Blessings for the New Year.

I wish you the best of everything...
That you so well deserve.

HAPPY NEW YEAR FRIEND!
65  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Cool Scraps Collection on: January 01, 2007, 01:48:29 AM
.................. ♥..
...........{♥} * {♥} ..
.......{♥} * {♥} * {♥} ..
.......: * {♥} * {♥} * ..
..{♥} * {♥} * {♥} * {♥} ..
.......* ; * ; {♥} * ; * : .........♥W♥I♥S♥H♥
...........;\ \ \\| / / /;…………...♥Y♥O♥U♥
.............\\ \ Y/ / / ................H♥A♥P♥P♥Y
.............`_\ |/ _' …..........N♥E♥W♥Y♥E♥A♥R♥
............../ \\Y// \..
............( ,-}={-, )..
..............\_//((\_/….
............... //))(\ .
.................(/ )).
HAPPY NEW YEAR 2007 IN ADVANCE

H ours of happy times with friends and family
A bundant time for relaxation
P rosperity
P lenty of love when you need it the most
Y outhful excitement at lifes simple pleasures

N ights of restful slumber (you know - dont' worry be happy)
E verything you need
W ishing you love and light

Y ears and years of good health
E njoyment and mirth
A angels to watch over you
R embrances of a happy years
66  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Cool Scraps Collection on: January 01, 2007, 01:47:54 AM
HAPPY NEW YEAR TO YOU

H ours of happy times with friends and family
A bundant time for relaxation
P rosperity
P lenty of love when you need it the most
Y outhful excitement at lifes simple pleasures

N ights of restful slumber (you know - dont' worry be happy)
E verything you need
W ishing you love and light

Y ears and years of good health
E njoyment and mirth
A angels to watch over you
R embrances of a happy years!
67  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Cool Scraps Collection on: January 01, 2007, 01:47:21 AM
??____???
HuhHuhHuh
HuhHuhHuh
Huh___???
Huh___???
Huh___???

__?Huh?
_?HuhHuh
Huh___???
HuhHuhHuh
HuhHuhHuh
Huh___???
Huh___???
Huh___???

HuhHuh?
Huh__???
Huh__???
HuhHuh?
HuhHuh
Huh
Huh
Huh

HuhHuh?
Huh__???
Huh__???
HuhHuh?
HuhHuh
Huh
Huh
Huh

??_____??
Huh___???
_???_???
___???
___???
___???
___???




Huh__???
Huh?_???
HuhHuh??
HuhHuh??
Huh_?Huh
Huh__???
Huh__???

HuhHuh??
HuhHuh?
Huh
HuhHuh
Huh
HuhHuh?
HuhHuh??

Huh______???
Huh______???
Huh______???
Huh__??__???
Huh_?Huh_???
Huh??__?Huh?
Huh?____?Huh



??_____??
Huh___???
_???_???
___???
___???
___???
___???

HuhHuh??
HuhHuh?
Huh
HuhHuh
Huh
HuhHuh?
HuhHuh??

__?Huh?
_?HuhHuh
Huh___???
HuhHuhHuh
HuhHuhHuh
Huh___???
Huh___???
Huh___???

HuhHuh?
Huh__???
Huh__???
HuhHuh?
HuhHuh
Huh_???
Huh__??? 2007 to you,
Wish u a Start of lovely year of Ur life
68  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Cool Scraps Collection on: January 01, 2007, 01:46:44 AM
I
WISH
YOU
A
Fantastic
January

Lovable
february


Marvelous
March


Foolish
April


Enjoyable
May


Succesful
June


Wonderful
July


Independent
August


Tastyest
October


Beautiful
November


Happiest
Decemer


HAVE A
VICTORIOUS
YEAR

2007
69  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Cool Scraps Collection on: January 01, 2007, 01:46:13 AM
♥═╬═♥═╬═♥═╬═♥═╬═♥═╬═♥═╬
╬═♥═╬═♥═╬═♥═╬═♥═╬═♥═╬═♥═╬
╬═♥═╬
╬═♥═╬ 7 - RULES TO BE HAPPY
╬═♥═╬
╬═♥═╬ 1.....Never Hate
╬═♥═╬ 2.....Dont Worry
╬═♥═╬ 3....Live Simple
╬═♥═╬ 4....Expect A Little
╬═♥═╬ 5....Give A Lot
╬═♥═╬ 6....Always Smile
╬═♥═╬ 7....Have Person Like Me Who,Always Remember YOU
╬═♥═╬
╬═♥═╬═♥═╬═♥═╬═♥═╬═♥═╬═♥═╬
╬═♥═╬═♥═╬═♥═╬═♥═╬═♥═╬═♥═╬


Desire you: 365 days of happiness; 52 weeks of health and prosperity; 12 months of

love and affection; 8760 hours of peace and harmony; That in this new year you it has

2007 reasons to smile

_000000_____00000______00000_____0000000
00000000___0000000____0000000___00000000
00____00__00_____00__00_____00________00
_____00___00_____00__00_____00_______00
____00____00_____00__00_____00______00
___00_____00_____00__00_____00_____00
__00______00_____00__00_____00____00
_0000000___0000000____0000000____00
00000000____00000______00000_____00
70  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Hindi Scraps || Hindi Poetry on: December 31, 2006, 06:34:04 PM
आज एक बार फ़िर सुरज को उगता देखो
और चान्द को चान्दनी रात मे जागता देखो
क्या पता कल ये धरती
चान्द और सुरज हो ना हो

आज एक बार सबसे मुस्करा के बात करो
बिताये हुये पलों को साथ साथ याद करो
क्या पता कल चेहरे को मुस्कुराना
और दिमाग को पुराने पल याद हो ना हो

आज एक बार फ़िर पुरानी बातो मे खो जाओ
आज एक बार फ़िर पुरानी यादो मे डूब जाओ
क्या पता कल ये बाते
और ये यादें हो ना हो

आज एक बार मन्दिर हो आओ
पुजा कर के प्रसाद भी चढाओ
क्या पता कल के कलयुग मे
भगवान पर लोगों की श्रद्धा हो ना हो

बारीश मे आज खुब भीगो
झुम झुम के बचपन की तरह नाचो
क्या पता बीते हुये बचपन की तरह
कल ये बारीश भी हो ना हो

आज हर काम खूब दिल लगा कर करो
उसे तय समय से पहले पुरा करो
क्या पता आज की तरह
कल बाजुओं मे ताकत हो ना हो

आज एक बार चैन की नीन्द सो जाओ
आज कोई अच्छा सा सपना भी देखो
क्या पता कल जिन्दगी मे चैन
और आखों मे कोई सपना हो ना हो

क्या पता
कल हो ना हो ....
Pages: 1 2 3 4 [5] 6 7 8 9 10 ... 27
Copyright © 2006-2023 TechnoWorldInc.com. All Rights Reserved. Privacy Policy | Disclaimer
Page created in 0.095 seconds with 23 queries.