Summer of Code and DragonFly, 2011 wrapup

DragonFly had another good year with Google’s Summer of Code program.  We had 6 slots, and 5 passed projects. (Irinia, if you’re reading this – where did you go?)  This is our 4th year participating in Summer of Code, with I think the highest number of passed projects to date.

Here’s all the finished projects, with links to the original descriptions:

Thanks is also due to the mentors and other that helped out, via IRC and email: Aggelos Economopoulos, Alex Hornung, Joe Talbott, Matthias Schmidt, Michael Neumann, Nathaniel Filardo, Pratyush Kshirsagar, Sascha Wildner, Thomas Nikolajsen, and Venkatesh Srinivas

You can also check the Digest’s “Google Summer of Code” category for progress reports made as the summer went on.  The source code from the projects is available at the DragonFly/SOC 2011 Google Project Page.  In even better news, 2 of the projects have already been partially committed to DragonFly – Brills Peng’s  scheduler work, and Adam Hoka’s device mapper mirror project.

 

 

PHP 5.3 update on the way

For reasons unknown to me, there’s enough functional change between PHP 5.2 and PHP 5.3 that it affected a lot of PHP-based programs.  For that reason, PHP 5 in pkgsrc defaults to the 5.2 version.  However, it’s going to be 5.3 for the next stable quarterly release of pkgsrc.  In theory, all PHP5-dependent programs are ready to handle that now.  Note that PHP 5.3 is already in pkgsrc; it just wasn’t the default.  If you were using the php53 package, it may require some manual fiddling at your next upgrade of pkgsrc packages.

Old ISA drivers and what to do about them

Some ISA devices have been removed from DragonFly.  That probably affects approximately 0% of everyone, cause they’re old devices, but a few of them are were in the GENERIC kernel configs, so you’ll get an error for an unrecognized option when you next rebuild your kernel using a GENERIC-based config, based on an older version of GENERIC.  The description of which drivers went is quite sensibly placed in UPDATING.

Lazy Reading for 2011/09/11

Happy birthday to my younger daughter, Claire, who is 9 today.  That’s a much better anniversary to celebrate today.

Your unrelated comic link of the week: Chainsawsuit.

Lazy Reading for 2011/08/28

This week has taught me one thing for sure: Always make sure your backup generator is working.  And over-plan battery capacity.  That’s actually two things, but what the heck.  I’m tired, for reasons that can probably be inferred!  I’m not the only one suffering these problems, it seems.

  • There is a certain subset of readers here that will find this fascinating: a video of a game postmortem.  Specifically, Elite.  (via)  Needs Flash.
  • This is as good an article as any I’ve seen describing where the tablet computer market is going, at The Economist.
  • Remember RetroBSD, mentioned here previously?  Here’s some discussion of it.
  • EuroBSDCon’s 2011 conference is open for registration, but the early bird discount only lasts until the end of August, so jump on it soon if you’re thinking of going.  It’s the 10th anniversary of the event!
  • PHP 5.3 is coming to pkgsrc as default, soon?  The PHP 5.2 -> 5.3 transition seems to mess up a lot of code because of some changes in the way things are handled, or at least that’s my experience, so watch out.
  • Make sure you aren’t running mod_deflate on your Apache 2.x server.
  • Kristaps Dzonsons, the fellow behind mdocml (which is in DragonFly now and mentioned here before) is working on a mdoc manual.  It’s an actual book, with examples.  It’s titled “Practical UNIX Manuals: mdoc”, which sounds like part of a series, though I don’t know if there’s anything else.  I’d sure like it if there was.  (via Undeadly.)  Look very closely at the mdoc web page and you will see the markup, too.  Neat!
  • Breakout treated as a musical instrument, in 1983.  That’s too glib a summary of this explanation of an old book studying the game Breakout and playing it.  Really, read the article, and remember that the book described would just be lost in a sea of blog posts noise today.  (via)

Your unrelated comic link of the week: Wonderella.  This is the comic that ruined Batman for me.  I can’t unthink it.

 

Lazy Reading for 08/21/2011

Ah, August.  The month where everybody goes on vacation.  I’ve been gone off and on for the last few weeks, so my link collection has been slower, but I’ve been able to keep up something.

Your unrelated comic link of the week: Nedroid.  “Beartato” is one of the best names ever.

Yeah, unrelated links seem to always be comics.  They offer the most reading.

More readable assertions

Assertions, in DragonFly, are places in the code where the programmer lists a condition, and tells the system to panic if the condition doesn’t exist.  It’s a good way to guard against weird situations, when something ends up with a strange value.  Do you actually use them while programming?  Then Adam Hoka’s patch to print file name and line number when the assertion hits will be useful to you.