-
Hey, look. I got mcs to github before Miguel
http://github.com/cjac/mcs I’m also hosting it on my own not-as-l33t git repo: http://git.colliertech.org/?p=mcs.git;a=summary Does this mean that I get a “cooler than Miguel” tee shirt?
-
IronRuby on OS X
We had a visitor on #ironruby today asking for help getting IR running on his mac. I gave him the following directions, and they seemed to work aside from one glitch. I tested them on my wife’s mac, and it worked for me, too. Install Mono You can grab the Mono .dmg from go-mono.com. This…
-
building unmodified_drivers
This is the gist of it: $ cd /usr/src/ # $ sudo chmod a+rwx . $ wget ftp://ftp.suse.com/pub/projects/kernel/kotd/SLE11_BRANCH/src/kernel-source-2.6.27.39-0.0.0.25.15a4c6f.src.rpm $ alien -tg kernel-source-2.6.27.39-0.0.0.25.15a4c6f.src.rpm $ cd kernel-source-2.6.27.39 $ tar xfj linux-2.6.27.tar.bz2 $ for f in patches.*.tar.bz2; do tar xfj $f || break; done $ for p in $(./guards x86_64 < series.conf); do patch -d linux-2.6.27 -p1 <…
-
mono-2.4.2.3 debs will include array comparison patch
Thanks to Marek being a superhero, we have isolated the changes necessary to fix the compiler from the 2.4.2.3 tag so that we can build IronRuby with xbuild. I’ve delivered the patch to meebey, and he has included it in his debian/patches list. Without this patch, I was going to have to package up the…
-
Quest for the re-usable software grail
Why should any more effort be put into building a system of re-usable software if The CPAN already exists and provides all of the tools necessary to create re-usable software?
-
boycottnovell.com not interested in solving problems
But don’t take my word for it. The folks on their IRC channel have put it pretty plainly themselves. They’re not interested in offering solutions to problems, they instead seem interested in bemoaning their lot in life for fun and profit. — Log opened Wed Sep 03 23:06:26 2008 23:06 -!- Irssi: #boycottnovell: Total of…
-
To Prebuild or not to Prebuild?
So… On IRC today, John, Michael and I discussed rolling Prebuild and xbuild into one product. It seems that we’re duplicating effort and competing for each others’ users. It sounds to me like we should converge the codebases, and make Prebuild.exe a wrapper around the innards of xbuild. Thoughts?
-
IKVM basics
So, I’m not much of a java guy, but I need to know how to get at the CLI, given a java interface. Let’s assume for brevity that one has an ubuntu machine available: $ sudo apt-get install ikvm ikvm-native icepick icepick-gcj …. $ mkdir hello-ikvm && cd hello-ikvm $ cat > hello.java class hello…