Planet::Articles
As I mentioned href="/website/blog/life/20080503-TucsLaunch.html">previously,
TUCS
had its first tech talk on Friday (delivered by myself, on the topic of Introductory Python), this is the first opportunity to show off photos from it. I was rather impressed by the turnout (there are a few people off to the side that can't be seen in the frame).
One feature that Python's built-in string replacement facilities does not provide is case-insensitive string replacement. This is a reasonably useful construct (that I use fairly frequently in other languages, such as PHP), which I couldn't find code for after Googling -- so here's some code that does it (licenced under the WTFPL, of course)
import re
def ireplace(self,old,new,count=0):
''' Behaves like string.replace(), but does so in a case-insensitive
fashion. '''
pattern = re.compile(re.escape(old),re.I)
return re.sub(pattern,new,self,count)
You can also subclass str in order to use it as a bound method:
import re
class str_cir(str):
''' A string with a built-in case-insensitive replacement method '''
def ireplace(self,old,new,count=0):
''' Behaves like S.replace(), but does so in a case-insensitive
fashion. '''
pattern = re.compile(re.escape(old),re.I)
return re.sub(pattern,new,self,count)
TUCS had its launch event yesterday, which consisted of a Barbecue, membership drive, and tech talk.
The Membership front was fairly successful, given that we managed to sign up somewhere in the order of 7 new members (which is not bad given how late in the semester it is, and that we weren't offering Alcohol at the event :)), hopefully we can get a few more before the end of the semester, as it would be nice to get some people who aren't part of the "usual crowd" to join in.
The main reason for this post was that I delivered the tech talk, on the topic of Introductory Python. Overall, I think it went fairly well, although I mistimed the talk such that I had to completely miss one section of the talk (which is a reminder of my debating days... but let's not get into that). Anyone who wants to comment on my talk (except for the sections where Bruce crashes -- I already know about this) is quite welcome to -- it's available in its entirety at Google Video
The day was quite successful. Here's hoping that TUCS can keep getting stronger!
Friday was our the first meeting of the new UTAS Computing Society Executive, which incidentally, was the first under our new name (TUCS). Since then lots of progress has been made:
- We launched our new Website, www.tucs.org.au.
- We began planning for the launch day for the new society, which is scheduled for Friday, May 2. We're having a barbecue, and performing a membership drive (since we didn't do that at the start of the year, in order to get the new society in order).
- Started a new series of Tech Talks. I'll be giving the first one on introductory Python, and we're planning on making this coincide with the society launch.
All in all, it's a somewhat exciting time to be doing Computing-related stuff at UTas (here's hoping it stays that way!)
Today was the AGM for the UTas Internet Developers' Society. Other than the usual blather that occurs in AGMs for these sorts of things, we've approved a change of name to TUCS (or rather the Tasmania University (union) Computing Society). For the moment this name change is purely cosmetic (as we really haven't done that much in the way of Internet Development for as long as I've been at the Uni. The new name (in my opinion) reflects the membership, and the aims of the society a lot better.
One item of Business that I raised was the upcoming Linux.conf.au 2009, which you probably already know by now is being held at the University of Tasmania in Hobart. It's been resolved that the Society establish better ties with the Free Software/Open Source Community (in Tasmania, in Particular with TasLUG) with the intention of better promoting Free/Open Source software amongst the student and staff body in the leadup to the conference; and I ran for the executive (successfully) on that basis.
Here's hoping it's a successful year for the society (which now has a cool name!)
After noticing the disparity of prices of Coca-Cola, I decided that it would be a good idea to map out the location of vending machines and their prices.
If you have a vending machine location on campus to point out to me, or if there has been a price shift at any location, let me know by e-mailing cpw at [the domain that this post is hosted at]
The 2008 ACM South Pacific Programming Contest Results have been confirmed: my team's come 3rd overall (as expected). We find out whether or not we've achieved a wild card position in the World Finals in December.
I was in the TUU Shop today, and did a double-take as I saw my surname staring back at me (it's in the top left corner of the wrapper).
Why a Brazilian chocolate company would call themselves "Neugebauer" is beyond me -- but I shalln't complain. The occasional ego trip can be healthy.
(Oh, and the chocolate itself wasn't particularly nice. Oh well :()
I generally have a policy of not allowing Flash onto my website (and sorry if any of you PLOAers object), but this opportunity was hard to pass up. Toni Westbrook has written Shredz64, a Guitar Hero-like-game for the Commodore 64. Following is part 2 of his video (the first part take a long time for him to get going, so I've not posted it here).
Enjoy...
A band that I've been quite impressed by of late is The Grammar Club, a four-piece rock/hip-hop group from the USA who produce their music collaboratively over the Internet. They relaunched their website recently, and whilst it is a really unfortunate all-flash job, they did provide a nice freebie to celebrate: a cover of Jonathan Coulton's Code Monkey.
If you approve of it, you can download their debut album, Bremelanotide from their website -- it's good!






