Archive | Pointless RSS feed for this section

Arg… Will have to actually start posting more content

Some interesting things to come. Totatlly not a lie and I’m totally not tipsy right now. Once I figure out this “git” thing the kids are talking about, I’ll start posting my futile attempts to turn C# into a functional language.

Leave a comment Continue Reading →

Fizzbuzz in Scheme/Racket

No idea why I did this… (define (fizzbuzz listIn [currentList empty]) (define (showWhich itemToTell) (let ([testString (string-append (if (= (modulo itemToTell 3) 0) "Fizz" "") (if (= (modulo itemToTell 5) 0) "Buzz" ""))]) (if (= (string-length testString) 0) itemToTell testString))) (define (add-head-to-list itemList listTAddTo) (append listTAddTo (list (showWhich (first itemList) )))) (cond [(null? listIn) currentList] [...]

Leave a comment Continue Reading →

Into the unknown… sort of.

So after about eh 3? months of not writing anything (Mostly due to the joy slash nightmare of a newborn) I’ve had a real “come to [Religious Figure]” moment… And that moment has taught me that java based off shoot languages are a pain in the ass to even get started with. This is the [...]

Leave a comment Continue Reading →

What Defines a Bad Developer?

This is more of a question post than one with answers ’cause I’m all mysterious like that. Today I was debating (and by debating I mean fat fingering my way through instance messages) with a co worker about whether a certain somewhat well known developer was good. Though I won’t divulge such a person, let’s [...]

Leave a comment Continue Reading →

Off Topic: Finally Hit 500 on Deadlift

Yeah I know, kind of lame to announce this on a programming blog, but this is a huge thing for me. I’ve come close to 500 quite a few times but there was always something that set me back. It isn’t the best lift ever, but still happy with it overall as I didn’t cheat [...]

Leave a comment Continue Reading →