-
Archives
- October 2023
- June 2022
- June 2020
- December 2019
- July 2019
- June 2019
- May 2019
- October 2018
- April 2018
- March 2018
- December 2017
- May 2017
- October 2016
- August 2016
- June 2016
- May 2016
- November 2015
- October 2015
- June 2015
- March 2015
- November 2014
- October 2014
- May 2014
- January 2014
- September 2013
- August 2013
- July 2013
- April 2013
- December 2012
- November 2012
- August 2012
- June 2012
- May 2012
- March 2012
- January 2012
- December 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- September 2009
- June 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- June 2008
- May 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- March 2006
- February 2006
- December 2005
- November 2005
- October 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
-
Meta
Category Archives: Writing Software
Java class file version numbering
http://alumnus.caltech.edu/~leif/opensource/bcver/BcVerApp.html This page has a list which shows how java class version numbers relate to java platform version numbering. It’s useful if you get one of those UnsupportedClassVersionError errors. This relates to the Java ClassFile structure which defines how classes … Continue reading
Linux autologin
I use a collection of virtual machines in parallels for a number of things, like testing SQLEditor and running web apps that would otherwise require lots of software dependencies. However I’ve been getting tired of logging in to my linux … Continue reading
Posted in Linux, Writing Software
1 Comment
MacFuse released – userspace Mac OS X file systems
I just noticed this announcement on the google mac blog. Amit Singh has released a mac version of Fuse, which is way for people to write interesting extensions to the file system without writing kernel code. The way it works … Continue reading
Writing Unit tests for Cocoa
I realized something interesting today. I use unit testing to (hopefully) improve the quality of my code. With Java I use JUnit. With native Mac stuff I use OCUnit. One really clever thing about OCUnit that I realized today is … Continue reading
Posted in Macintosh, Writing Software
Tagged development, junit, mac, ocunit, unit-testing
Leave a comment
Crash with WSMethodInvocationInvoke and malformed XML
I’ve been doing some stuff recently with XMLRPC for both SQLEditor and an unannounced new product. One of the key parts of XMLRPC in cocoa is the Apple web services Core. It provides almost everything you need to use web … Continue reading
Posted in Macintosh, Writing Software
Leave a comment
Forum for malcolmhardie.com
Following the suggestions in this article, I’ve been considering forum software recently to offer customers (and others) somewhere to discuss SQLEditor. Currently I’m considering PunBB, because it seems to be simple, fast and well received by reviewers and users. PhpBB … Continue reading
Posted in Internet Stuff, SQLEditor, Writing Software
Leave a comment
flyspray subversion integration
Somebody asked me to post a link to the script that integrates flyspray and subversion: Script is Attached to Bug 301
Posted in Writing Software
Leave a comment
DocBook and Apple Help
One of the key tools I’ve been using recently is Docbook. Docbook is an xml-schema which can be used to write documentation for things. This can then be converted via the wonders of XSL, XML and XML-FO processors into PDF, … Continue reading
Posted in Macintosh, Writing Software
2 Comments
SQLEditor released!
After a rather over-extended development cycle SQLEditor version 1.0 has now been released. Which is a great relief to me. I’ve been working on it for so long now that I can’t quite remember not working on it, which is … Continue reading
Posted in Macintosh, SQLEditor, Writing Software
Leave a comment
Writing Documentation
I’m currently in the middle of writing user documentation of SQLEditor. I finally settled on docbook as the format of choice since it seems the most compatible with other things. I’m using this tutorial to build the stuff although saxon … Continue reading
Posted in Macintosh, Writing Software
Leave a comment
Integrate flyspray with CVSWeb
Currently I’m using flyspray for bug tracking. I use cvsweb to view the cvs tree online. One thing that I really wanted was to be able to click one bug numbers in the cvs log reports and see the bug … Continue reading
Posted in Internet Stuff, Writing Software
1 Comment
Java FileWriter, XML and UTF-8
Oddly enough the java.io.FileWriter class doesn’t use UTF-8 by default. I’m not exactly sure what the default encoding is (possibly ISO-8859-1 or US-ASCII?) but it doesn’t seem to be UTF-8, which is odd given that java strings are supposed to … Continue reading
Posted in SQLEditor, Writing Software
43 Comments
Cocoa#
I’ve been playing around a bit recently with mono and cocoa#. There also seems to be an experimental build of Mono-develop. I begin to think that .net and mono are going to be excellent java competitors. I also think that … Continue reading
Posted in General, Macintosh, Writing Software
Leave a comment
Online Store
I’ve been working recently on integrating a registration system into SQLEditor (sorry). Unfortunately I kind of need to make some money out of my software and so people have to pay for it. I really wish this wasn’t the case … Continue reading
Posted in SQLEditor, Writing Software
Leave a comment
Serial Number Systems
I’ve recently been trying to write a serial number system for SQLEditor. I’m also looking for a new name for it. It was pointed out that the current name is generic and difficulty to pronounce, plus there is already at … Continue reading
Posted in SQLEditor, Writing Software
1 Comment
NSLog
I just realised that NSLog allows parameters. I’d previously been using NSLog([NSString stringWithFormat:@”%d”,randomVar]) … But now I realise that the I don’t really need to do this. A simple call to NSLog will work as well. NSLog(@”%d”,randomVar); It still isn’t … Continue reading
Posted in SQLEditor, Writing Software
Leave a comment
Shareware and Serial Numbers
Not much posting recently. But I’ve been working getting SQLEditor ready for release. The big things recently have been bug fixes and developing a serial number system. It’s extremely annoying to have to spend any time at all working on … Continue reading
Posted in General, SQLEditor, Writing Software
Leave a comment
Cross Platform Applications
With the announcement of Dashboard in Mac OS X 10.4 Apple, like many other companies, seems to have gone for a standards based approach. Dashboard is said to be based on HTML, CSS and javascript. A webpage in all but … Continue reading
Posted in General, Writing Software
Leave a comment
Definitions in spellchecker?
There have been lots of articles today in newspapers because the Oxford English Dictionary publishers have claimed that people are confused and choosing words incorrectly. For example “pouring” instead of “poring”. The problem being that people are basing the word … Continue reading
Posted in General, Writing Software
1 Comment
New day, new thoughts
Well, I feel much better today. I’ve thought about it a bit more and I realise how very lucky I was that I found about the bug before the thing got a public release. I’m already working on some ideas … Continue reading
Posted in SQLEditor, Writing Software
Leave a comment