Showing posts with label Tutorial. Show all posts
Showing posts with label Tutorial. Show all posts

Saturday, October 26, 2013

How to remove shortcut virus off your pendrive

Leave a Comment
How to remove shortcut virus from your pen drive
The pen drives are the most common tools of storage for portable data. They are small and convenient to carry. All our files and folders that need to be accessed on multiple computer systems are stored and run through pen drives. There are times when our files and folders stored on the pen drive are shown as shortcuts. This happens not only with pen drives but hard disks, memory sticks and phone memories. Whenever we try to access these files the windows show an error saying “shortcut missing”. This may instill a fear of losing data and sometimes we are in a hurry to format our pen drive. What it is actually is that the files and folder become hidden to us and instead a shortcut icon appears which actually doesn’t exist. Formatting the pen drive is not necessary since it is a type of virus which may harm your computer and your files and also folders. There are a few simple methods to delete these shortcuts and recover your data. These steps do not require the use of any anti-virus.
One of the methods which you can follow:
Firstly, plug in your virus infected pen drive in the USB port of your computer or laptop and press ‘Windows’ key plus the ‘R’ key (Another option is to click on the ‘Start’ menu using the mouse and select the Run option). This will open the run box in which you need to type in the word ‘c m d’ (without spaces and single quotes) and press ‘Enter’. This opens a command prompt in which you need to open your drive by typing in a certain command. Now, for example, if your drive letter is ‘g:’ (without single quotes), then you need to type ‘attrib -h -r -s /s /d g:\*.*’.
Remove-Pen-Drive-Shorcut-Virus
Note: make sure there is space between each element of this code. After typing in your drive letter press ‘Enter’. The drive letter can be known by opening ‘My Computer’ and checking the pen drive icon. After this wait a few seconds and then open and check your drive, your folders. Your folders will have recovered by now and you can easily access them.
Use of an antivirus to solve your problem:
Apart from this trick, you can also install a good anti-virus which can help you get rid of all the viruses that it detects. The anti-virus in the system can be used to scan the pen drive when it is inserted into the USB port of the computer or laptop and connected. The anti-virus software scans the pen drive for viruses and repairs or removes them and may also offer solutions in the form of extra tools that can be downloaded to remove any special kinds of virus that is irreparable or irremovable from your laptop or computer.
All in all it is very easy to get rid of the virus that threatens to harm your precious data (or your files and folders) stored in your pen drive by simply removing this virus with these easy steps.


Read More...

How to sync your Windows 8.1 Start screen and desktop

Leave a Comment
Bouncing back and forth between the Start screen and desktop remains a jarring experience in Windows 8.1. But you can make the trip smoother by giving both environments the same look.
Windows 8.1 offers a new option that lets you splash the same background image onto the Start screen and desktop and even keep the two images in sync. Here's how to set it up:
Launch Windows 8.1, open the desktop, and then right-click on the Taskbar. Select Properties from the popup menu. In the Taskbar and Navigation properties window, click on the Navigation tab. Check on the option to Show My Desktop Background on Start. Click OK.
Return to your Start screen, and you'll now see the same background that appears on your desktop. Change your desktop background anytime down the road, and your Start screen background changes as well. As a bonus, your Apps screen also gets the same treatment.
Read More...

How to Build a Cheap Computer

Leave a Comment
Don't have the money to buy a new computer? Don't want to buy one? Here's how to build one on a budget.
It got many advantages. You make it the way you want it.

Steps



  1. 1
    Choose the components you would like to build the computer with. Try searching for the items on sites like Amazon, as it is sometimes cheaper than buying them from specialist stores such as Maplin.
  2. 2
    When you recieve the parts, assemble them together, as detailed below:
    • Unscrew one side panel of the PC case
    • Install the CPU into the motherboard CPU Socket (Be careful to align the CPU properly into the socket. Try to align the two corners with no pins)
    • Install the CPU heatsink and fan on top of the CPU
    • Install the RAM into the RAM slots on the motherboard and apply firm pressure until the RAM clicks into place
    • Screw the motherboard into the computer case
    • Connect the wires from the front panel of the computer case to the motherboard front panel pins. This is different for each motherboard, and detailed instructions should be included in your motherboard documentation.
    • Screw the hard drive into the disk rack at the front of the PC case
    • Screw the CD/DVD drive into the rack, and push out one of the pieces of plastic so the drive is visible on the front panel
    • Connect one end of a SATA cable to the motherboard, and the other to the hard disk, taking care to plug the motherboard end into the slot marked 'Hard Disk' or 'HDD'. Repeat with another cable for the CD/DVD drive, plugging one end to the motherboard, and the other to the CD/DVD drive
    • Screw in the power supply into the PC case, and connect the appropriate cables to the motherboard, hard disk, and CD/DVD drive
    • Replace the side panel of the computer case
  3. 3
    Install the operating system, by starting the computer, inserting the setup disk, then selecting 'Select boot device', followed by the CD/DVD drive, for example "IDE CD/DVD Device", then follow the instructions on screen
