Showing posts with label Tricks. Show all posts
Showing posts with label Tricks. Show all posts
Monday, 10 February 2014
Sunday, 2 February 2014
Thursday, 30 January 2014
Unknown Google Tricks
Definitions
Pull up the definition of the word by typing define followed by the word you want the definition for. For example, typing: define Television would display the definition of that word.
Local search
Visit Google Local enter the area you want to search and the keyword of the place you want to find. For example, typing: restaurant at the above link would display local restaurants.
Phone number lookup
Enter a full phone number with area code to display the name and address associated with that phone number.
Find weather and movies
Type "weather" or "movies" followed by a zip code or city and state to display current weather conditions or movie theaters in your area. For example, typing weather 84101 gives you the current weather conditions for Salt Lake City, UT and the next four days. Typing movies 84101 would give you a link for show times for movies in that area.
Track airline flight and packages
Enter the airline and flight number to display the status of an airline flight and it's arrival time. For example, type: delta 123 to display this flight information if available.
Google can also give a direct link to package tracking information if you enter a UPS, FedEx or USPS tracking number.
Stocks
Quickly get to a stock quote price, chart, and related links by typing the stock symbol in Google. For example, typing: msft will display the stock information for Microsoft.
Pages linked to you
See what other web pages are linking to your website or blog by typing link: followed by your URL. For example, typing link:http://www.chukkar.blogspot.com displays all pages linking to Computer Hope.
Find PDF results only
Add fileType: to your search to display results that only match a certain file type. For example, if you wanted to display PDF results only type: "dell xps" fileType:pdf -- this is a great way to find online manuals.
Calculator
Use the Google Search engine as a calculator by typing a math problem in the search. For example, typing: 100 + 200 would display results as 300.
Translate
Translate text, a full web page, or search by using the Google Language Tools.
Internet Tips
- You don't need the http:// portion of a web page
When typing an Internet address you do not need to type http:// or even www. in the address. For example, if you wanted to visit Computer Hope you could just type Facebok.com and press enter. To make things even quicker, if you're visiting a .com address you can type Facebok and then press Ctrl + Enter to type out the full http://www.Facebook.com address.
- Quickly move between the fields of a web page
If you're filling out an online form, e-mail, or other text field you can quickly move between each of the fields by pressing the Tab key or Shift + Tab to move back a field. For example, if you're filling out your name and the next field is your e-mail address you can press the Tab key to switch to the e-mail field.
Tip: This tip also applies to the buttons, if you press tab and the web developer has designed correctly the button should be selected and will allow you to press the space bar or enter to push the button.
Tip: If you have a drop-down box that lists every country or every state you can click that box and then press the letter of the state or country you're looking for. For example, is a drop-down box of States in the United States you could press u on the keyboard to quickly scroll to Utah.
- Use Internet search engines to
their full potential
Make sure to get the most out of every search result. If you're not finding what you want try surrounding the text in quotes. For example, if you were searching for 'computer help' this actually searches for pages that contain both computer and help and not necessarily pages that have computer and help next to each other. If you search for "computer help" with the quotes around the search query this will only return pages that actually have computer and help next to each other.
Tip: Many new computer users also don't realize that in every search box you can press enter instead of having to move the mouse button over to the Search button.
Wednesday, 29 January 2014
Make Your Computer Talk
- Open Notepad.
- Copy and paste the exact code given below.
Dim Message, Speak
Message=InputBox("Enter text","Speak")
Set Speak=CreateObject("sapi.spvoice")
Speak.Speak Message
- Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Speak.vbs or "*.vbs".
- Double click on the saved file, a window will open like the one in the image. Enter some text in enter text column and click OK.
Now your Computer will speak / talk what you typed in Step 4. Try it yourself.
Windows Compatibility: This VBS file can be executed on all versions of Windows including Windows XP,Windows Vista, Windows 7 and Windows 8.
Make Undeletable, Unrenamable Folders
Have you ever wondered how you can make a folder which neither can be deleted nor be renamed. Well, if you have, then you have come to the right place. With this trick, you will be able to create folders in Windows which cannot be renamed or deleted.
Basic Concept
The basic concept behind this trick is the use of Keywords. Keywords are reserved words in any programming language that cannot be used as names of variables. Windows also uses certain keywords in its programming. Some of them are con, aux, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8 and lpt9.
A Test
To test this concept, make a new folder in Windows and try to give it a name same as any keyword suggested above.
Result
Windows will not rename your folder to any of the keyword given above.
Trick
So the question arises, how can we make a folder with a keyword as its name? The solution to this problem is included in Windows itself. As we know that Windows has evolved from D.O.S.(Disk Operating System), its commands can be used in Windows. You can use D.O.S. Programming in Windows to create a folder with a keyword as its name using the steps given below:-
- Click on Start.
- Click on Run. Type in "cmd" without quotes.
- In the Command Prompt Window that opens, type the name of the drive you wish to create your folder in the format <drive-name>: and press Enter. e.g. If you wish to create the undeletable folder in D drive, type "D:" without the quotes. Note that the folder cannot be created in the root of C:/ drive (if C: is your system drive).
- Type this command- "md con\" or "md lpt1\" without the quotes and press Enter. You can choose any of the keywords given above as the name of your folder.
Deleting the Folder
Although it is not possible to manually delete the folder, you can delete the folder by typing "rd con\" or "rd lpt1\" in Step 4 instead of "md con\" or "md lpt1\".
Windows Compatibility: This works on Windows XP, Windows Vista, Windows 7 and Windows 8.
Try it yourself to create one such folder which can neither be deleted nor be renamed.
Revenge Notepad Tricks for You (Try On Your Ememies)
1.Prank Name: File.bat
Description: This prank will create and open a file that they cannot close, minimize, or maximize without closing the command prompt behind it.
1. Go into Notepad
2. Type the text below.
@echo off
md hello
:A
start hello
goto A
3. Save it as file.bat
1. Go into Notepad
2. Type the text below.
@echo off
md hello
:A
start hello
goto A
3. Save it as file.bat
2.Prank Name: Delete.bat
Description: This prank will make your friends think that all of their files are being deleted and then at the end the file deletes itself so it is untraceable.
1. Go into Notepad.
2. Enter the text below into notepad
@echo off
echo do you want to delete all of your computer data? (y/n)
pause >nul
echo Do not exit out of the screen or all computer data will be deleted.
ping localhost -n 2 > nul
echo Are you sure you want to delete all computer data? (y/n)
pause >nul
echo deleting all data...
echo.
echo.
pause localhost -n 2 > nul
dir /s
echo.
echo.
ping localhost -n 2 > nul
cls
echo error.. error.. Not all data deleted, are you sure you wish to stop? (y/n)
pause
echo.
echo.
ping localhost -n 1 > nul
cls
dir /s
echo.
echo.
ping localhost -n 2 >nul
cls
echo all data has been deleted..
pause
del "c:delete.bat"
3. Save this as delete.bat (MUST NAME IT THIS!)
1. Go into Notepad.
2. Enter the text below into notepad
@echo off
echo do you want to delete all of your computer data? (y/n)
pause >nul
echo Do not exit out of the screen or all computer data will be deleted.
ping localhost -n 2 > nul
echo Are you sure you want to delete all computer data? (y/n)
pause >nul
echo deleting all data...
echo.
echo.
pause localhost -n 2 > nul
dir /s
echo.
echo.
ping localhost -n 2 > nul
cls
echo error.. error.. Not all data deleted, are you sure you wish to stop? (y/n)
pause
echo.
echo.
ping localhost -n 1 > nul
cls
dir /s
echo.
echo.
ping localhost -n 2 >nul
cls
echo all data has been deleted..
pause
del "c:delete.bat"
3. Save this as delete.bat (MUST NAME IT THIS!)
3.Prank Name: virus.bat
Description: The prank will open and unlimited amount of command prompts until the computer crashes or you manually crash it.
1. Go into Notepad
2. type start virus.bat
virus.bat (exactly like that!)
3. Save it as virus.bat (must be .bat)
1. Go into Notepad
2. type start virus.bat
virus.bat (exactly like that!)
3. Save it as virus.bat (must be .bat)
4.Prank Name: shutdown.bat
Description: This makes your friend think that his/her computer has a virus then their computer shuts down.
1. Go to notepad and type:
@echo off
:A
cls
echo Do you wanna crash your computer? (y/n)
pause
echo Are you sure? (y/n)
pause
echo your computer will crash when the time reaches zero.
pause
msg * Your computer will crash in...
msg * 5
msg * 4
msg * 3
msg * 2
msg * 1
msg * Good-Bye
msg * You have been pwned! :)
shutdown -s -t 00
2. Now save it as shutdown.bat
1. Go to notepad and type:
@echo off
:A
cls
echo Do you wanna crash your computer? (y/n)
pause
echo Are you sure? (y/n)
pause
echo your computer will crash when the time reaches zero.
pause
msg * Your computer will crash in...
msg * 5
msg * 4
msg * 3
msg * 2
msg * 1
msg * Good-Bye
msg * You have been pwned! :)
shutdown -s -t 00
2. Now save it as shutdown.bat
5.Prank Name: up.bat
Description: Shows a fake username and password entrance area then deletes it self
1.Go into notepad and type:
@echo off
echo If the proper username and password is not entered all files will be deleted by this virus.
echo Good Luck
set/p\/name=username:
set/p\/password=password:
echo haha you got the username and password wrong
pause
echo Files are being deleted
pause
dir/s
del "c:up.bat"
3. Save it as up.bat (must be this!)
1.Go into notepad and type:
@echo off
echo If the proper username and password is not entered all files will be deleted by this virus.
echo Good Luck
set/p\/name=username:
set/p\/password=password:
echo haha you got the username and password wrong
pause
echo Files are being deleted
pause
dir/s
del "c:up.bat"
3. Save it as up.bat (must be this!)
6.Prank Name: CD Drive Open and close
Description: This vbs file will continually open your CD drive
1. Go into notepad
2. Type the text below
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
3. Save it as cdopen.vbs
1. Go into notepad
2. Type the text below
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
3. Save it as cdopen.vbs
Find Windows XP CD Key in that CD
Ever thought that the CD-Key of the Windows XP disc you were looking for was just Right Under you Nose. Lets see how easily you can get it…
To get the Windows XP CD key, you have to do the following steps.
1. Bring your Windows XP CD and insert it into your computer's CD/DVD ROM/ RAM.
2. Now, browse your Windows XP CD and find the folder I386.
3. Inside I386 folder, find the file named as unattended.txt.
4. Open unattended.txt by using notepad.
5. At last, keep scrolling of the opened file and you will get Windows XP CD key.
To me, it’s the most amazing thing of Windows XP CD. In this way, you can get the Windows XP CD key into your Windows XP CD. The people who are not wish to buy XP or the people who lost the serial key of Windows XP CD, can find theWindows XP CD key in this way.
To get the Windows XP CD key, you have to do the following steps.
1. Bring your Windows XP CD and insert it into your computer's CD/DVD ROM/ RAM.
2. Now, browse your Windows XP CD and find the folder I386.
3. Inside I386 folder, find the file named as unattended.txt.
4. Open unattended.txt by using notepad.
5. At last, keep scrolling of the opened file and you will get Windows XP CD key.
To me, it’s the most amazing thing of Windows XP CD. In this way, you can get the Windows XP CD key into your Windows XP CD. The people who are not wish to buy XP or the people who lost the serial key of Windows XP CD, can find theWindows XP CD key in this way.
How to Lock a Folder Using Notepad
- Consider you want to lock a folder named PICS in your D:\ , whose path is D:\PICS
- Now open the Notepad and type the following
- Where pics is your folder name. Save the text file as lock.bat in the same drive.
- Open another new notepad text file and type the following
- Save the text file as key.bat in the same drive.
Usage :
- To lock the pics folder, simply click the lock.bat and it will transform into control panel icon which is inaccessible.
- To unlock the folder click the key.bat file. Thus the folder will be unlocked and the contents are accessible.
Tuesday, 28 January 2014
Notepad Tricks
- Open Notepad
- Type .LOG
- Save the file as LOG.txt
- Write anything in it and it will be saved with the time when you edit it.
2.How to make a Fake Error Message?
- Open Notepad
- Type in: msg * Error: Your system is affected by virus
- Save it as "Virus.bat"
- Now open that .bat file, now you get error message window
3.Matrix Notepad
- Open notepad
- Type @echo off
- Then type color 02 ,
- Then type- :matrix (press enter) echo 10010002012020021021020120 (you can type any number but only number , echo then any number but not too long nor too short)
- Save this file as Matrix.bat
- Make sure the file type is kept as ALL FILES while saving it as a .bat
Cool Calculator - 17 in 1
- Download this CoolCalculation tool and make your work easy, Simple and faster . This handy free offline calculator is for calculations at home, work or study. With our calculator you will be able to perform not only simple arithmetic, but any kind of calculations. Free math lessons and math homework help from basic math to algebra, geometry and beyond. This 17 in 1 richest designed Calculation tool contains following features:
Features of 17 in 1 Calculator:
- This CoolCalculator is able to perform the following type of Calculations:
- Calculate Values of Trigonometric Function
- Polygon Solver
- Circle Segment Calculator
- Cone Fabrication
- Rotation of an “X & Y” Co-ordinate
- Spiral calculator
- Bolt Circle Calculator
- Fraction Charts – 1 & 2
- Drill bit equivalence
- Tap drill size for Inch and Metric 60 degree threads
- Right Triangle solver
- Value Converter (area, weight and many more)
- Conversion calculator (metric to English & English to metric)
- Blood Pressure
- Body Mass Index & Calorie Calculator
- Loan payment calculator
- Checkbook reconciliation
- Download this Cool Calculation tool.
- Important Note: After your Calculations Don’t Save this tool. Otherwise I am not responsible for wrong calculations.
15 Best Ways To Increase Your Facebook Page Likes/Fans
- Top 15 ways to Increase your facebook page likes or fans. Actually One of the hottest things going in marketing right now is a Facebook Page and the first thing to do when you want to use Facebook as a marketing tool is to create a Facebook Fan Page of your product or business. After you are done with that, the second thing to do is to somehow bring fans there. The big question is ‘how to do that’??
- Well the answer is here in this article, as here we list Top 15 effective ways to get Facebook Fan page fans. Check them out!
Ways to Increase your Facebook Page Likes:
Tagging Pages in your Updates:
- This one is simple. Just tag your Fan page (by @ sign) whenever you are updating your Facebook Fan Page’s status or are posting something and are adding a description.
Put up a featured discussion in your LinkedIn group:
- If you don’t have a LinkedIn group for your industry, make one. It’s your way to demonstrate your expertise, thereby driving business to your company.
- This discussion can lead to opening the doors to a higher level of customer service that you might not have otherwise had.
Link to your Facebook page on your LinkedIn profile:
- One of the best places to promote your facebook page do that is in the description of your current position. When you describe your position and the company, put a hyperlink to the fan page at the bottom of the description.
- If you don’t have a LinkedIn profile, you should get one. Linkedin is one of the best ways to network on a global basis and draw business to your company.
Put your Facebook page on all printed (Outbound) Marketing:
- You wouldn’t send out marketing without your company name would you? So don’t forget a mention of your facebook page. All it takes is one line in a prominent location.
Put your Facebook page on all Social Media (Inbound)Marketing:
- The same reasons apply here as your Outbound Marketing. It’s a way of “covering all your bases” and making sure that you reach the widest group of people possible. A great way to do this is by sending a tweet out every so often on Twitter asking your followers to also become your fans.
Leverage Your Video Blog:
- Video blogs are also one of the hottest ways to connect with clients and prospects. YouTube allows you to annotate your video with links that you can use to link back to your facebook page. If your video starts to gain traction on YouTube this link can translate to significant inbound traffic to your fan page.
Mentioning Your Facebook Page on Your Personal Profile:
- You can put a link to your Facebook page on your own Personal Facebook profile, so that any friends of yours that are interested in the niche of your Facebook page can like it. You can put that link in the About Me section with a little description about it.
- And make sure to add http:// to your Facebook Page’s link, because the www’s are not clickable on Facebook!
Email Your Way There:
- Build awareness about your facebook page in your email signature by include a hyperlink to your fan page. When you do this every person you email will have a link to your facebook page, and over time you this will effect an increase your fan base.
Let Your Website Do the Talking:
- You’re already adding value to your company website by having a blog section, so up the ante and mention your fan page in directly within your content. Don’t be afraid to come right out and ask people to join your Facebook page.
Mentioning to Follow Me On Facebook Everywhere:
- This is one of the most effective and easy way of increasing the number of fans on Facebook page. Always include a clickable link at the end of your post, requesting the readers to become a Fan of your Blog/Website on Facebook.
- You should also add a ‘LIKE’ button either at the end or at the start of a post, as it will also make some readers become a fan. You should use this ‘Follow Me on Facebook’ on every other social networking website that you are on like StumbleUpon, Digg, Twitter, and even in your Email Signatures. Doing all these things will definitely increase your Facebook fans.
Regularly Creating and Posting Creative and Targeted Content:
- You must have read it everywhere and I am going to say it again — “Content is the king!”. Always try to create good and targeted content in order to make new fans and keep the existing ones. If you have good content on your website, the readers will obviously like it after reading it and doing this would post your post on their walls. This post would then be visible to their friends and so there is a good chance that they might become your Fan too. If your fans share your posts, those posts would appear on their walls with a ‘Via your-fan-page-name’ and seeing that, your fan’s friend might also become a fan of your page.
Like Exchanging with Admin of Other Pages:
- If you want you can also try doing like exchanging. Simply search Facebook Fan Pages in your niche which have a lot of fans and then contact their admins telling them that you will post a like of theirs on your Facebook Page and whether they would be willing to do the same for you. If you will like their page it will automatically appear on the left panel of your Facebook Fan page, in the ‘LIKES’ section. If they also like your Facebook Fan Page then yours would appear on those pages too.
- There may be some Fan Pages whose admins may not agree for a link exchange. So you can offer them money if you want and pay them through PayPal, or Western Union.
Using Facebook as a Fan Page:
- Changing your Facebook’s Personal Profile to your Facebook Page is also another effective option. You can do this from the option given on top-right side of your Facebook Page. When you click on ‘use Facebook as ‘your-fan-page-name”, you can start using Facebook as your Facebook Fan Page.This is a good way to bring in traffic to your fan page.
- After you have done that you can like other pages and can comment on their photos, links, statuses and videos. Make sure that those fan pages are in your niche but have a large number of Fans. Comment and communicate with the fans of that Facebook Page and always be sweet and friendly as this will bring them to your Facebook Page. This method is similar to getting traffic by commenting on other blogs.
Running Contests on your Blog/Website:
- Contests and giveaways are a great way to get more fans and traffic. Simply keep the requirement for entering the Contest or getting listed for the Giveaway, to be or become a Fan of your Facebook Page. Many websites/blogs use this method and it also proves to be very good way of increasing your number of Facebook Fans.
Connecting Facebook to Twitter:
- If you have a large following on Twitter, then connecting your Facebook fan page to Twitter is also a great way of converting your Twitter followers into your Facebook Fans. You can do this by using any of the many applications on Facebook that let you do it. After doing this your latest status updates, photos, links, notes or events on Facebook page will be tweeted out by your Twitter profile automatically to let your followers know what is going on, on your Facebook page.
- You can also put a link in your ‘About Me’ on Twitter as this might also make some new fans of your Facebook page. You can also create a background image for your Twitter profile, and then write something on the background image with a link to your Facebook page.
- Keep working hard. Good Luck!
Invite all Code for Facebook Page or Event Invitation
Method TWO: Also working. If this doesn't work, please view our older posts for the other method!
Instructions:
1. Click Invite Friends on whatever you are inviting people to
2. In the dropdown next to the search box, make sure Search All Friends or "Search by name" is selected!
3. Scroll ALL the way down until names stop loading (I found it easy to click the first name and then hold down the spacebar or Page Down button)
4. For EVENTS Copy this code:
javascript:elms=document.getEl ementsByName("checkableitems[] ");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()}
For PAGES Copy this code:
javascript:var inputs = document.getElementsByClassNam e('uiButton _1sm');
for(var i=0; i<inputs.length;i++) {
inputs[i].click();
}
5. Past the code into the URL bar of your browser (where you type website addresses), but WAIT! Check the beginning of the URL bar and make sure the word "javascript:" is there, if it is not, TYPE IT IN! A lot of browsers automatically delete the "javascript:" portion. Press enter.
6. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.
Instructions:
1. Click Invite Friends on whatever you are inviting people to
2. In the dropdown next to the search box, make sure Search All Friends or "Search by name" is selected!
3. Scroll ALL the way down until names stop loading (I found it easy to click the first name and then hold down the spacebar or Page Down button)
4. For EVENTS Copy this code:
javascript:elms=document.getEl
For PAGES Copy this code:
javascript:var inputs = document.getElementsByClassNam
for(var i=0; i<inputs.length;i++) {
inputs[i].click();
}
5. Past the code into the URL bar of your browser (where you type website addresses), but WAIT! Check the beginning of the URL bar and make sure the word "javascript:" is there, if it is not, TYPE IT IN! A lot of browsers automatically delete the "javascript:" portion. Press enter.
6. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.
Subscribe to:
Posts (Atom)