Subscribe Search to itis123
Subscribe
Via RSS By RSS
Via Mail By Mail

Sunday, May 10, 2009

How to install Twitter widget into your blog?

Twitter, is becoming very popular day-by-day and a free social messaging utility for staying connected in real-time with your friends. You can add a twitter widget easily, to your blogger blog or any type of blog or any web page. If you scroll down to my blog and you will see a Twitter widget is installed in the bottom-right corner of this blog. You can easily, connect to me via Twitter. My Twitter link is http://twitter.com/meRancidTaste. Just follow the following steps, to install Twitter widget to your blog. It's very simple. Just like 1-2-3.

Step 1:
Sign in to Twitter by user name or email address and password.

Step 2:
After logging, you will find the following page and click on Settings on that page.



Step 3:
A new page will be opened and here you will find a option mentioning You can also add Twitter to your site. Click on it.


Step 4:
Now, display updates on your web page will be opened. Click on Blogger and then click on Continue to go to the next step.



Step 5:

This is the page where you can set all of the Twitter settings. Select the No of updates to display, title of your Twitter widget and finally click on Blogger icon.



Step 6:
Log in, to your blogger account and then select your blog and Title. At last, click on Add Widget.

Now, you will see that the widget (Twitter Widget) is automatically added to your blogger blog. And that's all to add or install Twitter widget into your blog. I think, you have done successfully.

From now, you will see that all of your message will be displayed on your Twitter widget.

©
Written by meRancidTaste

Friday, March 27, 2009

How to add "Top of the page" icon to your blog?

"Top of the page" icon link is an important thing if your blog post is long. If you look carefully in my blog, just notice the bottom right corner of the browser window. There you will find a text "Top" which is floating and it's color is blue. Go through the page and you will see that the word "Top" is not changing it's position. It remains the same position. Now click on it and you will be moved to the starting portion of the current window. So, it helps to reach the top of the page form any portion of the window. It's very helpful if your blog post is much longer and people will move to the top of the page by just clicking only on it.

To create such type of "Top of the page" icon is very easy and simple to install. Only some couple of lines are needed. Moreover, you can customize it by replacing an image with the text part. This post will describe the tips and techniques to do so.

Index of this page:
  • General Code of "top of the page" icon
  • Description of the code
  • How to add "top of the page" icon
  • Example
General Code of "top of the page" icon:

The general code for "top of the page" icon is looks like the similar:
  1. < a href="#" >
  2. < img src="url_of_the_image"
  3. alt="alternative_text"
  4. title="Top of the page"
  5. style="display: scroll; position: fixed; bottom: 5px; right: 5px;" / >
  6. < /a >
Description of the code:
  • url_of_the_image: At line 2, this is used between the inverted comma. This is the url of the image which you want to use as top of the page icon. Always remember, it's the url of your desired icon. So, before using any image, you must have to upload the image to any site such as, tinypic.com etc. To learn about image uploading, click here to learn more.
  • alternative_text: At line 3, this option is used between the inverted commas. This is the alternative text of your image. If anybody put the cursor on the icon, he or she will see that text. This is used to give a border understanding of the new user about the usefulness of the icon by reading the text.
  • style="display: scroll; position: fixed; bottom: 5px; right: 5px;" : This line is used for styling the top of the page icon. It has several fields. The fields are described below:
    • display: scroll : This option allows the image to scroll.
    • position:fixed: This option is used for fixing the image location.
    • bottom:5px : This option is used to locate the position of the image. Here 5px means that the image will be appeared 5px up from the bottom of your page.
    • right:5px : This option is used to locate the position of the image. Here 5px means that the image will be appeared 5px from the right of your page.
How to add "top of the page" icon:

It's very easy and very simple. Just follow the steps:
  1. Log in to www.blogger.com.
  2. Go to Dashboard and then select the Layout of the blog that you want to add top of the page icon.
  3. Now click on the Add a Gadget.
  4. Select HTML/JavaScript and click on it.
  5. Now copy and paste the following code:
< a href="#" >
< img alt="Top of the page" style="display: scroll; position: fixed; bottom: 5px; right: 5px;"
src="http://i42.tinypic.com/33ogqxi.jpg"
title="Top of the page"/ >
< /a >
< !-- developed by itis123.blogspot.com -->
6. Click on the Save button to save.

In following the steps, you can easily add "top of the page" icon to your blog and navigate to the top of your blog posts.

Example:
By using the codes, one blog is made as an example. To view, click http://top-of-the-page-icon.blogspot.com/. You may be used this code for your blog also. It's free to use.

If you are enjoyed this post, please consider to leave a comment at the comment section of this page or Subscribe to the feed of itis123.blogspot.com to get new articles which will be delivered to your feed reader.
Reblog this post [with Zemanta]

Wednesday, February 25, 2009

How to find out and change the size of your blog's header image?

Blogger header image gives the uniqueness of your blog among the millions of blogs. So, it's good to use the header image. But you can't use the image as too big or too small. If you do that it looks odd. So, before doing it, you need to know the size of the image that fit for your blog. In this post, I will try to give you the way for finding the image size that fits for your blog.

No technical knowledge is required. Just follow the instructions.

