Skip to main content

Posts

Showing posts from November, 2010

Review of Game Maker

Hi all! I guess that from the picture on the left, you know that this time I will be reviewing a program call Game maker... clever reader :D Description of the program quoted from yoyo.com Have you ever wanted to be able to design computer games, but didn't want to spend countless hours learning how to become a programmer? Then you've come to the right place. Game Maker is a program that allows you to make exciting computer games, without the need to write a single line of code. Making games with Game Maker is a lot of fun. Using easy to learn drag-and-drop actions, you can create professional looking games within very little time. You can make games with backgrounds, animated graphics, music and sound effects, and even 3d games! And when you've become more experienced, there is a built-in programming language, which gives you the full flexibility of creating games with Game Maker. Short Review Great program, it really does what it said. It’s possible to create sim

Batch file search for text and count lines

Hi all, I had just finish a batch file which will search for certain string in a file then count the number of lines with the string. Its great for searching through logfile. Points to take note: Remember to put Logfile.txt and countData.bat in the same folder. %1 is actually the value that the user can pass in. Logfile.txt is the file that you are searching in. There is 2 ways to get the batch file to work. One is type countData.bat "stringThatYouWantToSearch" in the command prompt. Second is create another batch file and type countData.bat "stringThatYouWantToSearch" in that batch file. Then double click on it to run it. Click Here for the Code with Megaupload or just copy the code below and paste it into a text file and rename it into countData.bat del sorted01.txt del count.txt type Logfile.txt| findstr /I/C:%1 >> sorted01.txt find /v /c "hahaharandomword" sorted01.txt >> count.txt echo -----------------------------