Showing posts with label Computer Tricks. Show all posts
Showing posts with label Computer Tricks. Show all posts

19 November 2014

How to Put Meta Keywords in Each Blogger Post

Meta tags or keywords are very significant SEO terms. To find your site’s rank better in search engine, you have to add meta tags or keywords in every page of the website. But when you want to put keywords in every blogger posts, you can’t because there is only meta description place in blogger. There you cannot find keywords adding space. So if you want to add meta tags or keywords also, you have to add some codes on your template. Meta tags are also as important as meta description. Meta tags help you to increase healthy and better traffic.

Process of adding meta tags in each blogger post:-

Suggestion: We always recommend you not to change any code of your template with keeping back up of your template.

Step 1. Log in into your blogger.
Step 2. Choose your one blog.
Step 3. Go to template>>edit html.
Step 4. And find the code <b:include data=’blog’ name=’all-head-content’/>
Step 5. Then paste the below codes below the above code.
<b:if cond='data:blog.url == "PAGE-URL"'>
<meta content='PAGE-DESCRIPTION' name='description'/>
<meta content='PAGE-KEYWORDS' name='keywords'/>
</b:if>
Step 6. Now you have to paste the above code every times when you posts.

Note: If you have 20 posts, you should copy and paste the above code 20 times too.
Step 7. Click on Save template button.

Note:-

1. write the url of your post in PAGE-URL.

2. Write meta description in PAGE-DESCRIPTION.

3. Write meta keyword in PAGE-KEYWORD.

15 November 2014

Replace Blogger's Read More Link With An Image, Text Or Dynamic Button

If you are a Blogger user and use Jump Break in your posts, you must have noticed a "Read more >>" link below each of your blog post on the homepage. This tutorial will show you how to replace those text links with beautiful-looking dynamic buttons. This tutorial will also teach how you can align that link to the right, change it's text or even replace it with an image!

Replace the Read More link with a dynamic button:


1. Go to your blogger dashboard >> Template >> Edit HTML.

2. Find the following piece of code: (Press CTRL + F and copy the code in the box that appears)
 ]]></b:skin>
3. Copy the below code and paste directly above/before ]]></b:skin>
 @media \0screen{img{width:auto}}