Steps to find out blog's header image size and customizing image layout:
  1. Log in to your blogger account from www.blogger.com
  2. After successful logged in, go to Dashboard > Layout.
  3. When you clicked Layout, you will see your blogger layout. Now, select Edit HTML option and you will see a new window appeared with some code.
  4. Click on the Expand Widget Templates.
  5. Find out the following code segment and look the red colored line. This line represents the width of the header to use the image. For example, "width: 600px;" means that the header could contain a picture which has at most 660px. If your template has margin, padding then the image width should be decreased. Better, to use a image which has smaller width that it mentions. So, always try to subtract 10px to 30px value than the width value provides. In this case, width is 600px. So, if you use a picture (600px - 10px)=590px, the image will be fitted for your blog.
    #header-wrapper {
    width:660px;
    margin:0 auto 10px;
    border:1px solid $bordercolor;
    }
  6. Now find out the following code and give attention to the colored portion:
    expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width'
    Replace the colored part with the following code segment:
    height='590'
    width='100'
    Put your desired image value according to the value of step 5.
  7. At last, click on Save Template.
That's all. By following the above steps you can easily find out your blog's header image size. You can also set up the size of your blog's header image by changing the value of height and width.

If you are enjoyed this post, please consider to leave a comment at the comment section of this page or Subscribe to the feed to get new articles which will be delivered to your feed reader.

Tuesday, February 24, 2009

Troubleshooting

If you are a compute user, then you may face several types of problems at different times. You spent many hours to find out a good but the best solution. But you failed!! No solution!! For example, if you are using AVG free antivirus, then it's often hard to uninstall AVG fully and install another type of antivirus products. To uninstall it fully, you visit sever hundreds of pages sometimes. This type of problems are very common. In this part you will find such type of problems with great solution. So, browse here and introduce yourself the most common types of problem with great wonderful solution.


If you are enjoyed this post, please consider to leave a comment at the comment section of this page or 
Subscribe to the feed to get new articles which will be delivered to your feed reader.

Monday, February 23, 2009

ESET NOD32

Virus, Malware, Trojan, Worm, Spyware, Adware, Botnet etc. are the main problems for your computer to function properly. To solve these type of problems, you may use a good antivirus or a smart internet security, firewall etc. All of the products are not free. You have to spent much amount of money.

But here I will tell you that you don't bother money if you use NOD32. Yes!! It's the best antivirus, I found ever. It's username and password can be obtained freely from antiviurskeys.blogspot.com. So, to use NOD32 as a professional version antivirus, please go through the topics and know the ways to find out the username and password of ESET NOD32 totally free.


If you are enjoyed this post, please consider to leave a comment at the comment section of this page or Subscribe to the feed to get new articles which will be delivered to your feed reader.
Reblog this post [with Zemanta]

NOD32 keys

ESET NOD32 is one of the best effective and most proactive antivirus software and malware protection. NOD32 can easily eliminate virus, adware, worms, trojans and roolkits before they attack the system. So, to use this best software you need a valid username and passoword. But isn't it a costly thing? No, problem...your don't need to spend any single penny for this. Just use one of the following username or password. Before going further, please read the topic "How to Get Free ESET NOD32 Antivirus Key And Password". If you read already, then process further...

This page is updated daily.

Attention: All these keys are free. If any username and password is not working, then use the next username and password. If your username and password is blocked or invalid then visit this site again and get the latest username and password to use. All the usernames and passwords are updated daily.

Note: All these keys are taken from antiviruskeys.blogspot.com.


From 15.06.2009 all valid usernames and passwords will be found the following link. Please read that page and you will find a download link and follow the instructions of that page to find valid free NOD32 usernames and passwords.

If you face any problem, say to comment section.

=======================================

Click here to get free ESET NOD32 Usernames & Passwords


=======================================

==================================
Updated on 13.06.2009
==================================

UserName: TRIAL-16661671
PassWord: rnkh243rxu

UserName: TRIAL-16726819
PassWord: 4d5b4uf5r6

UserName: EAV-16669612
PassWord: du5xf5565v

UserName: EAV-17196385
PassWord: c526xrm4hn

UserName: EAV-16674144
PassWord: eccm54mxdm

==================================
Updated on 09.06.2009
==================================

UserName: EAV-16303435
PassWord: a7eeb7778x

UserName: EAV-15538885
PassWord: x4n8nxufkc

UserName: EAV-16563521
PassWord: 3hk22crcpe

UserName: EAV-16563532
PassWord: cs67tk7e5c

UserName: EAV-16563554
PassWord: 4fm2fherrr

==================================
Updated on 07.06.2009
==================================

UserName: TRIAL-16566245
PassWord: aa7445dk4t

UserName: TRIAL-16567034
PassWord: 3ttvurumba

UserName: TRIAL-16567026
PassWord: b7avbus6tn

UserName: TRIAL-16566244
PassWord: 5r2sv6p5c8

UserName: TRIAL-16567033
PassWord: d244tjut3p

==================================
Updated on 04.06.2009
==================================

UserName: TRIAL-16566238
PassWord: 7eevjebuus

UserName: TRIAL-16566240
PassWord: 3se2pk27tx

UserName: TRIAL-16566236
PassWord: d5esdamkvm

UserName: TRIAL-16566168
PassWord: fnj3ju2ajh

UserName: TRIAL-16566233
PassWord: xxmt7uxfnv

==================================
Updated on 01.06.2009
==================================

UserName: TRIAL-16649427
PassWord: kum2uf38uj

UserName: EAV-16209082
PassWord: kj7cn2fktr

UserName: EAV-16293967
PassWord: 4k35u844r3

UserName: EAV-13553630
PassWord: teuup7kbtb

UserName: EAV-13553661
PassWord: nrdpksb4ae

==================================
Updated on 31.05.2009
==================================

UserName: EAV-16527373
PassWord: 785tfjb4kj

