User Dan Udey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:00:01Z http://stackoverflow.com/feeds/user/21450 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/788411/check-to-see-if-python-script-is-running/789383#789383 2 Answer by Dan Udey for Check to see if python script is running Dan Udey 2009-04-25T17:37:56Z 2009-04-25T17:37:56Z <p>Drop a pidfile somewhere (e.g. /tmp). Then you can check to see if the process is running by checking to see if the PID in the file exists. Don't forget to delete the file when you shut down cleanly, and check for it when you start up.</p> <pre><code>#/usr/bin/env python import os import sys pid = str(os.getpid()) pidfile = "/tmp/mydaemon.pid" if os.path.isfile(pidfile): print "%s already exists, exiting" % pidfile sys.exit() else: file(pidfile, 'w').write(pid) # Do some actual work here os.unlink(pidfile) </code></pre> <p>Then you can check to see if the process is running by checking to see if the contents of /tmp/mydaemon.pid are an existing process. Monit (mentioned above) can do this for you, or you can write a simple shell script to check it for you using the return code from ps.</p> <pre><code>ps up `cat /tmp/mydaemon.pid ` &gt;/dev/null &amp;&amp; echo "Running" || echo "Not running" </code></pre> <p>For extra credit, you can use the atexit module to ensure that your program cleans up its pidfile under any circumstances (when killed, exceptions raised, etc.).</p> http://stackoverflow.com/questions/14627/what-was-your-biggest-mistake-involving-programmatically-sending-email/526437#526437 2 Answer by Dan Udey for What was your biggest mistake involving programmatically sending email? Dan Udey 2009-02-08T21:25:09Z 2009-02-08T21:25:09Z <p>Not my mistake, but a common enough one.</p> <p>We had a ticketing system that would automatically send a 'We've received your message, here's your ticket number' e-mail whenever it got a message, which is fairly standard.</p> <p>Another company had set up their system to reject mail with a message that essentially said 'We're not going to deliver your message unless you click on this link to prove you're human' (which is a horrible idea and trivial to bypass). They also, in this message, did not set the appropriate in-reply-to headers, they just generated a new e-mail and included the old subject/body in it. Also, the link in their e-mail didn't work.</p> <p>End result? They sent us an e-mail, and we sent them a message saying we got their message and had generated a ticket. We then sent them an e-mail saying we got theirs. They replied, saying they wouldn't allow our message through without us clicking on the (broken) link. Since this was a new thread, we sent them a message saying we got their e-mail and generated a ticket.</p> <p>Since I didn't have access to the backend to block their server, and since it was the graveyard shift, I had to write a python script to delete the tickets from the system and run it every few minutes, lest our system be completely drowned out. Our ticket counter increased by several thousand that night.</p> <p>I sent an e-mail to my boss, who had the ticketing system delete any messages from them.</p> http://stackoverflow.com/questions/526235/how-to-conduct-legitimate-email-campaigns/526377#526377 4 Answer by Dan Udey for How to conduct legitimate email campaigns Dan Udey 2009-02-08T21:01:24Z 2009-02-08T21:01:24Z <p>Four steps that will significantly increase your chances:</p> <ol> <li>Make sure that your outgoing mail server is using well-behaved software (I suggest postfix). Ill-behaved mail software can cause problems for you by doing things that make servers reject you.</li> <li>Make sure that your server's forward- and reverse-DNS match. Many mail servers will reject mail from other servers which are not properly configured.</li> <li>Set up SPF records for your domain and test them.</li> <li>Set up DomainKeys for your domain, which can be a little complex.</li> <li>Sign up for ISP feedback loops – (e.g. <a href="http://feedbackloop.yahoo.net/" rel="nofollow">Yahoo's</a>)</li> </ol> <p>When rolling out one of our websites, our mail server was throttled by Yahoo! because of the volume of e-mail we were sending – all of which was sign-up notifications. We were getting so many new users that they throttled our server. We got around that by flushing that server's mail queue to another server. After three servers got throttled, we managed to get the rest of our mail delivered, and we've been fine since.</p> <p>You may also wish to consider a third-party service, like <a href="http://www.certifiedemail.net/" rel="nofollow">CertifiedEmail</a>, which may cost money but which may also ensure a higher rate of delivery.</p> <p>Finally, send test messages through your system to test accounts on all free webmail services, every ISP you can find, and every mail client you can get your hands on. Only after you've done all of the above should you even consider sending out mail.</p> <p>Once you're ready to go, I suggest starting with a small group of subscribers and then moving up to the full list later. Better to find problems while they're small.</p> http://stackoverflow.com/questions/187804/automatically-kill-process-that-consume-too-much-memory-or-stall-on-linux/227719#227719 1 Answer by Dan Udey for Automatically kill process that consume too much memory or stall on linux Dan Udey 2008-10-22T22:13:42Z 2008-10-22T22:13:42Z <p>If you want to set up a fairly comprehensive monitoring system, check out <a href="http://www.tildeslash.com/monit/" rel="nofollow">monit</a>. It can be very (VERY VERY VERY VERY) chatty at times, but it will do a lot of monitoring, restart services, alert you, etc.</p> <p>That said, don't be surprised if you're getting dozens of e-mails a day until you get used to configuring it and telling it what not to bug you about.</p> http://stackoverflow.com/questions/207517/why-did-you-start-using-python/207651#207651 1 Answer by Dan Udey for Why did you start using Python? Dan Udey 2008-10-16T07:09:43Z 2008-10-16T07:09:43Z <p>Because I hated programming, but had to program. Python had always sounded distasteful because of its whitespace issue, and because of some bad company (zope and yum, to name a few) that gave me a bad impression of the language. Still, lots of people were talking about it, so I had to at least give it a try.</p> <p>It was weird at first, and still is - I guess because I'm learning new things.</p> <p>The thing is, the only programming language I really knew at the time was PHP (I'm Zend Certified for PHP4 and 5), and I hated coding. I hated programming, because it was such a chore. It was a pain to figure out how to do what I wanted, and it was a pain to do it, and it was all around a huge frustration and waste of my time. I didn't realize what I didn't like was PHP, and that it had soured me on the whole affair.</p> <p>I <em>tried</em> Python because I needed to code something. I started <em>using</em> Python because it made programming fun again.</p> http://stackoverflow.com/questions/114970/how-can-i-trigger-core-animation-on-an-animator-proxy-during-a-call-to-resizesubv/146802#146802 0 Answer by Dan Udey for How can I trigger Core Animation on an animator proxy during a call to resizeSubviewsWithOldSize? Dan Udey 2008-09-28T21:39:52Z 2008-09-28T21:39:52Z <p>This really isn't an answer, but I would advise against animating anything while dragging to resize a window. The screen is already animating (from the window moving) - further animations are likely going to be visually confusing and extraneous.</p> <p>CoreAnimation effects are best used to move from one known state to another - for example, when a preference window is resizing to accompany a new pane's contents, and you know both the old and new sizes, or when you are fading an object in or out (or both). Doing animation while the window is resizing is going to be visually confusing and make it harder for the user to focus on getting the size of the window where they want it to be.</p> http://stackoverflow.com/questions/146737/closures-in-php-what-precisely-are-they-and-when-would-you-need-to-use-them/146775#146775 6 Answer by Dan Udey for Closures in PHP... what, precisely, are they and when would you need to use them? Dan Udey 2008-09-28T21:23:06Z 2008-09-28T21:23:06Z <p>When you will need a function in the future which performs a task that you have decided upon now.</p> <p>For example, if you read a config file and one of the parameters tells you that the <code>hash_method</code> for your algorithm is <code>multiply</code> rather than <code>square</code>, you can create a closure that will be used wherever you need to hash something.</p> <p>The closure can be created in (for example) <code>config_parser()</code>; it creates a function called <code>do_hash_method()</code> using variables local to <code>config_parser()</code> (from the config file). Whenever <code>do_hash_method()</code> is called, it has access to variables in the local scope of<code>config_parser()</code> even though it's not being called in that scope.</p> <p>A hopefully good hypothetical example:</p> <pre><code>function config_parser() { // Do some code here // $hash_method is in config_parser() local scope $hash_method = 'multiply'; if ($hashing_enabled) { function do_hash_method($var) { // $hash_method is from the parent's local scope if ($hash_method == 'multiply') return $var * $var; else return $var ^ $var; } } } function hashme($val) { // do_hash_method still knows about $hash_method // even though it's not in the local scope anymore $val = do_hash_method($val) } </code></pre> http://stackoverflow.com/questions/146730/development-with-a-tablet-not-a-mouse/146744#146744 1 Answer by Dan Udey for Development with a tablet, not a mouse Dan Udey 2008-09-28T21:10:21Z 2008-09-28T21:10:21Z <p>For development, I tend to switch between the keyboard for typing and shortcuts, and the mouse for pointing at things. Given that context:</p> <p>I've heard no end of praise for this approach from everyone who's used it. They say it's easier on the wrist, it feels more natural, and once you're used to it, it's impossible to go back without missing it. Strong enough praise that I'm planning on switching within the next two paycheques.</p> http://stackoverflow.com/questions/146607/im-using-python-regexes-in-a-criminally-inefficient-manner/146734#146734 2 Answer by Dan Udey for I'm using Python regexes in a criminally inefficient manner Dan Udey 2008-09-28T21:05:37Z 2008-09-28T21:05:37Z <p>Creating a templating language is all well and good, but shouldn't one of the goals of the templating language be easy readability and efficient parsing? The example you gave seems to be neither.</p> <p>As Jamie Zawinsky famously said:</p> <blockquote> <p>Some people, when confronted with a problem, think "I know, I'll use regular expressions!" Now they have two problems.</p> </blockquote> <p>If regular expressions are a solution to a problem you have created, the best bet is not to write a better regular expression, but to redesign your approach to eliminate their use entirely. Regular expressions are complicated, expensive, hugely difficult to maintain, and (ideally) should only be used for working around a problem someone else created.</p> http://stackoverflow.com/questions/146531/mysql5-delete-all-but-the-50-newest-rows/146541#146541 -1 Answer by Dan Udey for MySQL5: Delete all but the 50 newest rows Dan Udey 2008-09-28T19:29:02Z 2008-09-28T19:29:02Z <p>Assuming this query selects the rows you want to keep:</p> <pre><code>SELECT timestampcol FROM table ORDER BY timestampcol DESC LIMIT 49,1; </code></pre> <p>Then you could use a subquery like so:</p> <pre><code>DELETE FROM table WHERE timestampcol &lt; ( SELECT timestampcol FROM table ORDER BY timestampcol DSEC LIMIT 49,1 ) </code></pre> <p>Of course, make sure you have a backup before doing anything as potentially destructive. Note that compared to the other approaches mentioned, which use <code>IN</code>, this one will avoid doing 50 integer comparisons for every row to be deleted, making it (potentially) 50 times faster - assuming I got my SQL right.</p> http://stackoverflow.com/questions/146480/how-do-i-get-the-resolution-of-the-main-monitor-in-mac-os-x-in-c/146509#146509 4 Answer by Dan Udey for How do I get the resolution of the main monitor in Mac OS X in C++? Dan Udey 2008-09-28T19:06:56Z 2008-09-28T19:20:39Z <p>Using CoreGraphics:</p> <pre><code>CGRect mainMonitor = CGDisplayBounds(CGMainDisplayID()); CGFloat monitorHeight = CGRectGetHeight(mainMonitor); CGFloat monitorWidth = CGRectGetWidth(mainMonitor); </code></pre> <p>More information at Apple's <a href="http://developer.apple.com/documentation/GraphicsImaging/Reference/Quartz_Services_Ref/Reference/reference.html" rel="nofollow">Quartz Display Services Reference</a>.</p> http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146475#146475 3 Answer by Dan Udey for What is the worst class/variable/function name you have ever encountered Dan Udey 2008-09-28T18:47:14Z 2008-09-28T18:47:14Z <p>Anything that uses i, I, l, 1, o, O, or 0.</p> http://stackoverflow.com/questions/140734/best-way-to-cache-resized-images-using-php-and-mysql/141378#141378 6 Answer by Dan Udey for Best way to cache resized images using PHP and MySQL Dan Udey 2008-09-26T19:17:48Z 2008-09-26T19:17:48Z <p>I would do it in a different manner.</p> <p>Problems: 1. Having PHP serve the files out is less efficient than it could be. 2. PHP has to check the existence of files every time an image is requested 3. Apache is far better at this than PHP will ever be.</p> <p>There are a few solutions here.</p> <p>You can use <code>mod_rewrite</code> on Apache. It's possible to use mod_rewrite to test to see if a file exists, and if so, serve that file instead. This bypasses PHP entirely, and makes things far faster. The real way to do this, though, would be to generate a specific URL schema that should always exist, and then redirect to PHP if not.</p> <p>For example:</p> <pre><code>RewriteCond ${REQUEST_URI} ^/images/cached/ RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f RewriteRule (.*) /images/generate.php?$1 [L] </code></pre> <p>So if a client requests <code>/images/cached/&lt;something&gt;</code> and that file doesn't exist already, Apache will redirect the request to <code>/images/generate.php?/images/cached/&lt;something&gt;</code>. This script can then generate the image, write it to the cache, and then send it to the client. In the future, the PHP script is never called except for new images.</p> <p>Use caching. As another poster said, use things like <code>mod_expires</code>, Last-Modified headers, etc. to respond to conditional GET requests. If the client doesn't have to re-request images, page loads will speed dramatically, and load on the server will decrease.</p> <p>For cases where you do have to send an image from PHP, you can use <code>mod_xsendfile</code> to do it with less overhead. See <a href="http://blog.adaniels.nl/articles/how-i-php-x-sendfile/" rel="nofollow">the excellent blog post from Arnold Daniels</a> on the issue, but note that his example is for downloads. To serve images inline, take out the Content-Disposition header (the third header() call).</p> <p>Hope this helps - more after my migraine clears up.</p> http://stackoverflow.com/questions/141128/does-tcp-ip-prevent-packet-replays/141184#141184 3 Answer by Dan Udey for Does TCP/IP prevent packet replays? Dan Udey 2008-09-26T18:37:59Z 2008-09-26T18:37:59Z <p>TCP uses sequence numbers to detect duplication in the case of retransmission, which will also prevent trivial replay attacks.</p> <p>From RFC 793, Section 3.3 - Sequence Numbers:</p> <blockquote> <p>A fundamental notion in the design is that every octet of data sent over a TCP connection has a sequence number. Since every octet is sequenced, each of them can be acknowledged. The acknowledgment mechanism employed is cumulative so that an acknowledgment of sequence number X indicates that all octets up to but not including X have been received. This mechanism allows for straight-forward duplicate detection in the presence of retransmission. Numbering of octets within a segment is that the first data octet immediately following the header is the lowest numbered, and the following octets are numbered consecutively.</p> </blockquote> <p>The duplicate detection will ensure that the same packet cannot be trivially retransmitted. Sequence numbers will also ensure that insertion (rather than replacement) of data in the data stream will be noticed, as further legitimate packets following forged packets will have duplicate sequence numbers, which will disrupt the data flow. This will likely cause those packets to be dropped as duplicates, which will likely break the protocol being used.</p> <p>More information about the original (1981) TCP/IP specification can be found in <a href="http://www.faqs.org/rfcs/rfc793.html" rel="nofollow">RFC 793</a>, and the many other RFCs involving extensions or modifications to the TCP/IP protocol.</p> http://stackoverflow.com/questions/135845/are-booleans-as-method-arguments-unacceptable/135897#135897 1 Answer by Dan Udey for Are booleans as method arguments unacceptable? Dan Udey 2008-09-25T20:38:40Z 2008-09-25T20:38:40Z <p>Booleans make sense when you have an obvious toggle which can only be one of two things (i.e. the state of a light bulb, on or off). Other than that, it's good to write it in such a way that it's obvious what you're passing - e.g. disk writes - unbuffered, line-buffered, or synchronous - should be passed as such. Even if you don't want to allow synchronous writes now (and so you're limited to two options), it's worth considering making them more verbose for the purposes of knowing what they do at first glance.</p> <p>That said, you can also use False and True (boolean 0 and 1) and then if you need more values later, expand the function out to support user-defined values (say, 2 and 3), and your old 0/1 values will port over nicely, so your code ought not to break.</p> http://stackoverflow.com/questions/135826/for-tabular-data-what-renders-faster-css-or-table/135860#135860 0 Answer by Dan Udey for For tabular data, what renders faster, CSS or <TABLE>? Dan Udey 2008-09-25T20:33:19Z 2008-09-25T20:33:19Z <p>For tabular data, use a table. Tables come with all kinds of nice features, like <code>&lt;thead&gt;</code> and <code>&lt;tfoot&gt;</code> tags, legends, titles, captions, etc. Everything you need to make a table a table.</p> <p>Also, if the CSS doesn't work/isn't loaded/doesn't matter, the table will still look and work the way it should.</p> http://stackoverflow.com/questions/135802/put-a-process-in-a-sandbox-where-it-can-do-least-harm/135836#135836 1 Answer by Dan Udey for Put a process in a sandbox where it can do least harm Dan Udey 2008-09-25T20:29:32Z 2008-09-25T20:29:32Z <p>FreeBSD has specific concepts of <a href="http://en.wikipedia.org/wiki/FreeBSD_jail" rel="nofollow">jails</a>, and Solaris has <a href="http://en.wikipedia.org/wiki/Solaris_Containers" rel="nofollow">containers</a>. Depending on what you're looking for, these may help.</p> <p>chroot jails can help to limit what an application can do (though any app with root privileges can escape a jail), and they're available on most UNIXen, including OS X.</p> <p>As for Windows, I'm not sure. If there was an easy way to sandbox a Windows app, most of them would be a lot more secure by now, I'm sure.</p> http://stackoverflow.com/questions/135653/difference-between-drop-table-and-truncate-table/135668#135668 2 Answer by Dan Udey for Difference between drop table and truncate table? Dan Udey 2008-09-25T20:04:27Z 2008-09-25T20:04:27Z <p>Truncating the table empties the table. Dropping the table deletes it entirely. Either one will be fast, but dropping it will likely be faster (depending on your database engine).</p> <p>If you don't need it anymore, drop it so it's not cluttering up your schema.</p> http://stackoverflow.com/questions/135535/what-are-the-benefits-of-oo-programming-will-it-help-me-write-better-code/135656#135656 7 Answer by Dan Udey for What are the benefits of OO programming? Will it help me write better code? Dan Udey 2008-09-25T20:03:16Z 2008-09-25T20:03:16Z <p>Objects help encapsulate complexity. For most PHP programming, it's impossible to write good, clean code for any reasonably complicated application. Writing OO PHP helps you put that code into its own box, isolating it from everything else. This has several benefits.</p> <ol> <li>As long as your object has clearly defined inputs and outputs, the way that the object does what it does doesn't matter at all - storing/retrieving data could go from flat file to XML to memcache to MySQL to Oracle, and you only ever have to concern yourself with one single object.</li> <li>As long as your object has clearly defined inputs and outputs, you can completely replace it with another object that has the same inputs/outputs. Decide at runtime whether you want MySQL, Postgres, memcached, or HTTP POST/GET requests to a sketchy server in Indonesia.</li> <li>OO makes unit testing easier. If you can define what a specific object should do (i.e what results it should give you for a given input) then you can easily write code to test thousands of values against that code and check the results, and you'll know instantly if something breaks.</li> <li>The more of your code you 'hide' in objects, the less of it you have to see when you're using that functionality. I wrote a polling application once in PHP that handled all aspects of polling - database interaction, poll generation, voting, ranking, sorting, and displaying - and I only needed one line of code on my website (<code>Poll::Display()</code>) to implement the entirety of what the app could do - which made maintaining my homepage far easier.</li> </ol> <p>Keep one thing in mind - OO in PHP (even PHP5) isn't very good OO compared to a language like Python or Ruby. The everything-is-an-object model in Python is what made me OO programming really click for me - and as a former PHP programmer (and doubly-certified Zend engineer), I strongly recommend exploring Python's OO if you want to understand what OO is all about. It will help you write better PHP code, at the very least.</p> http://stackoverflow.com/questions/135386/what-is-the-best-reason-for-unit-testing/135537#135537 1 Answer by Dan Udey for What is the best reason for unit testing? Dan Udey 2008-09-25T19:43:03Z 2008-09-25T19:43:03Z <p>Because it's easier for a machine to test each object/function with 10,000 possible (and impossible) values than for a person to sit down and use the program in 10 different ways.</p> <p>I worked in a company that made software to do survey design and reporting (the people who come up to you on the streets with a PDA and ask you a series of questions). When I was hired, they were in the process of releasing their latest, greatest version.</p> <p>The task that I was given right away was to take a copy of the beta they had so far and load up a bunch of test surveys (by hand) onto a device, and go through them putting in specific answers and checking to see that the result set I got at the end was what it should have been.</p> <p>Had their code been properly written and modularized, with specific interfaces, they could have written test suites for each component. Then, the two weeks I spent doing testing could have been done automatically in seconds, and we would have found out that our biggest feature in our Enterprise version was completely broken BEFORE announcing it to the world and getting everyone to switch, saving us a lot of egg on our face.</p> <p>Unit tests tell you when your minor changes have introduced unexpected bugs, and when your major changes have obliterated your functionality completely. You'll never have to worry about forgetting to test a component, and if you get really fancy and integrate it with version control, the system could, upon discovery of a regression, iterate back through each revision until it finds where it broke, and generate a report on who breaks the code most.</p> http://stackoverflow.com/questions/135478/how-do-you-measure-the-progress-of-a-web-service-call/135502#135502 3 Answer by Dan Udey for How do you measure the progress of a web service call? Dan Udey 2008-09-25T19:36:14Z 2008-09-25T19:36:14Z <p>Write a separate method on the server that you can query by passing the ID of the job that has been scheduled and which returns an approximate value between 0-100 (or 0.0 and 1.0, or whatever) of how far along it is.</p> <p>E.g. in REST-style, you could make a GET request to <code>http://yourserver.com/app/jobstatus/4133/</code> which would return a simple '52' as <code>text/plain</code>. Then you just have to query that every (second? two seconds? ten seconds?) to see how far along it is.</p> <p>How you actually accomplish the monitoring on the backend hugely depends on what your process is and how it works.</p> http://stackoverflow.com/questions/135373/would-performance-suffer-using-autoload-in-php-and-searching-for-the-class-file/135434#135434 0 Answer by Dan Udey for Would performance suffer using autoload in php and searching for the class file? Dan Udey 2008-09-25T19:25:11Z 2008-09-25T19:25:11Z <p>Hunting for files all over the place will make things slower (many more disk hits). Loading all of your classes in case you might need them will make things take more memory. Specifying which classes you need in every file is difficult to maintain (i.e. they don't get removed if they're no longer used).</p> <p>The real question is which of these is more important to you? They're all tradeoffs, in the end, so you have to pick one. It's arguable, though, that most of the overhead in the second and third options has to do with actually compiling the code. Using something like <a href="http://ca3.php.net/apc" rel="nofollow">APC</a> can significantly reduce the overhead of loading and compiling every class on every page load.</p> <p>Given the use of APC, I would likely take the approach of dividing up my code into modules (e.g. the web interface module, the database interaction module, etc.) and have each of those modules import all the classes for their module, plus classes from other modules they may need. It's a tradeoff between the last two, and I've found it works well enough for my needs.</p> http://stackoverflow.com/questions/135303/how-can-i-closely-achieve-from-c-c-in-python/135342#135342 0 Answer by Dan Udey for How can I closely achieve ?: from C++/C# in Python? Dan Udey 2008-09-25T19:11:18Z 2008-09-25T19:11:18Z <p>It's never a bad thing to write readable, expressive code.</p> <pre><code>if otherString: stringValue = otherString else: stringValue = defaultString </code></pre> <p>This type of code is longer and more expressive, but also more readable and less likely to get tripped over or mis-edited down the road. Don't be afraid to write expressively - readable code should be a goal, not a byproduct.</p> http://stackoverflow.com/questions/135246/reading-32bit-packed-binary-data-on-64bit-system/135311#135311 2 Answer by Dan Udey for Reading 32bit Packed Binary Data On 64bit System Dan Udey 2008-09-25T19:07:22Z 2008-09-25T19:07:22Z <p>Explicitly specify that your data types (e.g. integers) are 32-bit. Otherwise if you have two integers next to each other when you read them they will be read as one 64-bit integer.</p> <p>When you are dealing with cross-platform issues, the two main things to watch out for are:</p> <ol> <li>Bitness. If your packed data is written with 32-bit ints, then all of your code must explicitly specify 32-bit ints when reading <em>and</em> writing.</li> <li>Byte order. If you move your code from Intel chips to PPC or SPARC, your byte order will be wrong. You will have to import your data and then byte-flip it so that it matches up with the current architecture. Otherwise 12 (<code>0x0000000C</code>) will be read as 201326592 (<code>0x0C000000</code>).</li> </ol> <p>Hopefully this helps.</p> http://stackoverflow.com/questions/19387/rich-gui-os-x-frameworks/135249#135249 0 Answer by Dan Udey for Rich GUI OS X Frameworks? Dan Udey 2008-09-25T18:59:58Z 2008-09-25T18:59:58Z <p>To put it a different way than previous posters: if you are not designing your interface in InterfaceBuilder and manipulating it with Objective-C, then you are going to end up with an application that does not look, feel, act, or work the way a Macintosh application should, and it will stick out like a sore thumb to users. It will be an unpleasant experience for the user compared to other apps, and they will likely desire a different application because of it.</p> <p>Toolkits like QT are acceptable if your application already uses QT and you want to port it fast, but if you're writing a new application (or a separate GUI) then write it in Cocoa using ObjC or ObjC++.</p> http://stackoverflow.com/questions/132734/presentations-on-switching-from-perl-to-python/135117#135117 2 Answer by Dan Udey for Presentations on switching from Perl to Python Dan Udey 2008-09-25T18:35:23Z 2008-09-25T18:35:23Z <p>Eric S. Raymond wrote <a href="http://www.linuxjournal.com/article/3882" rel="nofollow">an interesting article/essay on his experience with Python</a>, which were hugely favorable.</p> <p>On writing working code:</p> <blockquote> <p>When you're writing working code nearly as fast as you can type and your misstep rate is near zero, it generally means you've achieved mastery of the language. But that didn't make sense, because it was still day one and I was regularly pausing to look up new language and library features!</p> <p>This was my first clue that, in Python, I was actually dealing with an exceptionally good design. Most languages have so much friction and awkwardness built into their design that you learn most of their feature set long before your misstep rate drops anywhere near zero. Python was the first general-purpose language I'd ever used that reversed this process.</p> </blockquote> <p>On metaclass hacking:</p> <blockquote> <p>To say I was astonished would have been positively wallowing in understatement. It's remarkable enough when implementations of simple techniques work exactly as expected the first time; but my first metaclass hack in a new language, six days from a cold standing start? Even if we stipulate that I am a fairly talented hacker, this is an amazing testament to Python's clarity and elegance of design.</p> <p>There was simply no way I could have pulled off a coup like this in Perl, even with my vastly greater experience level in that language. It was at this point I realized I was probably leaving Perl behind.</p> </blockquote> <p>Definitely worth a read for anyone who's heard of Raymond, and anyone who's written Python. He has a lot of perl experience (and a lot of coding experience in general), so his glowing review of Python comes with some weight behind it.</p> http://stackoverflow.com/questions/135041/should-you-always-favor-xrange-over-range/135070#135070 1 Answer by Dan Udey for Should you always favor xrange() over range()? Dan Udey 2008-09-25T18:28:16Z 2008-09-25T18:28:16Z <p><code>xrange()</code> is more efficient because instead of generating a list of objects, it just generates one object at a time. Instead of 100 integers, and all of their overhead, and the list to put them in, you just have one integer at a time. Faster generation, better memory use, more efficient code.</p> <p>Unless I specifically need a list for something, I always favor <code>xrange()</code></p> http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/135002#135002 112 Answer by Dan Udey for Good excuses NOT to use version control Dan Udey 2008-09-25T18:17:13Z 2008-09-25T18:17:13Z <p>A delightful mix of laziness and incompetence.</p> <p>An anecdote I heard one time in regards to version control:</p> <blockquote> <p>A younger programmer asked an elder about his code and his coding style, and how the older programmer would do certain things. The older programmer said 'Let's take a look at your code', so the younger took out his laptop, opened his editor, and showed him.</p> <p>The older programmer looked at the code, thought about it for a bit, and then started editing it. He deleted the class internals, leaving only the structure, and then rearranged the structure, saying 'Here's how I would do it to make it more efficient and readable'. After he was done, he saved the file and gave it back to the younger programmer, who was ashen-faced.</p> <p>'That... My code is gone!' said the younger programmer. 'But you have it in version control somewhere, right?' asked the elder. 'N.... no.' was the reply. 'Well then,' said the older, 'now you've learned two lessons.'</p> </blockquote> http://stackoverflow.com/questions/134834/beginner-wondering-if-his-code-is-pythonic/134954#134954 4 Answer by Dan Udey for Beginner wondering if his code is 'Pythonic' Dan Udey 2008-09-25T18:08:45Z 2008-09-25T18:08:45Z <p>A few comments:</p> <ol> <li>I would replace <code>range()</code> with <code>xrange()</code>; when you call <code>range()</code>, it allocates the entire range all at once, whereas when you iterate over <code>xrange()</code>, it returns each result one at a time, saving memory.</li> <li>Don't put expressions after conditionals on the same line (<code>if num2s -- 0: return factorList</code>). It makes it harder to see at a glance what it's doing (that it's a block).</li> <li>Don't be afraid to use modules. The <code>[sympy][1]</code> module already has code to compute factors, which may simplify your code by eliminating most of it.</li> <li>Python's string formatting is simple and effective.</li> </ol> <p>For example:</p> <pre><code>factorList.insert(0, '2 ^ ' + str(num2s)) </code></pre> <p>could be changed to </p> <pre><code>factorlist.insert(0, '2 ^ %s' % num2s) </code></pre> <p>All in all, I don't find your code to be extensively un-pythonic. Just make sure you want to use <a href="http://www.python.org/doc/2.2.3/whatsnew/node7.html" rel="nofollow">floor division</a>, because that's what tends to happen by default with integer values. Otherwise, you'll need to fix up the division operator:</p> <pre><code>from __future__ import division </code></pre> <p>A sometimes-frustrating caveat of the language.</p> http://stackoverflow.com/questions/100084/what-is-a-good-gui-text-editor-for-the-mac/134836#134836 1 Answer by Dan Udey for What is a good GUI text editor for the Mac? Dan Udey 2008-09-25T17:52:34Z 2008-09-25T17:52:34Z <p>I'll second (fourth? eighth?) TextMate. The first piece of (non-game) software I've ever purchased (not including bundled OSes), and worth every penny. Oh, and then I bought two other licenses for people, because it's worth it.</p> http://stackoverflow.com/questions/146480/how-do-i-get-the-resolution-of-the-main-monitor-in-mac-os-x-in-c/146509#146509 Comment by Dan Udey on How do I get the resolution of the main monitor in Mac OS X in C++? Dan Udey 2009-08-11T22:23:28Z 2009-08-11T22:23:28Z Note for future generations: this code uses Carbon, so it will not work in 64-bit applications on Leopard or Snow Leopard. http://stackoverflow.com/questions/2556/whats-the-best-online-payment-processing-solution/2561#2561 Comment by Dan Udey on What's the best online payment processing solution? Dan Udey 2009-07-09T21:51:30Z 2009-07-09T21:51:30Z The issue that I've seen with Google Checkout is that they want to control everything – i.e. as an online merchant, you send them your shopping cart, they show it to the customer and ask for payment, and then they send the cart back to you with payment info. This can make it a huge pain in the ass to integrate. http://stackoverflow.com/questions/371/how-do-you-make-sure-email-you-send-programmatically-is-not-automatically-marked/451#451 Comment by Dan Udey on How do you make sure email you send programmatically is not automatically marked as spam? Dan Udey 2009-02-08T21:15:58Z 2009-02-08T21:15:58Z Yahoo uses SPF records and DomainKeys; SenderID is a different (and in many ways, incompatible, insecure, and poorly-designed) technology, which should not be used. http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/136652#136652 Comment by Dan Udey on Good excuses NOT to use version control Dan Udey 2008-10-31T23:05:17Z 2008-10-31T23:05:17Z IMHO it's more like 'if (randomVar = 0) { DeleteSourceCode(); } An eventual certainty is a certainty. http://stackoverflow.com/questions/140734/best-way-to-cache-resized-images-using-php-and-mysql/141224#141224 Comment by Dan Udey on Best way to cache resized images using PHP and MySQL Dan Udey 2008-09-26T19:19:32Z 2008-09-26T19:19:32Z Using die() is horrible code. You basically bail out, dumping a single line of text to the client, without doing any error correction. If this example is used in production, replace die() calls with replacement images or helpful errors. http://stackoverflow.com/questions/56708/objective-c-for-windows/57274#57274 Comment by Dan Udey on Objective C for Windows Dan Udey 2008-09-26T18:58:06Z 2008-09-26T18:58:06Z The Cocotron project is designed to be cross-compiled from XCode, not written on Windows and compiled there. http://stackoverflow.com/questions/135535/what-are-the-benefits-of-oo-programming-will-it-help-me-write-better-code/135586#135586 Comment by Dan Udey on What are the benefits of OO programming? Will it help me write better code? Dan Udey 2008-09-25T19:53:13Z 2008-09-25T19:53:13Z Yeah, but no matter how much you objectify your users, you still can't write unit tests to make sure they'll behave properly. http://stackoverflow.com/questions/132310/why-do-you-like-python/132456#132456 Comment by Dan Udey on Why do you like Python? Dan Udey 2008-09-25T19:52:09Z 2008-09-25T19:52:09Z The cpython implementation, which is what most people use, uses reference counting and not garbage collection. Jython and IronPython use GC because of the behavior of the underlying VM. http://stackoverflow.com/questions/132310/why-do-you-like-python/135558#135558 Comment by Dan Udey on Why do you like Python? Dan Udey 2008-09-25T19:50:51Z 2008-09-25T19:50:51Z In Java's defense, you're not doing any exception handling in your Python script. Also, is it entirely necessary in Java to read line by line? http://stackoverflow.com/questions/132310/why-do-you-like-python/132400#132400 Comment by Dan Udey on Why do you like Python? Dan Udey 2008-09-25T19:48:24Z 2008-09-25T19:48:24Z A favorite quote from a friend of mine is 'python is a pseudo-code interpreter with a standard library'. http://stackoverflow.com/questions/135478/how-do-you-measure-the-progress-of-a-web-service-call/135495#135495 Comment by Dan Udey on How do you measure the progress of a web service call? Dan Udey 2008-09-25T19:37:23Z 2008-09-25T19:37:23Z If you use a database, it's a good idea to make an in-memory table. No sense wasting disk I/O on trivial tasks. http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134798#134798 Comment by Dan Udey on Good excuses NOT to use version control Dan Udey 2008-09-25T18:18:28Z 2008-09-25T18:18:28Z Git is version control and it's free. It's also crazy fast, and easier to manage. http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/134819#134819 Comment by Dan Udey on Good excuses NOT to use version control Dan Udey 2008-09-25T18:17:58Z 2008-09-25T18:17:58Z That's what distributed systems like git are for. Keep it in version control without it ever leaving your laptop. http://stackoverflow.com/questions/134683/why-do-small-spaces-keep-showing-up-in-my-web-pages/134714#134714 Comment by Dan Udey on Why do small spaces keep showing up in my web pages? Dan Udey 2008-09-25T17:31:53Z 2008-09-25T17:31:53Z You can't float inline elements. You would have to use &quot;display:block&quot; as well.