Tuesday, 21 January 2014

Lock Your Computer With Pattern Lock Just Like Android

Most of you might have been using android devices and might be using pattern lock to protect your device from unauthorized access. In the same way, you can use pattern lock for your computer also. You might be thinking that I'll tell you any way to install android operating system in your computer, but no, I'll tell you about a software which can be used to enable pattern lock feature in your computer.

Eusing Maze Lock:
This app is a free app which enables pattern lock for your computer. You have to download it and install it in your computer. After installation, you will have to set your pattern to unlock your computer. When you turn ON your computer, the unlock screen will appear and after drawing the correct pattern, your computer will be unlocked. But if someone tries to access your computer and enters a wrong pattern 3 times, it starts giving a warning and starts playing a siren. Isn't it cool. So, download it from here and use it for a better security.
Lock Your Computer With Pattern Lock Just Like Android

eusing pattern lock for computer
Share:

Invite All Your Friends Automatically To Like Facebook Page

Invite All Your Friends Automatically To Like Facebook Page
In my previous post, I told you how to add all facebook friends in a group automatically. Today, I'm gonna tell you how to invite all your facebook friends to like a page. In this process also, I'll use a javascript which will invite all your friends to like your facebook page.

Follow The Steps Below:

1. Log In to your facebook account.
2. Open your facebook page.
3. Now click Build Audience > Invite.
4. Now a box will appear having your friends list with an invite button after them.
5. Press ctrl+shift+J to open chrome console editor.
6. Now copy the following code and paste in it and press enter.
var inputs = document.getElementsByClassName('uiButton _1sm');
for(var i=0; i<inputs.length;i++) {
    inputs[i].click();
}
7. That's it. Your all friends will be invited to like your page.
Share:

Monday, 20 January 2014

Accept All Friend Requests Automatically In Facebook

Accept All Friend Requests Automatically In Facebook
Javascripts are used to perform amazing actions in web designing and in this tutorial, I'll use a simple javascript to accept all friend requests automatically in facebook.

Follow the instructions:

1. Login to your facebook account.
2. Now visit https://www.facebook.com/reqs.php to see all the pending friend requests to be accepted.
3. Click See More option to see all the friend requests.
4. Now press ctrl+shift+J to open console panel in chrome and copy and paste the following javascript in it:
javascript:for( i = 1;i<document.getElementsByName("actions[accept]").length;i++){document.getElementsByName("actions[accept]")[i].click();}void(0);
5. That's it. Within a few seconds, all the friend requests will be accepted.
Share:

Tips For Fast Google AdSense Approval

Tips For Fast Google AdSense Approval
Google AdSense is a program by google which pays it's publishers for advertising google ads on their websites. If you have a blog or website with nice content and traffic then you can earn a handsome amount from google AdSense. But it is really very difficult to get your website approved by google. Most of the times, google rejects AdSense applications saying that the website doesn't comply with google policies. So, I'm going to tell you some things to keep in mind before applying for Google AdSense.

1. Add A Privacy Policy Page In Your Blog
Privacy Policy is a very important thing for any website. It tells your visitors how your website uses their online data, what they should do and what they should not. It makes your website working transparent and helps visitors to know clearly about your website policies. It may not be a major issue for Adsense Approval but you should give it a try.

2. Add An About Us Page:
Adding an About Us page also makes it clear for visitors that who are you and what are you doing on your website. It gives details about your website, tells it's background and hence builds trust between you and your visitors.

3. Add A Contact Page:
AdSense may look for your contact details for application approval because it proves that there is a real person behind the website. Contact page helps the visitors to contact you and do inquiries and send feedback.

4. Clearly Visible Name and E-Mail:
Make sure that your full name and email address (or contact details) are clearly visible on contact page or any other suitable place. This makes your presence valid.

5. Your Age Must Be At Least 18 Years:
While entering your date of birth in the adsense application, make sure that your age becomes 18 years or more, otherwise your request will be rejected.

6. Minimum Number of Posts:
There is no limit of posts for applying for AdSense, but for better results, you must apply for AdSense after 70+ posts. The length of each post must be of 500+ words.

7. Design And Navigation:
The design of your site must be professional or easy to navigate. Don't use lots of javascript effects or lots of images. Make the design simple and clear and use navigation bar to make the navigation easy. Always try to include a search bar in your site so that the visitors can search what they are looking for.

8. Content Is King:
The most important thing is the content of the site. Never copy any other site's content and always try to write unique content for your site. If your content is unique and valuable for the visitors, the traffic of your site will increase day by day and this is what google looks for. Never use abusive or pornographic content and don't publish cracked softwares and copyrighted material. So make your content easy to understand and useful.