UserName: EAV-16260579
PassWord: d3rb6knbc8

UserName: EAV-15925059
PassWord: tjfwbejne8

Username: EAV-16123346
Password: enje4csths

UserName: EAV-16229059
PassWord: nd8bc76tpp

==================================
Updated on 29.05.2009
==================================

UserName: EAV-16022670
PassWord: djse57sehb

UserName: EAV-16099912
PassWord: ss3xnc7mj6

UserName: EAV-15605253
PassWord: 3n3ccnxfx6

UserName: EAV-16022709
PassWord: pvr7bprdjm

UserName: EAV-16010206
PassWord: d3betscerv

==================================
Updated on 28.05.2009
==================================

UserName: EAV-16022709
PassWord: pvr7bprdjm

UserName: EAV-16099912
PassWord: ss3xnc7mj6

UserName: EAV-16010206
PassWord: d3betscerv

UserName: EAV-15605253
PassWord: 3n3ccnxfx6

UserName: EAV-16022670
PassWord: djse57sehb

==================================
Updated on 27.05.2009
==================================

UserName: EAV-15925051
PassWord: h63vucm6vu

UserName: EAV-14542962
PassWord: xjn7a7frcp

UserName: EAV-15932949
PassWord: t4xcwt6wb5

UserName: EAV-15932956
PassWord: ra77e55764

UserName: EAV-15932958
PassWord: fnmjcp5mkw

==================================
Updated on 25.05.2009
==================================

UserName: EAV-15178883
PassWord: ca38xs3ssb

UserName: EAV-15826317
PassWord: 6frh2phebd

UserName: EAV-15860688
PassWord: 2r4tkms3vj

UserName: EAV-15860698
PassWord: hshpuj28fs

UserName: EAV-15861433
PassWord: rdmeamhxj7

==================================
Updated on 23.05.2009
==================================

UserName: EAV-15925120
PassWord: vcrt3d2e4u

UserName: TRIAL-16216185
PassWord: 5nrxkdjeer

UserName: EAV-15925127
PassWord: tjxnjpwrvt

UserName: TRIAL-16216199
PassWord: hrm4pp5pfn

UserName: EAV-03998599
PassWord: tkhtw76487

==================================
Updated on 20.05.2009
==================================

UserName: EAV-15832977
PassWord: 3h7jwdxh2n

UserName: EAV-15832978
PassWord: u2xatfa2b4

UserName: EAV-15710610
PassWord: 6f2wsem2fu

UserName: EAV-15830606
PassWord: pjm3ueb4hb

UserName: EAV-15832979
PassWord: 877es8a73h




==================================
Updated on 17.05.2009
==================================

UserName: EAV-16137027
PassWord: du246r4usx

UserName: EAV-13172011
PassWord: m6hxxaham5

UserName: EAV-06221865
PassWord: 76rn2sv5e3

UserName: EAV-16136854
PassWord: hxd34va8rn

UserName: EAV-13602766
PassWord: mfmrc432uw

==================================
Updated on 17.05.2009
==================================

UserName: EAV-09043355
PassWord: 5h6wcm4535

UserName: EAV-13489285
PassWord: fednuc8tje

UserName: EAV-15562134
PassWord: vdd4j6mxtv

UserName: EAV-15692610
PassWord: xp64mrcepk

UserName: EAV-03939963
PassWord: 2nk2d3su4t

==================================
Updated on 15.05.2009
==================================

UserName: EAV-14004486
PassWord: tmw7kh3pw7

UserName: EAV-15232926
PassWord: vrmkrcwnf3

UserName: EAV-15232941
PassWord: 6aaepsteud

UserName: EAV-03977643
PassWord: 4p8j86t44k

UserName: EAV-15232909
PassWord: wthdud4fnu

==================================
Updated on 14.05.2009
==================================

UserName: EAV-15143959
PassWord: tjdu2wauw5

UserName: EAV-15877899
PassWord: 5p2m4c68hk

UserName: EAV-15357876
PassWord: 2cump33cp4

UserName: EAV-15877951
PassWord: ux4vnb3bak

UserName: EAV-16055913
PassWord: jeemcnkh7x



==================================
Updated on 11.05.2009
==================================

UserName: EAV-12884506
PassWord: k4s34a4akw

UserName: EAV-12462589
PassWord: 4efpkmwf6u

UserName: EAV-12462599
PassWord: 56c32buc54

UserName: TRIAL-15764771
PassWord: rn25rkvt23

UserName: EAV-14632109
PassWord: drcs3f2rwv

==================================
Updated on 09.05.2009
==================================

UserName: EAV-00519138
PassWord: pwpunpxjs3

UserName: EAV-00098664
PassWord: k6mw7e35rp

UserName: EAV-03770581
PassWord: nrdskmjbvt

UserName: EAV-15269282
PassWord: v72n56aamt

UserName: EAV-15220436
PassWord: 3hf7xx8mkm


==================================
Updated on 06.05.2009
==================================

Username: EAV-15281305
Password: b6rwxem3xb

Username: EAV-14601337
Password: bhsbdwxbm5

UserName: EAV-15339346
PassWord:pbkfhhf357

UserName: EAV-15040890
PassWord: 5a75j8rxax

UserName: EAV-15040891
PassWord: r42xjersjh

Username: EAV-14440156
Password: w3jb4ds2v5

==================================
Updated on 03.05.2009
==================================

UserName: EAV-14187143
Password: tc5w42mc53

Username: EAV-15013969
Password: ahe5t3a73d

Username: TRIAL-15433408
Passwort: rjhha5nfkh

