User cms - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:21:44Zhttp://stackoverflow.com/feeds/user/28532http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1727623/sqlplus-inside-perl-script/1727979#17279792Answer by cms for SQL*Plus inside Perl scriptcms2009-11-13T08:51:14Z2009-11-13T09:12:06Z<p>The advice to use the DBI is good, and definitely the <em>right</em> way to do things, if you're wanting to program Perl scripts against databases.</p>
<p>However, to answer your exact question, if you specifically want to script SQL*Plus, the syntax to do this with a Perl script is fairly similar to the shell version</p>
<pre><code>my $connect_string = 'scott/tiger@test';
my $sqlplus_settings = '';
my $result = qx { sqlplus $connect_string <<EOF
$sqlplus_settings
select 1 from dual;
exit;
EOF
};
print $result;
</code></pre>
<p>The <code>qx</code> operator I use there, is just a politer form of backtick, everything within the brace delimited block is run by a subshell, and the output returned to the assignment. Variables aren't usually upper cased in Perl.</p>
http://stackoverflow.com/questions/1577122/good-book-for-objective-c/1577143#15771435Answer by cms for Good book for Objective-Ccms2009-10-16T09:46:56Z2009-10-16T09:46:56Z<p>Aaron Hillegass' "<a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow">Cocoa Programming for Mac OS X</a>" is the best introductory book I know of. It's focused on Mac programming in Cocoa with Objective C, rather than a plain Objective C, or iPhone text.</p>
<p>I would still consider it a good learning course.</p>
http://stackoverflow.com/questions/1462284/how-to-respond-to-password-prompt-when-using-scp-in-a-shell-script/1462313#14623131Answer by cms for How to respond to password prompt when using SCP in a shell script?cms2009-09-22T20:14:00Z2009-09-22T20:14:00Z<p>Something like this - <a href="http://code.google.com/p/enchanter/" rel="nofollow">http://code.google.com/p/enchanter/</a> ?</p>
http://stackoverflow.com/questions/1459250/bash-strip-new-line-character-from-string-read-line/1459287#14592874Answer by cms for BASH: Strip new-line character from string (read line)cms2009-09-22T10:30:43Z2009-09-22T11:07:26Z<p>I always like <code>perl -ne 'chomp and print'</code> , for trimming newlines. Nice and easy to remember.</p>
<p>e.g. <code>ls -l | perl -ne 'chomp and print'</code></p>
<p><strong>However</strong></p>
<p>I don't think that is your problem here though. Although I'm not sure I understand how you're passing the commands in the file through to the 'read' in your shell script.</p>
<p>With a test script of my own like this (test.sh)</p>
<pre><code>read line
if [ -n "$line" ]; then
$line
fi
</code></pre>
<p>and a sample input file like this (test.cmds)</p>
<pre><code>ls
ls -l
ls -ltra
</code></pre>
<p>If I run it like this <code>./test.sh < test.cmds</code>, I see the expected result, which is to run the first command 'ls' on the current working directory.</p>
<p>Perhaps your input file has additional non-printable characters in it ?</p>
<p>mine looks like this </p>
<pre><code>od -c test.cmds
0000000 l s \n l s - l \n l s - l t
0000020 r a \n
0000023
</code></pre>
<p>From your comments below, I suspect you may have carriage returns ( "\r" ) in your input file, which is not the same thing as a newline. Is the input file originally in DOS format ? If so, then you need to convert the 2 byte DOS line ending "\r\n" to the single byte UNIX one, "\n" to achieve the expected results.</p>
<p>You should be able to do this by swapping the "\n" for "\r" in any of your commented out lines.</p>
http://stackoverflow.com/questions/1444705/bash-script-for-downloading-files-with-curl/1444736#14447362Answer by cms for Bash script for downloading files with Curlcms2009-09-18T14:02:46Z2009-09-18T14:09:04Z<p>quoting the arguments correctly, rather than transforming them might be a better approach</p>
<p>It's quite normal to expect to have to quote spaces in arguments to shell scripts</p>
<p>e.g.</p>
<pre><code>#!/bin/bash
clear
echo Downloading $1
`curl -# -C - -o "${2}" "${1}"`
</code></pre>
<p>called like so </p>
<p><code>./myscript <a href="http://www.foo.com" rel="nofollow">http://www.foo.com</a> "my file"</code></p>
<p>alternatively, escape the spaces with a '\' as you call them</p>
<pre><code>./myscript http://www.example.com my\ other\ filename\ with\ spaces
</code></pre>
http://stackoverflow.com/questions/1444097/which-library-to-use-for-c-data-structures-with-gcc/1444146#14441466Answer by cms for Which library to use for C data structures with GCCcms2009-09-18T12:03:59Z2009-09-18T12:14:35Z<p>Don't ignore licensing. There are significant license differences between gdsl and glib. gdsl is GPL, and glib is LGPL. As far as I understand things, and IANAL, this restricts the use of gdsl to GPL licensed works, whereas glib can be linked to works that use other licenses (even those that don't require source availability )</p>
http://stackoverflow.com/questions/1443781/how-to-print-list-of-icons-from-mac-finder/1443825#14438251Answer by cms for How to print list of icons from Mac Finder?cms2009-09-18T10:54:31Z2009-09-18T11:09:30Z<p>This utility seems to be designed for the task </p>
<p><a href="http://searchwaresolutions.com/default.html" rel="nofollow">http://searchwaresolutions.com/default.html</a></p>
<p>There's a free 30 day trial. It will print icons, but you may have to fiddle with the layout options to get it to exactly mimic the finder on-screen layout, as it generates a document, rather than printing an exact screen dump. </p>
http://stackoverflow.com/questions/1443733/working-with-a-slow-connection/1443751#14437510Answer by cms for Working with a slow connectioncms2009-09-18T10:37:24Z2009-09-18T10:37:24Z<p>If you have, or could obtain, ssh access you could use something like <a href="http://code.google.com/p/macfuse/wiki/MACFUSE%5FFS%5FSSHFS" rel="nofollow">SSHFS</a> with <a href="http://code.google.com/p/macfuse/" rel="nofollow">MacFUSE</a></p>
<p>This would let you remote mount the server filesystem though Finder, as if it were local, but only using a <a href="http://en.wikipedia.org/wiki/Secure%5FShell" rel="nofollow">ssh secure shell</a> remote login.</p>
http://stackoverflow.com/questions/1118964/foreign-key-definition-in-sqlite/1443649#14436490Answer by cms for Foreign key definition in sqlitecms2009-09-18T10:16:17Z2009-09-18T10:16:17Z<p>If you use the Cocoa CoreData framework, and define a managed object model, using SQLite as the persistent store - you can specify the relations between your model, and specify deletion rules ( such as cascade or deny ) and these will be performed and validated as you make changes to your entities from Objective-C, and committed back to the database when you save.</p>
<p>The relationships and rules are very similar to database foreign key rules, but are performed by the CoreData framework inside the objective-C runtime. The SQLite database is just used as a persistence store for your managed object graph.</p>
<p><a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/CoreData/cdProgrammingGuide.html#//apple%5Fref/doc/uid/TP30001200" rel="nofollow">Here is the CoreData programming guide</a> at the Apple Developer Site:</p>
<p>NB This framework is Cocoa-specific, and your question doesn't explicitly mention using Cocoa, just Objective-C</p>
http://stackoverflow.com/questions/1443433/help-with-python-regular-expression/1443518#14435180Answer by cms for help with python regular expressioncms2009-09-18T09:42:33Z2009-09-18T09:48:00Z<p>Rather than trying to make a pattern between the ^ and $ anchors, and relying on the # you could use the newlines break down the 'sublines' inside the single block match</p>
<p>e.g. identify the clauses in terms of a sequence of literal not-newlines leading up to a newline.</p>
<p>something like</p>
<pre><code> re1 = '''\ninterface ([^\n]+?)\n[^\n]+?\n[^\n]+BTO\n'''
</code></pre>
<p>will produce the result you are after, from the source text provided.</p>
http://stackoverflow.com/questions/1410209/postgres-update-a-date-field-when-a-boolean-field-is-set-to-true/1410257#14102573Answer by cms for postgres update a date field when a boolean field is set to truecms2009-09-11T10:57:56Z2009-09-11T11:15:51Z<p>Inside your plpgsql trigger procedure you have access to some special record-type variables called <code>NEW</code> and <code>OLD</code> that are created for you.</p>
<p>In an <code>UPDATE</code> or <code>INSERT</code> trigger , <code>NEW</code> will represent the record of the new database row.</p>
<p>In an <code>UPDATE</code> or <code>DELETE</code> trigger , <code>OLD</code> will represent the value of the original database row.</p>
<p>In other statement contexts, these record variables will be <code>NULL</code>.</p>
<p>Therefore, it seems like you need to create an <code>INSERT OR UPDATE</code> trigger that looks at the values of <code>OLD.is_active</code> and <code>NEW.is_active</code>.</p>
<p>Here's the documentation page - <a href="http://www.postgresql.org/docs/8.1/interactive/plpgsql-trigger.html" rel="nofollow">http://www.postgresql.org/docs/8.1/interactive/plpgsql-trigger.html</a> This page contains sample code for plpgsql that uses <code>NEW</code> and <code>OLD</code></p>
http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/1383563#13835630Answer by cms for What rare programming tools do you use?cms2009-09-05T15:13:32Z2009-09-05T15:25:34Z<p><a href="http://www.codethecode.com/projects/class-dump/" rel="nofollow">classdump</a> is a very useful tool, for inspecting closed source objective-c frameworks. You can figure out much of the same information using the builtin <code>otool</code> utility, but classdump provides a more convenient interface.</p>
<p><a href="http://www.osxbook.com/software/hfsdebug/" rel="nofollow">hfsdebug</a> a similarly useful tool for exploring HFS+ filesystems.</p>
http://stackoverflow.com/questions/1340332/how-can-i-find-out-the-type-of-a-nsdictionary-element/1340370#13403705Answer by cms for How can I find out the type of a NSDictionary element?cms2009-08-27T11:08:08Z2009-08-30T16:37:18Z<p>There's various sorts of introspection you can perform on any object at runtime, contained within the NSObject protocol. </p>
<p><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Protocols/NSObject%5FProtocol/Reference/NSObject.html" rel="nofollow">http://developer.apple.com/documentation/</a></p>
<p>e.g. </p>
<p>You can test the class of an object at runtime by comparing it to a class object, which you can obtain by sending a <code>class</code> message.</p>
<p><code>BOOL test = [self isKindOfClass:[SomeClass class]];</code></p>
http://stackoverflow.com/questions/1348627/how-can-i-tell-if-two-image-files-are-the-same-in-perl/1348635#13486351Answer by cms for How can I tell if two image files are the same in Perl?cms2009-08-28T18:29:18Z2009-08-28T18:49:49Z<p>md5 would work, but you'd still have to pull the file. Are there any useful metadata in the HTTP headers, content-length, cache-control directives, ETags, etc. ?</p>
http://stackoverflow.com/questions/1347396/when-should-i-use-the-to-call-a-perl-subroutine/1347431#134743111Answer by cms for When should I use the & to call a Perl subroutine?cms2009-08-28T14:39:42Z2009-08-28T15:16:33Z<p>The &subroutine() form disables prototype checking. This may or may not be what you want.</p>
<p><a href="http://www.perl.com/doc/manual/html/pod/perlsub.html#Prototypes" rel="nofollow">http://www.perl.com/doc/manual/html/pod/perlsub.html#Prototypes</a></p>
<p>Prototypes allow you to specify the numbers and types of your subroutine arguments, and have them checked at compile time. This can provide useful diagnostic assistance.</p>
<p>Prototypes don't apply to method calls, or calls made in the old-fashioned style using the & prefix.</p>
<p>The & is necessary to reference or dereference a subroutine or code reference</p>
<p>e.g.</p>
<pre><code>sub foo {
# a subroutine
}
my $subref = \&foo; # take a reference to the subroutine
&$subref(@args); # make a subroutine call using the reference.
my $anon_func = sub { ... }; # anonymous code reference
&$anon_func(); # called like this
</code></pre>
<p>Protypes aren't applicable to subroutine references either.</p>
<p>The &subroutine form is also used in the so-called <a href="http://perldoc.perl.org/functions/goto.html" rel="nofollow">magic goto</a> form.</p>
<p>The expression <code>goto &subroutine</code> replaces the current calling context with a call to the named subroutine, using the current value of @_. </p>
<p>In essence, you can completely switch a call to one subroutine with a call to the named one. This is commonly seen in AUTOLOAD blocks, where a deferred subroutine call can be made, perhaps with some modification to @_ , but it looks to the program entirely as if it was a call to the named sub. </p>
<p>e.g.</p>
<pre><code>sub AUTOLOAD {
...
push @_, @extra_args; # add more arguments onto the parameter list
goto &subroutine ; # change call another subroutine, as if we were never here
}
</code></pre>
<p>}</p>
<p>see <a href="http://www.perlmonks.org/?node%5Fid=8227" rel="nofollow">detailed explanation of this technique here</a> </p>
http://stackoverflow.com/questions/1347244/does-this-code-deletes-duplicates/1347263#13472633Answer by cms for Does this code deletes duplicates?cms2009-08-28T14:12:30Z2009-08-28T14:12:30Z<p>Modifying the SQL to use the DISTINCT directive </p>
<p>e.g. </p>
<pre><code> SELECT DISTINCT userid,displayname FROM Users
</code></pre>
<p>will ensure that only unique combinations of userid and displayname are selected.</p>
<p>However this will not prevent userids that have identical displaynames.</p>
http://stackoverflow.com/questions/1338930/replace-double-backslash-with-single-backslash-in-emacs/1341331#13413311Answer by cms for Replace double backslash with single backslash in Emacscms2009-08-27T14:03:43Z2009-08-27T14:11:42Z<p>re-builder+.el has some extensions to re-builder that provides functions for using re-builder with <code>query-replace-regexp</code> and <code>replace-regexp.</code> </p>
<p><a href="http://www.emacswiki.org/emacs/re-builder+.el" rel="nofollow">http://www.emacswiki.org/emacs/re-builder+.el</a></p>
http://stackoverflow.com/questions/1335143/iphone-memory-leaks/1335198#13351982Answer by cms for iPhone Memory Leakscms2009-08-26T14:40:20Z2009-08-26T14:58:42Z<p>Memory leaks are blocks of memory allocated by the OS for your program to use while it is running, but not correctly returned as not in use when the program has finished with them. So this memory is 'lost'. Your program isn't using it, but the system doesn't yet know that it is free for other use.</p>
<p>When your application finishes running, all of the memory allocated to it by the OS, will be returned for re-use. Which answers your question. </p>
<p>However, memory leaks are a significant bug. On a low-memory device, like an iPhone, the less memory consume, you don't want to be leaking memory as you run. If the device runs low on memory, your application may be terminated or crash, unexpectedly.</p>
http://stackoverflow.com/questions/1334144/mysql-get-rows-between-date-values/1334179#13341792Answer by cms for MySql get rows between date valuescms2009-08-26T11:52:57Z2009-08-26T13:35:57Z<p>Could you not just use the month() date function ? </p>
<p>e.g. use month(date) = month(now()) as the filter. </p>
<p>You would need to also match on year(date) = year(now()), if you had data from more than one year. </p>
<p>I'm not sure of the performance, but it seems more readable to me to express it that way.</p>
<pre><code>SELECT DISTINCT p.name, p.category, u.f_name, t.name
FROM (prizes p, tags t, results r)
LEFT JOIN users u ON (r.user_id = u.id)
LEFT JOIN f_tag_lookup tl ON (tl.tag_id = t.id)
WHERE r.tag_id = t.id AND
month(r.date) = month(now()) AND
year(r.date) = year(now())
</code></pre>
http://stackoverflow.com/questions/1333463/how-to-change-ctime-to-normal-string-representation/1333512#13335120Answer by cms for How to change ctime to normal string representation?cms2009-08-26T09:40:38Z2009-08-26T11:38:58Z<p>There's an example in Time::localtime perldoc for using it's ctime() to do this sort of thing. </p>
<pre><code>use File::stat;
use Time::localtime;
my $date_string = ctime(stat($file)->ctime);
</code></pre>
http://stackoverflow.com/questions/1332693/django-models-does-django-cache-former-queries/1332751#13327510Answer by cms for Django models - Does django cache former queries?cms2009-08-26T06:42:06Z2009-08-26T06:47:57Z<p>If you change the model definitions in django, you need to re-apply your changes to the database. If you can manually drop the tables, you can restore the structure with <code>manage.py syncdb</code></p>
<p>You can use the manage.py sql command to examine the SQL definitions that django would use to match your new model class, and manually edit the tables to fit, if you'd rather not lose the table.</p>
http://stackoverflow.com/questions/1330433/a-couple-of-perl-subtleties/1330459#13304590Answer by cms for A couple of Perl subtletiescms2009-08-25T19:35:44Z2009-08-25T19:46:01Z<p>It is to avoid this sort of confusion that it's considered better form to avoid using the implicit $_ constructions.</p>
<pre><code>my $element = shift @queue;
($item,@rest) = split /,/ , $element;
</code></pre>
<p>or</p>
<pre><code>($item,@rest) = split /,/, shift @queue;
</code></pre>
<p>likewise</p>
<pre><code>while(my $foo = <SOMEFILE>){
do something
}
</code></pre>
<p>or</p>
<pre><code>foreach my $thing(<FILEHANDLE>){
do something
}
</code></pre>
http://stackoverflow.com/questions/1328995/why-the-observer-in-nsnotification-called-twice/1330445#13304451Answer by cms for Why the Observer in NSNotification called twice.... ?cms2009-08-25T19:32:48Z2009-08-25T19:32:48Z<p>If the observer class is registered for a notification by name, but not against a specific object, it will receive multiple messages, as it will be invoked every time the notification occurs, regardless of the originating object.</p>
<p>Likewise, if the observer is registered against a specific object, but not against a named notification, it will be messaged every time there is a notification concerning that object.</p>
<p>An alternative mechanism for being informed of changes in a distant state, is Key Value observing -<a href="http://developer.apple.com/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html" rel="nofollow">http://developer.apple.com/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html</a></p>
http://stackoverflow.com/questions/1328411/is-shift-evil-for-processing-perl-subroutine-parameters/1328571#13285716Answer by cms for Is 'shift' evil for processing Perl subroutine parameters?cms2009-08-25T14:16:01Z2009-08-25T18:44:40Z<p>Assigning @_ to a list can bring some helpul addtional features.</p>
<p>It makes it slightly easier to add additional named parameters at a later date, as you modify your code Some people consider this a feature, similar to how finishing a list or a hash with a trailing ',' makes it slightly easier to append members in the future.</p>
<p>If you're in the habit of using this idiom, then shifting the arguments might seem harmful, because if you edit the code to add an extra argument, you could end up with a subtle bug, if you don't pay attention.</p>
<p>e.g.</p>
<pre><code>sub do_something {
my ($foo) = @_;
}
</code></pre>
<p>later edited to </p>
<pre><code>sub do_something {
my ($foo,$bar) = @_; # still works
}
</code></pre>
<p><strong>however</strong></p>
<pre><code>sub do_another_thing {
my $foo = shift;
}
</code></pre>
<p>If another colleague, who uses the first form dogmatically (perhaps they think shift is evil) edits your file and absent-mindedly updates this to read</p>
<pre><code>sub do_another_thing {
my ($foo, $bar) = shift; # still 'works', but $bar not defined
}
</code></pre>
<p>and they may have introduced a subtle bug.</p>
<p>Assigning to @_ can be more compact and efficient with vertical space, when you have a small number of parameters to assign at once. It also allows for you to supply default arguments if you're using the hash style of named function parameters</p>
<p>e.g.</p>
<pre><code> my (%arguments) = (user=>'defaultuser',password=>'password',@_);
</code></pre>
<p>I would still consider it a question of style / taste. I think the most important thing is to apply one style or the other with consistency, obeying the principle of least surprise.</p>
http://stackoverflow.com/questions/1329356/is-there-any-security-problem-in-hosting-a-crossdomain-xml-in-our-servers/1329408#13294080Answer by cms for Is there any security problem in hosting a crossdomain.xml in our servers?cms2009-08-25T16:30:09Z2009-08-25T16:30:09Z<p>This will allow flash content hosted from anywhere to load data directly into a client from your services, and can have <a href="http://www.adobe.com/devnet/flashplayer/articles/cross%5Fdomain%5Fpolicy.html" rel="nofollow">significant security implications</a>, depending on your authentication model and setup. </p>
http://stackoverflow.com/questions/1329199/in-which-class-would-you-put-these-methods/1329290#13292900Answer by cms for In which class would you put these methods?cms2009-08-25T16:10:17Z2009-08-25T16:10:17Z<p><strong>It depends.</strong></p>
<p>This could be one of those scenarios where there <strong>isn't a definitely right answer</strong>. It will depend on how data will move through your system, as to whether it's of more benefit to view this relationship in a data-centric, or a user-centric model.</p>
<p>An old rule-of-thumb is to view objects as <em>nouns</em> and methods as <em>verbs</em>, when you're trying to model things. This would tend to suggest that <strong>User</strong> is an <em>object</em>, and suspend is an <em>action</em> you might perform.</p>
<p>Simple ? <strong>Not really</strong>.</p>
<p>Someone else might argue that it made more sense to describe the suspension as an 'AccountAction', and the application of the suspension as a verb. That might lead you to a model where various subclasses of an <em>AccountAction</em> have an <em>applyTo</em> method that acts on other object types.</p>
<p>You may need to apply your objects to an existing database schema, in which case you'll have to take into account how your persitance layer or ORM will interact with existing record structures.</p>
<p>Sometimes it's down to technology. OO can be implemented in subtly different ways across different language families and this too can influence the design. Some systems favour more solid inheritance graphs, other languages emphasise more loosely interconnected objects, passing messages around.</p>
<p>You need to be thinking through your design in terms of how you're going to want to interact with <strong>data</strong> and <strong>state</strong>. If you think about objects, as instances of classes, representing states of data, with behaviours that you will wish to invoke, you might find the nouns and verbs pattern falling out of the sentences that you use to describe the system.</p>
http://stackoverflow.com/questions/1328750/shell-script-that-goes-up-n-folders-in-the-file-system/1328862#13288622Answer by cms for Shell Script that goes up N folders in the file systemcms2009-08-25T15:01:08Z2009-08-25T15:01:08Z<p>You are only changing the working directory for the copy of the shell that is running the script as an interpreter, not the original shell program that you launched the script from.</p>
<p>For a bash-like shell, in order to run a sequence of commands that operate on the interactive shell session, you can define them as a shell function.</p>
<p>e.g. type the following</p>
<pre><code>up() { LIMIT=$1; P=$PWD; for ((i=1; i <= LIMIT; i++)); do P=$P/..; done; cd $P; }
</code></pre>
<p>and you'll define an <strong>up</strong> command that works the way you intended.</p>
<p>You could put this function definition into a file that is sourced when you login, such as .bashrc, to keep it conveniently defined on login.</p>
http://stackoverflow.com/questions/1326855/where-can-i-systematically-study-how-to-write-mac-os-x-device-drivers/1326901#13269014Answer by cms for Where can I systematically study how to write Mac OS X device drivers? cms2009-08-25T08:42:37Z2009-08-25T11:56:46Z<p>Amit Singh's wonderful book <a href="http://rads.stackoverflow.com/amzn/click/0321278542" rel="nofollow">Mac OS X Internals: A Systems Approach</a> has an extensive section on kernel extensions, the IOKit and drivers. It's the best general resource on OS X internals that I know of, but it doesn't cover the latest system updates; it only covers up to the 10.4 release (Tiger).</p>
http://stackoverflow.com/questions/1326736/can-i-omit-parameterorder-attribute-in-wsdl-file/1326830#13268300Answer by cms for Can I omit 'parameterOrder' attribute in WSDL file?cms2009-08-25T08:30:32Z2009-08-25T08:30:32Z<p><strong>Yes</strong> you can omit it. parameterOrder attribute is defined as an optional attribute <a href="http://www.w3.org/TR/wsdl#%5Fparameter" rel="nofollow">according to the spec</a>. </p>
<blockquote>
<p>Note that this information serves as a
"hint" and may safely be ignored by
those not concerned with RPC
signatures. Also, it is not required
to be present, even if the operation
is to be used with an RPC-like
binding.</p>
</blockquote>
http://stackoverflow.com/questions/382187/do-i-still-need-to-learn-about-managing-memory-now-that-objective-c-cocoa-has-gar/382257#3822571Answer by cms for Do I still need to learn about managing memory now that Objective-C/Cocoa has Garbage collection?cms2008-12-19T21:25:27Z2008-12-19T21:25:27Z<p>It is probably worth learning about the concepts that underpin Cocoa memory management, as it's still useful in certain situations. The iPhone OS, for example does not support garbage collection. There may be other situations where it is advantageous to use manual memory management, and it's useful to have the ability to make that choice</p>
http://stackoverflow.com/questions/1727623/sqlplus-inside-perl-script/1727979#1727979Comment by cms on SQL*Plus inside Perl scriptcms2009-11-13T10:47:15Z2009-11-13T10:47:15Zsure - anything inside backticks or qx( ) will be run as a sub shell and the output captured similarly. Once again, I don't think this is a terribly good way to structure a perl program.http://stackoverflow.com/questions/1493068/what-problems-might-occur-if-a-usb-device-is-not-usb-2-0-compliant/1493146#1493146Comment by cms on What problems might occur if a USB device is not USB 2.0 compliant?cms2009-10-18T13:39:43Z2009-10-18T13:39:43ZDoes that take into account the fact that this is expected USB behaviour by compliant 2.0 and 1.0 devices ?
This question is not about the relative speed of 2.0 and 1.0 (or even 1.x), but about the tolerance of the USB standard to devices that deviate from the permissable spec, as I read it.http://stackoverflow.com/questions/1459250/bash-strip-new-line-character-from-string-read-line/1459282#1459282Comment by cms on BASH: Strip new-line character from string (read line)cms2009-09-22T10:52:29Z2009-09-22T10:52:29ZThe 0d is a carriage return. Not the same thing as a newlinehttp://stackoverflow.com/questions/1444705/bash-script-for-downloading-files-with-curl/1444736#1444736Comment by cms on Bash script for downloading files with Curlcms2009-09-18T14:20:13Z2009-09-18T14:20:13ZIt's how I was taught to expand shell variables. I think it's just so that you can disambiguate the variable from any other text, if you want to interpolate them into strings.
e.g.
FOO=foo; echo "${FOO}d"
will print 'food'http://stackoverflow.com/questions/1444705/bash-script-for-downloading-files-with-curl/1444768#1444768Comment by cms on Bash script for downloading files with Curlcms2009-09-18T14:10:01Z2009-09-18T14:10:01Zguilty as charged! I have expanded my answer to include working "improved" examples.http://stackoverflow.com/questions/1443733/working-with-a-slow-connection/1443750#1443750Comment by cms on Working with a slow connectioncms2009-09-18T10:44:11Z2009-09-18T10:44:11ZHistorically, rsync with HFS+ has been quite buggy, with regards to OS X extended attributes, resource forks etc. (<i>including</i> Apple's patched version), and I've found Unison sync - <a href="http://www.cis.upenn.edu/~bcpierce/unison/" rel="nofollow">cis.upenn.edu/~bcpierce/unison</a> a more reliable alternative. I've not tried rsync for a while, it may have improved. http://stackoverflow.com/questions/1443433/help-with-python-regular-expression/1443472#1443472Comment by cms on help with python regular expressioncms2009-09-18T09:59:27Z2009-09-18T09:59:27ZI think he only wants to match interfaces which have BTO in their description field.http://stackoverflow.com/questions/1443433/help-with-python-regular-expression/1443540#1443540Comment by cms on help with python regular expressioncms2009-09-18T09:51:43Z2009-09-18T09:51:43Zperhaps you meant 'not perfectly error proof' ? http://stackoverflow.com/questions/1348627/how-can-i-tell-if-two-image-files-are-the-same-in-perl/1348635#1348635Comment by cms on How can I tell if two image files are the same in Perl?cms2009-08-28T19:26:13Z2009-08-28T19:26:13Zyou could order the tests then, different size, different etag(if present), first chunk, then hash.http://stackoverflow.com/questions/1348627/how-can-i-tell-if-two-image-files-are-the-same-in-perl/1348635#1348635Comment by cms on How can I tell if two image files are the same in Perl?cms2009-08-28T18:41:24Z2009-08-28T18:41:24ZShame. I'd have thought you could just read the first n KB and compare, if you needed something more optimised than hashing the entire file. You'd probably have to experiment to find a decent n value.http://stackoverflow.com/questions/1347244/does-this-code-deletes-duplicates/1347263#1347263Comment by cms on Does this code deletes duplicates?cms2009-08-28T16:21:28Z2009-08-28T16:21:28ZI think split will create them in the current working directory by default, yes.http://stackoverflow.com/questions/1346399/how-do-i-send-messages-from-javascript-to-javaComment by cms on How do I send messages from Javascript to Java?cms2009-08-28T11:27:40Z2009-08-28T11:27:40Z<a href="http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/js_java.html#how" rel="nofollow">java.sun.com/j2se/1.4.2/…</a>http://stackoverflow.com/questions/1335143/iphone-memory-leaks/1335198#1335198Comment by cms on iPhone Memory Leakscms2009-08-26T14:52:09Z2009-08-26T14:52:09ZYes, as far as I know, iPhone memory management is the same as cocoa applications on OS X, with no support for garbage collection.http://stackoverflow.com/questions/1334144/mysql-get-rows-between-date-values/1334179#1334179Comment by cms on MySql get rows between date valuescms2009-08-26T12:39:56Z2009-08-26T12:39:56Zperhaps not, but the use between operator, against a constant uper bound might be more optimal for indexed selectionhttp://stackoverflow.com/questions/1332693/django-models-does-django-cache-former-queries/1332751#1332751Comment by cms on Django models - Does django cache former queries?cms2009-08-26T07:31:09Z2009-08-26T07:31:09ZI misunderstood, from where you said you changed the Author class definition, I thought that referred to a model change.