Felix Crux

Technology & Miscellanea

Tags: , ,

I’ve finally, belatedly, put together the text transcript, slides, and video recording of my PyCon 2016 talk “What You Need To Know About Free & Open Source Software Licensing” and uploaded them. You can view everything here.

Thank you to the conference organizers for inviting me and providing the video recording; thank you to everyone who attended; and thank you to all the folks who provided feedback on it, whether in person or online.

The talk has been available on YouTube for some time, but there you don't have the slides or transcript.


Tags: ,

Tickets to PyCon Canada 2016 are now available, and will be on a discounted “early bird” price until Monday the 19th. The main event will be on November 12th and 13th in downtown Toronto, followed by development sprints that are open to the public on the 14th and 15th.

Although PyCon is built around the Python community, the content is not usually hyper-specific to Python: there are always plenty of general interest topics that any developer can benefit from. You can also view recordings of talks from previous years.

Sadly I was't able to help out at the event this year, so advertising for it is the least I could do! And, of course, I will be attending.

Do also note that the event is still looking for more sponsors, so if you'd like to support a very beloved local tech event, check out their prospectus and send them an email!



Tags: , , ,

Last year at PyCon I organized a small Open Space event for OpenPGP key signing. Based on the success of that event I'm doing it again this year at PyCon 2015 in Montréal. We'll be in room 512cg at 18:00 on Saturday the 11th.

I wrote up a very short superficial guide that covers what this is all about, how to get started, how key signing happens, and where to go from there; you can read it here.

All are welcome, regardless of level of experience. Even if you don't intend to actively participate, feel free to come out to meet others and learn.

Corrections, additions, and comments on the document would be very welcome; it's just something that I wrote up quickly on the train, and so is bound to be incomplete.


Tags: , , ,

When I was first introduced to Django, I found it so pleasant to work with, and so productive, that I ended up accidentally creating this site. I still stand by this first impression, and I still recommend and promote Django whenever I get the chance.

But sometimes it just isn't the right tool for the job. For a site like mine, which has essentially no dynamic content whatsoever, and is infrequently updated, it doesn't really make sense to keep up with the treadmill of updates, both to Django itself, and to the supporting infrastructure like the PostgreSQL database that sits behind it. Static HTML pages would be simpler to maintain, and, as an added benefit, load faster.

However, I didn't want to give up on some of the key parts of Django that really made my life easier. The templating system, for example, meant that I could tweak the look of the site and have changes consistently propagated across all pages, without manually updating each one. The automatic generation of RSS feeds was another nicety I didn't want to lose.

I therefore put together a system that allows me to retain the key benefits of Django, while producing an end result that is in fact a whole bunch of static HTML pages. It's called Transcribe, and it currently powers this site and a couple of others that I maintain.