Username: TRIAL-15434287
Password: m62ptpwmma

Username: TRIAL-15434294
Password: 43p2erjmua

==================================
Updated on 01.05.2009
==================================

UserName: EAV-14964855
Password: x6sfwrp23x

UserName: EAV-14965424
Password: c5j44c6ruw

Username: TRIAL-15376931
Password: hasbtw3eud

UserName: EAV-14188374
Password: hc2b6cn5tu

UserName: EAV-14965468
Password: ewda58uu4b

==================================
Updated on 28.04.2009
==================================

Username: EAV-14753011
Password: 8sfhjaj27f

Username: EAV-15222565
Password: cn3cwa6682

Username: EAV-13391512
Password: 3ck8penepd

Username: EAV-14321597
Password: njfnfh53rs

Username: EAV-14353963
Password: a8td5v7wwp

==================================
Updated on 24.04.2009
==================================

Username: EAV-13728327
Password: mrbmj2njeb

Username: EAV-13553602
Password: 2a5mhhfppf

Username: EAV-14359170
Password: hvfn85a8v2

Username: EAV-14353962
Password: es3natvemb

Username: EAV-13553592
Password: h8np7k8h58

==================================
Updated on 23.04.2009
==================================

Username: TRIAL-14891802
Password: b2mffnd878

UserName: EAV-14060737
PassWord: mdvd7sdrre

UserName: EAV-14022815
PassWord: 4txe8swj7x

UserName: EAV-14657500
PassWord: 7vuh8e4je6

UserName: EAV-14657437
PassWord: sdku4573ft

==================================
Updated on 21.04.2009
==================================

UserName: TRIAL-14846026
PassWord: n865nsr7xu

Username: EAV-14564767
Password: 3pa4vstex2

Username: EAV-14564771
Password: mcab8473wb

Username: TRIAL-14888156
Password: dwdvrdfr7d

Username: TRIAL-14846026
Password: n865nsr7xu

==================================
Updated on 18.04.2009
==================================

Username: EAV-13826919
Password: 2bfv7r2wnr

Username: EAV-13826929
Password: hcvshn858x

UserName: EAV-11193648
PassWord: 4bsapre5vc

UserName: EAV-13745892
PassWord: 6c288akev6

UserName: EAV-13839895
PassWord: 8e6umab855

==================================
Updated on 16.04.2009
==================================

Username: EAV-13839944
Password: v6jmav7rpu

Username: EAV-14657410
Password: 8c4wb2beu8

Username: EAV-13808881
Password: 6a72cj2nd8

Username: EAV-13850048
Password: 8t6wceud5b

Username: EAV-12769190
Password: s2p8dhu236

==================================
Updated on 14.04.2009
==================================

Username: EAV-14464191
Password: 7jwwat5h7a

Username: EAV-14222090
Password: skcrhbeuwf

UserName: EAV-13789603
PassWord: bx36psuk6m

UserName: EAV-03092826
PassWord: 4jbk4hscct

UserName: EAV-14222090
PassWord: skcrhbeuwf

==================================
Updated on 12.04.2009
==================================

UserName: EAV-13272382
PassWord: pf68e2u87u

UserName: EAV-13720083
PassWord: 3r8kfsmfbv

UserName: EAV-13226749
PassWord: 42ms3d5ebd

UserName: EAV-14122091
PassWord: phn6m6mtmp

UserName: EAV-14162663
PassWord: dw8a2xrnkj

==================================
Updated on 11.04.2009
==================================

Username: EAV-14102206
Password: t57ha5fb6v

Username: EAV-14578177
Password: 3x4vcprw77

Username: EAV-13272409
Password: 6epbnwxnka

Username: EAV-13622257
Password: up8xr2w6ub

Username: EAV-12996917
Password: ta7x8a6dh6

==================================
Updated on 07.04.2009
==================================

Username: EAV-14003201
Password: mh7dvx8v3s

Username: EAV-14003216
Password: u3u8uc5nd5

Username: EAV-13744309
Password: 2wnbx7up74

Username: TRIAL-13858619
Password: vbd48fhnnu

Username: TRIAL-13940505
Password: 3ke7hk322b

==================================
Updated on 05.04.2009
==================================

UserName: EAV-13319068
PassWord: 4sscjucr7e

UserName: EAV-14246799
PassWord: cnjccr7cxd

UserName: EAV-14380915
PassWord: 7cskw28jkr

UserName: EAV-13477180
PassWord: 2w5c2jtrxd

UserName: EAV-14354548
PassWord: bj5s24w7xx

==================================
Updated on 02.04.2009
==================================

UserName: EAV-12125835
PassWord: vukuawh25w

UserName: EAV-12264611
PassWord: v4mbfbcwhn

UserName: EAV-13554703
PassWord: sa3nrahrn2

UserName: EAV-13554685
PassWord: f6rbuhmc4c

UserName: EAV-13053270
PassWord: 8ewrueef6c

==================================
Updated on 30.03.2009
==================================

Username: EAV-14040934
Password: vxcf38k7nv

Username: EAV-13554645
Password: wajah3xude

Username: EAV-13695908
Password: j665fdcj82

Username: EAV-13079405
Password: am5x5h8cde

Username: EAV-13813902
Password: rehfwnpvvw

==================================
Updated on 27.03.2009
==================================

Username: EAV-13536457
Password: 8mxe4ka6s5

Username: EAV-13695857
Password: 64b3u8fn7e

Username: EAV-12652584
Password: t6pue35bvw

Username: EAV-11846511
Password: 26p77xss27

