maybe someday i’ll keep this up


Archive for April, 2004

new net service…sort of.

Thursday, April 29th, 2004

so we signed up for earthlink's cable service at fifteen less per month, only to find out that they have a partnership with timewarner (our old service) so we don't even have to return the modem. in fact, timewarner reprogrammed it with the new earthlink service.
in related news, we desperately need to return the dvr [...]

an entry inspired by the suggestion that i use microsoft cms

Monday, April 19th, 2004

so at work, one of the things i need to do: create/install/whatever a content management system for the main site. i had a meeting today with three people and my manager that has taken me two weeks to schedule, so i didn't want to call it off just because i still have a runny nose.

anyway, [...]

bleagh…

Saturday, April 17th, 2004

left work halfway through yesterday and finished up from home. my body felt fine, but my head felt completely wrong. sore throat, sneezing, coughing, runny nose, felt like i had my head stuck in a vice while balloons got shoved into my ears and inflated, headache, etc.
basically slept from 6:00 yesterday to 10:00 this morning, [...]

i feel geeky…oh so geeky…

Friday, April 9th, 2004

taken from :
You are… Haskell!
module Main where

main = song 99

song n =
[...]

fun meme

Wednesday, April 7th, 2004

taken from . (actually, did this before i did. but since the nearest book belongs to me and she didn't find the line interesting - i get to post it!)

“The following code implements the basic list operations using parallel arrays:

var key, next: array[0..N of integer;
    x, head, z: integer;
procedure listinitialize;
  begin
  head:=0; z:+1; x:=1;
  next[head]:=z; next[z]:=z;
  end;
procedure deletenext(t: integer);
  begin
  next[t]:=next[next[t]]
  end;
procedure [...]