Wednesday, November 26, 2008

only great minds can read this

This is weird, but interesting!
fi yuo cna raed tihs, yuo hvae a sgtrane mnid tooCna yuo raed tihs?
Olny 55 plepoe out of 100 can.i cdnuolt blveiee taht I cluod aulaclty uesdnatnrd waht I was rdanieg. The phaonmneal pweor of the hmuan mnid, aoccdrnig to a rscheearch at Cmabrigde Uinervtisy, it dseno't mtaetr in waht oerdr the ltteres in a wrod are, the olny iproamtnt tihng is taht the frsit and lsat ltteer be in the rghit pclae. The rset can be a taotl mses and you can sitll raed it whotuit a pboerlm. Tihs is bcuseae the huamn mnid deos not raed ervey lteter by istlef, but the wrod as a wlohe. Azanmig huh? yaeh and I awlyas tghuhot slpeling was ipmorantt! if you can raed tihs forwrad it

FORWARD ONLY IF YOU CAN READ IT.

Monday, November 24, 2008

These people are dear to everyone

Everyone must accept the realities of life and react appropriately but in order to do this one needs a comprehensive programme encompassing all the issues of life both in this world and the next in order to prosper in both. Wise people manage their lives according to an orderly programme that brings them peace of mind and it is this type of person who can establish charitable foundations, hospitals, Mosques, libraries, Islamic centres etc as a result of their efforts, benevolence, aspiration to lofty purposes and their belief in Allah (s.w.t) and the Day of Judgment. These people are dear to everyone in this life and are well positioned on the final day because Allah (s.w.t) will have kept for them every single good deed that they did in this world.

The Holy Qur’an in Ayah 30 of Surah Al-Imran says:

“On the Day when every person will be confronted with all the good he has done, and all the evil he has done, he will wish that there were a great distance between him and his evil. And Allah (s.w.t) warns you against Himself (His punishment) and Allah (s.w.t) is full of Kindness to the (His) slaves.”

Friday, September 12, 2008

This program requires at least 3MB of free virtual memory to run?




I run one program with windows XP, SP2 (My computer is Pentium IV 2800) this message occur to running this program: (the windows message ) direct player 6.0.




This program requires at least 3MB of free virtual memory to run.




How can I solve this problem for running the program with my windws?

SOLUTION:


Following are the steps to solve this issue:


1. Choose “settings” from the start menu


2. Choose “control panel from the settings options


3. Locate “system” from the control panel folder and double click on system icon.


4. Select “advanced” tab from the system property


5. Select control “Performance options” or Click on Performance "Settings"


6. Click On the advanced tab


7. Locate Virtual Memory and select “change”




8. Next change the value below depending on which OS you have selecting the drive letter that the program is installed to: (WinXP) Select no paging file and click SET (Win2000) Change Inital and maximum size values both to 200 and click SET


9. Click on ok


10. Click yes on restarting your computer


Reduce your initial size and maximum size Virtual Memory setting starting at 200 MB and continuing up to 3000 MB, if no paging file doesn't work.


Note: If Setting the virtual memory manually, the amount you will need to reduce this setting will vary from configuration to configuration.


Generally, a maximum Virtual Memory setting of 200 MB will prevent further errors.






Monday, June 9, 2008

MICROPROCESSOR SIMULATOR

(NALAIK PANDOO UTHA LO YAHA SE PROJECT OR PRINT KARWA KER SIR KO DO, OR MERI JAN CHORO, MEI KOI ROBOT TO NHI HU, MUJHE BHI DIN MEI 24 HRS HI MILTAY HAIN.
CLASS FELLOWS CHOR KER AB JUNIORS B PECHAY PER GAYE HAIN, YAR YE ASSIGNMENT MILI HAI, YAR IS SUBJECT KA KOI PROJECT BANANA HAI.YAR YE ABEEL NISAR JO HAI NA BARA HI ZAHEEN BACHA HAI, IS KO SUB KUCH ATA HAI.
ABEEL NISAR KOI UPPER SE SEIKH KER AYA THA,YA AASMAN SE SUB KUCH UTARTA HAI MERE DAMAGH MEI, WATT LAGAO SAREY MILL KER MERI, JIS DIN SHIRAFAT KA JANAZA NIKAL GAYA NA TO MEI TUM SUB KI WATT LAGA DU GA.I REALLY MEAN IT.

ISS LIYE THORA HOLA HATH RAKHO OR KISI DOSRAY KA BHI KHAYAL KAR LIYA KARO.TUMHARA MATLAB PURA HO GA TO TUM LOGO NE SALAM KA JAWAB BHI NHI DENA.)