Username: EAV-12411263
Password: w3ke8f2c3n

==================================
Updated on 25.03.2009
==================================

UserName: EAV-12549888
PassWord: p2mx5ftu27

UserName: EAV-12677048
PassWord: 4h8xhdd4ct

UserName: EAV-13636707
PassWord: rkbp5mvf76

UserName: EAV-13554633
PassWord: 8k5fdaexsd

UserName: EAV-13765868
PassWord: e8vm2784mm

==================================
Updated on 21.03.2009
==================================

UserName: EAV-12391532
PassWord: 8pst5vmu8p

UserName: EAV-12995806
PassWord: hudphm2v37

UserName: EAV-12995673
PassWord: wc8mephcjx

UserName: EAV-13524106
PassWord: 6nvwsv6vbt

UserName: EAV-12330719
PassWord: txmpcex2tk

==================================
Updated on 19.03.2009
==================================

UserName: EAV-12330719
PassWord: txmpcex2tk

UserName: EAV-11789182
PassWord: xstdbbscf6

UserName: EAV-12462579
PassWord: kd3tapnakm

UserName: EAV-12779611
PassWord: vxsckwnw7k

UserName: EAV-12251462
PassWord: c8mt8j7p8w

==================================
Updated on 17.03.2009
==================================

UserName: EAV-12160529
PassWord: 2jre2d6a56

UserName: EAV-12074144
PassWord: j3nc6dxxa8

UserName: EAV-13099296
PassWord: 8h7faj52xu

UserName: EAV-13099300
PassWord: 6jnp3xe4fj

UserName: EAV-12945183
PassWord: whh8k46822

==================================
Updated on 16.03.2009
==================================

UserName: EAV-12139792
PassWord: efs6fhxa22

UserName: EAV-11780967
PassWord: wn38webd8d

UserName: EAV-13302567
PassWord: nhrjvetbsw

UserName: EAV-12974460
PassWord: x2rwvxfwbj

UserName: EAV-12976992
PassWord: 4e5f6r42vw

==================================
Updated on 14.03.2009
==================================

Username:EAV-11796699
Password:checdmt36u

Username:EAV-11699490
Password:rjrudrejux

Username:EAV-11698820
Password:ahsvr6p8sf

Username:EAV-11959056
Password:66t5m7tp4n

Username:EAV-11939047
Password:nmkmj8v348

==================================
Updated on 12.03.2009
==================================

UserName: EAV-11731603
PassWord: nm3h7xbmww

UserName: EAV-13068074
PassWord: ep3682supu

UserName: EAV-12920555
PassWord: mcve5crb83

UserName: EAV-12940135
PassWord: bfwddnk7hh

UserName: TRIAL-13050995
PassWord: 83np5vtsr5

==================================
Updated on 11.03.2009
==================================

UserName: TRIAL-13050995
PassWord: 83np5vtsr5

UserName: EAV-11981984
PassWord: 2bv66mnwwt

UserName: EAV-12010920
PassWord: 23vnesfpdj

UserName: EAV-13068137
PassWord: hhb42x8mbh

UserName: EAV-13138566
PassWord: ds8wfbwet3

==================================
Updated on 08.03.2009
==================================

UserName: EAV-11751452
PassWord: k3pnmwaurr

UserName: EAV-11699490
PassWord: rjrudrejux

UserName: EAV-12704002
PassWord: vxmdx653k8

UserName: EAV-12890789
PassWord: w43vhnu2tt

UserName: EAV-12973022
PassWord: 2rka26mb33

==================================
Updated on 07.03.2009
==================================

UserName: EAV-11751452
PassWord: k3pnmwaurr

UserName: EAV-11699490
PassWord: rjrudrejux

UserName: EAV-12704002
PassWord: vxmdx653k8

UserName: EAV-12890789
PassWord: w43vhnu2tt

UserName: EAV-12973022
PassWord: 2rka26mb33

==================================
Updated on 05.03.2009
==================================

Username: TRIAL-12822383
Password: r3av8tuwsa

Username: TRIAL-12822480
Password: rrr6sp243b

Username:EAV-11701869
Password:rt3dfc22dp

Username:EAV-11701884
Password:2cp8erutr3

Username:EAV-11701886
Password:73p58k6hsv

==================================
Updated on 03.03.2009
==================================

UserName: EAV-11257109
PassWord: f6vr48n834

UserName: EAV-11257094
PassWord: 7k8v5tsfnr

UserName: EAV-12683972
PassWord: e2akjsekmd

UserName: EAV-12684036
PassWord: uxrm8hvjxf

UserName: EAV-12687242
PassWord: 5had4kau4v

==================================
Updated on 02.03.2009
==================================

Username:EAV-12624638
Password:k65s8k2h42

Username:EAV-12624630
Password:aspssf42jm

Username:EAV-12624634
Password:n5njf6pemb

Username:EAV-12624659
Password:we7rt8h5xv

Username:EAV-11346935
Password:p6cw22dk86

==================================
Updated on 01.03.2009
==================================

Username:EAV-12624635
Password:3bvpewpmcr

Username:EAV-12624638
Password:k65s8k2h42

Username:EAV-12624630
Password:aspssf42jm

Username:EAV-12624634
Password:n5njf6pemb

Username:EAV-12624659
Password:we7rt8h5xv

==================================
Updated on 27.02.2009
==================================

Username:EAV-11303604
Password:7dpejemwux

Username:EAV-12623523
Password:pf7hbdn3dc

Username:EAV-12623585
Password:wtpn7atbpk

