User zoul - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T06:44:18Zhttp://stackoverflow.com/feeds/user/17279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1798165#17981653Answer by zoul for What do you do to write better code?zoul2009-11-25T16:28:41Z2009-11-25T16:28:41Z<p>Lots of iterations.</p>
http://stackoverflow.com/questions/1795397/static-used-only-for-limiting-scope/1795415#17954154Answer by zoul for static - used only for limiting scope?zoul2009-11-25T08:18:33Z2009-11-25T08:24:30Z<p>An example to augment Kinopiko’s answer:</p>
<pre><code>#include <stdio.h>
int foo() {
static int foo = 0;
return ++foo;
}
int main() {
printf("%i\n", foo()); // 1
printf("%i\n", foo()); // 2
}
</code></pre>
<p>This can be used for example to return a safe pointer to a local function variable. Or in Objective-C it’s sometimes used to guard against repeated class initialization:</p>
<pre><code>- (void) initialize
{
static BOOL initialized = NO;
if (initialized)
return;
// …perform initialization…
initialized = YES;
}
</code></pre>
http://stackoverflow.com/questions/557341/best-cms-for-a-magazine5Best CMS for a magazine?zoul2009-02-17T15:24:44Z2009-11-23T11:45:37Z
<p>Hello! I am looking for a good content management system for a magazine. Main features I am looking for are (1) good content editor (preferably WYSIWYG) that would handle footnotes, tables and other content intricacies and (2) good templating system, so that I could change the site without too much hacking. Bonus points if it is written in something else than PHP (no offense).</p>
<p><em>Update:</em> Please do not simply submit the name of your favourite CMS. There are dozens of content management systems and I <em>know</em> most of them could be used to run a magazine. But does it have a good content editor? Do I have to insert markup by hand? How about footnotes? How about tables? Can you share some experience running something similar to a magazine?</p>
http://stackoverflow.com/questions/1775496/how-can-i-run-perl-test-suite-automatically-when-files-change2How can I run Perl test suite automatically when files change?zoul2009-11-21T13:34:41Z2009-11-23T09:44:09Z
<p>Hello! Is there a tool that would watch file changes in a directory tree of a Perl application and re-run the test suite every time I save changes to some module? Something akin to <a href="http://use.perl.org/~masak/journal/39639" rel="nofollow">masak’s tote</a>.</p>
http://stackoverflow.com/questions/1778492/unicode-support-in-web-standard-fonts/1778527#17785271Answer by zoul for Unicode support in Web standard fontszoul2009-11-22T12:08:55Z2009-11-22T12:08:55Z<p>Some random observations:</p>
<ul>
<li>On OS X the Unicode support is perfect, at least for your needs.</li>
<li>On Windows the situation seems to depend on the browser. I don’t use many arcane characters, but the few I do (mostly punctuation) seem to display just fine in Firefox. The only problem is in Internet Explorer, as usual.</li>
<li>If you have some control over your clients you could distribute some <a href="http://www.gnome.org/fonts/" rel="nofollow">good free fonts</a>?</li>
<li>Even <a href="http://webfonts.info" rel="nofollow">web fonts</a> could work.</li>
<li>One drawback to Unicode charactes is that they are often quite ugly. Too big, too small, have wrong position, etc.</li>
</ul>
http://stackoverflow.com/questions/1775486/how-do-i-create-a-cyclic-graph-of-immutable-objects-in-perl-and-moose5How do I create a cyclic graph of immutable objects in Perl and Moose?zoul2009-11-21T13:30:24Z2009-11-22T04:18:47Z
<p>This could seem like an obviously hopeless case, but is there a trick to create a cyclic graph of immutable objects in Perl? Something like this:</p>
<pre><code>package Node;
use Moose;
has [qw/parent child/] => (is => 'ro', isa => 'Node');
package main;
my $a = Node->new;
my $b = Node->new(parent => $a);
</code></pre>
<p>Now if I wanted <code>$a->child</code> to point to <code>$b</code>, what can I do?</p>
http://stackoverflow.com/questions/1775572/moose-expiring-cached-results-of-calculations-when-attribute-values-change/1775599#17755990Answer by zoul for Moose: Expiring cached results of calculations when attribute values change?zoul2009-11-21T14:14:53Z2009-11-21T14:14:53Z<p>Would this work?</p>
<pre><code>#!/usr/bin/perl
package Test;
use Modern::Perl;
use Moose;
has a => (is => 'rw', isa => 'Str', trigger => \&change_a);
has b => (is => 'rw', isa => 'Str', trigger => \&change_b);
has c => (is => 'rw', isa => 'Str');
sub change_a
{
my $self = shift;
say 'update b';
$self->b($self->a . ', bar');
}
sub change_b
{
my $self = shift;
say 'update c';
}
package main;
my $test = Test->new->a('Foo');
</code></pre>
<p>Output:</p>
<pre><code>$ perl test.pl
update b
update c
</code></pre>
http://stackoverflow.com/questions/1775503/minimalistic-tools-for-developer-documentation/1775526#17755262Answer by zoul for Minimalistic tools for developer documentationzoul2009-11-21T13:44:15Z2009-11-21T13:44:15Z<p>When we needed some documentation we used plain text with Markdown formatting. The people you work with can use any platform and any tools they want, the documentation can be easily versioned and diffed and you can create a nice HTML version if you want to. With a little postprocessing you can do things like TODO markers and such. It’s not a solution for everybody and everything, but it’s quite simple and gets you a long way.</p>
http://stackoverflow.com/questions/1768638/excbadinstruction-with-urlconnection-initwithrequest/1768648#17686480Answer by zoul for EXC_BAD_INSTRUCTION with URLConnection initWithRequestzoul2009-11-20T06:15:58Z2009-11-20T06:15:58Z<p>You are releasing autoreleased objects:</p>
<pre><code>NSURL *url = [NSURL URLWithString:@"…"];
NSURLRequest *request = [NSURLRequest requestWithURL:url …];
// …
[url release];
[request release];
</code></pre>
<p>I think that Clang should be able to catch these, see Build → Build and Analyze (Cmd-Shift-A). Clang is your friend, get used to it.</p>
http://stackoverflow.com/questions/1056911/c-classes-as-instance-variables-of-an-objective-c-class1C++ classes as instance variables of an Objective-C classzoul2009-06-29T07:04:18Z2009-11-14T20:34:02Z
<p>Hello!</p>
<p>I need to mix Objective-C and C++. I would like to hide all the C++ stuff inside one class and keep all the others plain Objective-C. The problem is that I want to have some C++ classes as instance variables. This means they have to be mentioned in the header file, which gets included by other classes and C++ starts spreading to the whole application. The best solution I was able to come with so far looks like this:</p>
<pre><code>#ifdef __cplusplus
#import "cppheader.h"
#endif
@interface Foo : NSObject
{
id regularObjectiveCProperty;
#ifdef __cplusplus
CPPClass cppStuff;
#endif
}
@end
</code></pre>
<p>This works. The implementation file has an <code>mm</code> extension, so that it gets compiled as Objective-C mixed with C++, the <code>#ifdef</code> unlocks the C++ stuff and there we go. When some other, purely Objective-C class imports the header, the C++ stuff is hidden and the class does not see anything special. This looks like a hack, is there a better solution?</p>
http://stackoverflow.com/questions/1713580/separating-unit-and-functional-tests-in-perl9Separating unit and functional tests in Perlzoul2009-11-11T07:18:38Z2009-11-11T21:10:54Z
<p>I noticed that in Perl the custom is to stick all tests into the <em>t</em> directory. How do you separate the unit test from the functional ones? Or, to make the question simpler and more obvious, how do you separate the tests that run quickly from the ones that do not? When all the tests run together the testing takes too long to be routinely used in development, which is a pity.</p>
<p>I figured I could set some environment variable like <code>QUICK_TEST</code> and skip the long tests according to its value. Do you separate unit and functional tests? How? (This is not meant to be a poll – I just thought maybe there’s some idiomatic solution.)</p>
<p><hr></p>
<p><em>Update:</em> So far I have come to this:</p>
<pre><code>package Test::Slow;
use strict;
use Test::More;
BEGIN {
plan(skip_all => 'Slow test.') if $ENV{QUICK_TEST};
}
1;
</code></pre>
<p>And in a nearby <code>.t</code> file:</p>
<pre><code># This is a slow test not meant
# to run frequently.
use Test::Slow;
use Test::More;
</code></pre>
<p>It seems to work nicely.</p>
http://stackoverflow.com/questions/1713302/learning-to-create-beautiful-next-generation-gui/1713458#17134584Answer by zoul for Learning to create beautiful /next-generation GUIzoul2009-11-11T06:38:59Z2009-11-11T06:38:59Z<p>I think that the major reason many people suck at designing interfaces is that they <em>consider them to be graphic design</em>. It is not. The core of creating a good user interface is a bit like creating a good API – the interface has to be conceptually consistent, hard to misuse, easy for common tasks.</p>
<p>Wanting to design something cool because you are “tired of plain GUI” is a perfect recipe for disaster. If for nothing else then because consistency is a crucial part of a good UI. If each application wanted to stay out of the crowd, the whole thing would be an unusable mess.</p>
<p>It is almost unfortunate that Mac OS X looks that good, because then people start to think you can create a good interface by animating it or sprinkling some graphics on the top of it. The graphical part, the “cool” of the design is just the icing on the cake. If you really want to design good interfaces, stay true to the environment, respect local human interface guidelines. And maybe read <a href="http://developer.apple.com/mac/library/DOCUMENTATION/UserExperience/Conceptual/AppleHIGuidelines/XHIGIntro/XHIGIntro.html" rel="nofollow">Apple’s Human Interface Guidelines</a> to get a feeling where the problems are and what can be done to solve them.</p>
<p>I know this sounds much more boring than filling gradients in Photoshop, but it’s the only right approach to take if you really want to create a top-notch interface.</p>
http://stackoverflow.com/questions/1708332/how-do-i-install-deps-for-cpan-module-without-installing-it4How do I install deps for CPAN module without installing it?zoul2009-11-10T14:21:54Z2009-11-10T19:50:52Z
<p>This is a follow-up to my previous question <a href="http://stackoverflow.com/questions/1679835">about developing Perl applications</a>. Let’s say I develop an application as a CPAN module using <code>Module::Install</code>. Now I upload the code to the production server, say using a <code>git push</code>, and I would like to install the application dependencies listed in <code>Makefile.PL</code>. If I simply run <code>cpan .</code>, the thing tries to install the application like a regular Perl module, ie. starts to copy the modules and documentation to standard Perl directories all over the system.</p>
<p>Is this the way it’s supposed to be? Do you install the application into the standard Perl directories? I am used to having my Perl applications in one directory with separate <code>lib</code>. Otherwise it seems I’d have to manage a lot of other things, like installing the resources somewhere on path etc. If I just want to install the deps declared in <code>Makefile.PL</code> and run the application tests to make sure everything works, what should I do?</p>
<p>(Is this documented somewhere? I mean, is there something like best practice for deploying and updating non-trivial Perl applications? Or is everybody doing this his own way?)</p>
http://stackoverflow.com/questions/1679835/do-you-develop-your-perl-applications-as-cpan-modules15Do you develop your Perl applications as CPAN modules?zoul2009-11-05T11:06:07Z2009-11-10T14:26:44Z
<p>Recently I read a blog post saying that it is a good practice to develop Perl applications just as you would develop a CPAN module. (<a href="http://perlbuzz.com/2008/10/write-your-code-like-its-going-on-cpan.html" rel="nofollow">Here it is</a> – thanks David!) One of the reasons given was that you could simply run <code>cpan .</code> in the project dir to install all the dependencies. This sounds reasonable, and I also like the “uniform interface” that you get. When you come across such an application, you know what the makefile does etc. What are other advantages and disadvantages to this approach?</p>
<p><hr></p>
<p><em>Update:</em> Thanks for the answers. I’ve got one more question about the dependency installing, I’ll <a href="http://stackoverflow.com/questions/1708332">post it separately</a>.</p>
http://stackoverflow.com/questions/1707685/how-to-quit-an-iphone-app-nicely/1708214#17082142Answer by zoul for How to quit an iPhone app nicely?zoul2009-11-10T14:07:20Z2009-11-10T14:07:20Z<p>I think it’s perfectly fine to call <code>exit</code>, just call <code>[[NSUserDefaults standardUserDefaults] synchronize]</code> before you do that. You can read about the <code>synchronize</code> method in the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSUserDefaults%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSUserDefaults/synchronize" rel="nofollow">Apple Documentation</a>:</p>
<blockquote>
<p>Because this method is automatically
invoked at periodic intervals, use
this method only if you cannot wait
for the automatic synchronization (for
example, if your application is about
to exit) or if you want to update the
user defaults to what is on disk even
though you have not made any changes.</p>
</blockquote>
http://stackoverflow.com/questions/1701405/where-can-i-find-object-oriented-perl-tutorials/1701499#17014994Answer by zoul for Where can I find object-oriented Perl tutorials?zoul2009-11-09T14:50:56Z2009-11-09T14:50:56Z<p><a href="http://search.cpan.org/perldoc?Moose%3A%3AManual" rel="nofollow">Moose::Manual</a></p>
http://stackoverflow.com/questions/1686576/accessing-array-elements-of-referenced-array/1686637#168663714Answer by zoul for Accessing Array Elements of Referenced Arrayzoul2009-11-06T10:12:18Z2009-11-06T10:18:14Z<p>Arrays are one of the parts of Perl that act differently according to the “context”, which is a very important concept in Perl programming. Consider this:</p>
<pre><code>my @fruits = qw/apples pears bananas/;
my $items = @fruits;
</code></pre>
<p>On the second line you are assigning to a scalar (⇒ here we have some context), but on the right side you have an array. We say that the array here is used <em>in scalar context</em>, and in scalar context the value of an array is the number of its items.</p>
<p>Now to your problem: When you are simply printing the array, there is not much magic involved. But when you try to append a string onto the array using the <code>.</code> operator, you are using the array in scalar context. Which means the array evaluates to the number of its items (<code>3</code>), to which you append the <code>pdf</code>.</p>
<p>Is that clear? You should Google up something on “Perl context”, that will make Perl programming much easier for you.</p>
http://stackoverflow.com/questions/1685797/string-tokenizer-in-objective-c-for-iphone-application-development/1685886#16858867Answer by zoul for String tokenizer in Objective-C for iPhone application developmentzoul2009-11-06T06:59:22Z2009-11-06T06:59:22Z<p>If by “tokenizing” you mean simply “splitting on the pipe-sign”, you can use the <code>componentsSeparatedByString:</code> method of <code>NSString</code>:</p>
<pre><code> NSString *original = @"1|101|Y|103|Y|105…";
NSArray *fields = [original componentsSeparatedByString:@"|"];
</code></pre>
<p>“Displaying in a tabular format” doesn’t say much. If you want a classic table, see the <a href="http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UITableView%5FClass/Reference/Reference.html" rel="nofollow">UITableView</a> class.</p>
http://stackoverflow.com/questions/1683649/problem-with-memory-leak-on-iphone/1683660#16836602Answer by zoul for Problem with memory leak on iPhone...zoul2009-11-05T21:14:30Z2009-11-05T21:14:30Z<p>See this <a href="http://stackoverflow.com/questions/1250666">previous question</a>.</p>
http://stackoverflow.com/questions/1679884/alternative-for-sifr/1679905#16799051Answer by zoul for Alternative for SIFRzoul2009-11-05T11:21:04Z2009-11-05T11:21:04Z<p>I have just tried using <a href="http://webfonts.info/" rel="nofollow">webfonts</a> on a recent website and I am quite happy, if it not was for the painful experience with IE and EOT.</p>
http://stackoverflow.com/questions/1679145/interface-and-protocol-explanation/1679182#16791821Answer by zoul for @interface and @protocol explanation?zoul2009-11-05T08:47:31Z2009-11-05T08:47:31Z<p>The <code>@interface</code> in Objective-C has nothing to do with Java interfaces. It simply declares a public interface of a class, its public API. (And member variables, as you have already observed.) Java-style interfaces are called protocols in Objective-C and are declared using the <code>@protocol</code> directive. You should read <a href="http://developer.apple.com/mac/library/documentation/cocoa/Conceptual/ObjectiveC/Introduction/introObjectiveC.html" rel="nofollow">The Objective-C Programming Language</a> by Apple, it’s a good book – short and very accessible.</p>
http://stackoverflow.com/questions/1672960/in-unix-shell-scripting-what-is/1672980#16729803Answer by zoul for In UNIX shell scripting: What is $! ?zoul2009-11-04T10:38:52Z2009-11-04T10:44:39Z<p>The various <code>$…</code> variables are described in <a href="http://tldp.org/LDP/Bash-Beginners-Guide/html/sect%5F03%5F02.html#sect%5F03%5F02%5F05" rel="nofollow">Bash manual</a>. According to the manual <code>$!</code> expands to the PID of the last process launched in background. See:</p>
<pre><code>$ echo "Foo"
Foo
$ echo $!
$ true&
[1] 67064
$ echo $!
67064
[1]+ Done true
</code></pre>
<p>In <code>ksh</code> it seems to do the same.</p>
http://stackoverflow.com/questions/1651267/what-are-best-practices-for-deploying-a-catalyst-application-to-a-production-serv5What are best practices for deploying a Catalyst application to a production server?zoul2009-10-30T17:35:30Z2009-11-01T20:15:03Z
<p>What is a good way to deploy Catalyst applications to a production server? Currently I simply have a FastCGI dispatch script in the root of the repository and when I want to update the server code, I push the branch to the server. This is quite simple, but not perfect. If the code fails the tests on the server machine (for example because of unsatisfied dependencies), I am left with broken application. How do you deploy your Catalyst applications? Do you have a better way?</p>
http://stackoverflow.com/questions/1650084/reuse-nsurlconnection-objects/1650098#16500982Answer by zoul for Reuse NSURLConnection objects?zoul2009-10-30T14:24:45Z2009-10-30T14:24:45Z<p>Obey the golden rule of performance optimization: <em>Measure first.</em> It is quite probable that the performance hit caused by allocating a new connection object is going to be negligible.</p>
http://stackoverflow.com/questions/1648704/justified-plain-text-from-html/1648756#16487560Answer by zoul for Justified plain text from HTMLzoul2009-10-30T09:16:30Z2009-10-30T09:16:30Z<p><a href="http://links.sourceforge.net/" rel="nofollow">Links</a> or <a href="http://lynx.isc.org/" rel="nofollow">lynx</a> might be worth a try, see the <code>-dump</code> switch. The encoding part you can then easily solve separately using <a href="http://www.gnu.org/software/libiconv/" rel="nofollow">iconv</a> or something similar.</p>
http://stackoverflow.com/questions/1648340/how-hard-is-developing-for-iphone/1648367#16483677Answer by zoul for How hard is developing for iPhone?zoul2009-10-30T06:50:04Z2009-10-30T07:46:58Z<p>We have started developing about a year ago and currently have two OpenGL 2D games on the market. My experience so far:</p>
<ol>
<li>Simple application can easily be a one-man show. For a medium-sized application you are likely to manage with just one good programmer, but usually there are other people needed, such as a graphics designer. This highly depends on the nature of your application.</li>
<li>A bit steep if you have no experience with Objective-C and Cocoa. C knowledge helps, as does knowledge of some OO and computer language concepts. Even then you’ll spend some time getting used to their way of doing things. (Which is usually well-thought, but often different from what other people/languages/stacks do.)</li>
<li>The biggest non-programming issue is the crazy provisioning and review stuff. It takes a while to get used to all the profiles and certificates and signing voodoo. You are going to hate it, but will get used to it.</li>
<li>Selling the app is hard. You either have to be one of the lucky ones to make it into the featured apps on the device or you have to be some big title or your application has to be something with a clear audience (like Geocaching) or you will have trouble getting a decent coffee for what you earn. (I am over-simplifying here, but it’s mostly true.) The selling process itself is pretty much painless – $99/year and Apple gets a third of what you earn.</li>
</ol>
http://stackoverflow.com/questions/1617926/how-to-play-sound-when-alertview-appears-iphone-sdk/1617946#16179461Answer by zoul for how to play sound when alertview appears iphone sdk?zoul2009-10-24T12:56:40Z2009-10-24T12:56:40Z<p>As you already call the <code>show</code> method to display the dialog, why don’t you simply start playing the sound there and stop in the <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIAlertViewDelegate%5FProtocol/UIAlertViewDelegate/UIAlertViewDelegate.html#//apple%5Fref/occ/intfm/UIAlertViewDelegate/alertView%3AdidDismissWithButtonIndex%3A" rel="nofollow">alert view callback</a>? For the sound itself you can use <code>AVAudioPlayer</code>.</p>
http://stackoverflow.com/questions/1613042/parsing-xml-right-scripting-languages-packages-for-the-job/1613053#16130538Answer by zoul for Parsing XML - right scripting languages / packages for the job?zoul2009-10-23T12:15:56Z2009-10-23T12:15:56Z<p><a href="http://search.cpan.org/perldoc?XML%3A%3ATwig" rel="nofollow">XML::Twig</a> is very nice, especially because it’s not as awfully verbose as some of the other options.</p>
http://stackoverflow.com/questions/1611754/multicastdelegate-in-objectivec/1611776#16117761Answer by zoul for MulticastDelegate in ObjectiveCzoul2009-10-23T06:57:02Z2009-10-23T07:26:25Z<p>What kind of <code>someMethod</code> is that? Did you include the <code>MulticastDelegate.h</code> header?</p>
<p><hr></p>
<p><em>Update:</em> Aha, in that case you need to tell the compiler that the delegate implements the <code>Notifier</code> interface:</p>
<pre><code>#import "MulticastDelegate.h"
@protocol Notifier
- (void) someMethod;
@end
@interface Manager
{
MulticastDelegate <Notifier> delegate;
}
@end
</code></pre>
<p>This should do. But isn’t the code a bit fishy? How do you know that the <code>delegate</code> implements <code>someMethod</code> when <code>delegate</code> is a plain <code>MulticastDelegate</code>? Are you omitting something in the example?</p>
http://stackoverflow.com/questions/1611801/how-to-create-the-highlight-note-popup-buttons-from-the-iphone-kindle/1611838#16118381Answer by zoul for How to Create the Highlight/Note Popup Buttons from the iPhone Kindlezoul2009-10-23T07:17:26Z2009-10-23T07:17:26Z<p>I don’t think there is a public interface to these controls, you’d probably have to code them yourself. (Or maybe figure out the private API, but that’s a slippery slope.) I am not sure about that, though, maybe somebody will prove me wrong.</p>
http://stackoverflow.com/questions/1804560/good-ethical-hacking-book/1804588#1804588Comment by zoul on Good ethical hacking bookzoul2009-11-26T16:56:41Z2009-11-26T16:56:41ZWe lost the “hacking vs cracking” war with media about a decade ago, let’s get over it.http://stackoverflow.com/questions/1804560/good-ethical-hacking-book/1804615#1804615Comment by zoul on Good ethical hacking bookzoul2009-11-26T16:52:48Z2009-11-26T16:52:48ZGray Hat Hacking is a decent attempt. Some legal background, nice covering of the pen testing tools and thorough overflow tutorials. Some of the “programming tutorial” stuff in the book is IMHO a miss, but overall the book is good.http://stackoverflow.com/questions/1804560/good-ethical-hacking-book/1804578#1804578Comment by zoul on Good ethical hacking bookzoul2009-11-26T16:50:17Z2009-11-26T16:50:17ZHacking Exposed is an abomination. Lots of hot air, lots of outdated information, even some content stolen from web.http://stackoverflow.com/questions/1775496/how-can-i-run-perl-test-suite-automatically-when-files-change/1781981#1781981Comment by zoul on How can I run Perl test suite automatically when files change?zoul2009-11-23T12:02:30Z2009-11-23T12:02:30ZThank you, this is exactly what I was looking for.http://stackoverflow.com/questions/1779613/how-do-i-install-emailsendgmail-for-activeperlComment by zoul on How do I install Email::Send::Gmail for ActivePerl?zoul2009-11-22T19:16:28Z2009-11-22T19:16:28ZLooks like you need to install OpenSSL, see openssl.org.http://stackoverflow.com/questions/1778492/unicode-support-in-web-standard-fonts/1778527#1778527Comment by zoul on Unicode support in Web standard fontszoul2009-11-22T14:02:33Z2009-11-22T14:02:33ZSorry, yes. For example the circled digits (➊➋), shapes (▲•☐) or arrows (→⇒➜). In some fonts these characters have inconsistent weight, height and other parameters.http://stackoverflow.com/questions/1775572/moose-expiring-cached-results-of-calculations-when-attribute-values-change/1775599#1775599Comment by zoul on Moose: Expiring cached results of calculations when attribute values change?zoul2009-11-22T11:14:06Z2009-11-22T11:14:06Z(But certainly this solution is worse than those above beause it does not recalculate <code>$b</code> lazily.)http://stackoverflow.com/questions/1775572/moose-expiring-cached-results-of-calculations-when-attribute-values-change/1775599#1775599Comment by zoul on Moose: Expiring cached results of calculations when attribute values change?zoul2009-11-22T11:10:41Z2009-11-22T11:10:41ZSetting <code>$b</code> from <code>$a</code> was a way of saying that he can update the calculated value (<code>$b</code>) when one of the master values (<code>$a</code>) changes. And I don’t think there will be a trigger cycle if he simply wants to update the calculated properties. It might be that I simply don’t get your argument – have an example?http://stackoverflow.com/questions/1775496/how-can-i-run-perl-test-suite-automatically-when-files-change/1776546#1776546Comment by zoul on How can I run Perl test suite automatically when files change?zoul2009-11-21T19:53:54Z2009-11-21T19:53:54ZI’d like it to watch the file changes so that I have instant feedback when I break something. Might be a bit extreme, but I’d like to try it.http://stackoverflow.com/questions/1775486/how-do-i-create-a-cyclic-graph-of-immutable-objects-in-perl-and-mooseComment by zoul on How do I create a cyclic graph of immutable objects in Perl and Moose?zoul2009-11-21T19:52:14Z2009-11-21T19:52:14ZFor me it makes easier to reason about the <code>Node</code> objects. For other reasons see the <code>immutability</code> tag.http://stackoverflow.com/questions/1768638/excbadinstruction-with-urlconnection-initwithrequest/1768648#1768648Comment by zoul on EXC_BAD_INSTRUCTION with URLConnection initWithRequestzoul2009-11-20T08:42:35Z2009-11-20T08:42:35ZChris: If you’re still having problems, I’d suggest the usual process of simplifying the code. Drop everything you don’t need, chunk by chunk, and if the problem suddenly disappears, you have found the offender.http://stackoverflow.com/questions/1707685/how-to-quit-an-iphone-app-nicely/1708190#1708190Comment by zoul on How to quit an iPhone app nicely?zoul2009-11-17T14:04:22Z2009-11-17T14:04:22ZThe usual warning is that (1) your application could be rejected from the App store and (2) the private APIs are not guaranteed to stay stable, which means your app could easily break with new firmware.http://stackoverflow.com/questions/1713580/separating-unit-and-functional-tests-in-perl/1715892#1715892Comment by zoul on Separating unit and functional tests in Perlzoul2009-11-11T15:37:52Z2009-11-11T15:37:52ZSome of the tests are too slow to be routinely used even on a multicore machine, but the <code>prove</code> tips are interesting, thank you.http://stackoverflow.com/questions/1715927/what-is-a-good-resource-for-making-high-level-software-architectural-decisions/1715971#1715971Comment by zoul on What is a good resource for making high-level software architectural decisionszoul2009-11-11T15:35:12Z2009-11-11T15:35:12ZI was going to answer the same.http://stackoverflow.com/questions/1708332/how-do-i-install-deps-for-cpan-module-without-installing-it/1710705#1710705Comment by zoul on How do I install deps for CPAN module without installing it?zoul2009-11-10T21:12:43Z2009-11-10T21:12:43ZI have changed to Module::Build, feels better. The 0.36 release adds an <code>installdeps</code> action that does precisely what I was asking for. Thank you.