<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>hamishrickerby.com - Latest Comments</title><link>http://itickedthewrongbox.disqus.com/</link><description>None</description><atom:link href="https://itickedthewrongbox.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 01 Aug 2018 23:20:40 -0000</lastBuildDate><item><title>Re: Updating a UITableView Without Calling reloadData</title><link>https://hamishrickerby.com/2012/07/06/updating-a-uitableview-without-calling-reloaddata/#comment-4017757405</link><description>&lt;p&gt;Thanks for sharing! 6 years later still just what I needed.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexandre Goloskok</dc:creator><pubDate>Wed, 01 Aug 2018 23:20:40 -0000</pubDate></item><item><title>Re: Automator - Automation of Sending Email With Attachments</title><link>https://hamishrickerby.com/2008/01/23/automator-automation-of-sending-email-with-attachments/#comment-3539488783</link><description>&lt;p&gt;The AppleScript way to send messages without showing &lt;a href="http://Mail.app" rel="nofollow noopener" target="_blank" title="Mail.app"&gt;Mail.app&lt;/a&gt; — &lt;a href="http://www.mactech.com/articles/mactech/Vol.21/21.09/ScriptingMail/index.html" rel="nofollow noopener" target="_blank" title="http://www.mactech.com/articles/mactech/Vol.21/21.09/ScriptingMail/index.html"&gt;http://www.mactech.com/arti...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ed</dc:creator><pubDate>Wed, 27 Sep 2017 17:14:01 -0000</pubDate></item><item><title>Re: Automator - Automation of Sending Email With Attachments</title><link>https://hamishrickerby.com/2008/01/23/automator-automation-of-sending-email-with-attachments/#comment-3328068880</link><description>&lt;p&gt;Right click on file -&amp;gt; Services -&amp;gt; then the title of your automator action maybe?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rickerbh</dc:creator><pubDate>Sat, 27 May 2017 20:14:55 -0000</pubDate></item><item><title>Re: Automator - Automation of Sending Email With Attachments</title><link>https://hamishrickerby.com/2008/01/23/automator-automation-of-sending-email-with-attachments/#comment-3327604668</link><description>&lt;p&gt;I know this is an older column but when I do this I do not have the option when I right click.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jayip54</dc:creator><pubDate>Sat, 27 May 2017 13:57:01 -0000</pubDate></item><item><title>Re: Interface Segregation - Hamish Rickerby</title><link>https://hamishrickerby.com/2016/08/04/interface-segregation/#comment-2819987425</link><description>&lt;p&gt;Quick stab a python closest fit. The abstract classes will at least throw errors at object instantiation time.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre&gt;&lt;code&gt;&lt;br&gt;&lt;br&gt;from abc import ABCMeta, abstractmethod&lt;br&gt;&lt;br&gt;class Animal:&lt;br&gt;  __metaclass__ = ABCMeta&lt;br&gt;  species = ''&lt;br&gt;  legs = 0&lt;br&gt;&lt;br&gt;  @abstractmethod&lt;br&gt;  def speak(self):&lt;br&gt;    pass&lt;br&gt;&lt;br&gt;class Egg:&lt;br&gt;  __metaclass__ = ABCMeta&lt;br&gt;&lt;br&gt;  @abstractmethod&lt;br&gt;  def hatch(self):&lt;br&gt;    pass&lt;br&gt;&lt;br&gt;class Viviparous:&lt;br&gt;  __metaclass__ = ABCMeta&lt;br&gt;&lt;br&gt;  @abstractmethod&lt;br&gt;  def birth(self):&lt;br&gt;    pass&lt;br&gt;&lt;br&gt;class Oviparous:&lt;br&gt;  __metaclass__ = ABCMeta&lt;br&gt;&lt;br&gt;  @abstractmethod&lt;br&gt;  def lay(self):&lt;br&gt;    pass&lt;br&gt;&lt;br&gt;class ChickenEgg(Egg):&lt;br&gt;  def hatch(self):&lt;br&gt;    return Chicken()&lt;br&gt;&lt;br&gt;class Chicken(Animal, Oviparous):&lt;br&gt;  species = "Gallus gallus domesticus"&lt;br&gt;  legs = 2&lt;br&gt;&lt;br&gt;  def speak(self):&lt;br&gt;    return "Cluck"&lt;br&gt;&lt;br&gt;  def lay(self):&lt;br&gt;    return ChickenEgg()&lt;br&gt;&lt;br&gt;def birthSays(parent):&lt;br&gt;  return parent.birth().speak()&lt;br&gt;&lt;br&gt;&lt;/code&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dean O'Connor</dc:creator><pubDate>Thu, 04 Aug 2016 00:08:11 -0000</pubDate></item><item><title>Re: Installing f2c on a mac</title><link>http://hamishrickerby.com/2009/02/20/installing-f2c-on-a-mac/#comment-2693941680</link><description>&lt;p&gt;I'm having trouble getting a successful install with this, with the following errors:&lt;/p&gt;&lt;p&gt;---------------------------------------------&lt;/p&gt;&lt;p&gt;6. Creating and installing f2c translator ...&lt;/p&gt;&lt;p&gt;---------------------------------------------&lt;/p&gt;&lt;p&gt;./xsum Notice README cds.c data.c defines.h defs.h equiv.c error.c exec.c expr.c f2c.1 f2c.1t f2c.h format.c format.h formatdata.c ftypes.h gram.c gram.dcl gram.exec gram.expr gram.head &lt;a href="http://gram.io" rel="nofollow noopener" target="_blank" title="gram.io"&gt;gram.io&lt;/a&gt; init.c intr.c io.c iob.h lex.c machdefs.h main.c makefile.u &lt;a href="http://makefile.vc" rel="nofollow noopener" target="_blank" title="makefile.vc"&gt;makefile.vc&lt;/a&gt; malloc.c mem.c memset.c misc.c names.c names.h niceprintf.c niceprintf.h output.c output.h p1defs.h p1output.c parse.h parse_args.c pccdefs.h pread.c proc.c put.c putpcc.c sysdep.c sysdep.h sysdeptest.c tokens usignal.h vax.c version.c xsum.c &amp;gt;xsum1.out&lt;/p&gt;&lt;p&gt;/bin/sh: ./xsum: Permission denied&lt;/p&gt;&lt;p&gt;make: *** [xsum.out] Error 126&lt;/p&gt;&lt;p&gt;cp: f2c: No such file or directory&lt;/p&gt;&lt;p&gt;ln: /bin/f2c: Operation not permitted&lt;/p&gt;&lt;p&gt;... done.&lt;/p&gt;&lt;p&gt;---------------------------&lt;/p&gt;&lt;p&gt;7. Installing fc script ...&lt;/p&gt;&lt;p&gt;---------------------------&lt;/p&gt;&lt;p&gt;ln: /bin/fc: Operation not permitted&lt;/p&gt;&lt;p&gt;ln: /bin/f77: Operation not permitted&lt;/p&gt;&lt;p&gt;... done.&lt;/p&gt;&lt;p&gt;Does anyone have any advice, I can't make heads or tails of what the issue is.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Erik J. Lessac-Chenen</dc:creator><pubDate>Tue, 24 May 2016 22:38:10 -0000</pubDate></item><item><title>Re: Core Data Migrations and Large Data Sets</title><link>http://hamishrickerby.com/2012/06/04/core-data-migrations-and-large-data-sets/#comment-2390494488</link><description>&lt;p&gt;When creating the old a new MOCs, is there a way to determine the current (old) model name, as well as the latest model name? I'm guessing the `modelName` here: `[[NSBundle mainBundle] URLForResource:modelName withExtension:@"mom" subdirectory:@"Scanner.momd"]` should be name of the "version", but I'm not sure how to get these at runtime, as in my case, the source model name is unknown at compile-time (I need to handle multiple cases).&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ernest Surudo</dc:creator><pubDate>Thu, 03 Dec 2015 06:53:15 -0000</pubDate></item><item><title>Re: Core Data Migrations and Large Data Sets</title><link>http://hamishrickerby.com/2012/06/04/core-data-migrations-and-large-data-sets/#comment-2058419377</link><description>&lt;p&gt;Where do i have to add this code? Also how to migrate multiple entitiy with relationship between them.&lt;/p&gt;&lt;p&gt;Also i have an entity which is having relationship with itself, will this work in that case.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ARUN GUPTA</dc:creator><pubDate>Tue, 02 Jun 2015 13:42:07 -0000</pubDate></item><item><title>Re: Installing f2c on a mac</title><link>http://hamishrickerby.com/2009/02/20/installing-f2c-on-a-mac/#comment-2015246011</link><description>&lt;p&gt;Truly, a great help, Hamish! You just saved the day for me. Thanks a lot!!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Chet.S.K</dc:creator><pubDate>Sat, 09 May 2015 09:41:37 -0000</pubDate></item><item><title>Re: Updating a UITableView without calling reloadData - Hamish Rickerby</title><link>http://hamishrickerby.com/2012/07/06/updating-a-uitableview-without-calling-reloaddata/#comment-1940787581</link><description>&lt;p&gt;This saved my day, thank you for sharing!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael</dc:creator><pubDate>Wed, 01 Apr 2015 17:47:31 -0000</pubDate></item><item><title>Re: iPhone &amp;#038; iPad (iOS) Localizations and Regions</title><link>http://hamishrickerby.com/2010/07/23/iphone-ipad-localizations-regions/#comment-1814123302</link><description>&lt;p&gt;Awesome. I was fighting with this for days. Thanks a lot!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alan Jeferson</dc:creator><pubDate>Fri, 23 Jan 2015 22:29:02 -0000</pubDate></item><item><title>Re: Updating a UITableView without calling reloadData - Hamish Rickerby</title><link>http://hamishrickerby.com/2012/07/06/updating-a-uitableview-without-calling-reloaddata/#comment-1776156906</link><description>&lt;p&gt;not work..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nik</dc:creator><pubDate>Wed, 07 Jan 2015 04:57:46 -0000</pubDate></item><item><title>Re: USSD Codes on iPhone</title><link>http://hamishrickerby.com/2009/07/31/ussd-codes-on-iphone/#comment-1693742132</link><description>&lt;p&gt;Thanks for the article Hamish. Perhaps letting the app programmatically saving the USSD codes as contacts and allowing the user to call them from the native Phone app is a workaround for this issue? Not clean or seamless by an means, but it could be much more convenient than the alternative. I haven't tested this of course. You could have a go at it in your test app if you're so inclined.&lt;/p&gt;&lt;p&gt;The hassle (to the user) could be mitigated if the app created a separate contacts group for the USSD codes.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">CrimReaper</dc:creator><pubDate>Fri, 14 Nov 2014 17:30:35 -0000</pubDate></item><item><title>Re: iPhone &amp;#038; iPad (iOS) Localizations and Regions</title><link>http://hamishrickerby.com/2010/07/23/iphone-ipad-localizations-regions/#comment-1584955795</link><description>&lt;p&gt;main.swift in your project — google it, it's on Stackoverflow.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">StuFF mc</dc:creator><pubDate>Thu, 11 Sep 2014 18:25:12 -0000</pubDate></item><item><title>Re: iPhone &amp;#038; iPad (iOS) Localizations and Regions</title><link>http://hamishrickerby.com/2010/07/23/iphone-ipad-localizations-regions/#comment-1584945418</link><description>&lt;p&gt;Very good question. There must be a way. If you find out, could you post back here?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rickerbh</dc:creator><pubDate>Thu, 11 Sep 2014 18:18:45 -0000</pubDate></item><item><title>Re: iPhone &amp;#038; iPad (iOS) Localizations and Regions</title><link>http://hamishrickerby.com/2010/07/23/iphone-ipad-localizations-regions/#comment-1584136773</link><description>&lt;p&gt;Now how would you do this with Swift? :) There's no Main anymore... I'm sure there's a way though...&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">StuFF mc</dc:creator><pubDate>Thu, 11 Sep 2014 09:48:08 -0000</pubDate></item><item><title>Re: USSD Codes on iPhone</title><link>http://hamishrickerby.com/2009/07/31/ussd-codes-on-iphone/#comment-1552408520</link><description>&lt;p&gt;I'm trying to accomplish the same thing but to no avail. Do you have any update on this?&lt;br&gt;My coworker told me there is a company already achieving this, but It's really hard to believe. &lt;br&gt;I want to know if  there is a way to achieve this without using official API&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nic</dc:creator><pubDate>Thu, 21 Aug 2014 02:01:46 -0000</pubDate></item><item><title>Re: Updating a UITableView without calling reloadData - Hamish Rickerby</title><link>http://hamishrickerby.com/2012/07/06/updating-a-uitableview-without-calling-reloaddata/#comment-1350427534</link><description>&lt;p&gt;Thanks, this works well&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">William</dc:creator><pubDate>Tue, 22 Apr 2014 12:17:19 -0000</pubDate></item><item><title>Re: Unit Test Code Coverage with Xcode 4.3.2 - Hamish Rickerby</title><link>http://hamishrickerby.com/2012/04/05/unit-test-code-coverage-with-xcode-4-dot-3-2/#comment-1221740146</link><description>&lt;p&gt;There is a Jenkins plugin already for uploading to testflight&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mindw0rk</dc:creator><pubDate>Wed, 29 Jan 2014 09:01:12 -0000</pubDate></item><item><title>Re: On hold...temporarily - Hamish Rickerby</title><link>http://hamishrickerby.com/2012/01/19/on-hold-dot-dot-dot-temporarily/#comment-1221738496</link><description>&lt;p&gt;There is a jenkins plugin already for uploading to testflight&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guest</dc:creator><pubDate>Wed, 29 Jan 2014 08:59:46 -0000</pubDate></item><item><title>Re: Updating a UITableView without calling reloadData - Hamish Rickerby</title><link>http://hamishrickerby.com/2012/07/06/updating-a-uitableview-without-calling-reloaddata/#comment-1204166924</link><description>&lt;p&gt;Works fine for me! Thank you!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Андрей Попов</dc:creator><pubDate>Thu, 16 Jan 2014 09:10:45 -0000</pubDate></item><item><title>Re: 99 Problems (but Haskell ain't one) - Hamish Rickerby</title><link>http://hamishrickerby.com/2012/07/14/99-problems-but-haskell-aint-one/#comment-1099947765</link><description>&lt;p&gt;Im trying the same thing dude!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roberto Rodriguez Jr</dc:creator><pubDate>Mon, 28 Oct 2013 16:10:32 -0000</pubDate></item><item><title>Re: DRYing out Objective-C - Identification - Hamish Rickerby</title><link>http://hamishrickerby.com/2013/02/23/drying-out-objective-c-identification/#comment-1099369123</link><description>&lt;p&gt;Thanks !&lt;br&gt;I didn't know that "Java/Simian seems to be interpreted by Jenkins as non-0".  This is the reason why my job is failure.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Denis Voznik</dc:creator><pubDate>Mon, 28 Oct 2013 08:24:22 -0000</pubDate></item><item><title>Re: Continuous Integration and iOS</title><link>http://hamishrickerby.com/2012/01/27/continuous-integration-and-ios/#comment-1086874443</link><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;awesome tutorial! Thank you very much for your afford.&lt;/p&gt;&lt;p&gt;I'm currently struggling to get Frank up and running. When i execute "rake build_lib" as you descripted i get the following error:&lt;/p&gt;&lt;p&gt;xcodebuild -workspace Frank.xcodeproj/project.xcworkspace -scheme Frank -configuration Release -sdk iphoneos7.0 BUILD_DIR=build clean build&lt;br&gt;Build settings from command line:&lt;br&gt;    BUILD_DIR = build&lt;br&gt;    SDKROOT = iphoneos7.0&lt;br&gt;xcodebuild: error: The workspace 'Frank' does not contain a scheme named 'Frank'.&lt;br&gt;rake aborted!&lt;br&gt;Command failed with status (65): [xcodebuild -workspace Frank.xcodeproj/proj...]&lt;br&gt;/Users/Gerling/Frank/Rakefile:9:in `block in &amp;lt;top (required)=""&amp;gt;'&lt;br&gt;/Users/Gerling/.rvm/gems/ruby-1.9.2-p320/bin/ruby_executable_hooks:15:in `eval'&lt;br&gt;/Users/Gerling/.rvm/gems/ruby-1.9.2-p320/bin/ruby_executable_hooks:15:in `&amp;lt;main&amp;gt;'&lt;br&gt;Tasks: TOP =&amp;gt; build_lib =&amp;gt; build_iphone_lib&lt;br&gt;(See full trace by running task with --trace)&lt;/p&gt;&lt;p&gt;Any help would be appreciated.&lt;/p&gt;&lt;p&gt;Regards Robert&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Robert</dc:creator><pubDate>Fri, 18 Oct 2013 05:49:47 -0000</pubDate></item><item><title>Re: Calculate age in objective-c</title><link>http://hamishrickerby.com/2010/01/07/calculate-age-in-objective-c/#comment-1071273940</link><description>&lt;p&gt;Just starting out learning Xcode and saw your scripts. I have been trying to figure out how to implement it all into an iPhone app. What to put in .h and what to put in .m and how it all links to the IB.&lt;/p&gt;&lt;p&gt;Probably too much to ask but I thought I would give it a go - any help or guidance would be appreciated.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Andy</dc:creator><pubDate>Sat, 05 Oct 2013 05:16:13 -0000</pubDate></item></channel></rss>