Username:EAV-12623677
Password:n8fhxxn7sh

Username:EAV-12623690
Password:8ukw8awxh2

==================================
Updated on 27.02.2009
==================================

Username:EAV-11257104
Password:pnpses2n8x

Username:EAV-11257106
Password:vbppakccas

Username:EAV-12543106
Password:n4x2eh2xe2

Username:EAV-11152769
Password:32e4k5pw4h

Username:EAV-11281848
Password:ehmc3b5ksw

Username:EAV-11257103
Password:cffmfx2fjh

==================================
Updated on 26.02.2009
==================================

UserName: EAV-11281848
PassWord: ehmc3b5ksw

UserName: EAV-11257103
PassWord: cffmfx2fjh

UserName: EAV-11257104
PassWord: pnpses2n8x

UserName: EAV-11257106
PassWord: vbppakccas

UserName: EAV-12543106
PassWord: n4x2eh2xe2

==================================
Updated on 25.02.2009
==================================

UserName: TRIAL-12378801
PassWord: t7frvjkxkn

UserName: EAV-11257102
PassWord: hxpvkwpx85

UserName: EAV-11257101
PassWord: 6sfrm5prhp

UserName: EAV-11259941
PassWord: sktmsmmmkn

UserName: EAV-11247051
PassWord: 46h5cv73ua

==================================
Updated on 24.02.2009
==================================

UserName: EAV-11229979
PassWord: jx2tewb8xt

UserName: EAV-11240271
PassWord: f7tmse3fdbz

UserName: EAV-12479126
PassWord: 8twdavh5m7

UserName: EAV-12340362
PassWord: hkcdfshffv

UserName: EAV-12403411
PassWord: 6tffhwb7j2

If you don't understand, how to use these keys and passwords then please read the article of "How to Get Free ESET NOD32 Antivirus Key And Password".

If you are enjoyed this post, please consider to leave a comment at the comment section of this page or Subscribe to the feed to get new articles which will be delivered to your feed reader.
Reblog this post [with Zemanta]

How to Get Free ESET NOD32 Antivirus Key And Password

Different antivirus software are used to protect our PC form virus. They aren't free. We have to spent some money. But here I will tell you one best antvirus name "NOD32" and also tell you the secret tactics for getting it freely. Moreover, you can use it as like a professional user. All professional options will also be available. Don't you believe? Just follow the following 3 steps and see what you can find:

[itis123.blogspot.com is now providing all the published keys (usernames + passwords) of NOD3 by taking proper permisission from antiviruskeys.blogspot.com. You can find all the lateset keys (usernames + passwords) directly by following the link of Free ESET NOD32 keys]

Why use ESET NOD32:

I used several antivirus software. But "ESET NOD32", is the best one. I used it because I can get the valid username and password and find it as like a professional user. ESET NOD32 is becoming one of the best pieces of antivirus software in the world. Some features of ESET NOD32 are:
  • Provides effective antivirus protection.
  • Requires less space to install and run.
  • Scanning speed is very fast.
  • Very simple and easy to install, configure and scan.
  • NOD32 is smart enough to recognize malicious code before the signature is available.
  • Updates are automatic and requires less time.
  • Provides extensive, context-sensitive supports to the user.

Steps for getting free ESET NOD32:

Follow the following three steps for getting the best antivirus software free:

Step 01: Download and install NOD32

Go
http://www.eset.com/download/ and select "Free 30-day Trial" tab and download the trial version of the antivirus software. After finished downloading, install ESET NOD32.



Step 02: Get "Username" and "Password"

Visit
"http://antiviruskeys.blogspot.com/" and you will see a page with latest "username" and "password".

[
Notes: This blog provides valid username and password. They are free. So, after some days, if your uername and password is blocked, then go to the blog again for latest valid username and password.]

Step 03: ESET NOD32's "Username" and "Password" updating

  1. Open "ESET NOD32" (by double clicking from the bottom right of your desktop) and select "Update" and then select "Username nad Password Setup..." options.
  2. Copy "Username" and "Passowrd" from http://antiviruskeys.blogspot.com and paste to "License details". Here put the "username" and "password" and click "OK" lastly.
  3. Now click "Update virus signature database" and you will see Update successfully finished.


The above procedure is enough to use ESET NOD32 antivirus freely. Now, think what the best you are getting freely. I think you will use it and enjoy. Goodbye.... Don't forget to put your opnions, if it works.... :)


If you are enjoyed this post, please consider to leave a comment at the comment section of this page or Subscribe to the feed to get new articles which will be delivered to your feed reader.
Reblog this post [with Zemanta]

Sunday, February 22, 2009

Changing Your Blog's Header Image

You can easily add your favorite image or photo as a blog's header image. You can also add your blog's title and description with your desired image or photo. I appreciate to use your own header image than the image already defined by the blog template designer or just the plain background. Before uploading your own header image, please make sure that the image size will be fit to rest of the header section of your blog. In this page, you will learn how to upload a header image for your blog. It's very simple and easy.

No technical knowledge is required. Just follow the instructions.

Steps of uploading blog's header image:

  1. After logging to your blogger account (blogger), go to Dashboard > Layout > Template > Edit HTML. Now, click on Edit option form the Header and you will see a pop up window will be appeared like the following:

  2. Form the pop up window, select the method to upload your desired image. You can upload image form your computer by selecting From your computer option. Just give the location of your image. Alternately, you can upload image form the web by selecting Form the web option. In this case, you have to put the url of your desired image.
  3. At last, click on Save to save the image. And you have done all!!