#include<conio.h>
#include<iostream.h>
#include<stdio.h>
class microsimulator
{
private:
int ir;float acc;
int mem[2][32];
public:
int pc;

//Constructor

microsimulator()
{
pc=1;
ir=0;
acc=15;
mem[2][32]=0;
}

//Method for user interface

void user()
{ int i;
cout<<"***--------NOTE-----------***"<<endl;
cout<<">>Memory is 32-bit, first 16-bit for addresses and their instructions"<<endl;
cout<<" remaining 16-bit for addresses and their data"<<endl<<endl;
cout<<">>Instructions should be of 3-digit that consist of an opcode and address"<<endl<<endl;
cout<<">>Opcode with their operations"<<endl;
cout<<"1.Add"<<endl;
cout<<"2.Subtract"<<endl;
cout<<"3.Multiply"<<endl;
cout<<"4.Divide"<<endl;
cout<<"5.Move"<<endl;
cout<<"6.Move X"<<endl<<endl;
for(i=0;i<16;i++)
{
cout<<"Enter address"<<endl;
cin>>mem[0][i];
cout<<"enter its 3-digit instruction"<<endl;
cin>>mem[1][i];
}



for(int j=16;j<32;j++)
{
cout<<"enter address"<<endl;
cin>>mem[0][j];
cout<<"enter its corresponding data"<<endl;
cin>>mem[1][j];
}
}

//Method for search

void find1()
{
for(int h=0;h<16;h++)
{
if(pc==mem[0][h])
{
ir=mem[1][h];
}
}
}

//Method for decoding

int dec1()
{ int b=ir/100;
return b;
}

//Method for decoding

int dec2()
{
int c=ir%100;
return c;
}

//Method for search

int find2(int c)
{ int d;
for(int h=16;h<32;h++)
{
if(c==mem[0][h])
{
d=mem[1][h];
}

}
return d;
}

//Method for arithmetic operations of ALU

void alu(int op,int d)
{
if(op==1)
{ acc=acc+d;
pc++;
}

else if(op==2)
{ acc=acc-d;
pc++;
}

else if(op==3)
{ acc=acc*d;
pc++;
}

else if(op==4)
{ acc=acc/d;
pc++;
}

else if(op==5)
{ d=acc;
pc++;
}
else if(op==6)
{ acc=d;
}
else
cout<<"Invalid opcode"<<endl;
}

//Method for display

void display()
{
cout<<"pc= "<<pc<<endl;
cout<<"ir= "<<ir<<endl;
cout<<"acc= "<<acc<<endl;
for(int j=0;j<32;j++)
{


cout<<"MEMORY location" <<j<<endl;
cout<<"-------"<<endl;
cout<<"ADDRESS "<<mem[0][j]<<endl;

cout<<"DATA "<<mem[1][j]<<endl;
cout<<"-------"<<endl;
}
}
}; //end of class


void main()
{ clrscr();
microsimulator s;
int a,b,d,pc;
s.user();
pc=s.pc;
for(pc=1;pc<17;pc++)
{

s.find1();
a=s.dec1();
b=s.dec2();
d=s.find2(b);
s.alu(a,d);

}
s.display();

getche();
}


Sunday, June 8, 2008

Mini Project: Simulation of Microprocessor

Mini Project:
Simulation of Microprocessor using Object Oriented Programming in C++



