User Blair Conrad - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T19:36:14Zhttp://stackoverflow.com/feeds/user/1199http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1825759/clubbing-reprints-of-a-book-with-different-isbns/1825782#18257821Answer by Blair Conrad for Clubbing reprints of a book with different ISBNsBlair Conrad2009-12-01T12:08:39Z2009-12-01T12:08:39Z<p>I'm not familiar with this use of the word "club", but it appears that you want to group books that have the same ISBN. I don't know how to do this solely with Google Books, but you can use the wonderful <a href="http://www.worldcat.org/affiliate/webservices/xisbn/app.jsp" rel="nofollow">xISBN web service</a> to look up alternate ISBNs for books.</p>
<p>Hit a URL like</p>
<pre><code>http://xisbn.worldcat.org/webservices/xid/isbn/0596002815
</code></pre>
<p>to get this response:</p>
<pre><code><rsp stat="ok">
<isbn>0596002815</isbn>
<isbn>1565928938</isbn>
<isbn>1565924649</isbn>
<isbn>0596158068</isbn>
<isbn>0596513984</isbn>
<isbn>1600330215</isbn>
<isbn>8371975961</isbn>
<isbn>059680539X</isbn>
<isbn>8324616489</isbn>
</rsp>
</code></pre>
<p>Which includes first the original ISBN and then all alternates known to WorldCat. Then you can use the alternates for grouping.</p>
http://stackoverflow.com/questions/1633181/python-re-no-such-group/1633194#16331942Answer by Blair Conrad for python re: no such groupBlair Conrad2009-10-27T19:42:00Z2009-10-27T19:42:00Z<p>The <code>[</code> and <code>]</code> are special regular expression characters. Escape them to match literal <code>[</code> and <code>]</code>.
See <a href="http://docs.python.org/library/re.html#regular-expression-syntax" rel="nofollow">Regular Expression Syntax</a>.</p>
http://stackoverflow.com/questions/1470770/accessing-registry-using-net/1470791#14707910Answer by Blair Conrad for Accessing Registry using .Net?Blair Conrad2009-09-24T10:08:17Z2009-09-24T10:08:17Z<p>I have had a similar problem, and the best answer I've found is to fall back to the Win32 Registry Functions (such as <a href="http://msdn.microsoft.com/en-us/library/ms724897%28VS.85%29.aspx" rel="nofollow">RegOpenKeyEx</a>) and pass in the appropriate <a href="http://msdn.microsoft.com/en-us/library/ms724878%28VS.85%29.aspx" rel="nofollow">Registry Key Security and Access Rights</a>, specifically ORing the <code>samDesired</code> parameter with <code>KEY_WOW64_64KEY</code>.</p>
<p>It was awful, and I hope you hear a better answer here.</p>
http://stackoverflow.com/questions/1465246/trouble-with-positive-look-behind-assertion-in-python-regex/1465295#14652951Answer by Blair Conrad for Trouble with positive look behind assertion in python regex.Blair Conrad2009-09-23T10:55:29Z2009-09-23T11:02:18Z<p>The look behind target is never included in the match - it's supposed to serve as an anchor, but not actually be consumed by the regex.</p>
<p>The look behind pattern is only supposed to match if the current position is preceded by the target. In your case, after matching the "foo" in the string, the current position is at the "=", which is not preceded by a "=" - it's preceded by an "o".</p>
<p>Another way to see this is by looking at the <a href="http://docs.python.org/library/re.html" rel="nofollow">re documentation</a> and reading</p>
<blockquote>
<p>Note that patterns which start with positive lookbehind assertions will never match at the beginning of the string being searched;</p>
</blockquote>
<p>After you match the <code>foo</code>, your look behind is trying to match at the beginning of (the remainder of) the string - this will never work.</p>
<p>Others have suggested regexes that may probably serve you better, but I think you're probably looking for</p>
<pre><code>>>> re.search('(foo)(=(bar))?', 'foo=bar').groups()
('foo', '=bar', 'bar')
</code></pre>
<p>If you find the extra group is a little annoying, you could omit the inner "()"s and just chop the first character off the matched group...</p>
http://stackoverflow.com/questions/122313/how-do-you-include-exclude-a-certain-type-of-files-under-subversion/122335#1223357Answer by Blair Conrad for How do you include/exclude a certain type of files under Subversion?Blair Conrad2008-09-23T17:06:32Z2009-09-07T16:18:31Z<p>You're probably safest excluding particular filetypes, rather than picking those you want to include, as you could then add a new type and not realize it wasn't versioned.</p>
<p>On a per-directory basis, you can edit the <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.3" rel="nofollow">svn:ignore</a> property.</p>
<p>Run</p>
<pre><code>svn propedit svn:ignore .
</code></pre>
<p>each relevant directory to bring up an editor with a list of patterns to ignore.</p>
<p>Then put on each line a pattern corresponding to the filetype you'd like to ignore:</p>
<pre><code>*.user
*.exe
*.dll
</code></pre>
<p>and what have you.</p>
<p>Alternatively, as has been suggested, you can add those patterns to the <code>global-ignores</code> property in your ~/.subversion/config file (or <code>"%APPDATA%\Subversion\config"</code> on Windows - see <a href="http://svnbook.red-bean.com/en/1.1/ch07.html#svn-ch-7-sect-1.1" rel="nofollow">Configuration Area Layout in the red bean book for more information</a>). In that case, separate the patterns with spaces. Here's mine. <code>#</code> at the beginning of the line introduces a comment. I've ignored Ankh .Load files and all *.resharper.user files:</p>
<pre><code>### Set global-ignores to a set of whitespace-delimited globs
### which Subversion will ignore in its 'status' output, and
### while importing or adding files and directories.
# global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store
global-ignores = Ankh.Load *.resharper.user
</code></pre>
http://stackoverflow.com/questions/986006/python-how-do-i-pass-a-variable-by-reference/986145#98614518Answer by Blair Conrad for Python: How do I pass a variable by reference?Blair Conrad2009-06-12T11:18:27Z2009-08-27T22:33:22Z<p>Parameters are passed by value. The reason people are confused by the behaviour is twofold:</p>
<ol>
<li>the parameter passed in is actually a <em>reference</em> to a variable (but the reference is passed by value)</li>
<li>some data types are mutable, but others aren't</li>
</ol>
<p>So, if you pass a mutable object into a method, the method gets a reference to that same object and you can mutate it to your heart's delight, but if you rebind the reference in the method, the outer scope will know nothing about it, and after you're done, the outer reference will still point at the original object.
If out pass an immutable object to a method, you still can't rebind the outer reference, and you can't even mutate the object.</p>
<p>Okay, this is a little confusing. Let's have some examples. </p>
<h2>List - a mutable type</h2>
<p><strong>Let's try to modify the list that was passed to a method:</strong></p>
<pre><code>def try_to_change_list_contents(the_list):
print 'got', the_list
the_list.append('four')
print 'changed to', the_list
outer_list = ['one', 'two', 'three']
print 'before, outer_list =', outer_list
try_to_change_list_contents(outer_list)
print 'after, outer_list =', outer_list
</code></pre>
<p>Output:</p>
<pre><code>before, outer_list = ['one', 'two', 'three']
got ['one', 'two', 'three']
changed to ['one', 'two', 'three', 'four']
after, outer_list = ['one', 'two', 'three', 'four']
</code></pre>
<p>Since the parameter passed in is a reference to <code>outer_list</code>, not a copy of it, we can use the mutating list methods to change it and have the changes reflected in the outer scope.</p>
<p><strong>Now let's see what happens when we try to change the reference that was passed in as a parameter:</strong></p>
<pre><code>def try_to_change_list_reference(the_list):
print 'got', the_list
the_list = ['and', 'we', 'can', 'not', 'lie']
print 'set to', the_list
outer_list = ['we', 'like', 'proper', 'English']
print 'before, outer_list =', outer_list
try_to_change_list_reference(outer_list)
print 'after, outer_list =', outer_list
</code></pre>
<p>Output:</p>
<pre><code>before, outer_list = ['we', 'like', 'proper', 'English']
got ['we', 'like', 'proper', 'English']
set to ['and', 'we', 'can', 'not', 'lie']
after, outer_list = ['we', 'like', 'proper', 'English']
</code></pre>
<p>Since the <code>the_list</code> parameter was passed by value, assigning a new list to it had no effect that the code outside the method could see. The <code>the_list</code> was a copy of the <code>outer_list</code> reference, and we had <code>the_list</code> point to a new list, but there was no way to change where <code>outer_list</code> pointed.</p>
<h2>String - an immutable type</h2>
<p><strong>It's immutable, so there's nothing we can do to change the contents of the string</strong></p>
<p><strong>Now, let's try to change the reference</strong></p>
<pre><code>def try_to_change_string_reference(the_string):
print 'got', the_string
the_string = 'In a kingdom by the sea'
print 'set to', the_string
outer_string = 'It was many and many a year ago'
print 'before, outer_string =', outer_string
try_to_change_string_reference(outer_string)
print 'after, outer_string =', outer_string
</code></pre>
<p>Output:</p>
<pre><code>before, outer_string = It was many and many a year ago
got It was many and many a year ago
set to In a kingdom by the sea
after, outer_string = It was many and many a year ago
</code></pre>
<p>Again, since the <code>the_string</code> parameter was passed by value, assigning a new string to it had no effect that the code outside the method could see. The <code>the_string</code> was a copy of the <code>outer_string</code> reference, and we had <code>the_string</code> point to a new list, but there was no way to change where <code>outer_string</code> pointed.</p>
<p>I hope this clears things up a little.</p>
<p><strong>EDIT:</strong> It's been noted that this doesn't answer the question that @David originally asked, "Is there something I can do to pass the variable by actual reference?". Let's work on that.</p>
<h2>How do we get around this?</h2>
<p>As @<a href="#986031" rel="nofollow">Andrea</a>'s answer shows, you could return the new value. This doesn't change the way things are passed in, but does let you get the information you want back out:</p>
<pre><code>def return_a_whole_new_string(the_string):
new_string = something_to_do_with_the_old_string(the_string)
return new_string
# then you could call it like
my_string = return_a_whole_new_string(my_string)
</code></pre>
<p>If you really wanted to avoid using a return value, you could create a class to hold your value and pass it into the function or use an existing class, like a list:</p>
<pre><code>def use_a_wrapper_to_simulate_pass_by_reference(stuff_to_change):
new_string = something_to_do_with_the_old_string(stuff_to_change[0])
stuff_to_change[0] = new_string
# then you could call it like
wrapper = [my_string]
use_a_wrapper_to_simulate_pass_by_reference(wrapper)
do_something_with(wrapper[0])
</code></pre>
<p>Although this seems a little cumbersome.</p>
http://stackoverflow.com/questions/1330066/make-emacs-less-aggressive-about-indentation/1330130#13301306Answer by Blair Conrad for Make Emacs less aggressive about indentationBlair Conrad2009-08-25T18:30:38Z2009-08-25T18:30:38Z<p>Try running <a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/emacs/Electric-C.html" rel="nofollow">c-toggle-electric-state</a> to turn off the electric action of these characters.</p>
<p>You can do this as part of a c-mode-common-hook, or toggle the state manually by hitting <code>C-c C-l</code>.</p>
http://stackoverflow.com/questions/1272803/are-custom-filters-in-nunit-possible/1272884#12728842Answer by Blair Conrad for Are Custom Filters in NUnit Possible?Blair Conrad2009-08-13T15:57:12Z2009-08-13T17:28:19Z<p>Do the filters need to use your custom attribute, or could you use an NUnit <a href="http://www.nunit.org/index.php?p=category&r=2.5.2" rel="nofollow">Category</a>?
Something like</p>
<pre><code>[Test]
[Category("BugId-12234")]
public void Test()
{
....
}
</code></pre>
<p>... and then use the <code>/include=STR</code> flag:</p>
<pre><code>nunit-console /include=BugId-12234 ...
</code></pre>
<p>? I'd recommend subclassing Category to make your custom attribute, but I don't think that allows you to add a switchable parameter to your attribute...</p>
http://stackoverflow.com/questions/1251463/c-how-to-generate-short-md5-code/1251488#12514889Answer by Blair Conrad for C#: How to generate short MD5 code?Blair Conrad2009-08-09T14:29:10Z2009-08-11T16:19:17Z<p>I like @<a href="#1251471" rel="nofollow">RichieHindle</a>'s answer. However, if you're interested in losing fewer bits of fidelity (and thereby decreasing the risk of collisions), you could take the 128 bit value returned by the MD5 Hash, and encode it using <a href="http://en.wikipedia.org/wiki/Ascii85" rel="nofollow">ASCII85</a> (also known as Base85 encoding), instead of a hexadecimal-based encoding. This will give you the whole hash in 20 bytes (which is more than you wanted, but you could chop 2 bytes off, resulting in much less loss than removing 14 of the 32 bytes you'd get using hex encoding).</p>
<p><strong>Edit:</strong> Prashant says 20 characters is close enough, and asked for sample code:</p>
<p>After obtaining the MD5 hash from the MD5.ComputeHash call, you can use <a href="http://www.codinghorror.com/blog/archives/000410.html" rel="nofollow">Jeff Atwood's ASCII85 encoder</a>:</p>
<pre><code>MD5 m = MD5.Create();
byte[] hash = m.ComputeHash(System.Text.Encoding.ASCII.GetBytes("23"));
Ascii85 encoder = new Ascii85();
encoder.EnforceMarks = false;
string hash85 = encoder.Encode(hash);
Console.Out.WriteLine(hash85);
</code></pre>
<p>Yields</p>
<pre><code>2ebDPFFZsD?&,r1fX\$,
</code></pre>
<p>so you can just use <code>hash85</code>. The <code>encoder.EnforceMarks</code> makes sure that the encoding doesn't include some typical prefix and suffixes that are associated with ASCII85.</p>
http://stackoverflow.com/questions/1235043/what-latex-editor-do-you-suggest-for-linux/1235063#12350632Answer by Blair Conrad for what LaTex Editor do you suggest for Linux?Blair Conrad2009-08-05T18:51:28Z2009-08-05T18:51:28Z<p>Honestly, I've always been happy with <a href="http://www.gnu.org/software/emacs/" rel="nofollow">emacs</a>. Then again, I started out using emacs, so I've now doubt that it colours my perceptions. Still, it gives syntax highlighting and formatting, and can easily be configured to build the LaTeX. Check out the <a href="http://www.delorie.com/gnu/docs/emacs/emacs%5F252.html" rel="nofollow">TeX mode</a>.</p>
http://stackoverflow.com/questions/1170898/unable-to-find-the-python-pil-library-google-app-engine/1170930#11709301Answer by Blair Conrad for Unable to find the Python PIL library.Google App EngineBlair Conrad2009-07-23T10:40:21Z2009-07-23T10:54:06Z<p>We're probably going to need more information, so here are some questions and things to try.</p>
<p>How are you trying to access the PIL? Are you trying to use the google.appengine.api.images module, or PIL directly? It sounds like the former, but it's not clear.</p>
<p>Did you follow <a href="http://code.google.com/appengine/docs/python/images/" rel="nofollow">the App Engine instructions</a>?</p>
<p>Post code, if you can.</p>
<p>Perhaps the most important thing to try: see if you can use PIL from a non-App Engine script. Just write a quick Python script that accesses it and see how that goes. Something like:</p>
<pre><code>import Image
im = Image.open('filename.png')
im.show()
</code></pre>
<p>If that doesn't work, it's not surprising that Google App Engine wouldn't work with PIL.</p>
http://stackoverflow.com/questions/1168844/why-does-this-python-script-only-read-the-last-rss-post-into-the-file/1168865#11688652Answer by Blair Conrad for Why does this Python script only read the last RSS post into the file?Blair Conrad2009-07-22T23:45:46Z2009-07-22T23:45:46Z<p>Your <code>print >>f</code> are after the <code>for</code> loop, so they are run once, and operate on the data that you last saved to <code>title</code>, <code>description</code>, and <code>str</code>.</p>
<p>You should open the file before the <code>for</code> loop and then put the <code>print >>f</code> lines inside the loop.</p>
<pre><code>import urllib
import sys
import xml.dom.minidom
#The url of the feed
address = 'http://www.vg.no/export/Alle/rdf.hbs?kat=nyheter'
f = open('lawl.txt','w')
#Our actual xml document
document = xml.dom.minidom.parse(urllib.urlopen(address))
for item in document.getElementsByTagName('item'):
title = item.getElementsByTagName('title')[0].firstChild.data
link = item.getElementsByTagName('link')[0].firstChild.data
description = item.getElementsByTagName('description')[0].firstChild.data
str = link.strip("http://go.vg.no/cgi-bin/go.cgi/rssart/")
print "\n"
print "------------------------------------------------------------------"
print '''"%s"\n\n%s\n\n(%s)''' % (title.encode('UTF8', 'replace'),
description.encode('UTF8','replace'),
str.encode('UTF8','replace'))
print "------------------------------------------------------------------"
print "\n"
print >>f, "----------------------Nyeste paa VG-------------------------------"
print >>f, title.encode('UTF8','replace')
print >>f, description.encode('UTF8','replace')
print >>f, str.encode('UTF8','replace')
print >>f, "------------------------------------------------------------------"
print >>f, "\n"
</code></pre>
http://stackoverflow.com/questions/1118753/c-can-an-object-override-a-class-method/1118780#11187800Answer by Blair Conrad for C#: Can an _object_ override a class' method?Blair Conrad2009-07-13T10:45:47Z2009-07-13T10:45:47Z<p>No. This isn't possible in C#. You'd have to create a new class with your desired behaviour.</p>
http://stackoverflow.com/questions/1118705/call-a-function-named-in-a-string-variable-in-c/1118712#111871218Answer by Blair Conrad for call a function named in a string variable in cBlair Conrad2009-07-13T10:29:38Z2009-07-13T10:36:26Z<p>C does not support this kind of operation (languages that have reflection would). The best you're going to be able to do is to create a lookup table from function names to function pointers and use that to figure out what function to call. Or you could use a switch statement.</p>
http://stackoverflow.com/questions/1103203/photo-safety-on-my-website/1103237#11032371Answer by Blair Conrad for Photo safety on my websiteBlair Conrad2009-07-09T11:11:35Z2009-07-09T11:11:35Z<p>Password-protecting the site would help. This would keep people who didn't know the password from seeing the photos at all, and then they couldn't copy the pictures. Once they entered the password and had access to the site, though, they could copy the pictures if they liked.</p>
http://stackoverflow.com/questions/1066710/multiprocessing-in-python-with-more-then-2-levels/1066747#10667473Answer by Blair Conrad for Multiprocessing in python with more then 2 levelsBlair Conrad2009-07-01T00:14:09Z2009-07-01T00:14:09Z<p>@<a href="#1066724" rel="nofollow">vilalian</a>'s answer is correct, but terse. Of course, it's hard to supply more information when your original question was vague.</p>
<p>To expand a little, you'd have your original program spawn its <code>n</code> processes, but they'd be slightly different than the original in that you'd want them (each, if I understand your question) to spawn <code>n</code> more processes. You could accomplish this by either by having them run code similar to your original process, but that spawned new sets of programs that performed the task at hand, without further processing, or you could use the same code/entry point, just providing different arguments - something like</p>
<pre><code>def main(level):
if level == 0:
do_work
else:
for i in range(n):
spawn_process_that_runs_main(level-1)
</code></pre>
<p>and start it off with <code>level == 2</code></p>
http://stackoverflow.com/questions/1058167/nunit-tests-in-a-separate-project-same-solution/1058216#10582160Answer by Blair Conrad for NUnit tests in a separate project, same solutionBlair Conrad2009-06-29T13:14:58Z2009-06-29T13:14:58Z<p>Is your main project a .exe or a .dll? Older versions of .NET couldn't reference an .exe, so that <em>might</em> be the problem.</p>
<p>In either case, I'd expect problems if the main assembly didn't end up somewhere accessible by your test assembly (for example, in the same directory). You could check that, and if not make it so, perhaps by having Visual Studio copy the referenced (main) assembly to the local directory. </p>
<p>The "An attempt was made to load a program with an incorrect format." makes me wonder if the "missing assembly" theory is right, but without more info, it's the best guess I can think of.</p>
http://stackoverflow.com/questions/1052577/why-must-junits-fixturesetup-be-static/1052595#10525951Answer by Blair Conrad for Why must jUnit's fixtureSetup be static?Blair Conrad2009-06-27T10:43:46Z2009-06-27T10:43:46Z<p>JUnit documentation seems scarce, but I'll guess: perhaps JUnit creates a new instance of your test class before running each test case, so the only way for your "fixture" state to persist across runs is to have it be static, which can be enforced by making sure your fixtureSetup (@BeforeClass method) is static.</p>
http://stackoverflow.com/questions/520895/whats-the-use-of-system-string-copy-in-net17What's the use of System.String.Copy in .NET?Blair Conrad2009-02-06T16:07:19Z2009-06-22T21:37:37Z
<p>I'm afraid that this is a very silly question, but I must be missing something.</p>
<p>Why might one want to use <a href="http://msdn.microsoft.com/en-us/library/system.string.copy.aspx" rel="nofollow">String.Copy(string)</a>?</p>
<p>The documentation says the method</p>
<blockquote>
<p>Creates a new instance of String with
the same value as a specified String.</p>
</blockquote>
<p>Since strings are immutable in .NET, I'm not sure what's the benefit of using this method, as I'd think that </p>
<pre><code> string copy = String.Copy(otherString);
</code></pre>
<p>would for all practical purposes seem to yield the same result as</p>
<pre><code> string copy = otherString;
</code></pre>
<p>That is, except for whatever internal bookkeeping that's going on, and the fact that copy is not <code>ReferenceEquals</code> to otherString, there are no observable differences - String being an immutable class whose equality is based on value, not identity.
(Thanks to @<a href="#520932" rel="nofollow">Andrew Hare</a> for pointing out that my original phrasing was not precise enough to indicate that I realized there was a difference between <code>Copy</code>ing and not, but was concerned about the perceived lack of <em>useful</em> difference.)</p>
<p>Of course when passed a <code>null</code> argument, Copy throws an <code>ArgumentNullException</code>, and the "new instance" might consume more memory. The latter hardly seems like a benefit, and I'm not sure that the null check is a big enough bonus to warrant a whole Copy method.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1009369/sort-with-lexicographic-order/1009386#10093868Answer by Blair Conrad for sort with lexicographic orderBlair Conrad2009-06-17T20:33:55Z2009-06-17T20:33:55Z<p><code>or</code> is a short-circuit evaluator, so it will return the value of the left-hand side if it's true (which is any non-zero value), and otherwise will evaluate the right-hand side.</p>
<p>So in this case, if the animals' names compare as equal, (0 - false), the number of legs will be counted for sorting purposes.</p>
http://stackoverflow.com/questions/992803/is-it-possible-to-use-hard-coded-values-in-a-base-constructor/992819#9928191Answer by Blair Conrad for Is it possible to use hard-coded values in a base constructor?Blair Conrad2009-06-14T13:18:43Z2009-06-14T13:18:43Z<p>Wild guess here. Is the problem that you're missing the <code>class</code> keyword in your class declaration?</p>
<pre><code>public class MyClass : BaseClass
{
public MyClass(string myArg):base(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
{
// do stuff
}
}
</code></pre>
<p>And depending on what you do in "do stuff", you might be throwing away your <code>myArg</code>... but that's probably not your problem.</p>
http://stackoverflow.com/questions/991978/why-are-008-and-009-invalid-keys-for-python-dicts/991986#9919867Answer by Blair Conrad for Why are 008 and 009 invalid keys for Python dicts?Blair Conrad2009-06-14T02:17:12Z2009-06-14T02:17:12Z<p>@<a href="#991983" rel="nofollow">DoxaLogos</a> is right. It's not that they're invalid keys - they're invalid literals. If you tried to use them in any other context, you'd get the same error.</p>
http://stackoverflow.com/questions/978049/why-is-the-perl-script-reading-files-from-the-directory-in-random-order/978089#97808910Answer by Blair Conrad for Why is the Perl script reading files from the directory in random order?Blair Conrad2009-06-10T20:52:46Z2009-06-10T20:52:46Z<p>It's probably reading them according to the order they're stored in the directory's list of files. On certain Unix-like filesystems, the directory is essentially an unordered list of filenames and inodes that point to the contents (this is tremendously simplified).</p>
http://stackoverflow.com/questions/973473/getting-a-list-of-all-subdirectories-in-the-current-directory/973488#9734884Answer by Blair Conrad for Getting a list of all subdirectories in the current directoryBlair Conrad2009-06-10T02:54:45Z2009-06-10T03:00:46Z<p>Do you mean immediate subdirectories, or every directory right down the tree? </p>
<p>Either way, you could use <a href="http://docs.python.org/library/os.html#os.walk" rel="nofollow">os.walk</a> to do this:</p>
<pre><code>os.walk(directory)
</code></pre>
<p>will yield a tuple for each subdirectory. Ths first entry in the 3-tuple is a directory name, so</p>
<pre><code>[x[0] for x in os.walk(directory)]
</code></pre>
<p>should give you all of the directories.</p>
<p>Note that the 2nd entry in the tuple is the list of child directories of the entry in the 1st position, so you could use this instead, but it's not likely to save you much.</p>
<p>However, you could use it just to give you the immediate child directories:</p>
<pre><code>os.walk('.').next()[1]
</code></pre>
<p>Or see the other solutions already posted, using <a href="http://docs.python.org/library/os.html#os.listdir" rel="nofollow">os.listdir</a> and <a href="http://docs.python.org/library/os.path.html#os.path.isdir" rel="nofollow">os.path.isdir</a>, including those at <a href="http://stackoverflow.com/questions/800197/get-all-of-the-immediate-subdirectories-in-python">get all of the immediate subdirectories in python</a>.</p>
http://stackoverflow.com/questions/939344/byte-to-string-conversion-doesnt-seem-to-work-the-way-i-want/939357#9393573Answer by Blair Conrad for byte[] to string conversion doesn't seem to work the way I wantBlair Conrad2009-06-02T12:59:56Z2009-06-02T12:59:56Z<p>The default ToString() implementation just echoes the class name. You probably want one of the Encoding.GetString() methods, like <a href="http://msdn.microsoft.com/en-us/library/bb358574.aspx" rel="nofollow">ASCIIEncoding.GetString</a>.</p>
http://stackoverflow.com/questions/919056/python-case-insensitive-replace/919067#91906712Answer by Blair Conrad for Python Case Insensitive ReplaceBlair Conrad2009-05-28T03:39:13Z2009-05-28T10:42:52Z<p>The <code>string</code> type doesn't support this. You're probably best off using <a href="http://docs.python.org/library/re.html#re.RegexObject.sub" rel="nofollow">the regular expression sub method</a> with the <a href="http://docs.python.org/library/re.html#re.IGNORECASE" rel="nofollow">re.IGNORECASE</a> option.</p>
<pre><code>>>> import re
>>> insensitive_hippo = re.compile('hippo', re.IGNORECASE)
>>> insensitive_hippo.sub('giraffe', 'I want a hIPpo for my birthday')
'I want a giraffe for my birthday'
</code></pre>
http://stackoverflow.com/questions/918654/what-user-names-should-i-disallow/918661#9186612Answer by Blair Conrad for What user names should I disallow?Blair Conrad2009-05-28T00:39:42Z2009-05-28T00:39:42Z<p>Depending on what you do with the names, it shouldn't matter. You definitely shouldn't be injecting them into SQL statements, so the harm of database keywords should be minimized. My approach would be to allow pretty much anything, but not trust anything that's entered - use parameters in your SQL statement and/or sanitize the data if you're going to include it in, for example, HTML.</p>
<p>Consider reading with this question to get a little more information about SQL Injection Attacks:
<a href="http://questions/1973/what-is-the-best-way-to-avoid-sql-injection-attacks" rel="nofollow">What is the best way to avoid SQL injection attacks?</a></p>
http://stackoverflow.com/questions/914960/mocking-framework-for-net-fx-1-1/914987#9149871Answer by Blair Conrad for Mocking framework for .Net fx 1.1?Blair Conrad2009-05-27T10:19:12Z2009-05-27T10:19:12Z<p>I use both <a href="http://www.nmock.org/" rel="nofollow">NMock2</a> and an older version of <a href="http://www.typemock.com/learn%5Fabout%5Ftypemock%5Fisolator.php" rel="nofollow">Typemock Isolator</a> at work when dealing with our legacy products that only run on 1.1.</p>
http://stackoverflow.com/questions/895637/looking-for-help-just-started-with-python-today-3-0/895673#8956733Answer by Blair Conrad for Looking for help, just started with Python today. (3.0)Blair Conrad2009-05-21T22:53:31Z2009-05-21T22:53:31Z<p>You didn't say what you <em>do</em> get - I'm guessing <code>num</code> and <code>num2</code> concatenated, as the <a href="http://docs.python.org/3.0/library/functions.html#input" rel="nofollow"><code>input</code></a> returns a string. Adding two strings just concatenates them. If you expect <code>num</code> and <code>num2</code> to represent integers, you could use <a href="http://docs.python.org/3.0/library/functions.html#int" rel="nofollow"><code>int</code></a> to convert the strings into integers:</p>
<pre><code>num = int(input("Enter a number:")
num2 = int(input("Enter a number:")
</code></pre>
<p>And you'll likely get better results. Note there's still room for better error-checking, but this might get you started.</p>
<p>One other thing to try - add a line at the end of your <code>__main__</code> like this:</p>
<pre><code>add(4, 3)
</code></pre>
<p>and see what gets printed. That will tell you whether the fault is with <code>add</code> or with your input routines.</p>
<p>Of course, none of that provided you with a resource - are the online docs not helping? I'd start with the <a href="http://docs.python.org/3.0/tutorial/index.html" rel="nofollow">tutorial</a>, if you haven't already.</p>
http://stackoverflow.com/questions/855759/python-try-else/855764#85576412Answer by Blair Conrad for Python try-elseBlair Conrad2009-05-13T02:18:22Z2009-05-13T10:40:04Z<p>The statements in the <code>else</code> block are executed if execution falls off the bottom of the <code>try</code> - if there was no exception. Honestly, I've never found a need.</p>
<p>However, <a href="http://docs.python.org/tutorial/errors.html#handling-exceptions" rel="nofollow">Handling Exceptions</a> notes:</p>
<blockquote>
<p>The use of the else clause is better
than adding additional code to the try
clause because it avoids accidentally
catching an exception that wasn’t
raised by the code being protected by
the try ... except statement.</p>
</blockquote>
<p>So, if you have a method that could, for example, throw an <code>IOError</code>, and you want to catch exceptions it raises, but there's something else you want to do if the first operation succeeds, and you <em>don't</em> want to catch an IOError from that operation, you might write something like this:</p>
<pre><code> try:
operation_that_can_throw_ioerror()
except IOError:
handle_the_exception_somehow()
else:
# we don't want to catch the IOError if it's raised
another_operation_that_can_throw_ioerror()
finally:
something_we_always_need_to_do()
</code></pre>
<p>If you just put <code>another_operation_that_can_throw_ioerror()</code> after <code>operation_that_can_throw_ioerror</code>, the <code>except</code> would catch the second call's errors. And if you put it after the whole <code>try</code> block, it'll always be run, and not until after the <code>finally</code>. The <code>else</code> lets you make sure</p>
<ol>
<li>the second operation's only run if there's no exception,</li>
<li>it's run before the <code>finally</code> block, and</li>
<li>any <code>IOError</code>s it raises aren't caught here</li>
</ol>
http://stackoverflow.com/questions/1867357/how-do-i-determine-an-open-files-size-in-pythonComment by Blair Conrad on How do I determine an open file's size in Python?Blair Conrad2009-12-08T14:39:23Z2009-12-08T14:39:23ZIs there a reason you can't just keep track of the file size yourself - that is, see what the size is when you open it and increment a counter when you write? Not particularly elegant, but it should work.http://stackoverflow.com/questions/1852223/mysql-keep-server-timezone-or-user-timezone/1852233#1852233Comment by Blair Conrad on MySQL: keep server timezone or user timezone?Blair Conrad2009-12-05T13:49:20Z2009-12-05T13:49:20Z+1, but even more so for UTC over server time zone. What if you want to move the server later, or have multiple servers around the world? http://stackoverflow.com/questions/1663133/using-python-to-check-wordsComment by Blair Conrad on Using Python to check wordsBlair Conrad2009-11-02T19:25:36Z2009-11-02T19:25:36ZHonestly, my best guess is that the words aren't in the dictionary.
Can you replicate with a small text size and dictionary? If so, print out the dictionary to verify that the entries are there. Keep in mind that "in" checks the dictionary keys, so if you've added the words as values with some other keys, you won't get hits...http://stackoverflow.com/questions/1633181/python-re-no-such-group/1633194#1633194Comment by Blair Conrad on python re: no such groupBlair Conrad2009-10-27T19:47:32Z2009-10-27T19:47:32ZIt's' not a matter of the statements being invalid, just that your expression attempts to match things that you didn't mean to - essentially, you're trying to match any of the characters within the [], not the special regular expression constructs you made. You can tell you matched something because reOptions is not None. You can use MatchObject.group with no arguments to see the entire string that was matched.http://stackoverflow.com/questions/1618926/python-zlib-output-how-to-recover-out-of-mysql-utf-8-table/1618942#1618942Comment by Blair Conrad on Python zlib output, how to recover out of mysql utf-8 table?Blair Conrad2009-10-24T20:17:39Z2009-10-24T20:17:39ZLatin-1 and UTF-8 aren't compatible - there are differences once you're out of the plain ASCII range, which you'd definitely be once you zlib compressed somethinghttp://stackoverflow.com/questions/71195/should-you-obfuscate-a-commercial-net-application/71232#71232Comment by Blair Conrad on Should you obfuscate a commercial .Net application?Blair Conrad2009-10-23T05:59:24Z2009-10-23T05:59:24ZWell, keep in mind that (in theory) you have the original code to help, as well as the text of the log messages. The only thing that should be obfuscated would be the class and member names. In addition, many tools (Dotfuscator is one) create a map file to tell you what obfuscated construct name maps back to which original name - this can make it a pain to figure out exactly where the log messages come from, but nowhere near impossible.http://stackoverflow.com/questions/1465246/trouble-with-positive-look-behind-assertion-in-python-regex/1465295#1465295Comment by Blair Conrad on Trouble with positive look behind assertion in python regex.Blair Conrad2009-09-23T13:35:21Z2009-09-23T13:35:21ZOf course! Non-matching group. Mind like a sieve, doncha know.http://stackoverflow.com/questions/86049/how-do-i-ignore-files-in-subversion/86052#86052Comment by Blair Conrad on How do I ignore files in subversion?Blair Conrad2009-09-16T22:42:26Z2009-09-16T22:42:26ZYou're right, blahdiblah. Fixed.http://stackoverflow.com/questions/1251463/c-how-to-generate-short-md5-codeComment by Blair Conrad on C#: How to generate short MD5 code?Blair Conrad2009-08-15T11:50:50Z2009-08-15T11:50:50ZHi, Prashant. I see your new comment about using the string in a URL. I can think of a few approaches to make this work again, but maybe we'd be able to give an answer that fits your problem if you expanded on what kinds of inputs you expect to have, exactly why you're making an MD5 hash, and what you want to accomplish with the URL in the end. That way we can short-circuit any objections you may have with new solutions, or maybe even just suggest another approach, like @tvanfosson's Perfect Hash Function idea.http://stackoverflow.com/questions/1258199/python-datetime-strptime-wildcard/1258248#1258248Comment by Blair Conrad on python datetime strptime wildcardBlair Conrad2009-08-11T02:44:36Z2009-08-11T02:44:36ZI'd be worried about what this is going to do to August.http://stackoverflow.com/questions/1254125/web-config-file-setting-in-asp-netComment by Blair Conrad on web.config file setting in asp.netBlair Conrad2009-08-10T10:25:16Z2009-08-10T10:25:16ZI think you forgot a few words... try expanding your question.http://stackoverflow.com/questions/1235043/what-latex-editor-do-you-suggest-for-linux/1235063#1235063Comment by Blair Conrad on what LaTex Editor do you suggest for Linux?Blair Conrad2009-08-05T20:38:43Z2009-08-05T20:38:43ZTrue. I shoulda said.http://stackoverflow.com/questions/1170898/unable-to-find-the-python-pil-library-google-app-engine/1170930#1170930Comment by Blair Conrad on Unable to find the Python PIL library.Google App EngineBlair Conrad2009-07-23T11:12:47Z2009-07-23T11:12:47ZYup, PIL isn't installed correctly. You should have under your Python install directory a directory called <code>Lib\site-packages</code>. That should contain a file called <code>PIL.pth</code>. Check its contents and see if it points to a directory that containes <code>Image.py</code>. If any of these things aren't true, your best bet is probably to reinstall. Or you could reinstall anyhow...http://stackoverflow.com/questions/1170898/unable-to-find-the-python-pil-library-google-app-engine/1170930#1170930Comment by Blair Conrad on Unable to find the Python PIL library.Google App EngineBlair Conrad2009-07-23T10:58:41Z2009-07-23T10:58:41ZThat suggests that PIL isn't installed properly. It's either not there, or not on Python's module search path. If you don't routinely manipulate you Python search paths, I suggest removing PIL and reinstalling it again, being careful to watch for any errors that pop up along the wayhttp://stackoverflow.com/questions/1170898/unable-to-find-the-python-pil-library-google-app-engine/1170910#1170910Comment by Blair Conrad on Unable to find the Python PIL library.Google App EngineBlair Conrad2009-07-23T10:35:04Z2009-07-23T10:35:04ZIs this supposed to be an answer, or just more information?