div.techsperiareadmore
{font:.875em/150% arial;}
a:hover
{-webkit-opacity:1;-moz-opacity:1;opacity:1}
a.shortcode.button
{background:#333;text-transform:uppercase;color:#fff !important;font-size:10px;font-family:arial,sans-serif;text-decoration:none;opacity:.9;padding:4px 10px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-transition:background 200ms linear;-moz-transition:background 200ms linear;transition:background 200ms linear;-webkit-backface-visibility:hidden;margin:0 5px 5px 0;display:block;float:left}
a.shortcode.button:hover
{background:#000;text-decoration:none}
.shortcode.button:active{position:relative;top:1px}
Change the hash code highlighted in blue to change the background color of the button. Also, to change the background when the button is hovered, change the hash code highlighted in red.

4. Find the following piece of code:
 <div class='jump-link'>
On finding the above code, you will see something like this:
 <b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + &quot;#more&quot;' expr:title='data:post.title'><data:post.jumpText/></a></div>
</b:if>
5. Replace the code highlighted in blue with the below code:
 <div class='techsperiareadmore' style='float: right;'><a class='shortcode flat black button' expr:href='data:post.url' expr:title='data:post.title'>Read More</a></div>
The final code will look something like this:
 <b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<div class='techsperiareadmore' style='float: right;'><a class='shortcode flat black button' expr:href='data:post.url' expr:title='data:post.title'>Read More</a></div></div>
</b:if> 
6. Hit Save template and you're done! (You can replace Read More with any text you want)

Now, let's have some fun with those Read More links! Here are a few more tweaks that you can do with that link. Consider these tweaks as a gift or bonus from me (to you) for reading this post!


How to replace the Read More link with an image:



Replace the code highlighted in step 4 with the following code:
 <a style='float: right;' expr:href='data:post.url' expr:title='data:post.title'><img src="Your Image URL"/></a>


How to replace the Read More link with some other text:



Replace the code highlighted in step 4 with the following code:
 <a style='float: right;' expr:href='data:post.url' expr:title='data:post.title'>Whatever_Text_You_Like</a>


How to align the Read More link to the left, right or center:



Replace the code highlighted in step 4 with the following code:
 <a style='float: right;' expr:href='data:post.url' expr:title='data:post.title'>Read More</a>
Replace the code in blue with left, right or center (Any one)

There you go! I have now taught you every possible tweak you can do with those Read More links! Enjoy having fun with 'em!

30 October 2014

How to add a link to an image in blogger

I use Blogger for blogging as it is user friendly, links easily to all other Google tools such as AdSense and Analytics, and generally makes blogging easy.

However, one area where it isn’t quite so easy to use is when you want to add links to images. So say you want to write a blog about your latest novel, and you want to put an image, like the one below, in the centre of the blog, but want to link the image to your book on Amazon, or your website.




Doing this using my website software is very simple, and doesn’t need any code, but Blogger requires using a little bit of HTML code to achieve the same thing, as the default setting needs to be over-ridden. Inserting an image into Blogger is a simple process, but setting up the link is slightly more tricky.


Below is the same image as above, already in my Blogger draft.




As you will notice there is a choice of viewing in the top left hand corner. At the moment the blog post is being viewed in ‘Compose’. However, to make changes required I now need to alter the HTML code, and to do that I now need to switch from ‘Compose’ to ‘HTML’. If I don’t change the HTML code, all that will happen when I publish the post, and people click on the image, is a larger version of the image will open in a lightbox. By clicking on the HTML button, the page will now look like this:.




To create the desired link only some of the code will need replacing. Let’s assume I want the image to be linked to this website, and open up the page http://www.cliveeaton.com/thepyramidlegacy.html. To do this I will need to remove a specific element of the HTML code, and replace it. Highlighted below is the strip of code which will need removing. Please note your code for your image will be different, as every image is of course different, including size and alignment. The part of the code beginning with href= is the link for the image, which, as I mentioned, defaults to open in a lightbox. I want to remove that default and get the link to open my webpage. The second key element of the code begins with src=, and this is the code for the actual image itself. This will remain as is. So let’s replace the highlighted code.




The HTML code I’m going to replace it with is:


href="http://www.cliveeaton.com/thepyramidlegacy.html" target="_blank"


Please note the one space gap between the inverted commas after the full webpage address and the word ‘target’. Also, the final element target=”_blank” is a vital, and generic, part of the additional code. This allows the target page to open in a new window, thus ensuring the original page is still available to view. (If you leave it out, the page will open in the same window.) Below is how the updated code looks:




I can now click back to ‘Compose’ to see that the original image is on the page, complete the blog posting, and publish it. Now when someone clicks on the image within the blog, they will be taken to my website page, which promotes the book. And of course, the original blog page is still open in a separate window.

How to Create Social Sharing Links in Under 5 Minutes [Quick Tip]

TwitterShareLinkCoverPhotoYou know that feeling when you see or read something fantastic and you just have to share it with every human you know? (I get that feeling a lot when I read BuzzFeed and Upworthy.) When I get that urge to share stuff, the first thing I do is glance quickly around the website for social sharing links so I can pass on whatever I'm reading with just the click of a button.
But when the social sharing buttons aren't there, well ... sometimes I just don't feel like opening up a new tab, logging in to a social networking site, creating a new post, and manually pasting the URL I want to share into it.
Yeah I know, it's kinda lazy -- but then again, 40% of people will abandon a website that takes more than three seconds to load. Think about it: A lot of people get frustrated or just don't do things on the internet if it takes even a few extra seconds. That could translate to a lot of people not sharing your webpage who normally would.
When you spend all that time creating cool content, you want people to share it. You can make your content more share-friendly by adding social sharing links that are visible and lead to pre-populated posts. Before we get into how to do this, let's quickly go over what social sharing links are.

What Are Social Sharing Links?

Social sharing links are those small, clickable social media icons lurking on the pages of ebooks, blog posts, and other webpages. When a viewer clicks on one, she is sent straight to a social media site with an update pre-populated with your content.
Here's an example of social sharing buttons from a page of a HubSpot ebook. Notice the links are in the form of social media icons -- I'll show you how to make your own later on.
share-links-ebook
You can create social sharing links just like these and put them right into your ebooks, blogs, and webpages -- all in just a few minutes. Here are examples of what they'll look like when you're done. (Go ahead, try 'em out!)
social-icons-02-1  social-icons-01-2  social-icons-05  social-icons-03-1  social-icons-04
Pretty cool, eh? Now -- let's learn how to make them.

Meet the Share Link Generator

The Share Link Generator is an awesome free tool on the web that helps you create social sharing links for Facebook, Twitter, LinkedIn, Google+, and Pinterest quickly and easily.
How does it work? We'll get to the long version in a second, but here's the short version:
  1. Copy the URL of whatever you want to share.
  2. Paste that URL into the Share Link Generator (along with a few accompanying words or hashtags, depending which social network you're posting to).
  3. Press a button, and it spits out a brand new URL and HTML link, which you can then put on your webpages to lead viewers to social networking sites that are pre-populated with whatever URL and accompanying words or hashtags you put in.
Now that you get the general idea of how it works, let's get into the step-by-step.

How To Create Your Own Share Links

1) Go to http://www.sharelinkgenerator.com/.

2) Choose the social network you want people to share your content on.

The Share Link Generator lets you post to Facebook, Twitter, Google+, LinkedIn, and Pinterest.

3) Fill in the blanks.

For Facebook, all you need is a URL. Facebook disabled custom share fields in February 2014, so you can't pre-populate viewers' Facebook shares with your own words or hashtags. They'll have to write that in themselves.
FacebookShareLink
For Twitter, you need to write the tweet you want people to share. Make sure to include a shortened link in there. (Check out this post for advice on constructing great tweets.)
TwitterShareLink
For Google+, all you need is a URL.
GooglePlusShareLink
For LinkedIn, you need a URL, a Title, and a Summary. The Summary is optional on the website, but don't leave it out: It gives viewers context that could compel them to click on the link. Include a shortened link in the Summary copy to optimize your LinkedIn post.
LinkedInShareLink
For Pinterest, you need the URL of the image you want to pin (which you can get by right-clicking on the image in your browser and choosing "Copy Image URL"), the source of the image (e.g. the website where you want the image to link to from Pinterest), and a description to give the image context.
PinterestShareLink
Once you've filled in those blanks, click "Create the Link!" and keep the resulting URL and HTML link handy. Here's an example of a Twitter share link I made:
TwitterShareLink5
What's the difference between "URL only" and "HTML link"?
You can put the HTML link directly into the HTML editor of your website. The result will be the words "Share on Twitter" hyperlinked with the share link. You can change that text by deleting "Share on Twitter," which I've highlighted in the image above, and replacing it with the text you want.
But sometimes, you may want social sharing links in the form of icons, not words, to catch the reader's eye. To make images like icons clickable, you only need to worry about that URL only link.

4) Download a social button icon.

