Hmmm…looks like I’ve been tagged by this by Kevin. I think the original question was what do you have bookmarked on your phone, so to answer that:
Burlington KY Weather via mobile NOAA Google Search mobile edition Fandango mobile edition, for seeing movie times, reviews and plot descriptions. UPS mobile edition for tracking packages WCPO mobile Home page for checking local traffic. WVXU online stream. This one of the local NPR stations that offers streaming content online.
This weeks .Net Nugget is very straight forward and perhaps many of you already know about this little gem: System.IO.Path.
How many times have you seen code like this?
string fullFilePath = string.Empty;
if (filePath.EndsWith("\"))
{
fullFilePath = string.Concat(filePath, fileName);
}
else
{
fullFilePath = string.Concat(filePath, “\”, fileName);
}
This code is determining if a string that represents a file path ends with a trailing backslash. If it does then it simply populates the fullFilePath variable with the string concatenation of the file path and file name.
It’s time for a vacation. After looking at the hours I’ve worked over the summer and what little time I’ve taken off this year it’s almost as if I’ve not taken any time off at all. Other than holidays all the time I’ve taken off has been made up with some overtime for the project I’m on. Given the fact that last year I took a total of about six weeks off (including 10 holidays and a week of sick time) I’m more than ready for a vacation.