I have recently done this mini project.
Here`s the code
------------------------------



#include<conio.h>
#include<iostream.h>
#include<stdio.h>
class micro
{
private:
int ir;float acc;
int mem[2][6];
public:
   int pc;
    micro()
{
pc=1;
ir=0;
acc=15;
mem[2][6]=0;
}
void fillmem()
{ int i;
for(i=0;i<3;i++)
{
cout<<"enter address"<<endl;
cin>>mem[0][i];
cout<<"enter its 3-digit instruction"<<endl;
cin>>mem[1][i];
}



for(int j=3;j<6;j++)
{
cout<<"enter address"<<endl;
cin>>mem[0][j];
cout<<"enter its corresponding data"<<endl;
cin>>mem[1][j];
}
}

void search1()
{
for(int h=0;h<3;h++)
{
if(pc==mem[0][h])
{
ir=mem[1][h];
}
}
}

int decoder1()
{ int b=ir/100;
return b;
}
int decoder2()
{
int c=ir%100;
return c;
}


int search2(int c)
{ int d;
for(int h=3;h<6;h++)
{
if(c==mem[0][h])
{
d=mem[1][h];
}
}
return d;
}

void alu(int op,int m)
{
if(op==1)
{ acc=acc+m;
pc++;
}

else if(op==2)
{ acc=acc-m;
pc++;
}

else if(op==3)
{ acc=acc*m;
pc++;
}

else if(op==4)
{ acc=acc/m;
pc++;
}

else if(op==5)
{ m=acc;
pc++;
}
else if(op==6)
{ acc=m;
}
else
cout<<"Invalid opcode"<<endl;
}






void display()
{
cout<<"pc= "<<pc<<endl;
cout<<"ir= "<<ir<<endl;
cout<<"acc= "<<acc<<endl;
for(int j=0;j<6;j++)
{
cout<<"MEMORY location" <<j<<endl;
cout<<"-------"<<endl;
cout<<"ADDRESS "<<mem[0][j]<<endl;

cout<<"DATA "<<mem[1][j]<<endl;
cout<<"-------"<<endl;
}
}
};
void main()
{ clrscr();
micro z;
int d1,d2,data,pc;
z.fillmem();
pc=z.pc;
for(pc=1;pc<4;pc++)
{

z.search1();
d1=z.decoder1();
d2=z.decoder2();
data=z.search2(d2);
z.alu(d1,data);

}
z.display();

getche();
}



-----------------------------

Monday, April 21, 2008

LINK MOB





































ROTATE-ME USB

PH150 MAGIC USB HUB ROTATING PORTS
With 4-port innovative USB 2.0, let the fun begin with this colorful USB on your desk. Having 4-ports, two of them have the capability to rotate over 90 or 180 degress. If you have bulkier USB, you can easily slot it into the other two free from being in the way of other slender USB. With 480 Mbps transfer rate this hub is no doubt 40 times fasterthan the USB 1.1. It is small in size, chic and a plug and play version of USB, getting you connected at anytime anywhere.



FEATURES AND SPECIFICATION


1. Innovative rotating USB port design
2-usb ports (red and orange ports) rotate 90 or 180 degrees

2. Over-current detection and protection
Limits amount of current a USB peripheral can draw,Conserves power and helps prevent system crashes

3. Stylish design
Magic cube design becomes a personal desktop accessory,aluminium alloy construction provides durability

4. High speed data transfer,plug and play
Just plug and play, means support for hot-swap function

5. USB interface
USB 2.0 high-speed interface, backwards compatible with USB 1.1

6. Extended ports
Four ports with two of them rotatable

7. USB port
USB 2.0 Mini B Type female connector

8. LED
Blue LED blinks when data is accessed

9. Colors
Magic cube colors including red-orange-yellow-green-blue

10. Transfer rate
Up to 480 Mbps via USB 2.0, up to 12 Mbps via USB 1.0

11. Power source
Bus-powered mode, max 500mA, Self-powered mode

12. Weight
44grams

13. Dimensions
(L) 107 x (W) 21.4 x (D) 21.4mm

14. Accessories
USB extension cable (mini-USB to standard USB port),External power adapter(optional),User`s Manual