If you already have social media icons or images, you can skip this step. If not, check out our library of 135 free icons for marketers. You can download and use them for free -- without any licensing or attribution -- wherever you please on your website. And if you want to change the color of any of these icons, they come with a free guide for how to do that using PowerPoint.

5) Make the icons clickable using your share link.

Your goal is to make your social icon clickable so it sends viewers to the share link. The exact steps here vary depending on your CMS. First, upload the icon image into your CMS' file manager and insert it into your website. Then, go back to the Share Link Generator and copy the content of the "URL only" box.
TwitterShareLink6
Finally, link the icon image to that URL. (In HubSpot, that means highlighting the image, clicking the "Insert/edit link" button, and pasting the share link URL there.) Here's what the final product looks like:

27 February 2012

Chat with Facebook friends from desktop

Hi, In this blog I will give you a short tips to chat with your Facebook friends without Log-In in Facebook. Now you can chat with your Facebook friends without any trouble from a Desktop application. It's works like a Facebook messenger.

How: Gabtastik offers a software by which you can chat with your facebook friends without using the actual Site. You can download the Application From this Link - Click here.


I haven't use this software but it seems to be a good software for those who prefers chatting with Facebook friends. You can Also chat with your Google friends as well.

Hope the tips will be helpful. Thank you very much for visiting the blog :) Cheers!

