User William Keller - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T00:17:41Zhttp://stackoverflow.com/feeds/user/17095http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/106058/practical-example-of-lisps-flexibility/106075#1060752Answer by William Keller for Practical example of Lisp's flexibility?William Keller2008-09-19T22:14:27Z2009-10-10T13:16:24Z<p>Have you taken a look at <a href="http://www.weitz.de/macros.lisp" rel="nofollow">this</a> explanation of why macros are powerful and flexible? No examples in other languages though, sorry, but it might sell you on macros.</p>
http://stackoverflow.com/questions/111954/using-pythons-ftplib-to-get-a-directory-listing-portably/111966#1119664Answer by William Keller for Using Python's ftplib to get a directory listing, portablyWilliam Keller2008-09-21T20:15:59Z2009-09-18T17:28:09Z<p>Try <code>ftp.nlst(dir)</code>.</p>
<p>however note that if the folder is empty, it might throw an error:</p>
<pre><code>files = []
try:
files = ftp.nlst()
except ftplib.error_perm, resp:
if str(resp) == "550 No files found":
print "no files in this directory"
else:
raise
for f in files
print f
</code></pre>
http://stackoverflow.com/questions/92113/how-do-you-get-through-the-inevitable-motivational-slump-near-the-end-of-projec7How do you get through the inevitable motivational "slump" near the end of projects?William Keller2008-09-18T12:33:04Z2008-12-05T01:16:39Z
<p>When working on a project, after the interesting parts are coded, my motivation is severely diminished. What do you do to get over this problem? </p>
http://stackoverflow.com/questions/138953/htm-or-html-extension-which-one-is-correct-and-what-is-different/138957#13895714Answer by William Keller for .htm or .html extension - which one is correct and what is different?William Keller2008-09-26T11:50:55Z2008-09-26T14:57:18Z<p>Neither is wrong, it's a matter of preference. Traditionally, MS software uses <code>htm</code> by default, and *nix prefers <code>html</code>.</p>
<p>As oded pointed out below, the .htm tradition was carried over from win 3.xx, where file extensions were limited to three characters.</p>
http://stackoverflow.com/questions/138929/what-are-the-merits-of-csv-and-or-json-and-or-xml-and-or-output-in-a-rest-api/138947#1389470Answer by William Keller for What are the merits of CSV and/or JSON and/or XML and/or ??? output in a REST API?William Keller2008-09-26T11:48:06Z2008-09-26T11:48:06Z<p>XML can be a bit heavyweight at times. JSON is quite nice, though, has good language support, and JSON data can be translated directly to native objects on many playforms.</p>
http://stackoverflow.com/questions/130618/python-date-comparisons/130623#1306230Answer by William Keller for Python Date ComparisonsWilliam Keller2008-09-24T23:35:26Z2008-09-24T23:45:07Z<p>You can subtract two <a href="http://docs.python.org/lib/module-datetime.html" rel="nofollow">datetime</a> objects to find the difference between them.<br />
You can use <code>datetime.fromtimestamp</code> to parse a POSIX time stamp.</p>
http://stackoverflow.com/questions/130508/what-font-size-do-you-use-in-your-code-editor/130537#1305370Answer by William Keller for What font size do you use in your code editor?William Keller2008-09-24T23:13:39Z2008-09-24T23:13:39Z<p>I find a mid-sized font (Monaco 12) serves me well. I use textmate on OS X, which makes it easy to adjust point-size at a whim (cmd +/-).</p>
http://stackoverflow.com/questions/130511/php-current-encoding-used-to-send-data-to-the-browser/130517#1305170Answer by William Keller for PHP: Current encoding used to send data to the browserWilliam Keller2008-09-24T23:10:09Z2008-09-24T23:10:09Z<p>You can set your own with <code>header('Content-type: xxx/yyy');</code>, but I believe that text/html is sent by default.</p>
http://stackoverflow.com/questions/130240/can-i-use-a-generated-variable-name-in-php/130283#1302831Answer by William Keller for Can I use a generated variable name in PHP?William Keller2008-09-24T22:13:26Z2008-09-24T22:13:26Z<p>If you're trying to collect the values of a POST, you should really use an array. You can avoid having to manually piece together such an array by using:</p>
<pre><code><input type="text" name="vals[]" value="one" />
<input type="text" name="vals[]" value="two" />
</code></pre>
<p><code>$_POST["vals"]</code> will then be array("one", "two");</p>
http://stackoverflow.com/questions/125222/extracting-text-from-ms-word-files-in-python/125235#1252351Answer by William Keller for extracting text from MS word files in pythonWilliam Keller2008-09-24T03:19:53Z2008-09-24T03:19:53Z<p>I'm not sure if you're going to have much lock without using COM. The .doc format is ridiculously complex, and is often called a "memory dump" of Word at the time of saving!</p>
<p>At Swati, that's in HTML, which is fine and dandy, but most word documents aren't so nice!</p>
http://stackoverflow.com/questions/125195/i-tried-to-learn-python-and-ruby-but-i-need-a-good-project-with-which-i-can-lear/125208#1252082Answer by William Keller for I tried to learn Python and Ruby but [I need a good project with which I can learn them]William Keller2008-09-24T03:09:32Z2008-09-24T03:09:32Z<p>An IRC bot is a great first project! It's quite rewarding too, instant gratification from talking to the beast you crafted out of the ether. See <a href="http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python">this</a> thread for some other suggestions.<br />
Pander to your own intrests though! Pick something you find exciting!</p>
<p>(Also, a bit of googling would have turned up the solution to your zipfile problem. Don't give up so quickly!)</p>
http://stackoverflow.com/questions/125177/whats-a-good-tool-to-screen-scrape-with-javascript-support/125187#1251870Answer by William Keller for What's a good tool to screen-scrape with Javascript support?William Keller2008-09-24T03:03:51Z2008-09-24T03:03:51Z<p>Keep in mind that and javascript fanciness is messing with the brower's internal DOM model of the page, and does nothing to the raw HTML.</p>
http://stackoverflow.com/questions/125099/formula-for-controlling-the-movement-of-a-tank-like-vehicle/125116#1251161Answer by William Keller for Formula for controlling the movement of a tank-like vehicle?William Keller2008-09-24T02:45:17Z2008-09-24T02:45:17Z<p>Well, keep in mind that you're also talking about duration here. You need to find out the forces taking in to account the speed at which the tank turns at (1, -1).</p>
<p>I.E., if the tank takes one second to spin 360˚ at (1, -1), and you want to spin 180˚ in one second, (.5, -.5) would do the trick. If you wanted to spin the same amount in half a second, then (1, -1) would work.</p>
<p>This is all further complicated if you use abs(lrate) != abs(rrate), in which case you'll probably need to break out a pencil!</p>
http://stackoverflow.com/questions/125034/what-is-the-easiest-most-concise-way-to-make-selected-attributes-in-an-instance/125061#1250615Answer by William Keller for What is the easiest, most concise way to make selected attributes in an instance be readonly?William Keller2008-09-24T02:22:16Z2008-09-24T02:22:16Z<p>You should use the <code>@property</code> decorator.</p>
<pre><code>>>> class a(object):
... def __init__(self, x):
... self.x = x
... @property
... def xval(self):
... return self.x
...
>>> b = a(5)
>>> b.xval
5
>>> b.xval = 6
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: can't set attribute
</code></pre>
http://stackoverflow.com/questions/124002/why-is-software-support-for-bidirectional-text-hebrew-arabic-so-poor/124045#1240452Answer by William Keller for Why is software support for Bidirectional text (Hebrew,Arabic) so poor?William Keller2008-09-23T21:33:50Z2008-09-23T21:33:50Z<p>Simple, get more bidirectional language speakers to voice their concerns! With so few bidirectional language users around, I'd imagine that bidirectional text support is pretty low on most people's priority lists. The more bug reports you and other bidirectional language speakers file, though, the more the problem will be addressed.</p>
http://stackoverflow.com/questions/118591/how-to-express-this-bash-command-in-pure-python/118658#1186580Answer by William Keller for How to express this Bash command in pure PythonWilliam Keller2008-09-23T01:38:31Z2008-09-23T01:38:31Z<pre><code>import os, stat
os.stat("test")[stat.ST_MTIME]
</code></pre>
<p>Will give you the mtime. I suggest fixing those in <code>walk_results[2]</code>, and then recursing, calling the function for each dir in <code>walk_results[1]</code>.</p>
http://stackoverflow.com/questions/118092/replace-one-url-with-another/118112#1181120Answer by William Keller for Replace one URL with anotherWilliam Keller2008-09-22T22:57:18Z2008-09-22T22:57:18Z<pre><code>function replace_url($text, $newurl) {
$text = preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', $newurl, $text);
return $text;
}
</code></pre>
<p>Should work.
Regex stolen from <a href="http://snipplr.com/view/2371/regex-regular-expression-to-match-a-url/" rel="nofollow">here</a>. This will replace all URLs in the string with the new one.</p>
http://stackoverflow.com/questions/117800/how-to-get-django-autofields-to-start-at-a-higher-number/117837#1178370Answer by William Keller for How to get Django AutoFields to start at a higher numberWilliam Keller2008-09-22T21:44:11Z2008-09-22T21:44:11Z<p>A quick peek at the <a href="http://code.djangoproject.com/browser/django/trunk/django/db/models/fields/__init__.py#L334" rel="nofollow">source</a> shows that there doesn't seem to be any option for this, probably because it doesn't always increment by one; it picks the next available key: "An IntegerField that automatically increments according to available IDs" — <a href="http://www.djangoproject.com/documentation/model-api/?PHPSESSID=df73e7744be1cedaf1aca74fe3aa4c84#automatic-primary-key-fields" rel="nofollow">djangoproject.com</a></p>
http://stackoverflow.com/questions/117167/python-and-post-data/117191#1171910Answer by William Keller for Python and POST dataWilliam Keller2008-09-22T19:59:55Z2008-09-22T19:59:55Z<p>Well, that really depends on what framework you are using. Elaborate?</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/115521#1155216Answer by William Keller for Is Ruby any good for GUI development?William Keller2008-09-22T15:28:28Z2008-09-22T15:28:28Z<p>Ruby has <a href="http://shoooes.net/" rel="nofollow">Shoes</a>, but that might be a little lightweight.</p>
http://stackoverflow.com/questions/114467/is-microsofts-ribbon-ui-really-that-great-from-a-usability-perspective/114489#1144890Answer by William Keller for Is Microsoft's Ribbon UI really that great, from a usability perspective?William Keller2008-09-22T12:13:55Z2008-09-22T12:13:55Z<p>I've talked to people who think the ribbon is to die for. Personally though, I think it's a bit... meh. I suppose exposing more functionality to the user close to the top level is nice for people who aren't familiar with the application already. Microsoft seems to have liked it enough to [integrate it] heavily with windows 7.</p>
<p>I've spoken to more people who love it than who hate it, though.</p>
http://stackoverflow.com/questions/112759/how-to-map-geo-location-based-on-one-or-all-of-these-services/112762#1127620Answer by William Keller for How to map geo location based on one or all of these services.William Keller2008-09-22T01:24:10Z2008-09-22T01:24:10Z<p>There's a nice greasemonkey <a href="http://txfx.net/2005/05/17/flickr-google-maps-geobloggers/" rel="nofollow">script</a> to ease geotagging on Flickr.</p>
http://stackoverflow.com/questions/112351/recommendations-for-starting-web-programming/112410#1124102Answer by William Keller for Recommendations for starting web programming? William Keller2008-09-21T22:42:26Z2008-09-21T22:42:26Z<p>Django is excellent, as is <a href="http://pylonshq.com/" rel="nofollow">Pylons</a>, which I don't see recommended here yet.</p>
http://stackoverflow.com/questions/112396/how-do-i-remove-the-passphrase-for-the-ssh-key-without-having-to-create-a-new-key/112404#1124041Answer by William Keller for How do I remove the passphrase for the SSH key without having to create a new key?William Keller2008-09-21T22:40:29Z2008-09-21T22:40:29Z<p>Take a look at this <a href="http://blogs.translucentcode.org/mick/archives/000230.html" rel="nofollow">passwordless SSH tutorial</a>.</p>
http://stackoverflow.com/questions/112158/javascript-string-concatenation/112176#1121763Answer by William Keller for JavaScript string concatenationWilliam Keller2008-09-21T21:08:36Z2008-09-21T21:19:26Z<p>In the words of Knuth, "premature optimization is the root of all evil!" The small defference either way will most likely not have much of an effect in the end; I'd choose the more readable one.</p>
http://stackoverflow.com/questions/112190/php-ini-smtp-how-do-you-pass-username-password/112201#1122011Answer by William Keller for php.ini & SMTP= - how do you pass username & passwordWilliam Keller2008-09-21T21:14:51Z2008-09-21T21:14:51Z<p>Use Mail::factory in the Mail PEAR package. <a href="http://email.about.com/od/emailprogrammingtips/qt/et073006.htm" rel="nofollow">Example.</a></p>
http://stackoverflow.com/questions/112112/javascript-interpreter-to-replace-python/112122#1121221Answer by William Keller for Javascript interpreter to replace PythonWilliam Keller2008-09-21T20:55:50Z2008-09-21T20:55:50Z<p>Google's <a href="http://code.google.com/apis/v8/build.html" rel="nofollow">V8</a> can be used as a standalone interpreter. Configuring with <code>scons sample=shell</code> will build an executable named <code>shell</code>, that can be called like so: <code>./shell file.js</code>.</p>
http://stackoverflow.com/questions/112055/what-does-d0-mean-in-a-windows-batch-file/112071#1120714Answer by William Keller for What does %~d0 mean in a Windows batch file?William Keller2008-09-21T20:44:03Z2008-09-21T20:44:03Z<p>From <a href="http://www.rgagnon.com/gp/gp-0008.html" rel="nofollow">here</a>:</p>
<p>The path (without drive) where the script is : ~p0</p>
<p>The drive where the script is : ~d0 </p>
http://stackoverflow.com/questions/111945/is-there-anyway-to-do-http-put-in-python/111952#1119520Answer by William Keller for Is there anyway to do HTTP PUT in pythonWilliam Keller2008-09-21T20:12:49Z2008-09-21T20:12:49Z<p>Have you taken a look at <a href="http://inamidst.com/proj/put/put.py" rel="nofollow">put.py</a>? I've used it in the past. You can also just hack up your own request with urllib.</p>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111870#1118701Answer by William Keller for Did you ever switch from one programming language to another?William Keller2008-09-21T19:44:23Z2008-09-21T19:44:23Z<p>I started, like many, writing webapps in PHP. As I learned more and more about programming, and realized what an unmaintainable mess PHP was (as well as how cluttered the language was itself), I tried python, and loved it. I've stuck mainly with it ever since.</p>
http://stackoverflow.com/questions/130508/what-font-size-do-you-use-in-your-code-editor/130523#130523Comment by William Keller on What font size do you use in your code editor?William Keller2008-09-24T23:11:36Z2008-09-24T23:11:36ZWhat point size/font do you use?http://stackoverflow.com/questions/125222/extracting-text-from-ms-word-files-in-python/125226#125226Comment by William Keller on extracting text from MS word files in pythonWilliam Keller2008-09-24T12:11:05Z2008-09-24T12:11:05ZAh, I'd always thought that abiword was just another word processor! Man, that would have saved me some headaches awhile back.http://stackoverflow.com/questions/125188/does-postscript-have-a-concept-of-a-table/125214#125214Comment by William Keller on Does Postscript have a concept of a table?William Keller2008-09-24T03:31:55Z2008-09-24T03:31:55ZCould you please edit your question to include this clarification?http://stackoverflow.com/questions/125222/extracting-text-from-ms-word-files-in-python/125226#125226Comment by William Keller on extracting text from MS word files in pythonWilliam Keller2008-09-24T03:30:30Z2008-09-24T03:30:30ZNot just that though! Even the most basic text saved in the Word 97 format is nearly impossible to get at easily without relying on word to do it for you (COM). Most word documents are not HTML!http://stackoverflow.com/questions/125034/what-is-the-easiest-most-concise-way-to-make-selected-attributes-in-an-instance/125053#125053Comment by William Keller on What is the easiest, most concise way to make selected attributes in an instance be readonly?William Keller2008-09-24T03:01:06Z2008-09-24T03:01:06Z(Although I'd also like to point out that your second point is valid!)http://stackoverflow.com/questions/125099/formula-for-controlling-the-movement-of-a-tank-like-vehicleComment by William Keller on Formula for controlling the movement of a tank-like vehicle?William Keller2008-09-24T02:58:35Z2008-09-24T02:58:35ZPlease don't tag your question with every language under the sun to get more exposure!http://stackoverflow.com/questions/125099/formula-for-controlling-the-movement-of-a-tank-like-vehicle/125138#125138Comment by William Keller on Formula for controlling the movement of a tank-like vehicle?William Keller2008-09-24T02:57:34Z2008-09-24T02:57:34ZI think he understands this much!http://stackoverflow.com/questions/125034/what-is-the-easiest-most-concise-way-to-make-selected-attributes-in-an-instance/125053#125053Comment by William Keller on What is the easiest, most concise way to make selected attributes in an instance be readonly?William Keller2008-09-24T02:53:17Z2008-09-24T02:53:17ZYou could set the attr. to property(), then NOTHING, not even the instance itself would be able to access it at all!http://stackoverflow.com/questions/125113/php-code-to-convert-a-mysql-query-to-csvComment by William Keller on PHP code to convert a MySQL query to CSVWilliam Keller2008-09-24T02:52:32Z2008-09-24T02:52:32ZI agree this question is horribly asked. OP is asking for teh codez, and isn't asking a specific question about programming. A bit hard to reword, as there isn't much to work with. Perhaps Reilly could pretend to have tried something as thanks for the answers? Still an easily googleable, though.http://stackoverflow.com/questions/125034/what-is-the-easiest-most-concise-way-to-make-selected-attributes-in-an-instance/125061#125061Comment by William Keller on What is the easiest, most concise way to make selected attributes in an instance be readonly?William Keller2008-09-24T02:37:10Z2008-09-24T02:37:10ZYes, it is, you posted while I was fixing my markup.http://stackoverflow.com/questions/125034/what-is-the-easiest-most-concise-way-to-make-selected-attributes-in-an-instance/125058#125058Comment by William Keller on What is the easiest, most concise way to make selected attributes in an instance be readonly?William Keller2008-09-24T02:28:18Z2008-09-24T02:28:18ZYou can!
@property will work, but you have to use
def readonly(self):
return readonly
It still avoids the lambda noise, though.http://stackoverflow.com/questions/117150/can-i-re-map-commands-in-vimComment by William Keller on Can I (re-) map commands in vim?William Keller2008-09-22T19:58:05Z2008-09-22T19:58:05ZYou use shift to get a colon on a standard American QWERTY too.http://stackoverflow.com/questions/115586/how-do-you-do-code-reviewsComment by William Keller on How do you do code reviews?William Keller2008-09-22T15:41:42Z2008-09-22T15:41:42Zcode-review is the proper tag: "Combine multiple words into single-words", and has been used more.http://stackoverflow.com/questions/115563/is-there-a-free-ide-for-php-on-mac/115582#115582Comment by William Keller on Is there a free IDE for PHP on Mac?William Keller2008-09-22T15:37:26Z2008-09-22T15:37:26ZI vouch for textmate! Not free, but worth it.http://stackoverflow.com/questions/114581/how-helpful-is-knowing-lambda-calculusComment by William Keller on How helpful is knowing lambda calculus?William Keller2008-09-22T12:43:44Z2008-09-22T12:43:44ZSorry about the edit, thought math + maths was a duplicate tag.