15. Compatibilty
ACPI,OHCI and EHCI compliant

Saturday, April 19, 2008

INFINITE USB MEMORY STORAGE

infinite usb memory storage






Colourful combination with male USB connector on one end and female on the other,this adds up to a complete concept for USB finger discs.








How this works?








If the MemoryInfinite connects to a computer on the male end,the other end,female is not occupiedwith the other USB port.This is definitely giving you the sweet advantage of USB freedom.




I think the concept of Memory Infinite,USB Storage is that we can connect as many storagesas we like,simply by connecting male port of second storage with female port of first.Then we can add third storage simply by connecting male port of third with female port ofsecond storage and so on.

Tuesday, March 18, 2008

Some Urdu Sites

Share every thing with others;
Musics, Urdu and English Poetry, Videos and much much more.
Free Sign in give you
http://www.esnips.com/

Monday, March 17, 2008

How broadband works? WIMAX,DSL,CABLE

WIMAX BROADBAND
WiMAX is the latest technology in wireless communication. IEEE (Institute of Electronics and Electrical Engineers) has standardized WiMAX as 802.16 (d/e). WiMAX platform supports triple play (Broadband Internet & Data, Voice, and Multimedia service). Customers can opt for either one or all services at the same time using a single CPE (Consumer Premises Equipment). Few attributes of WiMAX project are:
The CPE operates on 3.5GHz spectrumThe CPE first communicates with the nearest Access Point, and after communicating authentication codes/keys, it establishes a communication bondThe bond stays live until the CPE is powered offWireless signal can go up to 2.5 miles in a non line of sightSupports triple playIn terms of connectivity with Customer over WIMAX Ethernet interface, Layer 2 (Point to Point, Point to Multipoint) and Layer 3 VPN or a combination of both services are supported.

DSL BROADBAND
DSL or xDSL,(Digital Subscriber Line) is a family of technologies that provide digital data transmission over the wires of a local telephone network. The digital transmission is achieved through a customer premises equipment (CPE) usually a DSL modem, and DSLAM (Digital Subscriber Line Access Multiplexer) at PSTN office. DSLAM separates the voice frequency signals from high speed data signals, and routes data to ISP.

CABLE BROADBAND
To activate cable broadband services you require an EMTA – embedded multimedia terminal adapter which
has an Ethernet port and connects you to the providers LAN through your computer. With cable broadband
you can experience true broadband surfing and download your favorite music and browse internet at an
incredibly fast speed.

Sunday, March 16, 2008

How can I create expandable post summaries?

