Sassy B’s ASP.NET Jambaroo

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 […]

Live by the Sword, Die by the Sword

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.

HAHAHAHA

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 the […]

home

NY this weekend, be back monday.
Tibs is already there. Creeper and Moist, a rager is deserved, and necessary.

C has no string type

#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 […]