Archive for category development

Why I sometimes love Objective-C

[thisPC setObject:[[NSMutableString alloc] initWithString:[NSString stringWithFormat:@"-m 256 -net nic -net user -cdrom %@ -boot d -localtime", (additionalHardwarePath) ? additionalHardwarePath : [NSString stringWithString:@"/dev/cdrom"]]] forKey:@"Arguments"];

;)

No Comments

A quick look at Objective-C 2.0

Apple will introduce a new version of it’s Objective-C language dialect in Mac OS X Leopard. I recently found a nice review of some key features, no astonishing things IMHO, but still very useful.

osnews.com – News
informit.com – Article: Behind the Scenes of Objective-C 2.0

I will hopefully get my hands on a Leopard Developer Preview soon to have some fun with CoreAnimation.. ;-)

cordney*

No Comments

XTorrent – another David Watanabe production [Update]

XTorrent is another filesharing application for Mac OS X. It is developed by the author of Acquisition – the state-of-the-art filesharing app for Mac.

As I recognised it was from the same author as Acquisition thoughts were flashing into my mind:
- Did he really write a Bittorrent client from the scratch?
- No he wouldn’t. So which open source app did he choose to build upon then?

The answer was easy: Transmission. Of course all of you Q users know Transmission, it’s built right into Q for downloading new Guest PCs from FreeOSZoo. No mentioning of this neither on the product website nor on his blog. Only mentioning in the license agreement if you scroll down… “Xtorrent contains source code from libtransmission [...]“ and on the about pane:

No linking to the website of Transmission project, only a slight hint to what the software is based upon.. “[...] uses code from the libtransmission project.” – does he want to hide something? It seems indeed he wants to promote it as being his work, as writing on his blog entry announcing it: “Xtorrent is an advanced torrent client that has been in development for several months.”

He might be legally right, but one could ask if this is morally ok?! He could have just helped the Transmission team making a better Graphical User Interface (GUI) instead of making money of it. Although I have to admit that his GUI work is really nice, I don’t think many people will pay for it. Yes, it’s free for the moment as it is Beta software, but you know him, he will charge for it soon. :-/

What’s the moral? Use free Transmission Bittorrent client and support the original authors (Or, as to say with David’s words: “Support people, not corporations.”***

*** I’m not quite sure if I quote him right from within early Acquisition releases, correct me if I’m wrong.

Update: It seems that he uses libtransmission in Acquisition also.

cordney*

4 Comments

My tools and resources

If you ever wondered about what tools and resources I use for development, here they are:

Tools
Coding:
- SubEthaEdit – Collaborative text editor, great code highlighting
- XCode (of course)
- Terminal (my second home already, because we use a custom Makefile in Q)

Other Tools:
- Subversion – great version management
- Quicksilver – insanely great app launcher, along with the Developer Module even better for searching the Apple Developer Docs!
- Transmit – best FTP and SFTP client

Resources:
- Google search: cocoa …
- scotlandsoft
- Apple Developer Docs, of course
- CocoaDev.com

No Comments

Apple’s Secure Coding Guide

Apple’s Developer Connection recently posted an article about secure coding on Mac OS X. It features topics about typical security issues and gives hints on avoiding them.

For all of you who are interested: Secure Coding Guide

No Comments