Recently I decided to write about the things which are difficult to find. I have been searching for expandable post summaries in blogger help since more than 2 weeks, atlast i found it and decided to share this help topic on my blog for other bloggers who are new to blogging and still can`t find that tip because its difficult to find in blogger help. So here it is

AN IMPORTANT NOTE, PLEASE READ CAREFULLY:

Before using these HTML codes in your layout or template, you should remove spaces between the tags, as i was unable to publish them without spaces. i.e,

<> please remove space between "<" , "span" and ">".u have to do this in all the coding where there is a space otherwise the code will not work.so good luck.

-Add tags to your posts to mark which parts you want hidden in the summary version.
-Add CSS declarations to your template to hide those sections on the index and archive pages, but not on post pages.

With this trick, you can choose to display an arbitrary amount of text from the beginning of each post, as a teaser for the whole thing. Then users who want to read the rest of the post can click a link to see the full text. This is handy if you have lots of long articles all on one page. Note that you'll need to have post pages enabled in order to make this feature work.

There are three ingredients that go into this feature: conditional CSS, a "read more" link for each post, and a modification for the posts that use this feature. So let's go through it step by step.

Conditional CSS

We're going to use conditional tags to change how posts display on different pages. Add the following code to your style sheet, depending on what kind of template you have:

(for classic templates)

<>
span.fullpost {display:none;}
< /MainOrArchivePage >


<>
span.fullpost {display:inline;}
< /ItemPage >




(for layouts)

< cond="'data:blog.pageType">
span.fullpost {display:inline;}
<>
span.fullpost {display:none;}
< / b:if >


Your style sheet is usually near the top of your template, between the
tags. If you have your style sheet in a separate file, you'll still need to add these lines in your template, so the conditional tags will work. Just make sure you add in the <> tags around them.
What we did here was to define a class called "fullpost" that will appear only on post pages (permalinks). Part of each post will use this class, as we'll see later.

"Read More" Links

Add the following code to your template, somewhere after the <$BlogItemBody$> or tag:

(for classic templates)

<><>
< href="">"Read more!< /a >
< /MainOrArchivePage >


(for layouts)

< cond="'data:blog.pageType"><>
< href="'data:post.url'">Read more!< /a >
< /b:if >




This link will only appear on the main page and archive pages, and it will redirect your reader to the post page containing the full text of your post. You can replace the "Read more!" text with whatever you like, of course.

Post Modifications

The final piece that we need is a little bit of code in your actual post. Each post that you want to use this feature on will need this code:

< class="fullpost">< /span >

This part can actually go in the post template, if you don't want to have to type it for each post. You'll enter the summary text outside the span tags and the remainder inside, like so:


Here is the beginning of my post. < class="fullpost">And here is the rest of it.< /span >

Now, when a reader visits your blog, this post will appear like this:
Here is the beginning of my post.
Read more!

When they click the link, they'll go to the post page where they'll see the whole thing:
Here is the beginning of my post. And here is the rest of it.

Notes:

As with any template modifications, you should be sure to save a backup copy of your template before you start. Just copy and paste all your code to a text file on your hard drive, so you'll have it there as a replacement in case anything goes wrong.
An alternative to creating post excerpts like this is to use the show/hide method on entire posts. Each method has its own advantages and disadvantages.
Advantages to this method: Customizable summaries, rather than titles only. Can be applied to some posts and not others (for instance, you might only want this for your longer posts).

Disadvantages:

Requires changes to the posts themselves, rather than to the template only. However, the "read more" link is in the template, so it will appear regardless of whether a post has been truncated or not. (Modifying this feature is left as an exercise for the reader.)

Tuesday, March 11, 2008

HOW TO PROTECT YOURSELG FROM MOBILE PHONE RADIATION

Mobile phone companies are insisting that mobile phones only omit low levels of radiation,but tests have shown that even exposure to low levels of radiation can be harmful.Long periods of time exposed to EMR can cause changes to cell structure and could ultimatelylead to brain tumors.Some other interesting facts to come out of tests on this subject were:

EMR(Electro magnetic radiation) can cause problems with the following:

The Reproductive System

Your Eyes

Memory and Reaction Times

Sleeping Patterns

Headaches,Dizziness and Nausea
Now dont panic just yet because there are some ways to reduce your exposure to EMR or whats commonlyknown as "Mobile Phone Radiation"


TIPS FOR PROTECTION AGAINST MOBILE PHONE RADIATION

FIRST AND FOREMOST

Try to reduce the amount of calls you make and receive on a mobile phone and where possible use yourhome phone(try to avoid cordless phone because they are not much better)Take a look at the actual LENGTH of your calls because the longer the call the higher the possibility of more exposure to radiation.I`m sure that if you`ve ever had an extremely long call you will recognize the signs like excessiveheat around the ear area.This should be avoided as often as possible. Remember that if you`re using a portable hands-free(with a speaker and cord that runs up intoyour ear)you are NOT necessarily safe.