9. Provide Value To Your Readers:
Never say that you are blogging for money or just for time pass. Try to build a relationship with your readers and provide value to them. Be interactive with them and be humble and honest for your readers. Say that you are trying your best to help your readers and will keep it on.

10. Use A Top Level Domain:
Instead of using free domain like xyz.blogspot.com, use a top level domain like .com, .net and .org. These domains are given preference by search engines and will improve search results which will drive more traffic to your site.

11. Never Use Other Ad Networks With AdSense:
Before applying for AdSense, remove ads from other Ad Networks like Clicksor, Chitika etc. Google doesn't allows any publisher to use any other network's banner ads with AdSense. Although you can't use banner ads, but you can use In-Text ads, such as Infolinks with google AdSense.

12. Don't Use Paid Traffic or Paid To Click Sites:
Google hates paid clicks because these clicks are not valuable for google Advertisers and they don't get any response. So google cancels those accounts which use paid clicks.
Share:

Add Blogger Contact Form In Any Page

Add Blogger Contact Form In Any Page
Contact Form is always very important for any blog or a website. Most of the websites use php contact forms or google docs forms. Recently, blogger announced its official contact form and it works fine but it can be used as a widget in the blog. So many bloggers are still thinking that they can't add blogger's official contact form in any page or post. So I'm creating this article to show you how to customize and add blogger's official contact form in any page or post.

Follow the instructions:

