User Brian C. Lane - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T08:23:03Zhttp://stackoverflow.com/feeds/user/27461http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1609869/how-to-impose-a-time-limit-on-a-whole-script-in-python/1610267#16102670Answer by Brian C. Lane for How to impose a time limit on a whole script in PythonBrian C. Lane2009-10-22T22:08:03Z2009-10-22T22:08:03Z<p>This is just a guess, but maybe wrap it with Threading or Multiprocessing? Have a timer thread that kills it when it times out. </p>
http://stackoverflow.com/questions/1134402/cake-php-plugin-img-diectory-throws-missing-method-instead-of-4041Cake PHP plugin/img/ diectory throws missing method instead of 404Brian C. Lane2009-07-15T22:09:28Z2009-07-15T23:08:48Z
<p>I have a Cake PHP plugin that I have written. The plugin has its own controller so that it can serve up some dynamic code on the plugin's index page (/keyedit/ or /keyedit/index).</p>
<p>When images are requested from /keyedit/img/ they are served up properly. But if the image doesn't exist Cake thinks the /img/ is a method in the keyedit_controller.php and throws a missing method error. This wouldn't be so bad, but it also deletes the session cookie, breaking everything else.</p>
<p>How can I tell Cake to just return a 404 when files are missing from /img/ instead of falling through into the controller code?</p>
<p>I suppose I could add a img() method that just returns a 404, but that seems like a kludge.(ETA: Tried that, still deletes the session cookie)</p>
http://stackoverflow.com/questions/361799/xcode-unable-to-open-project-cannot-be-opened-because-the-project-file-cannot/361905#3619050Answer by Brian C. Lane for Xcode: Unable to open project... cannot be opened because the project file cannot be parsed...Brian C. Lane2008-12-12T04:37:13Z2008-12-12T04:37:13Z<p>And once you get things working again you should look into using something like subversion or mercurial for backup and revision control. Remember that he electrons don't always go where they are supposed to, backup early and often!</p>
http://stackoverflow.com/questions/361869/php-function-variable-naming/361895#3618950Answer by Brian C. Lane for PHP - Function/variable namingBrian C. Lane2008-12-12T04:27:41Z2008-12-12T04:27:41Z<p>Yes, the most important thing is consistency. If you are the lone developer, stick with a method. If you are working with a team, talk to the other team members. Differentiating between globals, functions/methods and classes will make reading the code much easier. For some people camelCase is easier than using_underlines so your team needs to discuss the options and pick a style.</p>
http://stackoverflow.com/questions/346328/job-postings-where-do-you-post-your-resume/346381#3463814Answer by Brian C. Lane for Job postings, where do you post your resume?Brian C. Lane2008-12-06T15:26:20Z2008-12-07T16:18:56Z<p>Don't filter your applicants through HR or Recruiters. They don't know crap about what makes a good developer and will actually end up filtering out the good ones. All they do is look for a set of keywords to match, and they even fail at that task -- I can't count the number of times I've had to explain that MySQL is NOT Microsoft SQL experience...</p>
<p>So my advice, as a developer who was recently looking for work, is to post ads and do screening yourself. You can find out alot from a phone interview before you have to spend the time to bring them in for an in-person talk. I used Craigslist, Dice, Monster, HotJobs, python.org and Joel's software jobs page to look.</p>
http://stackoverflow.com/questions/347286/what-are-the-various-files-that-could-have-path-declarations-for-os-x-terminal-in/347291#3472913Answer by Brian C. Lane for What are the various files that could have PATH declarations for OS X Terminal in them?Brian C. Lane2008-12-07T05:41:51Z2008-12-07T05:41:51Z<p>It looks like your changes aren't being applied. Note no /usr/local/mysql/bin</p>
<p>Read the bash manpage section on INVOCATION, .bash_login is only read if it is a login shell -- which the terminal shell is not. You need to put it into ~/.bashrc instead. It will be read for logins and non-login shells.</p>
http://stackoverflow.com/questions/347085/should-i-use-php-or-perl-for-massaging-my-data-and-storing-retrieving-it-with-mys/347209#3472092Answer by Brian C. Lane for Should I use PHP or Perl for massaging my data and storing/retrieving it with MySQL?Brian C. Lane2008-12-07T03:59:15Z2008-12-07T03:59:15Z<p>PHP works fine from the command line. If it is what you are familiar with, and more importantly what the company is familiar with (think of who has to maintain it after you). </p>
http://stackoverflow.com/questions/346349/c-language-problem/346368#3463680Answer by Brian C. Lane for C language problemBrian C. Lane2008-12-06T15:15:22Z2008-12-06T15:27:34Z<p>Ok, the code as presented is a pile of crap. I will leave it as an exercise for you to sort out what I fixed for you:</p>
<pre><code>#include <stdio.h>
int main(int argc, char *argv[])
{
int pass = 0;
int fail = 0;
int grade= 0;
int studentcounter;
for (studentcounter=1; studentcounter<=10; studentcounter++ )
{
printf("Enter grade for student #%-2d :", studentcounter);
scanf("%d",&grade);
if(grade >=50)
pass++;
if(grade<=49)
fail++;
}
printf("the number of fail is %d\n",fail);
printf("the number of pass is %d\n",pass);
}
</code></pre>
<p>PS. If this is homework, please give credit when you turn it in. You can learn a lot by looking at other people's code, but never claim to create that which you haven't.</p>
http://stackoverflow.com/questions/329608/protect-email-on-web-site-from-robots-and-crawlers/329621#3296212Answer by Brian C. Lane for Protect Email on Web Site From Robots and CrawlersBrian C. Lane2008-11-30T23:49:20Z2008-12-04T15:21:28Z<p>See <a href="http://stackoverflow.com/questions/308772/what-are-some-ways-to-protect-emails-on-websites-from-spambots">this Stackoverflow thread</a></p>
<p>I'm partial to using javascript to construct the mailto URL on the client side.</p>
http://stackoverflow.com/questions/336240/how-to-redirect-to-or-enforce-ssl-connection/336264#3362641Answer by Brian C. Lane for How to redirect to (or enforce) SSL connection?Brian C. Lane2008-12-03T05:03:47Z2008-12-03T05:03:47Z<p>Take a look at the PHP header manpage, specifically <a href="http://www.php.net/manual/ro/function.header.php#83448" rel="nofollow">this user contribution</a> regarding https handling and redirection.</p>
http://stackoverflow.com/questions/332992/optimize-feed-fetching/333060#3330600Answer by Brian C. Lane for Optimize feed fetchingBrian C. Lane2008-12-02T04:32:19Z2008-12-02T04:32:19Z<p>The best thing to do is to be 'nice' and not overload the feeds with lots of needless requests. I settled on a 1 hour update time for one of my webapps that monitors about 150 blogs for updates. I store the time they were last checked in the database and use that to decide when to update them. The feeds were added at random times so they aren't all updated at the same time.</p>
http://stackoverflow.com/questions/332255/difference-between-class-foo-and-class-fooobject-in-python/332290#3322903Answer by Brian C. Lane for Difference between class foo and class foo(object) in PythonBrian C. Lane2008-12-01T21:24:44Z2008-12-01T21:24:44Z<p><code>class foo(object):</code> is the 'new' way of declaring classes.</p>
<p>This change was made in python 2.2, see <a href="http://www.python.org/doc/2.2.3/whatsnew/sect-rellinks.html" rel="nofollow">this PEP for an explanation</a> of the differences. </p>
http://stackoverflow.com/questions/331217/how-to-take-a-java-web-application-offline/331232#3312320Answer by Brian C. Lane for How to take a Java Web-application offline?Brian C. Lane2008-12-01T15:50:56Z2008-12-01T15:50:56Z<p>You could create an image of your server as a VMware instance and distribute it with a copy of VMware player (licensing allowing of course). Personally I'd build it on top of a Linux distribution like CentOS5.</p>
http://stackoverflow.com/questions/330056/clustering-lat-longs-in-a-database/330110#3301100Answer by Brian C. Lane for Clustering Lat/Longs in a DatabaseBrian C. Lane2008-12-01T05:38:49Z2008-12-01T05:38:49Z<p>For <a href="http://www.movielandmarks.com" rel="nofollow">movielandmarks.com</a> I used the clustering code from <a href="http://forum.sydphp.org/?a=topic&t=1074" rel="nofollow">Mike Purvis</a>, one of the authors of <a href="http://rads.stackoverflow.com/amzn/click/1590597079" rel="nofollow">Beginning Google Maps Applications with PHP and AJAX</a>. It builds trees of clusters/points for different zoom levels using PHP and MySQL, storing it in the database so that recall is very fast. Some of it may be useful to you even if you are using a different database.</p>
http://stackoverflow.com/questions/329628/how-does-find-nearest-locations-work/329646#3296463Answer by Brian C. Lane for How does "Find Nearest Locations" work?Brian C. Lane2008-12-01T00:02:24Z2008-12-01T00:02:24Z<p>There is a standard zipode/location database available. <a href="http://databases.about.com/od/access/a/zipcodedatabase.htm" rel="nofollow">Here is one version in Access format</a> that includes the lat/long of the zipcode as well as other information. You can then use The PostgreSQL GIS extensions to do searches on the locations for example.</p>
<p>(assuming of course that you extract the access db and insert into a more friendly database like PostgreSQL)</p>
http://stackoverflow.com/questions/329622/how-can-i-implement-commit-rollback-for-mysql-in-php/329629#3296295Answer by Brian C. Lane for How can I implement commit/rollback for MySQL in PHP?Brian C. Lane2008-11-30T23:52:14Z2008-11-30T23:57:27Z<p>Take a look at <a href="http://www.phpro.org/tutorials/Introduction-to-PHP-PDO.html#11" rel="nofollow">this tutorial</a> on transactions with PDO.</p>
<p>Basically wrap the long running code in:</p>
<pre><code>$dbh->beginTransaction();
...
$dbh->commit();
</code></pre>
<p>And <a href="http://usphp.com/manual/en/ref.pdo.php" rel="nofollow">according to this PDO document page</a>:</p>
<p>"When the script ends or when a connection is about to be closed, if you have an outstanding transaction, PDO will automatically roll it back. "</p>
<p>So you will lose the transaction that was pending when the script timed out.</p>
<p>But really, you ought to redesign this so that it doesn't depend on the scriipt staying alive.</p>
http://stackoverflow.com/questions/326775/best-official-scripting-language-for-windows-programmers/329170#3291702Answer by Brian C. Lane for Best "official" scripting language for Windows programmersBrian C. Lane2008-11-30T18:36:08Z2008-11-30T18:36:08Z<p>I'd urge you to give Python a chance. It looks a little odd to 'C' programmers at first, but its easy to pick up and more importantly easy to remember. You are going to have interns of various skill levels using and modifying the code so you want something that can draw from a wide user base. And if you are going to go to the trouble of installing something new why choose powershell which is going to be a dead end for anyone using it.</p>
http://stackoverflow.com/questions/328059/create-a-list-that-contain-each-line-of-a-file/328068#3280689Answer by Brian C. Lane for Create a List that contain each Line of a FileBrian C. Lane2008-11-29T22:03:34Z2008-11-29T22:03:34Z<p>Its alot easier than that:</p>
<pre><code>List = open("filename.txt").readlines()
</code></pre>
<p>This returns a list of each line in the file.</p>
http://stackoverflow.com/questions/328041/scripting-language-choice-for-initial-performance/328065#3280656Answer by Brian C. Lane for Scripting language choice for initial performanceBrian C. Lane2008-11-29T22:01:23Z2008-11-29T22:01:23Z<p>Because of your requirement for fast startup time and a calling frequency greater than 1Hz I'd recommend either staying with C and figuring out how to make it portable (not always as easy as a few ifdefs) or exploring the possibility of turning it into a service daemon that is always running. Of course this depends on how </p>
<p>Python can have lower startup times if you compile the module and run the .pyc file, but it is still generally considered slow. Perl, in my experience, in the fastest of the scripting languages so you might have good luck with a perl daemon.</p>
<p>You could also look at cross platform frameworks like gtk, wxWidgets and Qt. While they are targeted at GUIs they do have low level cross platform data types and network libraries that could make the job of using a fast C based application easier.</p>
http://stackoverflow.com/questions/326300/python-best-library-for-drawing/326363#3263636Answer by Brian C. Lane for Python - Best library for drawingBrian C. Lane2008-11-28T18:17:39Z2008-11-28T18:17:39Z<p><a href="http://wxpython.org/" rel="nofollow">wxPython</a> is pretty easy to get up to speed with. The <a href="http://wiki.wxpython.org/Getting%20Started" rel="nofollow">tutorial</a> is fairly good, and it is cross-platform so your code will run on OSX, Linux and WinXP with little or no changes to it.</p>
<p>Here is a basic program to draw a circle in a window, from <a href="http://www.daniweb.com/code/snippet653.html" rel="nofollow">this site</a>.</p>
<pre><code># draw lines, a rounded-rectangle and a circle on a wx.PaintDC() surface
# tested with Python24 and wxPython26 vegaseat 06mar2007
# Works with Python2.5 on OSX bcl 28Nov2008
import wx
class MyFrame(wx.Frame):
"""a frame with a panel"""
def __init__(self, parent=None, id=-1, title=None):
wx.Frame.__init__(self, parent, id, title)
self.panel = wx.Panel(self, size=(350, 200))
self.panel.Bind(wx.EVT_PAINT, self.on_paint)
self.Fit()
def on_paint(self, event):
# establish the painting surface
dc = wx.PaintDC(self.panel)
dc.SetPen(wx.Pen('blue', 4))
# draw a blue line (thickness = 4)
dc.DrawLine(50, 20, 300, 20)
dc.SetPen(wx.Pen('red', 1))
# draw a red rounded-rectangle
rect = wx.Rect(50, 50, 100, 100)
dc.DrawRoundedRectangleRect(rect, 8)
# draw a red circle with yellow fill
dc.SetBrush(wx.Brush('yellow'))
x = 250
y = 100
r = 50
dc.DrawCircle(x, y, r)
# test it ...
app = wx.PySimpleApp()
frame1 = MyFrame(title='rounded-rectangle & circle')
frame1.Center()
frame1.Show()
app.MainLoop()
</code></pre>
http://stackoverflow.com/questions/325993/distributed-filesystem-sanity-check/326092#3260920Answer by Brian C. Lane for Distributed filesystem sanity checkBrian C. Lane2008-11-28T15:52:15Z2008-11-28T15:52:15Z<p>You could try running a source control system on top of your reliable file system. The problem then becomes how to expunge old check ins after your timeout. You can setup an Apache server with DAV_SVN and it will commit each change made through the DAV interface. I'm not sure how well this will scale with large file sizes that you describe.</p>
http://stackoverflow.com/questions/324307/javascript-accessing-global-variables-inside-a-callback/324322#3243223Answer by Brian C. Lane for javascript: accessing global variables inside a callbackBrian C. Lane2008-11-27T17:35:21Z2008-11-27T17:35:21Z<p>If <code>processingManager.DoWork();</code> is asynchronous it is possible that it can return before bVisited has been set.</p>
<p>Also, you have bvisited in your test, not bVisited -- is that a cut&paste from your code?</p>
http://stackoverflow.com/questions/324277/subversion-practical-with-a-php-framework-app-or-not/324300#3243008Answer by Brian C. Lane for Subversion... practical with a PHP framework app or not?Brian C. Lane2008-11-27T17:25:15Z2008-11-27T17:25:15Z<p>Subversion allows you to store your source in a central location, make changes from multiple places (ie. laptop, desktop), track changes and revert changes to your source tree if needed.</p>
<p>Have you ever made a big 'improvement' and then decided you were going in the wrong direction? With Subversion you can revert to the version of your source before you started heading off in the wrong direction.</p>
<p>Or how about this, you make some subtle changes to the codebase, but don't notice that you introduced a new bug until much later. You can use subversion to revert to previous code versions, helping you track down the change that introduced the bug.</p>
<p>It is more valuable when sharing the source with multiple developers, but even for my single developer projects I find it very handy to have all my source and changes in a Subversion repository.</p>
<p>If you combine it with Trac, you can then keep track of bugs/features, milestones, and use the Trac Wiki to document your project.</p>
http://stackoverflow.com/questions/324237/how-do-i-bring-up-a-promotion-to-my-boss/324281#3242812Answer by Brian C. Lane for How do I bring up a promotion to my boss?Brian C. Lane2008-11-27T17:17:32Z2008-11-27T17:17:32Z<p>It sounds like you don't have regular reviews. I would sit down with your boss and ask him to institute a review and raise process, not just for you but for everyone in the team. 6 months is usually a good interval and the feedback should go both ways. Don't make it confrontational, but be firm that you think you deserve a raise/promotion and that there should be a well defined process.</p>
http://stackoverflow.com/questions/323957/edit-etc-sudoers-from-script/324009#3240096Answer by Brian C. Lane for edit /etc/sudoers from scriptBrian C. Lane2008-11-27T15:15:31Z2008-11-27T15:15:31Z<p>You should make your edits to a temporary file, then use visudo -c -f sudoers.temp to confirm that the changes are valid and then copy it over the top of /etc/sudoers</p>
<pre><code>#!/bin/sh
if [ -f "/etc/sudoers.tmp" ]; then
exit 1
fi
touch /etc/sudoers.tmp
edit_sudoers /tmp/sudoers.new
visudo -c -f /tmp/sudoers.new
if [ "$?" -eq "0" ]; then
cp /tmp/sudoers.new /etc/sudoers
fi
rm /etc/sudoers.tmp
</code></pre>
http://stackoverflow.com/questions/321629/what-is-the-best-way-to-get-the-errors-from-a-production-site-in-php/322495#3224950Answer by Brian C. Lane for What is the best way to get the errors from a production site in PHP?Brian C. Lane2008-11-26T23:14:27Z2008-11-27T02:54:32Z<p>One thing I have used in the past is <a href="https://fedorahosted.org/epylog/" rel="nofollow">epylog</a>, it is a very flexible log monitoring app written in python. You can set it up to monitor your error logs and include the errors (or parts of them) in a log summary that is emailed to you.</p>
<p>I'd lean towards storing the more detailed error data in a flat file on the server and sending you an email to tell you to check the log. A cron job that watches the error directory or files for changes and has a rate limit set would be a good way to minimize impact on your running application.</p>
http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/321897#3218974Answer by Brian C. Lane for What is your favorite "programmer" t-shirt?Brian C. Lane2008-11-26T19:36:32Z2008-11-26T19:36:32Z<p><a href="http://store.xkcd.com/" rel="nofollow">From the xkcd store</a></p>
<p><img src="http://imgs.xkcd.com/store/imgs/compiling_square_0.png" alt="alt text" />
<img src="http://imgs.xkcd.com/store/imgs/compiling_square_1.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/317963/standard-c-or-python-libraries-to-compute-standard-deviation-of-normal-distributi/317979#3179791Answer by Brian C. Lane for Standard C or Python libraries to compute standard deviation of normal distribution.Brian C. Lane2008-11-25T16:29:05Z2008-11-25T16:29:05Z<p>Take a look at the <a href="http://scipy.org/" rel="nofollow">sciPy Project</a>, it should have what you need.</p>
http://stackoverflow.com/questions/317788/is-ssl-really-worth-it/317856#3178561Answer by Brian C. Lane for Is SSL really worth it?Brian C. Lane2008-11-25T16:03:52Z2008-11-25T16:03:52Z<p>More information is needed to make an intelligent decision, but you don't have to use SSL to secure your data. You could always use another algorithm and a shared secret between the client and server, or public/private keys. You would then have better control over which bits to secure and which bits to leave open.</p>
<p>In general things like logins should always be encrypted using SSL. You could exchange a new set of keys over the SSL channel and then switch to non-SSL using the keys to protect the sensitive data.</p>
http://stackoverflow.com/questions/316325/import-wx-fails-after-installation-of-wxpython-on-windows-xp/316466#3164660Answer by Brian C. Lane for "import wx" fails after installation of wxpython on Windows XPBrian C. Lane2008-11-25T05:50:18Z2008-11-25T05:50:18Z<p>Try the ansi version instead of the unicode one. IIRC it needs to match the python 2.6 install to work properly.</p>
http://stackoverflow.com/questions/1698217/pythonic-way-to-find-a-regular-expression-matchComment by Brian C. Lane on Pythonic way to find a regular expression matchBrian C. Lane2009-11-08T23:11:13Z2009-11-08T23:11:13Zregexes shouldn't be used with html/XML -- too many ways for things to break. Look at the BeautiflSoup or one of the html parser modules.
http://stackoverflow.com/questions/1357254/iphone-sdk-gamekit-and-large-files-connection-lostComment by Brian C. Lane on iPhone SDK: GameKit and large files + connection lostBrian C. Lane2009-10-16T05:51:27Z2009-10-16T05:51:27ZI notice that the docs suggest a 1000 byte limit, and also mentions 95k in another spot but it isn't clear if these are hard limits or what.http://stackoverflow.com/questions/1555968/efficient-way-to-find-the-largest-key-in-a-dictionary-with-non-zero-value/1555991#1555991Comment by Brian C. Lane on Efficient way to find the largest key in a dictionary with non-zero valueBrian C. Lane2009-10-12T18:03:06Z2009-10-12T18:03:06ZSince the OP is new, a description of what is happening might be helpful as well.http://stackoverflow.com/questions/1555968/efficient-way-to-find-the-largest-key-in-a-dictionary-with-non-zero-value/1555997#1555997Comment by Brian C. Lane on Efficient way to find the largest key in a dictionary with non-zero valueBrian C. Lane2009-10-12T18:00:55Z2009-10-12T18:00:55ZThat function depends on access to the global. Bad idea.http://stackoverflow.com/questions/1551918/iphone-managing-version-updates-of-a-native-appComment by Brian C. Lane on iphone : Managing version updates of a native appBrian C. Lane2009-10-11T22:22:47Z2009-10-11T22:22:47ZAs a user I would hate your app if it ever locked me out because I hadn't updated. And I don't think such a scheme would pass the review process.
The App management in iTunes already tells the user when there are updates available. It should be left up to them to make the decision to install or not.
http://stackoverflow.com/questions/975223/jquery-plugin-does-not-work-in-a-modal/980642#980642Comment by Brian C. Lane on jQuery Plugin does not work in a Modal Brian C. Lane2009-08-18T23:21:19Z2009-08-18T23:21:19ZThanks for this! http://stackoverflow.com/questions/1145540/connection-refused-when-trying-to-open-write-and-close-a-socket-a-few-times-pytComment by Brian C. Lane on Connection refused when trying to open, write and close a socket a few times (Python)Brian C. Lane2009-07-17T21:15:48Z2009-07-17T21:15:48ZFire up wireshark and watch to see if the packets are beign generated and rejected, or aren't making it onto the wire at all.
http://stackoverflow.com/questions/1134402/cake-php-plugin-img-diectory-throws-missing-method-instead-of-404/1134484#1134484Comment by Brian C. Lane on Cake PHP plugin/img/ diectory throws missing method instead of 404Brian C. Lane2009-07-16T15:05:15Z2009-07-16T15:05:15ZThanks, I'll give that a try to see if it is cleaner than my solution above. I suspect that it won't be, because the cakeError call seems to delete the cookie before it gets to the app_error.php class.http://stackoverflow.com/questions/1134402/cake-php-plugin-img-diectory-throws-missing-method-instead-of-404Comment by Brian C. Lane on Cake PHP plugin/img/ diectory throws missing method instead of 404Brian C. Lane2009-07-16T15:03:47Z2009-07-16T15:03:47ZHere's where I'm at now. I modified the cached() function in the core dispatch.php file to call a custom 404 error handler that returns just a 404 header, no content. The problem is that when a plugin vendors file is missing it returns a false from cached and falls into looking for controller methods.
Returning the blank 404 error works, and the cookie doesn't have a chance to be deleted by the standard cakeError() call.http://stackoverflow.com/questions/1134402/cake-php-plugin-img-diectory-throws-missing-method-instead-of-404/1134484#1134484Comment by Brian C. Lane on Cake PHP plugin/img/ diectory throws missing method instead of 404Brian C. Lane2009-07-15T23:57:53Z2009-07-15T23:57:53ZTried adding a custom app_error.php handler (that just dies when hit). That removes the response page, but the cookie is still deleted. Its buried someplace higher up in the call stack apparently.
http://stackoverflow.com/questions/1134402/cake-php-plugin-img-diectory-throws-missing-method-instead-of-404/1134564#1134564Comment by Brian C. Lane on Cake PHP plugin/img/ diectory throws missing method instead of 404Brian C. Lane2009-07-15T23:32:59Z2009-07-15T23:32:59ZThe problem with this is that the img directory is buried inside Cake's directory tree, so skipping the rewrite doesn't work for images that do exist. I could put the full path on there, but there should be a right way to do this...http://stackoverflow.com/questions/1134402/cake-php-plugin-img-diectory-throws-missing-method-instead-of-404/1134484#1134484Comment by Brian C. Lane on Cake PHP plugin/img/ diectory throws missing method instead of 404Brian C. Lane2009-07-15T22:57:18Z2009-07-15T22:57:18ZYou are correct about having debug > 1. Set it to 0 and it works. Adding .htaccess didn't help, the controller is still catching it. I guess I'll have to try to find some good docs on app_error.php
http://stackoverflow.com/questions/326300/python-best-library-for-drawing/326363#326363Comment by Brian C. Lane on Python - Best library for drawingBrian C. Lane2009-07-15T21:45:16Z2009-07-15T21:45:16ZThanks for explaining the -1. Maybe you don't realize that wxPython is included by default on OSX and many Linux distributions. http://stackoverflow.com/questions/960693/jquery-ui-dialog-button-positioning/960887#960887Comment by Brian C. Lane on jQuery UI Dialog button positioningBrian C. Lane2009-06-27T04:43:25Z2009-06-27T04:43:25ZThis doesn't work if you have multiple dialogs.http://stackoverflow.com/questions/366696/jquery-dialog-box/416900#416900Comment by Brian C. Lane on JQUERY Dialog BoxBrian C. Lane2009-06-05T21:53:02Z2009-06-05T21:53:02ZThis worked for me, thanks!