Few years ago, I was looking for some free streaming video service solutions for my website, but couldn’t find any. There was Media Streaming Server from Microsoft, but I am using LINUX. Eventually I gave up searching that I lost interest.
But now that many movie sharing web sites are using Flash Video ( files extension .flv) I decided to take some time to learn how to embed streaming video to a website using Freewares.
Flash Video is a technology that supports streaming video naturally using Adobe Flash Player. You do not need to buy that expensive streaming media server for this. Users do require to install Adobe Flash Player in their computer in order to view this Flash videos. But most of the casual users already have the Flash installed so don’t worry. You can learn all about the Flash Video technology at Flash Video Wikipedia.
Note that if you are looking for an easy solution, you should think about utilizing sharing services such as YouTube. It’s a great service that you can upload regular movie files - such as .avi, .wmv - and it will be automatically converted to flash video. Once you upload your movie, you will get little html <embed> code snippets that you can insert to your web page.
(more…)
PuTTY is the best SSH client and it’s free. But it lacks of this little function that I really want - Automatic login.
So I have searched many Google pages and found this PuTTY Connection Manager which I explained details in my previous post. It is a very good software.
But somehow I wanted the auto login function without the extra programs. I wanted it to be done directly with PuTTY, not within the frame of PuTTY Connection Manager.
And I found this software called AutoHotKey (http://www.autohotkey.com/) which can automate keyboard and mouse actions. But I gave up to use it at that time because I was too lazy to read all the instructions and to come up with a script for the auto login.
But yesterday, I decided to take a look again and this time I successfully created the Auto Login script! To tell you the truth, it was not easy but it is worth it. I am proud of myself
So here is the script.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| ; You need to define the full path where the putty.exe exists . 'putty_profile' should be existing profile name.
v_program=%A_ProgramFiles%\PuTTY\putty.exe -load putty_profile
v_userid=youruserid
v_passwd=yourpasswd
; msec to wait before sending userid
v_wait_userid=1000
; msec to wait before sending password
v_wait_passwd=500
;-------------------------------------------------
; To make modifier keys to work properly (such as Shift)
SetKeyDelay, 0, 10
run, %v_program% , , , newpid
;you need to wait a little for the window to initialize
;sleep, 100
winwait, ahk_pid %newpid%
;wait for the login prompt to appear
sleep, %v_wait_userid%
ControlSend, , %v_userid%{enter}, ahk_pid %newpid%
sleep, %v_wait_passwd%
ControlSend, , %v_passwd%{enter}, ahk_pid %newpid%
;create unique title so you won't be lost
WinGetTitle, v_title, ahk_pid %newpid%
v_newtitle=%v_title% - %newpid%
WinSetTitle, ahk_pid %newpid%,,%v_newtitle% |
If you want to try this yourself, you will need to change some information.
(more…)

This is a simple tip for PuTTY Configuration.
When you first use PuTTY , you will find the cases that BACKSPACE would not work and showing as strange sequence of ^ and question mark (^?^?^?) for some UNIX servers.
You can fix this problem just by changing the setting. Select Terminal Keyboard at the left TreeView control of the main PuTTY screen and select Control-H instead of default Control-?(127).
Also make sure you save the settings.

Come visit again for more information on PuTTY Automation and Configuration Tips.
Automatic Login or Login Macro function - Have you ever wanted to make the PuTTY login session automatic?
PuTTY is a great free telnet ssh client and I wouldn’t trade with any other client. But it lacks of this minor function that I really want - Automatic login.
Maybe the automatic login is not a big deal. You can just type in the userid and the password each time you log in to the development server . But if you do that regularly everyday, opening several times throughout the whole day, you would understand and agree with my little wish.
So I been looking for the solution , going through the every results of the Google search.
And here is the great helper application that can do automatic login macro!
PuTTY Connection Manager (http://puttycm.free.fr/) is the great .NET 2.0 application that can do the automatic login. Moreover, it supports tabbed windows just like the Firefox does it. Also it has quick connection menu bar that you just type in the address and connect which can be also useful.
Features
- Tabs and dockable windows for PuTTY instances.
- Able to load the profiles created from PuTTY.
- Login macro - You can define Userid and Password and extra commands to execute after login.
Requirements
It can be little confusing when you first use the software and to use that Login Macro. By default the PuTTY CM shows existing PuTTY Session profiles in the TreeView located in the right pane. Don’t be fooled, you cannot set Login Macro with the existing PuTTY Session profiles. You will need to create a new database to do that.

- Create a new database from File menu.
- You will see the newly created database icon in the right pane, above the PuTTY Session item. Copy the profile you want to set Login macro from the PuTTY Sessions and paste into the new database you just created. You can use traditional ctrl+C and ctrl+V shortcut.
- Right mouse click on the newly created item under the database and select Configuration.
- A new window dialog will show up with the same connection information as the original PuTTY profile. Check on the “Enable Login Macro Mode”.
- Select “Login Macro” in the left TreeView and you will be able to define the userid ,password, timeout seconds, and post login commands.
- After inputting data, click on the OK button and connect by double clicking the item.
Also, don’t forget to save your database settings, so you can use the settings later on.
Come visit again for more information on PuTTY Automation.

Download: download from download.com
I have been using various free CD & DVD burning softwares, but somehow yearned for more familiar and convenient interface just like NERO . And when I found out about this software, I knew that this was the one that I’ve been looking for a long time.
Ashampoo Burning Studio Free 6.61 is Free CD / DVD / Blu-ray Disc burning software. This is a free version according to Download.com (shown below image) but I was not able to find this product on Ashampoo.com website.

You can
- Burn files into CD, DVD, Blu-ray disc
- Backup files into mutiple CD, DVD, and Blu-ray
- Burn music CD from music files such as mp3
- Burn DVD , VCD, and SVCD movies
- Copy disks
- Create or burn disc from image file
Wow, that’s more than what I needed and with the familiar friendly easy-to-use screens!
My search for the free CD/DVD burning software has finally ended.