… because there are oh-so-many tablet Macs. There are ModBooks and there are non-Apple tablet machines running Mac OS X. So, if you have such a device and are looking for something that provides a surface on which to draw, write, etc., with various “pens” and with the ability to save to PDF and PNG, [...]
¶
Posted 07 May 2010
† 2718.us
§
Mac OS X
‡
°
Tagged: journal, mac, mac os x, mac osx, macwj, mit, mit license, modbook, os x, tablet, tablet pc, windows journal
A comment on a bitbucket fork of Murky led me to “Automatically localize your nibs when building“, which suggests a great way to automate the hard developer-side stuff in localizing in Xcode–pulling the original strings from the XIB files and putting the translated strings back in. You absolutely should read the original blog post there, [...]
¶
Posted 22 April 2010
† 2718.us
§
Mac OS X
‡
°
Tagged: build script, internationalization, localization, mac, nib, os x, run script, script, sh, shell, shell script, target, xcode, xib
I’m changing the license on most (maybe all) of my active open-source projects, largely because the MIT license does not have as many blanks that have to be filled in as the New BSD license and the language is a bit simpler. To the best of my knowledge, any rights granted under the New BSD [...]
When I was using Subversion for version control in working on my Mac apps in Xcode, I had come to use a build script phase to tack on the subversion revision number as the last part to the version number: # tack the subversion revision number onto the CFBundleVersion REV=`svnversion -n "${PROJECT_DIR}"` REV=${REV/#[0-9]*:/} REV=${REV//[^0-9]/} BASE=`/usr/libexec/PlistBuddy [...]
The Google Code support wiki article ConvertingSvnToHg is quite easy to follow, but there is one thing worth noting that is kind of buried in the comments. Assuming you’re doing full history conversion, it is very useful to know that running hg convert locally is much much faster than running it on a remote SVN [...]
I have very happily been using Subversion since 2008. I was quite clearly late to the version control system (VCS) party and I wish I’d known about VCS much earlier. About 5-6 months ago, I finally gave in and tried Mercurial and hated it. While I could kind of get my head around why I [...]
Following the advice of Kevin Ballard on StackOverflow, I created IGIsolatedCookieWebView, a subclass of WebView that does not access or affect the system-wide shared cookie storage (shared among all WebKit apps). Each instance of IGIsolatedCookieWebView has its own cookie storage so that, for example, multiple instances of IGIsolatedCookieWebView within the same application can be logged in [...]
¶
Posted 11 March 2010
† 2718.us
§
Mac OS X
‡
°
Tagged: cocoa, cookie, cookies, IGIsolatedCookieWebView, isolated cookies, mac, mac os x, mit, mit license, os x, stackoverflow, subclass, webkit, WebView
IGResizableComboBox is a drag-resizable subclass of NSComboBox—that is, IGResizableComboBox should be usable in place of NSComboBox and it adds a small bar at the bottom of the pop-up list that can be dragged to resize the pop-up list. IGResizableComboBox is published under a 3-clause BSD an MIT license. It still has some quirks: behavior is [...]
¶
Posted 10 March 2010
† 2718.us
§
Mac OS X
‡
°
Tagged: cocoa, combo box, combobox, drag, drag-resizable, IGResizableComboBox, mac, mac os x, mit, mit license, nscombobox, os x, resizable, resizable combo box, resizable combobox, subclass
StartCom is the certificate authority providing StartSSL certificates: unlimited 1-year domain-validated single-site SSL certificates for free (“Class 1″); unlimited 2-year domain-validated single-site, UCC, or wildcard certificates after paying $39.90 to further validate your account (“Class 2,” which necessitated photo IDs and a phone call, and is good for 1 year); 2-year EV certificates for $149.90 [...]
¶
Posted 03 November 2009
† 2718.us
§
Web Programming
‡
°
Tagged: certificate, certificate authority, certificates, free, free ssl, ssl, ssl certificates, startcom, startssl, tls, ucc, wildcard, wildcard certificate
Of all the various services that I use/host online, I consider email to be, by far, the most critical. It’s been over 11 years since I registered my first domain name so as to have a permanent email address regardless of changes in educational institution or employer. I’ve gone through a variety of email setups [...]