Graduation

Today I had my graduation from my Bachelor of Computer Science course. Feels good to finally have it done, and interesting in a way that I should now be looking for full time work. There is the option of going back to studies for a while longer, but at the moment, I don't think I would do that.

I have included a couple of photos in the post below of the testamur and me in my gown, hood and mortarboard!

Testamur

My Testamur, which will be hung up, as soon as I get a hook....

Before Graduation

Me in my Gown, Hood and Mortarboard.

Published: 25 September 2007 # — Tags: university

Touchdown

I now have my uni results for this semester, and I think I should let the following speak for itself:

Total Credit Points achieved for course including academic credit: 240

Total Credit Points required for course completion: 240

So yes, this means I have finished! :) While the university has not sent out the confirmation of graduation letter yet, this means I will be graduating in September.

It is quite good news, and means that I should probably start looking for full time work soon.

Published: 17 July 2007 # — Tags: university

Uni's over, and fun weeks ahead.

So, I thought I better make a entry to note that I am finally on [HTML_REMOVED]STUVAC[HTML_REMOVED], and with only two tests (and one presentation) this semester, it should be a rather easy, but still study-full end of semester.

Mind you, besides for the above, I have some really interesting shows/concerts coming up, which will be fun to work at, including such as: Pearl Jam, U2, AFI & Billy Joel.

Today, mum flew out to see her sister ... well eventually ... the flight was nicely delayed (thanks Qantas!). But I do guess safety is their main concern.

The good thing tho, is that after my exams, I am on holidays till next year... which means that I can finally put some time into getting my [HTML_REMOVED]new site[HTML_REMOVED] up and running.

For now, Study and Presentation readiness time.

Published: 6 November 2006 # — Tags: university, update

awk and sed.

Another of my subjects this semester at uni, had me using a bit of awk and sed this week just gone, and I must say, that I now do have a more understanding knowledge of both of these tools.

Before I did understand how to do rather small things with each (like change instances of words, to another word, and pull out every 4th word from a sentence to use elsewhere), I never did try and go any more into either of them.

As you can see from the following code snippets, I think I have dug a bit more into these tools.

[HTML_REMOVED]sed:[HTML_REMOVED] Change the order, of the first two parameters called by a function [HTML_REMOVED]s/somefunc((.),(.)(,.*))/somefunc(2,13)/g[HTML_REMOVED]

[HTML_REMOVED]awk:[HTML_REMOVED] add line numbers to each line of a source file, without skipping numbers. Comments should not be numbered. [HTML_REMOVED] { if ($1 ~////) { printf("%5st%sn", "", $0); next } } { if ($1 ~//*/) { z = 1; printf("%5st%sn", "", $0); next } } { if ($1 ~/*//) { z = 0; printf("%5st%sn", "", $0); next } } { if (z > 0) { printf("%5st%sn", "", $0); next } } { printf("%5st%sn", (NF? ++a ":" :""), $0) } [HTML_REMOVED]

A sample output for this awk script would be: [HTML_REMOVED] 1: #include [HTML_REMOVED]

    // main routine

2: int main(int argc, char argv[]) 3: { / Incredibly complex function here -- * it prints hello world */ 4: printf("%s", "Hello, world"); 5: return 0; // return zero! 6: } [HTML_REMOVED]

And comparing what I did, to some other features of these tools, this is still only the beginning of their abilities.

Published: 16 March 2006 # — Tags: linux, university

Some code

Oh, while I blog for a bit, I have put up on the site, some code I have done recently. Not all of it has been completed however, but usable somewhat.

First is mininova information query (mniq). It is written in python and atm only has a info command. It can be found at [HTML_REMOVED]www.atomicirc.com/mniq[HTML_REMOVED]

Secondly, is my submission I made for one of my Assignments at University, which I got full marks for. It's basically a slim line IRC sever and client, which is not much to look at. It can be found at [HTML_REMOVED]www.atomicirc.com/dsap[HTML_REMOVED]

Published: 22 November 2005 # — Tags: code, university