A controversial test in the UK had shown that radiation can actually travel up the cord andinto your ear which can be even more harmful accelerating the damage being done.
Try to avoid keeping the phone ON or NEAR your body because there have even been links to infertilityin men.
Avoid long calls before going to bed.Tests show that your qualityof sleep suffers greatly as a result.
Ensure you get your point across and get off the phone,in other words,use your mobilephone for what your NEED to say and then end the call as soon as you can.
Dont make SOCIAL CALLS,these are usually quite lenghty in nature,you could be frying your head while you`re gossiping.


BEST RECOMMENDATION



BUY yourself a mobile phone with an inbuilt SPEAKERPHONE.so that the mobile phone`s INBUILT HANDS-FREE feature give you ultimate mobilephone radiation protection.In this way you will be able to place the mobile phoneaway from you,WITHOUT having the Mobile Phone near your head or ANY part of your body.

CECT A706,VERY COOL CHINA MOBILE






A706 is a very cool mobile from CHINA MOBILE.With 256k color TFT display and 176x220 resolution on a 2.2-inch touchscreenit offers a very crisp and sharp display.1.3 megapixel camera10MB of internal memorymicroSD expansion slotsupport for mp3,mmf,midi,wav,jpg and also GIF

SOME USEFUL SITES FOR MOBILES

http://mobiles60.blogspot.com/



http://gallery.mobile9.com/



http://www.zedge.net/



http://pakgsm.com/


http://www.imserba.com/forum
this one is my favourite


http://www.gsmhosting.com/


http://www.noeman.org/gsm/


http://www.neogaf.com/forum


http://www.gsmarena.com


http://www.mobiledia.com

Saturday, March 8, 2008

WHY IS THE INTERNET EXPLORER UNSAFE?


Do you know why is internet explorer unsafe????????


Let me tell you why


The attackers utilizes Internet Explorer`s drag and drop features and the windows shell folders to copy an executable from a malicious website to a user`s startup folder, from which it would execute the next time the user logged on.Hackers will continue to find and exploit security holes in explorer.Hard to get rid of those hackers, thus why not get a higher security web browser.

Rubberized texture USB STORAGE DRIVES

rubberized texture usb

You wouldn`t get any others similar or as exclusive as these .Built with rubberizedtexture and with a hip neck strap, this hot looking USB is not to be missed.Strap it to your pants while gliding down the slopes of Alps or just the mini mountainthis winter.Special Features includes Graphics with Rubberized texture and Neck strapattachment.




rubberized texture usb

SPECIFICATION:
  • Host Interface: USB 2.0
  • Reading/Writing Speed: 23MB/sec,20MB/sec
  • Storage Temperature: -20 to +80c
  • Operating Temperature: 0 to +70c
  • Dimensions: 24mm (W) x 95mm (L)
  • LED: LED in flashing mode while in use
  • Sizes: 512MB,1GB,2GB
  • Storage Media:NAND or AG-AND type flash memory
  • Integrated USB Transceiver:Dynamic feedback control,stable slew rate,independent external loading

Thursday, March 6, 2008

QASSIA-GET $500 FOR REFERRAL+UNLIMITED TRAFFIC AND BACKLINKS

You can earn Qassia dollar by different ways such as add intel (which means intelligence), or through refer others to join. Currently, you will get $500 Qassia dollars per user referred. The $500 dollars per user referred is only valid within 12-hours after you join Qassia, after that you will only get $100 per user.



Another cool feature is, the more Qassia dollars you earn, the more backlinks you will get. New bloggers are encourage to join. It is because most of the new bloggers will try different ways to improve website ranking and also get more visitors, while Qassia provide both these service for free!


Currently, you can only register your account through referrer. So, hurry up! Register your Qassia account through me and start get your free backlinks.
SIGNUP LINK: http://mostwanted.qassia.com/

Wednesday, March 5, 2008

VOIP FREE CALL TRICK

YOU Should have heard about "voip technology",if not too many times,than atleast once or more.

Nowadays "voip" is considered to be the best solution for international calls.
It provides very cheap callrates all over the world.
Call rates may vary depending on the region you are calling,but one thing is for sure it is much much cheaper than other telephony services.
Even though some voipproviders offer almost free international calls to specific regions of the world.
you will find plenty of websites providing free trial calls and voip solutions on the web and you will also find their services and call rates review,
so i will not discuss or review about any of them.If you want u can google them for information,there is plenty plenty plenty of them.

What i am writing for

is a simple tip or you can say it a trick you can perform to have as many calls as you can on websites that offer free trial call.

1. open one of free voip trial call website,search with google if you don`t know.

