About 3 months ago I made the decision to dump “classic” ASP / VB COM in favor of Microsoft’s spankin’ new ASP.NET. In a short while I have picked up VB.NET and C#, and become quite familiar with most of the common framework components. While there is a lot to cover, I’ll give you my [...]
Posted on May 21, 2004, 7:41 am, by Sassberto, under
Lifestyle.
Some bad news came down today at work I won’t get specific – lets just say this: sell your founder’s shares when they vest – don’t drink the Kool-Aid, kiddies.
Posted on May 19, 2004, 9:52 am, by Sassberto, under
Lifestyle.
A Japanese company and an American company decided to have a canoe race on the Missouri River. Both teams practiced long and hard to reach their peak performance before the race. On the big day the Japanese won by a mile. Afterward, the American Team became very discouraged and morally depressed. The American management decided [...]
Posted on May 14, 2004, 8:55 am, by Sassberto, under
Lifestyle.
NY this weekend, be back monday. Tibs is already there. Creeper and Moist, a rager is deserved, and necessary.
#include <stdio.h>#include <string.h>#include <stdlib.h> const char *s1 = “ZBCDEF”;const char *s2 = “ABCDEFG”; /* strlen using compact pointer notation */size_t MyStrlen(const char *s1){ const char *ptr = 0; while(*s1) { *s1++; ++ptr; } return( (size_t)ptr ); } /* String comparison using compact pointer notation */int MyStrcmp(const char *s1, const char *s2) { while(*s1) { if (*s1 == *s2) { *s2++; *s1++; if (*s2 == 0 && *s1 [...]