Read More...

Saturday, October 5, 2013

Percentage Scroll Bar Widget For Blogger

Leave a Comment
In today’s featured tutorial, you’re going to learn a neat new trick that will add a nice little trinket for your blog. It involves a widget that lets your visitor know just how far down the page he or she is viewing your site by means of a tool tip.This tool tip will contain percentage number that shows the visitor how close they are at the bottom of the page as they move (or scroll) up and down the page.
Putting this cool little widget on to your Blogger is simple:
1. Log in to your Blogger dashboard.
2. Go to Template.
3. Click on Edit HTML.
4. Using Ctrl+F, look for ]]></b:skin>.
5. Copy and paste following code below right under it.
#scroll {
display: none;
position: fixed;
top: 0;
right: 20px;
z-index: 500;
padding: 3px 8px;
background-color: #2187e7;
color: #fff;
border-radius: 3px;
}
#scroll:after {
content: ” ”;
position: absolute;
top: 50%;
right: -8px;
height: 0;
width: 0;
margin-top: -4px;
border: 4px solid transparent;
border-left-color: #2187e7;
}

6. Next, while still in the Edit HTML window, using Ctrl+F again, look for </head>.
7. Copy and then paste the following code below immediately after it.
<div id=’scroll’></div>

8. Last one, search for </body>and copy and paste the following code below right before it.
<script type=’text/javascript’>
//<![CDATA[
var scrollTimer = null;
$(window).scroll(function() {
var viewportHeight = $(this).height(),
scrollbarHeight = viewportHeight / $(document).height() * viewportHeight,
progress = $(this).scrollTop() / ($(document).height() - viewportHeight),
distance = progress * (viewportHeight - scrollbarHeight) + scrollbarHeight / 2 - $('#scroll').height() / 2;
$('#scroll')
.css('top', distance)
.text(' (' + Math.round(progress * 100) + '%)')
.fadeIn(100);
if (scrollTimer !== null) {
clearTimeout(scrollTimer);
}
scrollTimer = setTimeout(function() {
$('#scroll').fadeOut();
}, 1500);
});
//]]>
</script>

9. Save your template and you’re done! Enjoy your new widget!
Read More...

How to - Responsive Email - Infographic

1 comment

Read More...

Monday, September 30, 2013

Chat with your friends through MS DOS.

Leave a Comment

It might sound weird, but it’s really fun to do. If you get bored with the social networkingchats try this simple command prompt trick and chat with your friends. Below are some simple tricks on how to chat with friends through ms dos command prompt.

Chat with Friends through MS DOS Command Prompt

  • All you need is your friend's IP Address and your Command Prompt
  • Open Notepad and write this code as it is


        @echo off
                :A
                Cls
                echo MESSENGER
                set /p n=User:
                set /p m=Message:
                net send %n% %m%
                Pause
                Goto A
  • Now save this as "Messenger.Bat"
  • Open Command Prompt
  • Drag this file (.bat file) over to Command Prompt and press Enter
  • Now, type the IP Address of the computer you want to contact and press enter
  • Now all you need to do is type your message and press 
  • Enter and Start Chatting
Read More...

Saturday, September 28, 2013

DIY Buttons Pack - Free CSS3 Buttons For Blogger

Leave a Comment
css3 buttons for blogger
Hi Friends, Today I have to release the DIY buttons pack for blogger Which is converted from DIY buttons. The Wordpress version of this button was created by alex from kolakube.com.

The great thing about these buttons (besides their looks) is they were created with CSS3, the newest iteration of the CSS coding language. This means, any of these buttons are easy to customize.

Even if you have a limited understanding of how CSS works, changing the colors and styles of any of these buttons is a breeze.


The wordpress buttons have 30 buttons but here we have only 24 buttons because the last six buttons works with the web symbols regular font which does not support blogger So, Here You can add 24 DIY buttons to your blogger blog. Lets see how to add these buttons to your blog.

Add DIY Buttons To Your Blogger Blog

Adding CSS Code

OLD DASHBOARD
  1. Go to Blogger Dashboard > Design tab > Edit HTML tab
  2. Now search for ]]></b:skin>
  3. Above that place the css code given below of each Demo.
    Note:- Just Add the css code for the specific button which you want to Add.
  4. Now save your template.
NEW DASHBOARD
  1. On New Blogger Dashboard Go to Template > Edit HTML Button
  2. Ignore the Warning and Click the Proceed button
  3. Now search for ]]></b:skin>
  4. Above that place the css code given below of each Demo.
    Note:- Just Add the css code for the specific button which you want to Add.
  5. Now save your template.

