Feb 11, 2005
Explanation of U.S. cell-phone mobile data plans.
Trying to figure out available data plans (very useful for advanced cell-phone that can use internet connectivity) for U.S. cell-phone carriers based on their websites is usually painful and confusing.
Thank god for this comparison of data plans on major U.S. carriers. An article that I wanted to write myself but don’t have to now.
Personally, I have both Sprint and T-Mobile accounts with unlimited data plans ($15/month Sprint and $30/month on T-Mobile (would be only $20 if I also got voice plan)).
Feb 09, 2005
Subversion with SSH on Windows tip
If you’re running Subversion with SSH on Windows, you need to have an SSH client installed (I use plink which is part of putty) and set SVN_SSH apropriately. Here’s a tip: make sure to run at least one query against the server that holds your source code e.g. run a simple command like ls: plink -pw $YourPassword $YourLogin@$YourServer ls. To increase security SSH calculates a checksum for the server you’re trying to connect to (so that e.g. if someone hi-jacks DNS server and redirects your SSH connection to their own server with the intent of capturing your login/password, SSH will warn you that server’s signature doesn’t match previously seen signature). The problem is that it’s an interactive process i.e. SSH displays a warning and waits for you to accept the new server signature. It also does that when the signature doesn’t exist (i.e. this is the first time you connect to a given server via SSH). Subversion doesn’t show that message but still waits for user’s confirmation which looks like it hung.
I’ve just spent an hour trying to figure out such problem.
