Nov 22
2007
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 …
Nov 04
2007
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 …
Aug 09
2007
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 …
Jul 16
2007
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 …
Apr 14
2007
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 …