1. First of all, add a blogger's official contact form in your blog. See How To Add Blogger Contact Form.
2. Now, let's hide it. To hide it, go to blogger template editor and just before the </head> tag, add the following code:
<style>#ContactForm1{ display:none!important;}</style>
3. Now create a new page by going to Dashboard > Pages > Create A New Blank Page.
4. Now in html editing mode, copy and paste the following code:
<style>.contact-form-name, .contact-form-email, .contact-form-email-message, .contact-form-subject, .contact-form-country {max-width: 300px;width: 100%;font-weight:bold;
}
.contact-form-name {display: inline-block;background: #FFF;background-color: #FFF;color: #A1A1A1;font-family: Arial,sans-serif;font-size: 13px;font-weight:bold;height: 30px;margin: 0;margin-top: 10px;margin-left: 10px;padding: 15px 15px 15px 5px;vertical-align: top;border: 1px solid #ddd;box-sizing: border-box; 
}.contact-form-email {display: inline-block;background: #FFF;background-color: #FFF;color: #A1A1A1;font-family: Arial,sans-serif;font-size: 13px;font-weight:bold;height: 30px;margin: 0;margin-top: 20px;margin-left: 10px;padding: 15px 15px 15px 5px;vertical-align: top;border: 1px solid #ddd;box-sizing: border-box;

.contact-form-subject {display: inline-block;background: #FFF;background-color: #FFF;color: #A1A1A1;font-family: Arial,sans-serif;font-size: 13px;font-weight:bold;height: 30px;margin: 0;margin-top: 20px;margin-left: 10px;padding: 15px 15px 15px 5px;vertical-align: top;border: 1px solid #ddd;box-sizing: border-box;

.contact-form-country {display: inline-block;background: #FFF;background-color: #FFF;color: #A1A1A1;font-family: Arial,sans-serif;font-size: 13px;font-weight:bold;height: 30px;margin: 0;margin-top: 20px;margin-left: 10px;padding: 15px 15px 15px 5px;vertical-align: top;border: 1px solid #ddd;box-sizing: border-box;}
.contact-form-email:hover, .contact-form-name:hover{border: 1px solid #bebebe;box-shadow: 0 1px 2px rgba(5, 95, 255, .1);padding: 15px 15px 15px 5px;
}
 .contact-form-email-message:hover {border: 1px solid #bebebe;box-shadow: 0 1px 2px rgba(5, 95, 255, .1);padding: 10px;
.contact-form-email-message {background: #FFF;
background-color: #FFF;border: 1px solid #ddd;box-sizing: border-box;color: #A1A1A1;display: inline-block;font-family: arial;font-size: 12px;margin: 0;margin-top: 20px;margin-left: 10px;margin-bottom: 10px;padding: 10px;vertical-align: top;max-width: 500px!important;height: 120px;border-radius:4px;

.contact-form-button {cursor:pointer;height: 30px;line-height: 30px;font-weight:bold;border:none;

.contact-form-button {display: inline-block;zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */*display: inline;vertical-align: baseline;margin: 0 10px;outline: none;cursor: pointer;text-align: center;text-decoration: none;font: 14px/100% Arial, Helvetica, sans-serif;padding: .5em 2em .55em;text-shadow: 0 1px 1px rgba(1,1,1,.3);-webkit-border-radius: .2em; -moz-border-radius: .2em;border-radius: .2em;-webkit-box-shadow: 0 1px 2px rgba(1,1,1,.3);-moz-box-shadow: 0 1px 2px rgba(1,1,1,.3);box-shadow: 0 1px 2px rgba(1,1,1,.3);
}
.contact-form-button:hover {text-decoration: none!important;border: none!important;
}
.contact-form-button:active {position: relative;top: 1px;

</style> 
<div class="form"><form name="contact-form"><input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' value="Name" size='30' type='text' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Name&quot;;}' onfocus='if (this.value == &quot;Name&quot;) {this.value = &quot;&quot;;}' /><p></p> <input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' value="Email ID"  size='30' type='text' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Email ID&quot;;}' onfocus='if (this.value == &quot;Email ID&quot;) {this.value = &quot;&quot;;}'/><p></p><input class='contact-form-subject' id='ContactForm1_contact-form-email' name='subject' value="Subject"  size='30' type='text' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Subject&quot;;}' onfocus='if (this.value == &quot;Subject&quot;) {this.value = &quot;&quot;;}'/><p></p><input class='contact-form-country' id='ContactForm1_contact-form-email' name='Country' value="Country"  size='30' type='text' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Country&quot;;}' onfocus='if (this.value == &quot;Country&quot;) {this.value = &quot;&quot;;}'/><p></p><textarea class="contact-form-email-message" id="ContactForm1_contact-form-email-message" name="email-message" onblur="if (this.value == &quot;&quot;) {this.value = &quot;Leave Your Message..&quot;;}" onfocus="if (this.value == &quot;Leave Your Message..&quot;) {this.value = &quot;&quot;;}" value="Leave Your Message.."></textarea><p></p><input class='contact-form-button contact-form-button-submit' type='reset' value='Clear'/>  <input class="contact-form-button contact-form-button-submit" id="ContactForm1_contact-form-submit" type="button" value="Send" /><br /><div style="max-width: 500px; text-align: center; width: 100%;"><div class="contact-form-error-message" id="ContactForm1_contact-form-error-message"></div><div class="contact-form-success-message" id="ContactForm1_contact-form-success-message"></div></div></form></div>
5. Now publish the page and open the page. You will see your brand new contact form.
Share:

Sunday, 19 January 2014

How To Listen Text On A Webpage

How To Listen Text On A Webpage
I told you how to convert text to speech in any application, and now I'll tell you how can you listen text from webpages. This trick will be useful for those people who are facing eye sight problem. This trick will also be useful when you are reading a long paragraph online and your eyes are tired, then you can listen the whole paragraph easily.

Follow the steps below:

1. Click Here to go to chrome web store and get SpeakIt extension.
2. Now add it to your chrome browser.
add speakit to chrome
3. After adding the extension, you will see a speaker icon on the top right side, beside the address bar.
speaker icon added
4. Now open any webpage and select the text you want to listen. Then click on the Speaker icon of the extension. It will read the text for you.
reading webpages

Note: To change the settings of SpeakIt, such as Voice, Speed, Language etc then right click on the Speaker icon and click SETTINGS. A new page will open with the settings options of SpeakIt.
Share:

Some Useful Windows Registry Tricks

Some Useful Windows Registry Tricks
Windows registry is a powerful windows component using which we can change lots of windows settings and can make our computer better and fast also. So I'm sharing some windows registry tricks which might be useful for you all.

1. Improve Security

If other people can access your computer, then they can easily steal your data through pen drives. So, to stop them, you can enable write protection for USB drives. It can be done by opening registry editor (open run, type regedit and press enter) and going to HKLM\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies. Now create a new DWORD value and name it as WriteProtect and double click on it and set it's value to 1. Now, you will be able to read USB drives but will not be able to write any data in them.

2. Tame User Account Control

You can disable annoying alerts in Windows Vista by changing the UAC behavior through registry. To do this, set HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\ConsentPromptBehaviorAdmin to 0. To restore the settings, set it to 2.

3. Change the Owner Name of the Computer

While installing windows on a computer, it asks for the owner and organisation name. You can check it by opening Run and typing winver and pressing enter. If you want to change the owner name and organisation name, navigate to HKLM\SOFTWARE\Microsoft\WindowsNT\CurrentVersion and there, you will see RegisteredOwner and RegisteredOrganisation values. Double click on them and change the names.

4. Sort Files Properly

To restore regular ASCII file ordering, navigate to HKLM\Software\Microsoft\Windows\Currentversion\Policies\Explorer in registry editor and create a new DWORD value and name it NoStrCmpLogical and set it's value to 1. Delete the key to restore the standard Explorer approach.

5. Troubleshoot Windows Startup

If windows is taking long time in startup and shutdown, then it may be a problem. Navigate to HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System in registry editor and create a new DWORD value and name it as verbosestatus and set it's value to 1. Now Restart your PC and Windows will tell you what it's getting up to.

6. Manage Folder Types

Windows automatically changes the folder type according to the contents of the folder, it means that if you contain photos in any folder, the folder type is automatically changed in the type pictures. But if we have any folder which contains mixed contents, such as music, photos, documents etc, then folder type is changed into music folder. To fix this problem, navigate to HCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell in registry editor and delete the Bags subkey. Now create a new key Bags in the same location. Now create two more keys named AllFolders and Shell. Now navigate to HCU\Software\Classes\LocalSettings\Software\Microsoft\Windows\Shell\ Bags\AllFolders\Shell and right click in the right hand panel and create new string value. Name this new string value as FolderType and double click over it. Now set it's value to NotSpecified.

7. Encrypt Files Easily To Secure Them

Navigate to HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced and create a new DWORD and name it as EncryptionContextMenu and set it's value to 1. Now right click on any file and click Encrypt to secure the file.
Share:

Saturday, 18 January 2014

How To Create A Matrix Effect In Your Computer Using Notepad

In most of the movies, you might have seen lots of numbers moving up-down on the screens of the computers of the hackers. This effect is called matrix. I am going to tell you a simple way to create matrix for you just by using notepad.

Follow the instructions:

1. Open notepad and copy and paste the following code:
@echo off
title matrix
color 0a
:top
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto top
2. Now save the file as matrix.bat
3. Now run the file. You will see the matrix.
4. To make it full screen, press alt+enter keys.

Note: You can change the color of the text of the matrix by using the following color codes:
"color 0a" Green
"color 0b" blue
"color 0c' Red
"color 0d" Purple
"color 0e" Yellow
and so on.....
Share:

How To Fix DOT NET 3.5 Error In Windows 8

Windows 8 is the most popular operating system these days and it got a lot of positive feedback. But I noticed that while installing some games and other applications like Visual Studio 2008, it asked to install windows feature - .Net Framework 3.5 (includes .Net 2.0 and 3.0)
.Net Framework 3.5 (includes .Net 2.0 and 3.0) error dialog box
When I tried to install it online, it failed. If you are also facing this problem, then I have the solution for this problem. Using this trick, you can easily fix this problem and install your applications easily.

Follow the instructions:

1. Open Control Panel > Programs and Features and then click Turn Windows Features On or Off.
Now Windows Features dialog box will appear. Select .Net Framework 3.5 (includes .Net 2.0 and 3.0) and click OK button.
check to enable .Net Framework 3.5 (includes .Net 2.0 and 3.0) error dialog box
2. Now your computer will start downloading the required files from the internet and after that, the problem should be fixed.
3. If you are still facing the same problem, then open command prompt and type the following code (Windows 8 installation disk must be inserted in the optical drive of your computer):
dism /online /Enable-Feature /FeatureName:NetFX3 /All /Source:X:\Sources\SxS /LimitAccess
4. In the above command, X: is the drive letter where Windows 8 installation disk is inserted. You must change the drive letter according to your computer.
5. Now press enter and a process will start which will take a few minutes to complete.
command prompt process started
command prompt process completed
6. After completion of the command process, you can see that .Net Framework 3.5 (includes .Net 2.0 and 3.0) feature is enabled.
 .Net Framework 3.5 (includes .Net 2.0 and 3.0) feature is enabled
7. Now you can install your application without any error.
For live demo, just see this video tutorial:
Share:

Wednesday, 5 June 2013

Add All Your Friends In Facebook Group

Add All Your Friends In Facebook Group
Hi friends, in my earlier posts, I told you how to add all your friends in facebook group. But that trick is not working, so I am telling you another working trick which is working with google chrome browser.

Follow the steps below:

  • Click this link (new version updated) to visit the facebook invite all friends extension.
  • Add and install the extension in your browser.
  • After installing the extension, you will see an icon in the top right side of your chrome browser.
  • Now login to the facebook and go to the group page in which you want to add your friends. Now click on the icon which is added in the top right side of the browser.
Add All Your Friends In Facebook Group
Add All Your Friends In Facebook Group
  • That's all. You will see that your friends are being added in the group.
Share:

Custom Search Box

Blog Archive

Contact Form

Name

Email *

Message *