increase windows startup speed

When we start our computer it delays for a while to make your computer ready for action. You can reduce this delaying time completely by editing a simple thing in the registry setting. It will not harm your computer.

Note: This will boost in starting the windows. This will not increase the overall performance of your computer. The performance speed depends on the processor of your computer and the load it is taking on.

The process:

Step 1: Click Run and then type Regedit.


Step 2: Now you will notice a box will pop up. From there Select HKEY_CURRENT_USER. Then Selectcontrol Panel , then Desktop Folder.


Step 3: Now in the right hand side you will see lots of settings. From there select "Menu Show Delay". Double click on it and changed the default value "400" to "0".







Now you are done. You will notice a slight increase in the loading time when you start your computer. If you increase the value to "1000" then it will take longer time to show the Menu.


This tricks does not make any difference actually. But learning it is not a bad Idea. Is it?


Hope you have enjoyed it. Cheers :)

increase your hard disk space

Are yo facing problem with the memory space of your local hard disk.? Now a days we play lots of games , download movies , install software which eventually takes all the memory of our hard disk. Now i will give you some solution to solve this problem.

1. Decrement your hard disk: Go to my computer, select a local disk and right click

Create Shutdown, log off, or hibernate shortcut key

Sometimes we get too lazy and we need some easier way to do our work. Lets create shortcut key to shutdown our computers. At first right click on your desktop free space then click new and select shortcut. A box will appear and type the following word exactly shutdown -r -t 0 . then click ok. A new shortcut folder will be created and you can shut down your computer immediately . For log off or stand by copy the following :

Restart: shutdown -r -t 0

Logoff: shutdown -l -t 0

Hibernate: rundll32.exe PowrProf.dll, SetSuspendState Hibernate

Watch Videos on megavideo without any time limit

We often get annoyed when we watch an online movie in Megavideo and suddenly after 72 minutes it interrupts. To avoid this problem first copy the video link of megavideo and then   Click here . Then past the link to this website and enjoy the movie without any interruption.

Multiple user login in yahoo Massager without any software or patch

You can login to to yahoo messenger with multiple user ID without any software or patch. You just have to do a simple Task. First click Start menu and then click run, then type regedit and then press enter. A box will appear now from the box navigate HKEY_CURRENT_USER , then from the list select SOFTWARE , then from the software select YAHOO , then from Yahoo select PAGER , then from Pager select TEST. Now right click on the TEST and then click Dword value. In the right side you will notice a new folder appears, Rename it as Plural. Thendouble click it then select decimal and give the value 1 in the value box and click OK. That's it now try to login in yahoo messenger with multiple ID.

Check your antivirus

you can test your anti virus is it working or not. Just follow my instruction:

# open a wordpad or note pad and save this.

X50!P%@AP[4\PZX54(P^)7CC)7}EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*

save it as eicar.com . while doing this your anti-virus should stop you. its not harmful either but if the anti virus is active it will warn you. if it does not then your anti virus is good for nothing .

Make Your Pc 200 % Faster

I can make your pc about 200% faster. To make you PC faster than before please folow the steps

# Go to start then click run and then type regedit

