Journey's End

Nov 22
2007

Personification of Programming languages

The following personifications of programming languages came about while I was discussing various languages with my friends. Basically we started off with a description or sentence about a language, and I personified. In spirit it is the OS-tans but for programming languages

C

"Very fast, good at a few things …

ts=10:40 tags=[rant,code]

Nov 04
2007

Now you can all look and see how much I suck

Mactorii is now open sourced! GPLv2 for the curious. I haven't cleaned it up at all, which means be prepared to stab your eyes out with rusty fork after viewing the source. James told me not to bother, "cause then you will never release it". So blame James, its his …

ts=11:10 tags=[code]

Aug 09
2007

JAPH

Not my work, I don't have that kind of perl-fu

not exp log srand xor s qq qx xor
s x x length uc ord and print chr
ord for qw q join use sub tied qx
xor eval xor print qq q q xor int
eval lc q m …

ts=09:09 tags=[code]

Jul 16
2007

Introducing SETerm

To learn a bit about using XCode, program in Objective-C using Cocoa and play with bluetooth and my phone, I wrote a simple bluetooth serial terminal. It simply connects to my phone (or any bluetooth device), opens a communication channel, and lets you send characters through it as if it …

ts=11:38 tags=[code]

Apr 14
2007

Writing fitting functions for lmfit

lmfit expects
fitting functions with prototypes in the form:

double
function_name(double, double *);

For example:

double
sin_fit(double t, double * p)

{

return p[0] + p[1] * sin ( 2 * M_PI * ( p[2] * t + p[3]));

}

Note that while
"font:12px Courier, mono;">lm_minimize takes a
pointer to an array of parameters …

ts=13:43 tags=[c,code]
← Previous Page 3 of 3