2. Follow the procedure for making free call,given on that website.

3. REMEMBER they are tracking you in real time,so you have to be quick for this trick to work.

4. While your call is going on be ready to click on back button of your browsor as soon as your callfinishes.

5. you should go back from your browser as soon as call ends while not allowing them to show you the call ended message on your browser.

6. if you are quick enough, you will see that you will be able to call for second time and so on.

7. if your connection speed is too fast,and this trick doesn`t work, simply remove your cookies.

8. Otherwise the only way is to reconnect.i.e, disconnect and connect again to try.

9. hopefully it works for you.

Tuesday, March 4, 2008

UNLOCK YOUR CAR WITH UR CELLPHONE

If you have locked your keys in the car and spare keys are at home then don`t get worried.FEEL comfortable.
Pick up ur cellphone and make a call to the cellphone at home.Make sure you are calling to the cellphone at ur home as this tricks doesn`t works without it.Now ask the person at your home cellphone to press the unlock button holding it near to the cell phone, while you should keep ur cellphone close to your car at that time so that the max distance between your cellphone and the car should be 1 foot, the car will be unlocked, if this trick is performed properly.

Sunday, March 2, 2008

ABSOLUTELY COST FREE, BANNER FREE WEB HOSTING

I've just found a great new web hosting service. They are the leading cost-free, banner-free business hosting network that does NOT place annoying banners on members' web pages.

Doteasy provides solutions for individuals and small businesses who needa web presence too. The offer:

1) .com, .net, .org, .biz, .info, .us, .ca, .uk, .eu, .mobi domain name registration for as low as US$18 a year.

2) 100MB $0 web hosting, no ad banner. Check them out today and maybe you could join the web hosting revolutiontoday too!

CLICK THIS IMAGE TO GOTO DOTEASY FOR 0$ WEBHOSTING
$0 Web Hosting

Saturday, March 1, 2008

Mobilink`s EZETOP







Now you can share yours mobilink balance with anyother mobilink
user in UK and US.Jazz users in UK and US can send balance to their loved ones in pakistan, to stay in touch.They can also recharge their jazz connections while roaming internationally.

To use this ezetop service, sender needs to go to a shop and ask
for jazz recharge.Once you pay the cashier, you will receive a printed receipt with instructions and the HRN number.
You then send the HRN / PIN home to be used as normal (SMS, email etc.)





For further details
UK users https://www.ezetop.com/uk/en/how-it-works-retail.aspx
US users https://www.ezetop.com/us/en/how-it-works-retail.aspx

PTCL Friday launched Broadband Entertainment Portal and new packages for its DSL subscribers.

PTCL Friday launched Broadband Entertainment Portal and new packages for its DSL subscribers. The access to portal will be absolutely free-of-cost exclusively for PTCL Broadband Pakistan customers. “It is first Broadband Portal offering subscribers variety of professional media content including but not limited to mainstream music (Urdu & English), movies, religious naats, sports,” Dr Sadiq Al Jadir, SEVP Commercial PTCL told news conference here.
PTCL initiative would make the country embrace broadband economies of the world. It invested $50m to improve its services. “We are competing in market and expanding our capacity.”
He said upgradation of PTCL helpline service was serious challenge to repute of institution. He assured number of faulty lines is being minimised and every steptaken to make it quality service provider. “As customers need high speed, large download capacity to fully experience Broadband Portal, we upgraded packages to benefit existing and new subscribers. We are offering cost effective, constantly available internet access as internet access speed to existing subscribers was doubled.
New subscribers will pay new tariff. Modem, DSL installation is completely free,” he said. Under new Pakistan Package, customers will pay Rs 1,199 per month for 512 Kbps unlimited service as against previous cost of Rs 1,999.
They would have to pay Rs 1,999 for 1024 Kbps unlimited service as agains previous Rs 4,999 per month. Cost of 2048 Kbps unlimited will be Rs 4,999 per month.

