December 2, 2008

OSDC 2008

Filed under: General — Andy Todd @ 10:47 am

I’m currently in the foyer of the Sydney Masonic Centre setting up the registration desk for the Open Source Developer’s Conference 2008.

It may be late notice but if you want to see keynotes by Larry Wall, Chris DiBona, Anthony Baxter and Pia Waugh, not to mention interesting talks by another sixty or so speakers, you can still register up to the official conference opening tomorrow morning. More details can be found on the conference web site. Come and say hello if you make it.

October 2, 2008

OSDC 2008 Early Bird Registration

Filed under: General — Andy Todd @ 12:00 pm

Early bird registration for The Open Source Developers’ Conference 2008 is now open.

OSDC 2008 is a conference run by open source developers, for developers and business people. It covers numerous programming languages across a rangeof operating systems, and related topics such as business processes, licensing, and strategy. Talks vary from introductory pieces through to the deeply technical. This year we have an exciting selection of presenters and keynote speakers including:

  • Larry Wall, the creator of Perl
  • Chris DiBona, Open Source Programs Manager for Google
  • Andrew Tridgell, Founder, Samba Team
  • Anthony Baxter, Python Evangelist
  • Pia Waugh, Consultant, Waugh Partners

Check out the draft program: http://www.osdc.com.au/2008/papers/

Please visit http://www.osdc.com.au/2008/registration/ to register. Early bird registration closes on the 27th October, 2008.

For more information about this event, please visit: http://www.osdc.com.au/.

September 30, 2008

Photo Meme

Filed under: General,photo — Andy Todd @ 10:21 pm

Look, it's me

Instructions: Take a picture of yourself right now. Don’t change your clothes, don’t fix your hair – just take a picture. Post that picture with NO editing. Post these instructions with the picture.

Hat tip – Steve Holden and Simon Brunning

July 29, 2008

In Praise of the Genius Bar

Filed under: apple,General — Andy Todd @ 11:47 am

This won’t be news to those of you in more enlightened locations but I had occasion to contrast the service from the shiny new Sydney Apple store genius bar with my previous Apple repair experiences today and walked away a very happy customer.

My Macbook had not been well since last week. Basically the fan was running constantly which apart from the annoying noise meant that the battery drained in about 30 minutes. Having had my last machine in and out of third party Apple certified repair shops for most of it’s short and inglorious life I was prepared for the worst. I migrated all of my files and data onto a borrowed work laptop and headed to George Street resigned to losing my machine for a couple of weeks.

I walked out half an hour later with a fully working machine. Admittedly the fault was minor and easily fixed but with my last machine each of the repair centres I used had a mandatory (usually two week) period where they kept the machine before looking at it. My experience in George street was about fifteen minutes.

All hail the shiny new store. Now to see if they can fix the internal microphone.

July 21, 2008

Shiny New Engine (v2.6)

Filed under: General — Andy Todd @ 9:56 pm

I’ve just upgraded to WordPress 2.6. As I have claims to be a technologist I install and upgrade my blog software using Subversion. An upgrade simply requires issuing an ‘svn switch‘ command and then running the WordPress database upgrade via the page that presents. Usually this works like a charm. Today I had issues.

I’ve logged a support ticket but thought I should mention it here in case anyone else sees the same issue.

When I tried to log in after the database upgrade the login page just kept re-directing back to itself. The main page of this blog was showing, but with an error message stating (in part) – “error in akismet.php on line 487″.

After a little checking around I discovered that Akismet (the WordPress spam fighting plugin) needed to be upgraded at the same time as the core WordPress code and hadn’t. The old version (2.1.4) is not compatible with the latest WordPress release and needed to be upgraded (to 2.1.6). A simple workaround was to download and install the latest version of Akismet by hand so it wasn’t a huge problem, but it would have been nice if the WordPress Subversion repository had been updated to reflect the change.

