Roy of Superior Art Creations
MS DOS Commands, Wild Cards, Input/Output Redirection and Variables
While I was looking for ways to make my life easier by automating things, I rediscovered the MS DOS batch features of the latest MS DOS release and even more extended version of MS DOS for the early Microsoft Windows 32 bit Operating Systems, like Windows 95, Windows CE and Windows 98 (dubbed MS DOS 7). You can accomplish a lot of things right from the DOS prompt without needing to program fancy Windows Applications or something like that. Many things where I thought the use of ???real??? programming languages like Visual Basic or VBScript would be necessary, can be accomplished by using sequences of MS DOS commands in a Batch File (.BAT). BATCH commands are supported by any Microsoft Windows Operation System right out of the box. You do not have to install anything, not mess around with permissions nor do you require Administrator rights and permission to write, edit or execute batch scripts. The Basics for Newbies To learn about the available commands and functions that you can use in BATCH files, open a MS DOS window first. To do that, click on ???Start???, then ???Run???, type ???cmd??? and then press the ENTER key on your keyboard. In the MS DOS window type ???help??? and then press ENTER. Returned will be a list of commands with a brief description of their purpose right next to each of them. Type ???help COMMAND???, where COMMAND stands for any command that was listed by ???help???, to get a detailed documentation and[…]
About Cirque du Soleil, the Guinness Book of World Records & a lot of Stilts
Well, the post title is actually very descriptive. This post is about Cirque du Soleil. Adding stilts to the mix should also not be surprising, considering that Cirque du Soleil was founded back in 1984 by a troupe of Stilts??Walkers, dubbed the ???High Heels Club???. You can now guess What Cirque du Soleil and stilts have to do with the Guinness Book of World Records. Na??? C???mon!?????? Okay, I don???t want anybody to die stupid, without knowing the following facts hehe. Background Information On June 16, 2004 Cirque du Soleil set a new record for the Guinness Book of World Records when they gathered 544 employees in the Montreal Headquarters and had them stilts walking at the same place, at the same time. 544 folks on stilts is a lot, however, the record only lasted about 2 years, until 2006, when this record was being taken away from Cirque by a group of Japanese folks, who in turn lost their record also in 2008 to 625 youth from Ontario. So 625 stilts walkers is now the official record and Cirque thought that things are somehow not right.?? 2009 marks the 25th anniversary of Cirque du Soleil and they thought that they will be damned, if they will not be able to reclaim the record for them (for pride, honor and as a birthday gift for themselves). The Upcoming New World Record Attempt On June 16, 2009, five years after the original record was set, Cirque du Soleil is going to[…]
A Guide to Video & Audio for Microsoft Windows
Some Handy BATCH and VB Scripts for Organizing Files
Here are four scripts and batch files that come in handy sometimes when you organize or clean-up files and folders on your hard disk. You can use the provided scripts as you see fit. They are provided ???as is??? and are not supported. Also be aware that I will not take any responsibility for any damage or harm that the scripts might cause. You use them at your own risk. You are free to use, copy, modify and delete them (Freeware). Move Files to Sub Folders Alphabetically The simple batch script creates the sub folders A, B, C, D ??? Z and 0-9 in the current directory where the batch is executed and moves all files in that same directory to the corresponding sub folder. For example, all files starting with ???a??? or ???A???, like ???Anna.zip??? or ???achim.gif???, will be moved to the sub folder ???A???. All files that do not start with a letter from the English alphabet, such as numbers (???0″, ???1??? ??? ???9???), special characters like ???!???, ???_???, ???$??? etc. and foreign characters like ???????? or ???????? are moved to the sub folder ???0-9??? I wrote in march a post about organizing file collections on your computer and provided also some scripts to help you sort and catalog files. I found a much simpler way of doing the same stuff as the batch script ???!organize.bat??? and the VBScript script ???!folders.vbs???. It does not replace the script ???!dirlist.vbs???, which creates the file index. If you want to use[…]