-
Writing Free Software: Part 11 – A simple man page
Introduction Okay… it’s high time we wrote some docs. I come from a perl background, so we’re going to write the docs using perldoc. I know there are better ways to do this for C# projects and I’m happy to take contributions to this series. Just ask for contributor status and you can post the…
-
Perl 6 on the CLI via DLR; A summary
My goal in attending this year’s Lang.NET Symposium was to determine whether the Common Language Infrastructure (CLI) is a viable platform on which the Perl 6 language can be implemented. During the talks, I took notes in my blog (Monday, Tuesday, Wednesday) and on my wiki (Monday, Tuesday, Wednesday). Since I’ve not historically been much…
-
From Lang.NET 2008 – Wednesday
0843 Alrighty… we’re online. I checked in on #debian-mono, and meebey had plenty of suggestions on how to fix the .deb. 0923 There’s a talk on IronRuby. Microsoft is implementing a Ruby compiler on the CLI. It uses the DLR to do the heavy lifting. It is currently slow :) Contributions are being accepted for…
-
From Lang.NET 2008 – Tuesday
0834 No snow today. The commute was easy. Last night, I downloaded the DLR and worked with it a little. I’ve hosted a gzipped binary version of the assembly on colliertech.org as well as a bzip2ed tarball of the source. A quick google search tells me that the OSI has approved the Microsoft Public License…
-
From Lang.NET 2008 – Monday
Monday 0815 So here I am. It snowed last night, so the drive down was a little crazy. I’ve arrived. They say I represent “Collier Technologies” instead of “Amazon.com.” I hope nobody at work minds. The network is up, people are arriving, we were offered a continental breakfast, and things are going to get started…
-
Lang.NET 2008
A few months ago, Mahesh Prakriya stopped by Amazon to discuss the recently merged IronPython project and the changes that it inspired in Microsoft’s .NET implementation. We exchanged email, and he invited me to this year’s Lang.NET symposium. I plan to look for volunteers to contribute to a Perl 6 implementation targeted to the CLI.…
-
I had to fill out a Bio today… here’s what I wrote.
My background includes experience in system administration, network operation, technical support, and development of applications on server and client side. My primary operating system is Debian GNU/Linux. My primary programming languages are C# and Perl. I run a small family ISP on a not-for-profit basis: http://colliertech.org/ I am a “charter” member of a group originally…
-
hello world in perl6 with parrot
$ mkdir -p /usr/src/svn/perl/parrot && \ cd /usr/src/svn/perl/parrot/ && \ svn co https://svn.perl.org/parrot/trunk && \ cd trunk && \ perl Makefile.PL && \ make && \ cd languages/perl6/ && \ make && \ ../../parrot perl6.pbc say “hello world” hello world ^D $ perl -e ‘ open my $helloFH, q{>}, “hello.p6″; my $newline=” “; print $helloFH…