Blog

Share Google Analytics Account

Posted in | »

Google analytics accounts can be shared with other Google account holders.

Submitted by Jonathan Mitchell on Fri, 03/26/2010 - 11:48

Automatically extract zipped attachments received on postfix mail account

Posted in | »

The desire here is to call a Drupal path when email is received on a specific email account. The email in question contains a zipped archive of images that we want to import into Drupal.
Submitted by Jonathan Mitchell on Fri, 03/26/2010 - 09:46

Application Screencasting - ScreenFlow, QuickTime and Flash

Posted in | »

Just a few notes on my own screencasting efforts.

My KosmicTask screencast is intended to be a marketing and promotional aid as well as providing a user level introduction to the application. As such I want the finished screencast to be produced to a reasonably high standard.

Submitted by Jonathan Mitchell on Fri, 03/12/2010 - 20:27

KosmicQuitter - Positive MacWorld Review

Posted in | »

MacWorld has given a very positive review of KosmicQuitter.

Read it here http://www.macworld.co.uk/macsoftware/reviews/index.cfm?reviewid=3833

Submitted by Jonathan Mitchell on Wed, 03/10/2010 - 17:12

NSEvent Timestamp

Posted in | »

A category on NSEvent suitable for NSEvent time stamping.

Submitted by Jonathan Mitchell on Thu, 01/07/2010 - 16:32

Track GC Memory Usage Using Instruments

Posted in | »

When tracking GC memory usage it is essential to be able to examine the heap object graph. That's where Instruments comes in.

Submitted by Jonathan Mitchell on Tue, 01/05/2010 - 14:47

Detecting Mouse Down NSEvent in NSView Subviews

Posted in | »

I want to detect mouse down events in the subviews of an NSView so that I can highlight the NSView whenever any of its subviews are clicked.

The first thing we need is to build a list of the window subviews that want to be informed whenever one their subviews is clicked. We we are going to need an NSWindow subclass, say MGSMyWindow.


@interface MGSMyWindow : NSWindow {
	NSHashTable *_clickViews;
}

- (void)addClickView:(NSView *)aView;
@end

The use of NSHashTable indicates that garbage collection is required.

We initialise our window like so:

Submitted by Jonathan Mitchell on Sat, 01/02/2010 - 23:18

So Exactly Why are My Find Panel Buttons Dimmed?

Posted in | »

My NSTextView find panel buttons are dimmed and I don't know why.

The Cocoa NSTextView docs refer to dimmed find panel buttons if the text view is made not selectable. But that isn't the case. My text view is both editable and selectable.

I have been implementing my applications menu and toolbar validation code so I suspect that have misrouted something in the responder chain.

Submitted by Jonathan Mitchell on Fri, 01/01/2010 - 16:52

Time Machine Backup and Restore on Iomega StorCenter ix2-200d

Posted in | »

Wanting to provide networked Time Machine backups for a number of macs I decide to try the Iomega StorCenter ix2-200d. This has a wide feature set and a low entry price. Of course, you can build your self a FreeNAS based system that will offer much of the same functionality but the automatic support for Time Machine is what did it for me.

Submitted by Jonathan Mitchell on Mon, 12/28/2009 - 21:42

Progress Report

Posted in | »

The next release of KosmicTask will be Beta 2 which should arrive before Christmas.

23 issues have dealt with according to the issue tracker with 6 remaining that target Beta 2.

Main improvements in Beta 2 will be a completed application menu, improved editing, improved memory usage and lots of GUI fixes. Task result saving is correctly implemented. Fixed a hard to isolate reconnection issue when stopping and starting multiple network instances.

Beta 2 should be feature and implementation complete.

Submitted by Jonathan Mitchell on Wed, 12/16/2009 - 23:16