Procrastination Dash

March 29, 2007

Just read an interesting method of avoiding procrastination, or rather motivating yourself to work on certain tasks. By doing tiny amounts of tasks you realise how easy the task is and thus how easily you can complete it. Not sure what you might do if the task isn’t easy however.

Sounds like an interesting idea, I’ll give it a go over the next week or so.
Link: Kick Procrastination’s ass: Run a dash

Yes, I was procrastinating by writing this. I have an assignment due tomorrow.


Racial Separation in Australia

March 23, 2007

I recently received this chain letter in my email:

Subject: im proud.u call me racist
Okay, now that i have your attention.

There are Aboriginals, ,Torres Strait Islanders, Kiwi Australians, Lebanese Australians, Asian Australians, Arab Australians, Boat People from all over the place., etc. And then there are just Australians.

You pass me on the street and sneer in my Direction.

You Call me ” Australian Dog”, “White boy”, “Cracker”, “Honkey”, “Whitey”, “Caveman” . And that’s OK. But when I call you, Black Fellarr, Kike, Towel head, Sand-nigger, Sheep Shager Camel Jockey, Gook, or Chink, You call Me a racist.

You say that whites commit a lot of violence against you, so why are the Housing Estates the most dangerous places to Live?

You have the United Arab’s union, College Fund. You have Invasion Day. You Have Yom Hashoah ,You have Ma’uled Al-Nabi. If we had WET (White Entertainment Television),
.We’d be racists.

If we had a White Pride Day .. You would call us Racists.

If we had White History Month, we’d be racists.

If we had any organization for only whites to”advance” OUR lives . We’d be racists.

If we had a college fund that only gave white Students scholarships….. You know we’d be racists.

“White colleges” ..THAT would be a racist college.

You can march for your race and rights. If we marched for our Race and rights, You would call us racists.

You are proud to be black, brown, yellow and Orange, and you’re not afraid to announce it. But when we announce our White pride .You call us racists.

You rob us, carjack us, and shoot at us. But, when a white police officer shoots a Muslim gang member or beats up a Lebanese Drug-dealer running from the law and posing a threat to society,
You call him a racist.

I am proud. But, you call me a racist.

Why is it that only whites can be racists?

There is nothing improper about this e-mail.

Let’s see which of you are proud enough to send it on.
And if you don’t send it on, you’ll be eaten alive on next wednesday, ( or something along the lines of that shit. )

First of all, I’d like to know what is meant by “And then there are just Australians”. Who is just Australian? People born in Australia? I’m pretty sure many Aboriginal Australians are born in Australia. Or by ‘just Australian’ are you talking about people from White European background? Take a look at your family history and I think you’ll find that all of your descendants arrived in Australia on boats from all over the place.

Read the rest of this entry »


OpenOffice – It’s Not Cheating

March 8, 2007

With the launch of Microsoft’s new suite of software with an interface make-over comes an offer no money saving uni student could refuse. Microsoft Office Ultimate 2007, for $75. The website advertising it all – itsnotcheating.com.au – is clearly aimed at uni students who pirate their copies of Office. After all how many students can afford the pricey Office suite, even with a normal student discount? It sounds like a great deal – you can even get a year’s trial for only $25, however I propose a better one. How about free? And no it is not cheating.

OpenOffice has been around for quite a while, however it is only just starting to pick up momentum as it becomes discovered by more and more individuals, businesses, and NPOs. The great thing about OpenOffice is that it follows the open standard. Basically this means that it is designed in such a way that features can be continually added, and remain standard across all office software which use the OpenDocument format.

The OpenDocument format was created as an ‘open-source’ format with the purpose of unifying all of the different document types into one public standard. Remember how annoying it was not being able to open Office 2000 documents with Office 97? OpenOffice can open both of these formats, and many more, however you are encouraged to save documents in the OpenDocument format. So it would seem logical that Microsoft’s new Office would embrace this new ‘universal’ format to eliminate all of the compatibility problems. Instead, in the Microsoft tradition, the company has opted to create yet another proprietary format, the Office 2007 format. By default, files saved in Microsoft Office 2007 cannot be opened in Office 2003. So Microsoft released a patch. Another bandage to fix up another wound.

One more thing to note – Microsoft’s offer is only available to Australian university students, and expires 28 May 2007. OpenOffice is free for anyone, for any use, forever.

Office 2007 (Australia University Students only)
OpenOffice


Version your Essays – Part I

March 7, 2007

Subversion is almost a necessity for many programmers. However it is rarely thought of as a tool for “versioning” essays, study, letters, documents etc.

What is Subversion?

Subversion (or SVN) was designed to be a successor of CVS, another “version control” system. Basically what they do is keep track of every version of a file in a folder you specify. So for example when writing a program, you may try adding a new feature only to find that it screws up big-time, and you want to go back to an old working version. Subversion allows you to do this. However it can also be a very useful tool for general document work. For example, if you are using Microsoft Word, you can pick two different “revisions” (or versions) of your document and compare the changes in them.

Why use Subversion?

  1. Subversion Revision LogKeeping backups
    You don’t have to worry about hundreds of old backup files lying around. Subversion keeps track of the date at which each file was versioned. You can also place notes on each revision. When you have finished working on the documents, you simply “Commit” the files to Subversion, which creates a new revision. You can then revert back to any revision at any time. You can also compare changes between two or more revisions.
  2. Synchronising files
    You might have a bunch of documents on a USB stick which you would also like to have on your PC at home. This way you can edit the files when your USB stick isn’t plugged in. Subversion can keep track of what has changed, and commit only the changes made to the database. Subversion was designed with collaborative work in mind.

Check back for Part II – How to use Subversion

Meanwhile, check out Subversion on a stick