Note:

You can display your header image by two ways:
  1. Behind title and description: If you select this option, the header image will be located behind your blog's title and description.
  2. Instead of title and description: If your header image contains title and description, you can use this option. This option will disable your blog's text title and description. Only the header image will be displayed.
If you are enjoyed this post, please consider to leave a comment at the comment section of this page or Subscribe to the feed to get new articles which will be delivered to your feed reader.

Friday, February 20, 2009

Installing new template for your blog

Using a good blog template and useful contents are the best way to increase user attraction and increase blog traffic. If your blog looks nice and contains a useful no of materials, many people will give a try to visit your blog daily. Your blog's popularity will be very high within few days. That's why, bloggers are always looking nice blog template or changing blog template every few days later to increase blog traffic. This page will give a very clear cut information for installing new blog template by replacing the old template through different methods or techniques. Bear in mind, no technical knowledge is required. Just follow the instructions.

Before doing any change of your blog template, make sure to save your old template first.

Techniques to install blogger templates:

Technique 1: Simple clicking technique - By uploading the .xml file


This is the simplest and easiest technique to change your blogger template. It's the process of selecting an template and uploading that to use your blog template. To install a template by following this technique, just follow the following steps:


  1. Firstly, download your desired template and save it to your computer. When you finished saving it, you will see that a .xml extension file is saved in your PC and it's the template of your desired one.
  2. After logging to your blogger account (blogger), go to Dashboard > Layout > Template > Edit HTML page location.
  3. Give the location of your template file by clicking Choose File and then press Upload.
  4. At last, click on Save Template button.
  5. That's all. Now view the new outlook of your blog with the new template.

Note: 
  • It's often noticed that after step-4, it may ask to delete some widgets. At this time, you just delete them. Any types of widgets are the extra elements of your blog and you can add that or those at any time later if you require that or those.


Technique 2: Copy-Paste technique - By copying and pasting the .xml code

This is another way to upload your desired blog template. This technique is a little confusing to the new comers. But it's also a simple method. To install a template by following this technique, just follow the following steps:

  1. Firstly, download your desired template (.xml extension file) and save it to your computer. Now open that .xml file with and editor like Notepad or Notepad++ editor.
  2. After logging to your blogger account (blogger), go to Dashboard > Layout > Template > Edit HTML page location.
  3. Now, click the Expand Widget Templates button.
  4. Then, select all the code contents and paste the previous copied codes (from step-1).
  5. At last, click on Save Template button.
  6. That's all. Now view the new outlook of your blog with the new template.