Update: OK, it’s probably me. A fresh checkout of WordPress (release 2.6 or 2.5) comes complete with the correct version of the Akismet plug in. It must have a problem with my ‘svn switch‘ that I didn’t catch.

June 11, 2008

Inspiration

Filed under: General — Andy Todd @ 9:03 pm

I just read, courtesy of Simon, a great article at the Guardian covering a presentation that Adrian Holovaty gave there last week.

Strangely enough I was talking about this with a colleague this very afternoon. My thesis was that data is generated by applications but should be considered independent of them. Treat your data carefully and you have a treasure trove of information that defines your organisation. Take an application centric view of the world and you end up with a load of blobs that are only meaningful in the context of your application code. If you can ever find a way to free your information you can find so many different ways of viewing, interpreting and analysing it.

In essence this is the excitement that surrounds mashups and the value that shown in sites like Chicago Crime and My Society. Expose the data and then marvel at what happens.

As I said in a (remarkably brief) presentation that I gave tonight – I’m Andy and I’m a data manager. If I can ever find a way of making a living taking data, turning it into information and making it available in new and interesting ways I guarantee that I will quit my day job in a heartbeat.

May 23, 2008

OSDC 2008 Call For Papers

Filed under: General — Andy Todd @ 1:37 pm

In case you haven’t seen this elsewhere;

Call for Papers
Open Source Developers’ Conference 2008
2nd – 5th December 2008, Sydney, Australia

The Open Source Developers’ Conference 2008 is a conference run by open source developers, for developers and business people. It covers numerous programming languages across a range of operating systems, and related topics such as business processes, licensing, and strategy. Talks vary from introductory pieces through to the deeply technical. It is a great opportunity to meet, share, and learn with like-minded individuals.

This year, the conference will be held in Sydney, Australia during the first week of December (2nd – 5th). If you are an Open Source maintainer, developer or user, the organising committee would encourage you to submit a talk proposal on open source tools, solutions, languages or technologies you are working with.

For more details and to submit your proposal(s), goto: http://osdc.com.au/2008/papers/cfp.html

If you have any questions or require assistance with your submission, please don’t hesitate to ask!

We recognise the importance of Open Source in providing a medium for collaboration between individuals, researchers, business and government. In recognition of this and ensure a high standard of presentations, we intend to peer-review all submitted papers.

OSDC 2008 Sydney (Australia) – Key Program Dates:

30 Jun – Initial proposals (short abstract) due
21 Jul – Proposal acceptance
15 Sep – Accepted paper submissions
13 Oct – Reviews completed
27 Oct – Final paper submission cutoff

For all information, contacts and updates, see the OSDC conference web site at http://osdc.com.au/2008/

Also if you are interested in sponsoring, please see: http://www.osdc.com.au/2008/sponsors/opportunities.html

May 9, 2008

Opening a file in Python

Filed under: General — Andy Todd @ 9:01 pm

I’m sure I read this somewhere recently, but my scratchy memory and command of Google can’t bring it back to me.

Is there a Python idiom for accepting either a file name or a file object as a function parameter?

The closest I can get is this;

def my_function(file_name_or_object):
    try:
        open(file_name_or_object)
    except TypeError:
        file = file_name_or_object
    return file

Any improvements on this are more than welcome.

April 27, 2008

Small Administrative Note

Filed under: General — Andy Todd @ 3:28 pm

As the feedback I got on the daily twitter posts was entirely negative they are gone. Sorry for that folks.

It seems that I’ll have to write more original content instead, I will see what I can do.

April 24, 2008

Twitter Updates for 2008-04-24

Filed under: General — Andy Todd @ 11:59 pm
  • Dodging the rain by ducking into cafes #
  • @alang I’m there. With bells on. #
  • Another skinny cappuccino? Oh alright then. #
  • Getting the barbecue ready? #
  • Preparing the barbecue to burn a load of meat and fish #

Powered by Twitter Tools.

« Previous PageNext Page »

Powered by WordPress