Wednesday, February 27, 2008

NAYATEL IS THE NEXT to check in

First ever advanced fibre to the user(FTTU) network







-A Premiere Triple Play Service provider, that brings fiber straight to your premises

-An always-on connection

-Ethernet based scalable technology, upto 100 Mbps

-Reliable and friendly technical support

-Local provider you can trust for your telecommunication needs

-Lowest local and international call rate

-Download entertainment stuff at lightning speed (music, videos, games etc.)

-Suitable for home and corporate customers.

Tuesday, February 26, 2008

WHAT IS THAT NOISE??

I am sure this is familiar to many of us - you are motoring along and you hear a noise.
Where is it coming from?

What can it be?

Is it dangerous?

Should I get out and take a look, or keep my head down and hope it goes away?

Here is a rough guide showing some of the sounds you may experience, the possible problem and the solution.










SOME GREAT COMPUTER TIPS


1.) TO INCREASE INTERNET BANDWIDTH...just Click Start then Run and type "gpedit.msc" without quotes.This opens the group policy editor. Then go to:Local Computer Policythen Computer Configurationthen Administrative Templates then Network then QOS Packet Scheduler and then to Limit Reservable Bandwidth.Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the 'Explain' tab i.e."By default, the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default."So the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will allow the system to reserve nothing, rather than the default 20%
----------------------------------------------------------


2.)TURN ON UR PC IN JUST 10 SECONDS........so u wanna know how to turn the pc on in 10 seconds (may vary)here's what u have to do to turn ur pc on in 10 secondsClick on the start button then press R it will take u to Run well go to runn type Regeditpress enterthis will open Registery Editornow look for the keyHKEY_LOACAL_MECHINE\SYSTEM\CurrentControlSet\Contr ol\ContentIndexnow there find the Key Called"Startup Delay"Double Click On ItNow where its BaseClick DecimalNow its Default Value Is 4800000 (75300:hexadecimal)Change The Value To 40000here u go u have done itnow close the Registery Editor and Restart Your ComputerYou'll See The Result------------------------------------------------------


3.)Go ahead, do this little trick to impress and amaze your friendsFor Microsoft Windows XP.Go to:Start.Control Panel.Regional and Language Options.Click the Customize button.Select Time tag.Highlight AM and type the name you want to display . Repeat with PM.cliKl apply and than ok----------------------------------------------------


4.)Bill Gates still doesn't know why it happens:Try out yourself...Open Microsoft Word and type=rand(200,99)and then HIT ENTER....see what happens.it won't hurt ur system!!--------------------------------------------------------


5.)You can lock any folder without using any software. Follow these steps.1.Suppose you have a folder named abcd in D:\abcd.2.In the same drive next to the folder create a new notepad file with the exact statementren abcd abcd.{21EC2020-3AEA-1069-A2DD-08002B30309D}3.Now save this text file as loc.bat4.Create another notepad file and typeren abcd.{21EC2020-3AEA-1069-A2DD-08002B30309D} abcd5.Save this as key.bat6.Now there are two batch files . Double click loc.bat and your folder will change into Control Panel and its contents cannot be viewed .7.To open the folder double click key.bat and you get back your original folder .8?For more safety keep the key.bat in another location .Only for unlocking copy paste to the original location and double click .------------------------------------------------------------


6.)Hidden Star Wars Movie in Windows XPMicrosoft has hidden a version of Star Wars done entirely with ASCII characters in the Windows XP operating system.But you must be connected to internet to view it.When online,go to start->run.Now type ' telnet towel.blinkenlights.nl ' without the single quotes.See it for yourself.------------------------------------------------------------

WATEEN`s wimax speed comparison

According to this Wateen`s wimax speed comparison, 1Mb file takes only 3.8seconds to download with 2Mbps connection speed,similarly 7.71sec for 1Mbps connection and so on.

/* google analytics ------------------------------------------------------------- */