# Select HKEY_CURRENT_USER and then select control panel folder and then select desktop folder. Do it correctly

# You will see registry setting at your right hand side, after that select menu show delay and then right click and select modify.

# you will find edit string option -----> default value data is 400 , you have to change the value Data to 000

# Restart your computer. You will notice that your computer has become much more faster.

Create a Data File or Mp3 CD/DVD

This trick provides information how to create a data or Mp3 CD/DVD. Creating (or sometimes called "burning") a CD/DVD with just regular files and folder (or "data") is simple and can be done with any burning program.

The method to create an MP3 CD/DVD is actually the same as for data CD/DVD since the mp3 files are considered as normal PC files. So you can follow the steps on this page to create an Mp3 CD.


Detailed Steps

The following sample instructions use

Create Ghost Bootable SD Card or USB Flash Drive

It's a good practice to create an image of your hard drive before you start using it. Especially when you had to build that computer from scratch and spent hours installing the operating system and all of your favorite apps...

As Symantec Ghost becomes more user friendly, people start to recognize this idea. The idea also works well when you need to clean your PC from viruses. In case anything goes wrong with the operating system, you just need to restore the image using the Symantec bootable CD.

However, the problem comes when we deal with the new version of those small laptops: The netbooks! which usually don't come with a built-in CD-ROM drive to bootup the PC.
The most simple solution would be buying an external CD-ROM drive, which costs you money. And in some cases, you just want to bootup the Symantec Ghost.... with whatever available!

The good news: Almost every recent laptop/netbook comes with a card reader, and even if you

Create a bootable CD or DVD with or without floppy



With the CD-ROM available on almost every computer nowaday, floppy drives become a history. However, for those who find computers a hobby, might run into a situation when they need to create a bootable CD that works just like the old floppy disk. Unfortunately, to do this, you still need a floppy drive to read your bootup floppy disk. Wait, the good news is, you can just down load a bootable ISO image and burn it to a CD. And even better, we have a copy

Internet Connection Sharing on Windows XP

This trick shows you how to share your internet connections on multiple computers within a workgroup with Windows XP. Windows XP has a built-in feature that called "Internet Connection Sharing" (ICS) that allows home users to share their internet connections on multiple computers.

If you are not familiar with the network configurations, the easiest way to share your internet connection is to purchase a router or hub. Use this trick only if you don't have a router, or don't want to use a router, or if you just want to try out the feature.

A simple way

Turn ON/OFF Num Lock on Startup

Most of standard keyboards come with a small numeric keypad which identified by the numbers from 0 to 9. However, this numeric keypad is also served for some other functions such as "Page Up", "Page Down", "End", "Home", etc... depending on which mode of the "Num Lock" is being used. Many Windows users find this numeric keypad useful to type the numbers faster. But oopps... after hitting a several keys on the numeric keypad, you recognize the outcomes are not what you expected. Then you recognize the "Num Lock" mode is "OFF", so you just need to switch it on, and... start over your typing! The bad news is, by default, Windows turns the Num Lock off; however, the good news is, you can configure Windows to turn this Num Lock ON so that whenever you mean "number", you really get a number.

Command Prompt on Right-Click

Many computer users, specially the programmers, need to launch a command prompt window every once in a while to execute some dos/shell commands. The problem is, when a command prompt window launched, the default path is normally the system path or the user profile's path. The users will then have to do all the "cd" commands to change the directories to the path he/she wants.

This trick shows you how to add an option called "Command Prompt" when you right-click on a folder in Windows. With this

Game Secrets

Solitaire: Instant Win
Press Alt + Shift + 2 to instantly win

Solitaire: Draw only 1 card (instead of 3)

Hold down Ctrl + Alt + Shift then click on unopen cards to draw.

FreeCell: Instant Win

Hold down Ctrl + Shift + F10

Paint Secrets

Create a trail image

Open Paint, then open an image.
Right-click on the image and select "Select All"
Now hold the "Shift" key and move