I always used xcopy for my backing up my files. However, I always forget to backup my backup script. So after fresh install of Windows XP, I sat down to re-write my script. Then I figured that there got to be some open source simple command line backup script, somewhere. That’s when I found out [...]
Entries Tagged as 'programmer'
Windows XP Backup script
November 18th, 2008 · No Comments
Tags: programmer · tech
First thoughts on G1
November 9th, 2008 · No Comments
G1 is a great phone. The best feature about this phone is Android, an open source development platform. There are some really cool apps out there. And these apps make this phone so cool. I am still playing with various apps but so far following are my favorite:
Shazam, recognizes any recorded music and provide a [...]
Tags: programmer · tech
.net ping
October 24th, 2008 · No Comments
So easy to ping in .net…
using System.Net.NetworkInformation;
private string pingHost(String hostip)
{
Ping pingSender = new Ping();
PingReply reply = pingSender.Send(hostip);
String str;
if (reply.Status == IPStatus.Success)
{
str = “”. Host is up””;
str += “”, Address: “” + reply.Address.ToString();
str += “”, RoundTrip time: “” + reply.RoundtripTime + “” ms.””;
}
else
str = “”. Host is down.””;
return str;
}
Tags: old stuff · programmer · tech
made headways in SCJD project
October 13th, 2008 · No Comments
today turned out to be more productive than I had anticipated.
Tags: programmer
G1, I want it but why?
October 4th, 2008 · No Comments
G1 looks like a sweet phone. It got a lot of great features that will be useful for me. However, the greatest feature that interested me was Android platform. Android is an open source platform for programming cell phones. this means I can write my own application for G1.
I was alomst about to order it [...]
Tags: programmer · tech