Note: 
  • It's often noticed that after step-5, it may ask to delete some widgets. At this time, you just delete them. Any types of widgets are the extra elements of your blog and you can add that or those at any time later if you require that or those.
    If you are enjoyed this post, please consider to leave a comment at the comment section of this page or Subscribe to the feed to get new articles which will be delivered to your feed reader.

    About itis123.blogspot.com

    About  itis123.blogspot.com


    itis123.blogspot.com is the modified and updated version of set123.blogspot.com. Actually, it's a tutorial zone. It contains several resources or several topics. Current materials of itis123.blogspot.com are: 


    Blogging Related Materials: 

    A helpful resource center to customize blogger template, to design, blog hacks, useful tips and ticks etc. for bloggers. Any people can understand, all the materials very easily. In fact, no technical knowledge is required. Just taste any page and read... Finally, apply your knowledge. Use the search box of the right upper hand side to search a specific posts, information or simply browse through the posts instead. All the posts materials are correct and reliable. Before posting anything, I first personally test them and when I found that's ok to use, only then I publish the posts. However, if there is any error, please tell me through the contact form or the comment section of the posts. All of your comments and opinions are always highly appreciated...

    ESET NOD32 Antvirus Related Materials: 

    Different types of ntelligent techniques to use antivirus software as a professional versions. You don't have to spent any money at all. Are you wondering? Your answer may be "Yes"!! But it's not a joke. You can use antivirus software freely. like the professional versions. Just go to the section NOD32 and find out the techniques.

    Troubleshooting Related Materials: 

    This section is a library for solving your own computer's troubleshooting. For example, if you are facing problem for uninstalling AVG antivirus it may help you a lot. More more interesting things are coming soon. Browse here and get the easiest solution. Smile !!



    Coming Materials:

    • Networking Tutorials
    • Interview Questions
    • Job Hints and Success
    • Oracle tutorials
    • Programming Related Topics
    • etc ...

    So, keep in touch to itis123.blogspot.com and don't forget to subscribe through any feed reader. Alternately, you can Subscribe to itis123 by Email  so that you can get the new topics through your mail. The subscription links are given below:

    Saturday, January 17, 2009

    How to remove or uninstall AVG?

    How to remove AVG? How to uninstall AVG? These types of brain storming questions arising when you can't remove or uninstall AVG anti-virus at-any-cost. AVG Anti-Virus Free Edition, a the best free anti-virus program by Grisoft. But sometimes it must need to remove or uninstall from your PC. But you can't do it normally by applying traditional un-installation process. If you fall this group, then keep reading and apply step by step. It must removed. But do it stepwise. Oh, one thing, do you know "Why AVG is not uninstall normally?" Probably not. This page give you the total solution.

    What is AVG Anti-Virus Free Edition?

    AVG Anti-Virus Free Edition is a best free anti-virus by Grisoft. It can provide basic anitviurs and antispyware protection for windows. It is also very helpful for real-time protection from poisoned web pages.

    Why you need to remove or uninstall AVG Anti-Virus?

    You need to remove or uninstall AVG antivirus for several causes. Some of the causes are given below:
    • If your AVG is became a corrupted virus signatures, it's funcitonality goes down and you need to remove it.
    • Because corrupted virus signatures have caused it not to update properly or it would not start properly. Then it it needs to be reinstalled.
    • Moreover, if you install a new email client after AVG, you'll need to uninstall it and reinstall it so this email program is protected. Otherwise, your email will not be protected.
    • Moreover, if you want to install other anti-virus software, you also need to uninstall it.
    Why AVG Anti-Virus Free Edition can't remove or uninstall?

    The main reason behind this is that at the installation time, no uninstall utility is installed. So, how dare you to uninstall that? But soon you will learn the way to uninstall or remove it from your PC easily.

    How to remove or uninstall AVG ?

    Here I will mention several methods. Guys apply them step-by-step. Try them from the first. Not last.

    Method 01:

    1. Download AVG Remover Tool tool from http://www.avg.com/download-tools.
    2. After downloading, run it by double clicking.
    3. When finished, restart your pc and check whether it exists or gone (I mean remove or uninstall).
    4. If gone then smile. Otherwise, apply "method 02".
    Method 02:
    1. Download AVG antivirus to your desktop from Download AVG Antiviurs.
    2. Double-click on the downloaded file to run it, when it finished downloading.
    3. At the time of installation, when it gives options like (Add/Remove Components, Repair installation and Uninstall), choose Uninstall from them.
    4. After the completion of uninstallation, restart your computer.
    5. Hopefully, it removes and smile now. Ok, if not follow "Method 03".
    Method 03:
    1. Go to Start -> Run.
    2. Type regedit and hit Enter key.
    3. Navigate the following location:
      1. HKEY_LOCAL_MACHINE\SOFTWARE\AVG
      2. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\AVG8Uninstall
    4. Right click on AVG and AVG8Uninstall respectively, and select Delete to remove the AVG related registry keys.
    5. Now, I think your problem is totally solved. Not yet....one last step, go to "Method 04".
    Method 04:
    1. Download AVG antivirus to your desktop from Download AVG Antiviurs and install it.
    2. Next download Revo Uninstaller and install it.
    3. Now run Revo Uninstaller and remove AVG.
    4. Sounds great!! I think you success to remove AVG.
    Dear guys, I think....you must have successfully remove or uninstall AVG from your PC. If you still face problem then give a comment, I will try to reply you. Moreover, if you success, don't forget to tell others this great site's talk...

    http://itis123.blogspot.com


    Remove AVG and Enjoy !!

    If you are enjoyed this post, please consider to leave a comment at the comment section of this page or Subscribe to the feed to get new articles which will be delivered to your feed reader.

    How to hide "Subscribe to: Posts (Atom)"

    At the end of your blog you may see like "Subscribe to: Posts (Atom)". It's used for your readers to subscribe to your Blog posts. If you use Feed Burner, you don't need that. Feed burner is enough to do it more nicely. So, many people prefers not to use this or hide this or delete this.
    Hiding "Subscribe to: Posts (Atom)" is very easy and very simple. Just follow the following steps:
    1. Log in to "www.blogger.com" and go to Dashboard.
    2. Select Layout
    3. Select Edit HTML
    4. Now fine the line: ]]></b:skin> </head> [you may use Ctrl+F to find that ]
    5. Insert .feed-links { display:none; } before that line (line which you find in step 4)
    6. Click SAVE TEMPLATE
    Final outlook of the template code:

    ***************************************************************
    .feed-links { display:none; }
    ]]></b:skin> </head>


    ***************************************************************

    That's all for hiding or deleting "Subscribe to: Posts (Atom)". Check your blog. There is not "Subscribe to: Posts (Atom)". In this way, you can easily hide or remove Subscribe to: Posts (Atom)" from your blog.

    Pictorial Explanation:




    Hope, you enjoy blogging

    Thursday, January 15, 2009

    How to log in Windows XP if you forget your administrator password

    You can log in your windows XP, if you have password reset disk. If you don't have password reset disk, you may still log in and can recover your administrator password or any other password. This page will tell you step by step procedure to recover your Windows XP administrator password. Follow the steps:

    Step 1: Boot Your PC with XP CD
    Take a bootable Windows XP CD and keep it in your PC's CD-ROM. Now reboot your PC. Hit any key when you see "Press any key to boot from cd" on the screen. Then, the first screen will indicate that Setup is inspecting the system hardware and loading files

    Step 2: XP Setup with Repair Mode
    • After sometime, you see Welcome screen and press "ENTER" to Setup Windows now.










    • Press F8 to accept the Licensing Agreement.








    • Press R to repair









    • Now Xp setup will continue and wait...








    At last, you will see that your PC is rebooting and follow the next step. Remember, don't hit any key during reboot.

    Step 3: Password Setting (Do carefully)

    After rebooting, you will find like the right picture. Now do the following things:
    • Press "SHIFT + F10" and a command console will be appeared.









    • Type "NUSRMGR.CPL" and press Enter. You have gained graphical access to your User Accounts in the Control Panel.








    • Now remove or change your administrator or user accounts passwords as you prefer.






    Step 4: Enjoy with the old desktop
    After finishing password related works, let your PC finished installing Windows XP. When you finished, you will see your Logon window and you will be able to log on with your new password.

    Now log on to your password. After logging you will see that all of your programs and personalized settings still remain intact.

    Thus, by following the above steps you can easily recover you Windows XP administrator password and users passwords also.

    Hope, you success.... :)