You feel excited to learn computer languages

Then you are at the right place. Computer languages are most fun thing you have ever seen. Use this excellent languages and have a nice future...

How computer can help you?

I will ask how it can not? From the latest trend of social networking sites like Facebook, Twitter to the extended use of computer in our house hold devices. You can be benefited from computer in the every aspect of life.

What web technology?

It is the blessings of web technology, that brings you here and you are reading my post now. Strange huh!! Not at all. Use my web technology tutorials and understand, how they can help you for better marketing and advertising systems.

How Mobile technology can help us?

You have answer right? I know. But in my tutorials I will cover some unique features that may add some information in your hard disk too. Sounds good? Check them...

Computer and future

Yes that is the most important question to me. What is next? What is going to be the next big thing for us? Well I will answer them in my blog. Check the corresponding section..

Friday, November 30, 2012

How to hide secret files without software?

Hello my Blog readers,
How are you all. I was wonder other day that how we can hide our data secretly. Well there are many software available, and even I posted few tricks here also. But today I am going to post a very new way to hide your data. You can use this cool tricks with your friends also, everybody will be clueless. Lets do it.

1) First download WinRar. If you have then you just add all the files that you want to hide. And save it by any name you want. For our example lets say my file name is "Hide.rar". Dont worry, name is not a big issue here.

2) Now get any image you want. You can use any harmless image you want. You even can use popular wallpapers like Celebrity, sports person anything you love. Free site to download http://www.wallpapers.com/
For our example lets say our image file name is "Myimage.jpg"

3) Now keep them in C:\ drive.

4) Open CMD application from Star t-->All programs --> Accessories --> Command Prompt

5) Now type following commands.
cd\
copy/b Myimage.jpg+Hide.rar Goodimage.jpg

Done. You just a new image that has your favorite image and your secret rar file.

Now you will ask, what the heck, where is my file? it is olny an image, even it is opening in image view file. How can I get my data back?

Very simple, just open your WinRar application and open this "Goodimage.jpg" file. You will see all your hidden files there.


Have a great time. Friends.
I appreciate your comments and if you become my followers in here. Share this with your friends.

Debarghya Mukherjee

Monday, November 26, 2012

The Secret Program to make my computer talk !!



Hello my blog readers,
How are you all. It is winter in Kolkata now. I was in my Laptop yesterday night and was feeling so lazy. I was thinking what if my computer speaks for me. Huh!! I searched in net and got many costly software that can do my job. Then I thought why not make some cool program that will translate my text to voice and free. Here is my codes, enjoy your free tools of voice converter.

Steps:
1:- Open your Notepad and just copy and paste the following code. You can use any other text editing tool for this. Just make sure that your codes are written in proper order.


Dim message, sapi
message=InputBox("What your computer will speak?","Free Text To Voice Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message



2:- Ohhh you just did the toughest part. Now save the notepad file with the name Voice_Translator.vbs on Desktop. Make sure that your file extension is ".vbs". Default extension of Notepad in ".txt" change it to ".vbs". 

3:- We are ready to run our awesome tool and impress our friends. Just ouble click on "Voice_Translator.vbs" file type your text in the box and then click ok and computer speak now.

Have Fun and stay tune with my blog, more fun tricks will come soon. :)

Monday, November 12, 2012

You own Game building Software


Kodu is a visual programming language suitable to teach kids the basic of programming and to train their creativity. In today’s lesson, we will build a simple game that we can use as an introduction to Kodu.

The Building Blocks of Kodu

The world of Kodu consist of programmable objects where we can attach a behavioral script into each object that we place on the Kodu landscape.
Kodu’s programming language is a simple icon based programming user interface where the language are broken down into pages and rules.
Kodu has a list of built in behavior that we can attach to an object to make them move around, shoot objects, and perform incredible combat move with one another.
Microsoft Kodu Game Lab has a series of ‘Getting Started’ video that is very useful for beginners to understand the basic of Kodu Programming.

Navigating Around the World of Kodu

Here is a simple Kodu world that consist of trees and a motorcycle. The motorcycle is programmed to always wander the terrain and it should avoid any tree on its path.
Let’s add more more objects on the landscape and have the motorcycle chase and shoot them.
A wisp is one of the many characters we can create in Kodu.
The wisp will move around a designated path, and Kodu will spawn another wisp when it’s health reaches zero.

Classroom Exercises

To prepare for the lesson instructors need to install Kodu and download our Microsoft Kodu Classroom Kit into Kodu’s import folder: ‘C:\Users\[user name]\Documents\SavedGames\Boku\Player1\Imports\’. Kodu will automatically import the game when we load the game from the main menu.
Note: Instructors need to unzip the file to get the Kodu game file
Begin the class by opening the world and ask the students to observe the motorcycle and the wisp behavior. The explanation might be something like ‘the wisp is the enemy’ because the game keep on regenerating the ‘wisp’ when the motorcycle destroys it.
Now open the wisp or the motorcycle program and ask the students to relate the wisp behavior with the code. After the student successfully explain the code, ask volunteers to modify the code for the following set of behaviors.
When appropriate have the students to modify the code for each objects and explain why their solutions does not work.
  • Add Trees or modify their colour
  • Adjust the wisp’s behaviour so that it produces a coin when the motorcycle destroys the wisp.
  • Program the motorcycle to eat the coin to increase the game score
  • Reverse the role of the wisp and the motorcycle by having the wisp destroying the motorcycle
That’s all there is to it. Enjoy!