At first when I saw Twitter, I had no idea what it was for or what you did there. When the penny finally dropped I was shocked at how fast it can make a difference. Twitter can really help you promote a website.
I started by tweeting about my latest posts, but then I realised if no one was following me then my tweets were falling on deaf ears. This is when I decided to follow as many people as I could that fell into the same niche as me and just hope that some of them would follow me back. Well they did. Probably 15% of people follow you back.
Because I had chosen people that were interested in the same thing as me (computers), I started to get direct messages from them wanting to network with me. I am very excited about Twitter and always welcome new followers...
http://twitter.com/Tips4pc
Yes I am not joking at all. Everyone thinks the new IPhone's new add on APP is great because you can let it hear the music and it will tell you the name of the song. Well you do not even need an IPhone to do this.
Simply go to this website Midomi.com and hum or sing a few lines of the song and it can tell you the name of the song. You obviously need a microphone attached to your computer for this but I would go out and get one now...This is just too much fun to miss out on. But if you are not that hot at singing, then please just hum..
If you really do not have a microphone and you want to know the name of a song you can also go to this website Bored.com and it will try to find the name of the song while you tap the beat to it on your space bar.
It is just amazing how far search engines have come. Who would have thought it could find the name of a song by singing into a microphone.
If you want the lyrics to a song so you can sing along you can visit http://www.lyricsmania.com/
http://www.mob3.co.uk/chat
Here I show you some useful tips that work on Windows XP ranging from making a picture the main folder icon to closing multiple boxes. Not sure why my screen recorder went strange at the end.
Xcopy is a dos command that can copy files and directory trees. If used in a batch file the xcopy command will copy a sourse file of your choice and put it in the destination of your choice. The xcopy command has a number of switches that you can use manipulate what the xcopy command does. A switch is a code, or parameter, that modifies a command
How to find out what switches you can use with xcopy?
Press on the WIN KEY and the letter R to open a run box
Then type cmd and then press OK
Now type xcopy/?
The following information about will come up
Copies files and directory trees.
XCOPY source [destination] [/A /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W] [/C] [/I] [/Q] [/F] [/L] [/G] [/H] [/R] [/T] [/U] [/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z] [/EXCLUDE:file1[+file2][+file3]...]
Source Specifies the file(s) to copy.
Destination Specifies the location and/or name of new files.
/A Copies only files with the archive attribute set, doesn't change the attribute.
/M Copies only files with the archive attribute set, turns off the archive attribute.
/D:m-d-y Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.
/EXCLUDE:file1[+file2][+file3]... Specifies a list of files containing strings. Each string should be in a separate line in the files. When any of the strings match any part of the absolute path of the file to be copied, that file will be excluded from being copied. For example, specifying a string like \obj\ or .obj will exclude all files underneath the directory obj or all files with the .obj extension respectively.
/P Prompts you before creating each destination file.
/S Copies directories and subdirectories except empty ones.
/E Copies directories and subdirectories, including empty ones. Same as /S /E. May be used to modify /T.
/V Verifies each new file.
/W Prompts you to press a key before copying.
/C Continues copying even if errors occur.
/I If destination does not exist and copying more than one file, assumes that destination must be a directory.
/Q Does not display file names while copying.
/F Displays full source and destination file names while copying.
/L Displays files that would be copied.
/G Allows the copying of encrypted files to destination that does not support encryption.
/H Copies hidden and system files also.
/R Overwrites read-only files.
/T Creates directory structure, but does not copy files. Does not include empty directories or subdirectories.
/T /E includes empty directories and subdirectories.
/U Copies only files that already exist in destination.
/K Copies attributes. Normal Xcopy will reset read-only attributes.
/N Copies using the generated short names.
/O Copies file ownership and ACL information.
/X Copies file audit settings (implies /O).
/Y Suppresses prompting to confirm you want to overwrite an existing destination file.
/-Y Causes prompting to confirm you want to overwrite an existing destination file.
/Z Copies networked files in restartable mode.
The switch /Y may be preset in the COPYCMD environment variable.This may be overridden with /-Y on the command line.
How to use xcopy command in a batch file?
If you simply want to copy one file to another place then you can type this into a notepad file:
xcopy "C:\Documents and Settings\Yourusername\My Documents\My Pictures" "H:\backup of pictures" /e /y
This is a basic xcopy command that is telling the batch file to copy the contents of my pictures from C: drive and put it in H:\backup of pictures. The /e is needed to copy all the directories and sub directories from the my pictures folder and the /y is needed so it will just copy over already exsisting files instead of asking to overwrite the files.
You can use other switches to make it do other things.
Notes:
- Make sure you have a space after the xcopy command, a space between the sourse and destination, and a space after the destination to start the switches, and a space between the swiotches. I know this sounds a bit stupid, however if you have two spaces or no spaces the code will be invalid.
How to create a simple batch file to backup files or folders