Adding Button To Your Blog:-

  • Just copy the html code given below and paste it where you want to add the button.

Standard Buttons

Red ButtonOrange ButtonGreen ButtonBlue ButtonGray ButtonDark Button
CSS3 CODE FOR STANDARD BUTTONS
/* Standard Buttons */
a.standard { border: 1px solid rgba(0, 0, 0, .2); color: #fff; display: inline-block; padding: .5em .8em; text-decoration: none; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); }

.standard.red { background: #c60000; background: linear-gradient(top, #c60000 0%, #b20000 100%); background: -moz-linear-gradient(top, #c60000 0%, #b20000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c60000), color-stop(100%, #b20000)); background: -webkit-linear-gradient(top, #c60000 0%, #b20000 100%); }

.standard.orange { background: #f99015; background: linear-gradient(top, #f99015 0%, #f76c0f 100%); background: -moz-linear-gradient(top, #f99015 0%, #f76c0f 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f99015), color-stop(100%,#f76c0f)); background: -webkit-linear-gradient(top, #f99015 0%,#f76c0f 100%); }

.standard.green { background: #30a146; background: linear-gradient(top, #30a146 0%, #249334 100%); background: -moz-linear-gradient(top, #30a146 0%, #249334 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #30a146), color-stop(100%, #249334)); background: -webkit-linear-gradient(top, #30a146 0%, #249334 100%); }

.standard.blue { background: #16a4c8; background: linear-gradient(top, #16a4c8 0%, #1086b6 100%); background: -moz-linear-gradient(top, #16a4c8 0%, #1086b6 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #16a4c8), color-stop(100%, #1086b6)); background: -webkit-linear-gradient(top, #16a4c8 0%, #1086b6 100%); }

.standard.gray { background: #c2c2c2; background: linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); background: -moz-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c2c2c2), color-stop(100%, #aeaeae)); background: -webkit-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); }

.standard.dark { background: #464646; background: linear-gradient(top, #464646 0%, #343434 100%); background: -moz-linear-gradient(top, #464646 0%, #343434 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #464646), color-stop(100%, #343434)); background: -webkit-linear-gradient(top, #464646 0%, #343434 100%); }

a.standard:hover { color: #fff; opacity: .5 }
HTML CODE FOR STANDARD BUTTONS
<a href="http://www.YOUR-LINK-HERE.com/" class="standard red">Red Button</a>

<a href="http://www.YOUR-LINK-HERE.com/" class="standard orange">Orange Button</a>

<a href="http://www.YOUR-LINK-HERE.com/" class="standard green">Green Button</a>

<a href="http://www.YOUR-LINK-HERE.com/" class="standard blue">Blue Button</a>

<a href="http://www.YOUR-LINK-HERE.com/" class="standard gray">Gray Button</a>

<a href="http://www.YOUR-LINK-HERE.com/" class="standard dark">Dark Button</a>


Arrow Buttons

Red Arrow ButtonOrange Arrow ButtonGreen Arrow ButtonBlue Arrow ButtonGray Arrow ButtonDark Arrow Button
CSS3 CODE FOR ARROW BUTTONS
/* Arrow Buttons */
a.arrow { background: url(http://i44.tinypic.com/6tmsu8.png) repeat-x top; border: 4px solid rgba(0, 0, 0, .1); color: #fff; display: inline-block; font-size: 1.1em; font-weight: bold; padding: .6em 1.2em; text-decoration: none; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
a.arrow.red { background-color: #b20000 }
a.arrow.orange { background-color: #f76c0f }
a.arrow.green { background-color: #248334 }
a.arrow.blue { background-color: #1086b6 }
a.arrow.gray { background-color: #aeaeae }
a.arrow.dark { background-color: #343434 }
a.arrow:hover { color: #fff; opacity: .5 }

HTML CODE FOR ARROW BUTTONS
<a class="arrow red" href="http://www.YOUR-LINK-HERE.com/">Red Arrow Button</a>

<a class="arrow orange" href="http://www.YOUR-LINK-HERE.com/">Orange Arrow Button</a>

<a class="arrow green" href="http://www.YOUR-LINK-HERE.com/">Green Arrow Button</a>

<a class="arrow blue" href="http://www.YOUR-LINK-HERE.com/">Blue Arrow Button</a>

<a class="arrow gray" href="http://www.YOUR-LINK-HERE.com/">Gray Arrow Button</a>

<a class="arrow dark" href="http://www.YOUR-LINK-HERE.com/">Dark Arrow Button</a>

Bevel Buttons

Red Bevel ButtonOrange Bevel ButtonGreen Bevel ButtonBlue Bevel ButtonGray Bevel ButtonDark Bevel Button
CSS3 CODE FOR BEVEL BUTTONS
/* Bevel Buttons */
a.bevel { border-color: rgba(255, 255, 255, .2) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, .1) rgba(255, 255, 255, 0.2); border-style: solid; border-width: 3px; color: #fff; display: inline-block; padding: .5em .8em; text-decoration: none; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); border-radius: 7px; -moz-border-radius: 7px; -webkit-border-radius: 7px; }
a.bevel.red { background: #b20000 }
a.bevel { background: #f76c0f }
a.bevel.green { background: #248334 }
a.bevel.blue { background: #1086b6 }
a.bevel.gray { background: #aeaeae }
a.bevel.dark { background: #343434 }
.bevel:hover { color: #fff; opacity: .5 }
HTML CODE FOR BEVEL BUTTONS
<a class="bevel red" href="http://www.YOUR-LINK-HERE.com/">Red Bevel Button</a>

<a class="bevel orange" href="http://www.YOUR-LINK-HERE.com/">Orange Bevel Button</a>

<a class="bevel green" href="http://www.YOUR-LINK-HERE.com/">Green Bevel Button</a>

<a class="bevel blue" href="http://www.YOUR-LINK-HERE.com/">Blue Bevel Button</a>

<a class="bevel gray" href="http://www.YOUR-LINK-HERE.com/">Gray Bevel Button</a>

<a class="bevel dark" href="http://www.YOUR-LINK-HERE.com/">Dark Bevel Button</a>

Engraved Buttons

Red Engraved ButtonOrange Engraved ButtonGreen Bevel ButtonBlue Engraved ButtonGray Engraved ButtonDark Engraved Button
CSS3 CODE FOR ENGRAVED BUTTONS
/* Engraved Buttons */
.engraved { background: rgba(0, 0, 0, .08); display: inline-block; padding: 5px; border-radius: 30px; -moz-border-radius: 30px; -webkit-border-radius: 30px; }
.engraved a { color: #fff; border: 1px solid rgba(0, 0, 0, .3); display: inline-block; padding: .6em 1.2em; position: relative; text-decoration: none; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); border-radius: 30px; -moz-border-radius: 30px; -webkit-border-radius: 30px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4); }

.engraved a.red { background: #c60000; background: linear-gradient(top, #c60000 0%, #b20000 100%); background: -moz-linear-gradient(top, #c60000 0%, #b20000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c60000), color-stop(100%, #b20000)); background: -webkit-linear-gradient(top, #c60000 0%, #b20000 100%); }

.engraved a.orange { background: #f99015; background: linear-gradient(top, #f99015 0%, #f76c0f 100%); background: -moz-linear-gradient(top, #f99015 0%, #f76c0f 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f99015), color-stop(100%,#f76c0f)); background: -webkit-linear-gradient(top, #f99015 0%,#f76c0f 100%); }

.engraved a.green { background: #30a146; background: linear-gradient(top, #30a146 0%, #249334 100%); background: -moz-linear-gradient(top, #30a146 0%, #249334 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #30a146), color-stop(100%, #249334)); background: -webkit-linear-gradient(top, #30a146 0%, #249334 100%); }

.engraved a.blue { background: #16a4c8; background: linear-gradient(top, #16a4c8 0%, #1086b6 100%); background: -moz-linear-gradient(top, #16a4c8 0%, #1086b6 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #16a4c8), color-stop(100%, #1086b6)); background: -webkit-linear-gradient(top, #16a4c8 0%, #1086b6 100%); }

.engraved a.gray { background: #c2c2c2; background: linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); background: -moz-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c2c2c2), color-stop(100%, #aeaeae)); background: -webkit-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%); }

.engraved a.dark { background: #464646; background: linear-gradient(top, #464646 0%, #343434 100%); background: -moz-linear-gradient(top, #464646 0%, #343434 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #464646), color-stop(100%, #343434)); background: -webkit-linear-gradient(top, #464646 0%, #343434 100%); }

.engraved a:hover, .engraved:hover { color: #fff; opacity: .5 }
HTML CODE FOR ENGRAVED BUTTONS
<span class="engraved"><a class="red" href="http://www.YOUR-LINK-HERE.com/">Red Engraved Button</a></span>

<span class="engraved"><a class="orange" href="http://www.YOUR-LINK-HERE.com/">Orange Engraved Button</a></span>

<span class="engraved"><a class="green" href="http://www.YOUR-LINK-HERE.com/">Green Bevel Button</a></span>

<span class="engraved"><a class="blue" href="http://www.YOUR-LINK-HERE.com/">Blue Engraved Button</a></span>

<span class="engraved"><a class="gray" href="http://www.YOUR-LINK-HERE.com/">Gray Engraved Button</a></span>

<span class="engraved"><a class="dark" href="http://www.YOUR-LINK-HERE.com/">Dark Engraved Button</a></span>

I hope you like it. Please share your thoughts about these buttons on comment and Don't forget to share it. Thanks Guys. :)
Read More...