
Wednesday, January 31, 2007
Inside MySpace
All of us hear about MySpace. It has become the site with the highest traffic. It now runs on ASP.Net and SQL 2005. You can read the story about how the folks at MySpace handled their exponential growth(40 billion page views a month), the problems they encountered and how the site architecture evolved from a few thousand users to a millions of users. It is an awesome read. General
1/31/2007 4:15:55 AM (GMT Standard Time, UTC+00:00)
|
|

Thursday, January 25, 2007

Wednesday, January 24, 2007
Wishlist 2007

You always want(to do) something, no matter what. I have tried to list it , though not specifically in that order
Wii/Xbox: It has been too long on my list. I have been out of the gaming zone little more than I expected.
Sports: Should join a league and play some real sport. Soccer should be cool.
Reading: CodeComplete2 + cpl other books. It is high time.
Mp3Players: I have bought 3 mp3 players so far and always have given it to someone. This time I am going to buy 1 and own it. It will be cool to use while I work out.
Desktop: I need a machine to do whatever I want, without worrying about wrecking it/ formatting it , specially when I hear about all the new cool features of Vista.
Car: My civic is solid, but a Ferrari would be cool. Don't mind settling for a Jaguar.
%#@^&*-)% am not telling what this is.
General
1/24/2007 3:02:37 AM (GMT Standard Time, UTC+00:00)
|
|
Slacking Off There are so many things that I need to catch up with. I dont wanna blog something just for the sake of it. I am just getting settled into my routine, shaking off my jet lag, accepting A.I being a nugget. There are a lot of blogs that I need to read now as I type this.
General
1/24/2007 1:43:31 AM (GMT Standard Time, UTC+00:00)
|
|

Tuesday, December 26, 2006
mumbai airport rocks
it has been an interesting journey so far. first, i had a very interesting person(thats gonna be a seperate story) sitting next to me all along 18 hour journey. It was probably one of the best journeys i've ever had. And i was dreading about the 6 hr layover here in mumbai. i opened my laptop to do some random things, and as usual in any airport got the wireless network found pop-up, i just thought of checking it out and opened my IE and WOW free wireless.. never seen this any where in the US. also there are free cell phone charging outlets(various types) all around the airport . thats awesome too, u dont have to worry about carrying your charger everywhere... General
12/26/2006 1:58:08 AM (GMT Standard Time, UTC+00:00)
|
|

Friday, December 22, 2006
Pursuit of Happyness
I am off to INDIA for the next three weeks. Would definitely post some pictures and experiences from there. General
12/22/2006 11:07:46 PM (GMT Standard Time, UTC+00:00)
|
|

Sunday, December 17, 2006
Pursuit of Happyness
There is an indian myth which says "you would never be happy by pursuing [objects] for happiness" It also add that "you are always pursuing same [objects] which comes in different forms - the real happiness is being peaceful with what you have". I am not a great believer in it. I always believed that is not for dreamers. But again but every now and then, you stop and
THINK ?
General
12/17/2006 11:35:39 PM (GMT Standard Time, UTC+00:00)
|
|

Wednesday, December 13, 2006

Monday, December 11, 2006
Wishlist
i just own one laptop and that is my only toy to play with software. This sucks ;) i need another one to play with Vista, games etc, i atleast need to multiple monitors.
Video/mp3/fm player. so now it is official that Zune sucks, now what :)
A cool CamCorder - i have multiple ones in my mind
PS3 -
Time - lots of time to read
Warm Weather in Wisconsin ? nah this is gonna put me in naughty list.
and am not telling the last one ;) General
12/11/2006 4:16:30 AM (GMT Standard Time, UTC+00:00)
|
|
Asp.Net 2.0 IntegerParse - Int32.TryParse()
We always encounter having to convert a string to an integer. Most of us just unconsciously type in the following
int myNewInteger = Int32.Parse(string)
The problem with this approach is what if the value of notInteger is null or something not an "integer". So there comes the problem of handling the exceptions etc etc
So here comes the Int32.TryParse() method from our .Net Framework 2.0. It converts the string to an integer(32 bit signed) and also a return value indicating if the operation succeeded. This is pretty cool.
Check out the performance profiling of all the three parser methods Convert, parse and tryParse ASP.NET
12/11/2006 3:15:37 AM (GMT Standard Time, UTC+00:00)
|
|