User Dan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:31:37Z http://stackoverflow.com/feeds/user/20789 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/160971/what-are-your-language-hangups 9 What are your language "hangups"? Dan 2008-10-02T05:16:28Z 2009-12-02T00:51:41Z <p>I've read some of the recent language vs. language questions with interest... <a href="http://stackoverflow.com/questions/150043/python-v-perl#150103">Perl vs. Python</a>, <a href="http://stackoverflow.com/questions/136977/after-c-python-or-java#137343">Python vs. Java</a>, <a href="http://stackoverflow.com/questions/157207/can-one-language-be-better-than-another">Can one language be better than another?</a></p> <p>One thing I've noticed is that a lot of us have <em>very superficial</em> reasons for disliking languages. We notice these things at first glance and they turn us off. We shun what are probably perfectly good languages as a result of features that we'd probably learn to love or ignore in 2 seconds if we bothered.</p> <p>Well, I'm as guilty as the next guy, if not more. Here goes:</p> <ul> <li>Ruby: All the Ruby example code I see uses the <code>puts</code> command, and that's a sort of childish Yiddish anatomical term. So as a result, I can't take Ruby code seriously even though I should.</li> <li>Python: The first time I saw it, I smirked at the whole significant whitespace thing. I avoided it for the next several years. Now I hardly use anything else.</li> <li>Java: I don't like identifiersThatLookLikeThis. I'm not sure why exactly.</li> <li>Lisp: I have trouble with all the parentheses. Things of different importance and purpose (function declarations, variable assignments, etc.) are not syntactically differentiated and I'm too lazy to learn what's what.</li> <li>Fortran: uppercase everything hurts my eyes. I know modern code doesn't have to be written like that, but most example code is...</li> <li>Visual Basic: it bugs me that <code>Dim</code> is used to declare variables, since I remember the good ol' days of GW-BASIC when it was <em>only</em> used to dimension arrays.</li> </ul> <p>What languages <em>did</em> look right to me at first glance? Perl, C, QBasic, JavaScript, assembly language, BASH shell, FORTH.</p> <p>Okay, now that I've aired my dirty laundry... I want to hear yours. <strong>What are your language hangups? What superficial features bother you? How have you gotten over them?</strong></p> http://stackoverflow.com/questions/122277/how-do-you-translate-this-regular-expression-idiom-from-perl-into-python 13 How do you translate this regular-expression idiom from Perl into Python? Dan 2008-09-23T16:55:18Z 2009-11-27T01:05:41Z <p>I switched from Perl to Python about a year ago and haven't looked back. There is only <i>one</i> idiom that I've ever found I can do more easily in Perl than in Python:</p> <pre><code>if ($var =~ /foo(.+)/) { # do something with $1 } elsif ($var =~ /bar(.+)/) { # do something with $1 } elsif ($var =~ /baz(.+)/) { # do something with $1 } </code></pre> <p>The corresponding Python code is not so elegant since the if statements keep getting nested:</p> <pre><code>m = re.search(r'foo(.+)', var) if m: # do something with m.group(1) else: m = re.search(r'bar(.+)', var) if m: # do something with m.group(1) else: m = re.search(r'baz(.+)', var) if m: # do something with m.group(2) </code></pre> <p>Does anyone have an elegant way to reproduce this pattern in Python? I've seen anonymous function dispatch tables used, but those seem kind of unwieldy to me for a small number of regular expressions...</p> http://stackoverflow.com/questions/190006/any-good-online-c-reference-manual/190018#190018 3 Answer by Dan for Any good online C reference manual? Dan 2008-10-10T03:28:30Z 2009-07-15T00:58:48Z <ul> <li><del><a href="http://members.aol.com/wantondeb/" rel="nofollow">C standard library reference (both C89 and C99)</a></del></li> <li><a href="http://www.acm.uiuc.edu/webmonkeys/book/c%5Fguide/" rel="nofollow">C89 library reference guide</a></li> <li><a href="http://www.crasseux.com/books/ctutorial/" rel="nofollow">GNU C tutorial</a> (more than just a tutorial, quite a useful reference)</li> </ul> <p>I got these all from a previous similar question on SO. I would like to credit the original posters, but unfortunately cannot seem to find that question.</p> http://stackoverflow.com/questions/247663/how-do-i-prevent-two-oses-from-clobbering-grub-files/247696#247696 2 Answer by Dan for How do I prevent two OSes from clobbering grub files? Dan 2008-10-29T17:31:02Z 2008-10-29T17:31:02Z <p>You're going to have to tell one OS or the other <strong>not</strong> to automatically clobber the GRUB boot sector.</p> <p>All Linux distros that I've seen have some way to prevent their installation CD from clobbering the boot sector, but it's often in some obscure advanced option.</p> <p>The majority GRUB's configuration data is <em>not</em> stored in the very small boot sector, which just contains a small loader program and a pointer to where to find the rest. The configuration data is usually stored in a regular directory in a regular partition on the drive (`/boot' under many Linux distros). So unless Solaris is actually going in and monkeying with the data on the Linux partition, it's probably not a huge deal... if one OS clobber's the boot sector created by the other, you can very easily recover it.</p> http://stackoverflow.com/questions/231257/is-non-multiple-of-machine-word-primitives-good-idea/231360#231360 0 Answer by Dan for Is non multiple of machine word primitives good idea? Dan 2008-10-23T20:27:41Z 2008-10-23T20:27:41Z <p>No, no way that this is a good idea for a general-purpose compiler. The overhead of handling the "type tag" bits in arithmetic operations will be severe.</p> <p>By their very nature, dynamically-typed languages require extra space to store the type information for each value. If you have to store lots and lots of homogeneously-typed data, the right way to do it is usually with a native-code module designed to do that in C!</p> <p>For example, when you want to store an array of 5 integers, a Python <code>list</code> is okay (it can store arbitrarily complex mixed types). But if you want to store an array of 5 million integers, you should use the <code>array</code> module which stores them as a homogeneous C array, or NumPy which does something similar but optimized for doing a lot of math on them.</p> http://stackoverflow.com/questions/231159/use-greater-than-or-equals-or-just-greater-than/231179#231179 22 Answer by Dan for Use "greater than or equals" or just "greater than" Dan 2008-10-23T19:44:24Z 2008-10-23T20:18:28Z <p>No, there are no performance issues associated with comparison operators. And any good compiler would optimize something this trivial anyway.</p> <p>I'm not sure where you got the suggestion to use "i > -1" rather than "i >= 0". On the x86 architecture, it makes no difference which you use: either case takes exactly two instructions... one to compare and one to jump:</p> <pre><code> ;; if (i &gt; -1) { cmp eax, -1 jle else then: ... else: ;; if (i &gt;= 0) { cmp eax, 0 jl else then: ... else: </code></pre> <p>On most RISC architectures that I know, "i >= 0" may actually be faster since there is usually a dedicated zero register, and "i > -1" may require loading a constant. For example, MIPS only has a &lt; instruction (no &lt;=). Here is how the two constructs would be (naively!) expressed in MIPS assembly language:</p> <pre><code> // if (i &gt;= 0) { (assuming i is in register %t0) stl $t1, $0, $t0 // in C: t1 = (0 &lt; t0) beq $t1, $0, else // jump if t1 == 0, that is if t0 &gt;= 0 nop then: ... else: // if (i &gt; -1) { (assuming i is in register %t0) addi $t2, $0, -1 // in C: t2 = -1 stl $t1, $t2, $t0 // in C: t1 = (t2 &lt; t0) = (-1 &lt; t0) bne $t1, $0, else // jump if t1 != 0, that is if t0 &gt; -1 nop then: ... else: </code></pre> <p>So in the naive, general case, it will actually be one instruction faster to do "i >= 0" on MIPS. Of course, RISC code is so heavily optimizable that a compiler would likely change either of these instruction sequences almost beyond recognition :-)</p> <p>So... the short answer is no no no, no difference.</p> http://stackoverflow.com/questions/230751/how-to-flush-output-of-python-print/231216#231216 0 Answer by Dan for How to flush output of Python print? Dan 2008-10-23T19:54:26Z 2008-10-23T19:54:26Z <p>Using the <code>-u</code> command-line switch works, but it is a little bit clumsy in my opinion. I usually use a custom stdout, like this:</p> <pre><code>class flushfile(file): def __init__(self, f): self.f = f def write(self, x) self.f.write(x) self.f.flush() import sys sys.stdout = flushfile(sys.stdout) </code></pre> <p>... Now all your <code>print</code> calls (which use <code>sys.stdout</code> implicitly), will be automatically <code>flush</code>ed.</p> http://stackoverflow.com/questions/230584/where-are-variables-in-c-stored/230613#230613 16 Answer by Dan for Where are variables in C++ stored? Dan 2008-10-23T17:22:29Z 2008-10-23T17:22:29Z <p>Variables are stored:</p> <ul> <li>on the stack, if they're "automatic" function-local variables</li> <li>on the heap, if they're allocated with <code>new</code> or <code>malloc</code>, etc.</li> <li>in a per-process data area if they are global or <code>static</code></li> </ul> <p>This is all in RAM, of course. Caching is transparent to userspace processes, though it may visibily affect performance.</p> <p>Compilers may optimize code to store variables in registers. This is highly compiler and code-dependent, but good compilers will do so aggressively.</p> http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform/230581#230581 2 Answer by Dan for What's the best way to check if a file exists in C? (cross platform) Dan 2008-10-23T17:14:05Z 2008-10-23T17:14:05Z <p>Usually when you want to check if a file exists, it's because you want to <em>create</em> that file if it doesn't. Graeme Perrow's answer is good if you <strong>don't</strong> want to create that file, but it's vulnerable to a race condition if you do: another proces could create the file in between you checking if it exists, and you actually opening it to write to it. (Don't laugh... this could have <strong>bad</strong> security implications if the file created was a symlink!)</p> <p>If you want to check for existence <em>and</em> create the file if it doens't exist, <strong>atomically</strong> so that there are no race condtiions, then use this:</p> <pre><code>#include &lt;fcntl.h&gt; #include &lt;errno.h&gt; fd = open(pathname, O_CREAT | O_WRONLY); if (fd &lt; 0) { /* failure */ if (errno == EEXIST) { /* the file already existed */ ... } } else { /* now you can use the file */ } </code></pre> http://stackoverflow.com/questions/224827/tips-for-optimizing-an-sqlite-database-with-over-a-gig-of-data-in-it/226020#226020 4 Answer by Dan for Tips for optimizing an sqlite database with over a gig of data in it? Dan 2008-10-22T14:36:43Z 2008-10-22T14:36:43Z <p>Have you read the <a href="http://web.utk.edu/~jplyon/sqlite/SQLite_optimization_FAQ.html" rel="nofollow">SQLite Optimization FAQ</a> (a few years old, but still seems useful)?</p> <p>I don't think 1gb is particularly large, even for SQLite. It can certainly handle much larger databases stably.</p> http://stackoverflow.com/questions/222877/how-to-use-super/222997#222997 5 Answer by Dan for how to use 'super' ? Dan 2008-10-21T18:48:51Z 2008-10-21T18:48:51Z <p>John is absolutely right about the benefits/uses of super.</p> <p>Here is a good article on the <em>pitfalls</em> of <code>super()</code>: <a href="http://fuhm.net/super-harmful/" rel="nofollow">Python's Super Considered Harmful</a>. Despite the name, it is not an inflammatory article, and carefully describes the goals and uses of <code>super()</code> as well as the issues.</p> http://stackoverflow.com/questions/220866/best-video-manipulation-library-for-python/222610#222610 5 Answer by Dan for Best video manipulation library for python? Dan 2008-10-21T16:51:52Z 2008-10-21T16:51:52Z <p>I would recommend that you look again at gst-python! It is <em>not</em> coupled with pyGTK. You can use it completely separately, with no dependencies on either the Python bindings or the C libraries of GTK. I've written several command-line utilities that use gst-python and not GTK.</p> <p>It's true that <a href="http://gstreamer.freedesktop.org/modules/gst-python.html" rel="nofollow">the gst-python docs</a> are not so great. However, the <a href="http://gstreamer.freedesktop.org/documentation/" rel="nofollow">documentation for the C API and modules</a> is really very extensive, and the mapping from the C API to the Python API is very straightforward. And there is a very active Gstreamer community and I had good luck finding help on the mailing lists and IRC!</p> http://stackoverflow.com/questions/222133/best-approach-with-dynamic-classes-using-python-globals/222307#222307 4 Answer by Dan for Best approach with dynamic classes using Python globals() Dan 2008-10-21T15:32:59Z 2008-10-21T15:32:59Z <p>First of all, it sounds like you may be reinventing the wheel a little bit... most Python web frameworks (CherryPy/TurboGears is what I know) already include a way to dispatch requests to specific classes based on the contents of the URL, or the user input.</p> <p>There is nothing <strong>wrong</strong> with the way that you do it, really, but in my experience it tends to indicate some kind of "missing abstraction" in your program. You're basically relying on the Python interpreter to store a list of the objects you might need, rather than storing it yourself.</p> <p>So, as a first step, you might want to just make a dictionary of all the classes that you might want to call:</p> <pre><code>dispatch = {'Foo': Foo, 'Bar': Bar, 'Bizbaz': Bizbaz} </code></pre> <p>Initially, this won't make much of a difference. But as your web app grows, you may find several advantages: (a) you won't run into namespace clashes, (b) using <code>globals()</code> you may have security issues where an attacker can, in essence, access any global symbol in your program if they can find a way to inject an arbitrary <code>classname</code> into your program, (c) if you ever want to have <code>classname</code> be something other than the actual exact classname, using your own dictionary will be more flexible, (d) you can replace the <code>dispatch</code> dictionary with a more-flexible user-defined class that does database access or something like that if you find the need.</p> <p>The security issues are particularly salient for a web app. Doing <code>globals()[variable]</code> where <code>variable</code> is input from a web form is just <strong>asking for trouble</strong>.</p> http://stackoverflow.com/questions/218935/how-do-you-share-data-between-a-parent-and-forked-child-process-in-python/218943#218943 3 Answer by Dan for How do you share data between a parent and forked child process in Python? Dan 2008-10-20T15:59:25Z 2008-10-20T16:48:20Z <p>This is pretty much Python-independent! It's a classic example of Unix interprocess communication. One good option is to use <code>popen()</code> to open a pipe between the parent and child processes, and pass data/messages back and forth along the pipe.</p> <p>Take a look at the <a href="http://www.python.org/doc/2.5.2/lib/module-subprocess.html" rel="nofollow"><code>subprocess</code> module</a>, which can set up the necessary pipes automatically while spawning child processes.</p> http://stackoverflow.com/questions/216972/in-python-what-does-it-mean-if-an-object-is-subscriptable-or-not/217028#217028 0 Answer by Dan for In Python, what does it mean if an object is subscriptable or not? Dan 2008-10-19T21:43:07Z 2008-10-19T21:43:07Z <p>I think you mean "<strong>sub</strong>scriptable", in which case mipadi's definition is spot-on!</p> http://stackoverflow.com/questions/213628/how-to-convert-a-c-string-char-array-into-a-python-string/213639#213639 3 Answer by Dan for How to convert a C string (char array) into a Python string? Dan 2008-10-17T20:00:47Z 2008-10-17T20:00:47Z <p>You don't want to decode the string into a Unicode representation, you just want to treat it as an array of bytes, right?</p> <p>Just use <code>PyString_FromString</code>:</p> <pre><code>char *cstring; PyObject *pystring = PyString_FromString(cstring); </code></pre> <p>That's all. Now you have a Python <code>str()</code> object. See docs here: <a href="http://www.python.org/doc/2.5.2/api/stringObjects.html" rel="nofollow">http://www.python.org/doc/2.5.2/api/stringObjects.html</a></p> <p>I'm a little bit confused about how you say you want a "str or unicode." They're very different if you have non-ASCII characters. If you want to decode a C string <strong>and</strong> you know exactly what character set it's in then, yes, <code>PyString_DecodeString</code> is a good place to start.</p> http://stackoverflow.com/questions/213460/boost-like-libraries-in-c/213503#213503 1 Answer by Dan for Boost like libraries in C Dan 2008-10-17T19:19:07Z 2008-10-17T19:19:07Z <p>I'll jump on the GLib bandwagon too. Remember that C doesn't provide any syntactic sugar for complex data structures, so there are lots of casts and long function names in GLib, but it really does a great and efficient job with a little added verbosity!!</p> http://stackoverflow.com/questions/210943/c-non-standard-libraries/210953#210953 3 Answer by Dan for C non-standard libraries Dan 2008-10-17T02:45:51Z 2008-10-17T03:03:56Z <p>Hi Manuel, there is no "centralized" source for C libraries... at least nothing along the lines of CPAN for Perl or the Python Package Index for Python.</p> <p>Since C is sort of the "default" language for systems programming, it's often unstated that libraries are written for C. You may want to try Freshmeat.net's <a href="http://freshmeat.net/search/set-advanced/?q=%2Bgraph&amp;section=projects&amp;orderby=" rel="nofollow">Advanced Search</a>, since it's centered on Unix software, and there are a lot of C libraries posted there. For example, here's what I come up with searching for "graph library": <a href="http://freshmeat.net/search/?section=projects&amp;q=%2Bgraph+%2Blibrary" rel="nofollow">http://freshmeat.net/search/?section=projects&amp;q=%2Bgraph+%2Blibrary</a>, and you can filter those results by language, license, etc.</p> <p>(And your English is quite fine! Which I can't say about all the posters on here :-p)</p> http://stackoverflow.com/questions/210344/py3k-rc-1-lookuperror-unknown-encoding-uft-8/210395#210395 0 Answer by Dan for py3k RC-1: "LookupError: unknown encoding: uft-8" Dan 2008-10-16T21:34:16Z 2008-10-16T21:34:16Z <p>Looks like a typo in a config file somewhere, whether in the Py3k package or on your machine. You might try installing the stable final Python 2.6 (which supports 3.0 syntax changes with imports from <code>__future__</code>), and if that works you should probably file a bug report.</p> http://stackoverflow.com/questions/210122/is-there-a-tool-to-automatically-fetch-build-dependencies-under-debian-or-ubuntu 2 Is there a tool to automatically fetch build dependencies under Debian or Ubuntu? Dan 2008-10-16T20:19:28Z 2008-10-16T20:40:03Z <p>I recently downloaded the source tarball for a GTK application that I'd like to improve. It uses the standard <code>./configure</code> and <code>make</code> build sequence.</p> <p>The first time through, <code>configure</code> reported a bunch of unmet build dependencies, such as <code>libgnomeui-2.0</code>. As I usually do, I had to manually go through and find the Debian <code>*-dev</code> package names corresponding to these dependencies... of course the names never match up quite the same, so it gets to be a real hassle.</p> <p>So what occurred to me is... <strong>are there any helper tools to automatically install the build dependencies listed by the <code>automake</code>/<code>autoconf</code> configuration files???</strong></p> <p>(I already know about the <code>dpkg-buildpackage</code> tools, but in this case I am interested in building from a raw distribution-independent source tarball, <strong>not</strong> from the Debian package source.)</p> http://stackoverflow.com/questions/209888/tutorial-for-python-should-i-use-2-x-or-3-0/209911#209911 1 Answer by Dan for Tutorial for Python - Should I use 2.x or 3.0? Dan 2008-10-16T19:26:08Z 2008-10-16T19:26:08Z <p>Learn Python 3.0, as contagious suggests.</p> <p>Python 2.x is not very different, there seems to be a great deal of FUD about the rather minor differences between them. Sure, the differences are great enough that most programs will need to be modified, but almost <em>all</em> of the modifications are straightforward (like changing <code>print</code> statement to <code>print</code> function).</p> <p>In fact, Python 2.6 can optionally enable all the new syntactic features of Python 3.0. It's a very well-thought-out transition process.</p> http://stackoverflow.com/questions/209840/map-two-lists-into-a-dictionary-in-python/209854#209854 23 Answer by Dan for Map two lists into a dictionary in Python Dan 2008-10-16T19:09:05Z 2008-10-16T19:09:05Z <p>Like this:</p> <pre><code>&gt;&gt;&gt; keys = ['a', 'b', 'c'] &gt;&gt;&gt; values = [1, 2, 3] &gt;&gt;&gt; dictionary = dict(zip(keys, values)) &gt;&gt;&gt; print dictionary {'a': 1, 'b': 2, 'c': 3} </code></pre> <p>Voila :-) The pairwise dict constructor and zip function are awesomely useful: <a href="http://www.python.org/doc/2.5.2/lib/built-in-funcs.html#dict" rel="nofollow">http://www.python.org/doc/2.5.2/lib/built-in-funcs.html#dict</a></p> http://stackoverflow.com/questions/209603/steps-to-make-a-led-blink-from-a-c-c-program/209671#209671 2 Answer by Dan for Steps to make a LED blink from a C/C++ program? Dan 2008-10-16T18:16:59Z 2008-10-16T18:33:47Z <p><strong>Which port?</strong> Parallel port is my favorite choice since it outputs +5V (TTL logic level) and is very straightforward to program. Most parallel ports have enough power to drive an LED. It's important to remember that computer ports in general are designed to only output signaling voltages, and not to produce enough current to actually power most devices.</p> <p><strong>Which compiler?</strong> Doesn't matter. This kind of hardware hacking is more fun and easy under Linux, though, so GCC is a good choice.</p> <p><strong>How do I send data?</strong> Depends on the port and the operating system. USB is frightfully complicated for a simple project, so forget it. Serial and parallel ports can be controlled via a variety of different interfaces. My preference is to use the <code>ioctl()</code> system call under Linux to directly control the parallel-port pins. Here's info on how to do that: <a href="http://www.linuxfocus.org/common/src/article205/ppdev.html" rel="nofollow">http://www.linuxfocus.org/common/src/article205/ppdev.html</a></p> <p><strong>Do I need a microprocessor?</strong> No, you don't need a microprocessor in the external device (obviously your computer has a microprocessor :-P). If you use the parallel or serial ports, you can just use the LED and a resistor or two and the necessary parts to connect the LED directly.</p> <p>(Also: The <em>Linux Device Drivers book</em>, available for free online, has information on interfacing simple electronic devices to parallel ports and writing kernel drivers for them.)</p> <p><em>EDIT:</em> There seems to be massive confusion in this thread about what the OP means by, "Do I need a microprocessor?" Emphatically, the parallel port alone can drive an LED based on the software <em>in the computer</em>. No microprocessor is needed in the device. However, if you want the device to be able to control itself <strong>without being connected to the computer</strong>, a microprocessor or some other digital logic <strong>is</strong> required.</p> http://stackoverflow.com/questions/209470/can-i-use-python-as-a-bash-replacement/209557#209557 2 Answer by Dan for Can I use Python as a bash replacement? Dan 2008-10-16T17:40:43Z 2008-10-16T17:40:43Z <p>I suggest the awesome online book <em><a href="http://diveintopython.org" rel="nofollow">Dive Into Python</a></em>. It's how I learned the language originally.</p> <p>Beyone teaching you the basic structure of the language, and a whole lot of useful data structures, it has a good chapter on <a href="http://diveintopython.org/file_handling/index.html" rel="nofollow">file handling</a> and subsequent chapters on <a href="http://diveintopython.org/regular_expressions/index.html" rel="nofollow">regular expressions</a> and more.</p> http://stackoverflow.com/questions/209513/convert-hex-string-to-int-in-python/209550#209550 19 Answer by Dan for Convert hex string to int in Python Dan 2008-10-16T17:37:52Z 2008-10-16T17:37:52Z <p><strong>Without</strong> the 0x prefix, you need to specify the base explicitly, otherwise there's no way to tell:</p> <pre><code>x = int("deadbeef", 16) </code></pre> <p><strong>With</strong> the 0x prefix, Python can distinguish hex and decimal automatically:</p> <pre><code>&gt;&gt;&gt; print int("0xdeadbeef", 0) 3735928559 &gt;&gt;&gt; print int("10", 0) 10 </code></pre> http://stackoverflow.com/questions/209334/how-to-start-linux-programming/209349#209349 12 Answer by Dan for How to start Linux Programming Dan 2008-10-16T16:36:05Z 2008-10-16T16:36:05Z <p>Depends what you're trying to do...</p> <p>Are you going to be doing GUI apps? Learn Qt or GTK or wxWidgets. Are you going to be doing device driver development? Learn straight C, not just C++. A lot of the exciting software development under Linux happens in Python and Perl (and other dynamic languages to a lesser extent), so you should almost certainly learn one of those.</p> http://stackoverflow.com/questions/207763/are-there-any-ides-that-support-python-3-syntax/209303#209303 6 Answer by Dan for Are there any IDE's that support Python 3 syntax? Dan 2008-10-16T16:23:17Z 2008-10-16T16:23:17Z <p>Python 3 is just <strong>not that different</strong> from Python 2.x. In terms of syntax <em>per se</em>, things that will actually need to be handled differently by the parser, the only major change is in the replacement of the <code>print</code> statement with the <code>print</code> function.</p> <p>Most of the features of Python can be easily probed via introspection (online help, method completion, function signatures, etc.), so there's no reason why any Python IDE will require major changes to work with Python 3.0. I expect IDLE and SPE and the other open-source IDEs will be support it before the final release.</p> http://stackoverflow.com/questions/193503/what-programming-languages-do-you-consider-indispensable-in-your-experience/207357#207357 1 Answer by Dan for What programming languages do you consider indispensable in your experience? Dan 2008-10-16T03:35:11Z 2008-10-16T03:35:11Z <p>I would say you're not missing much, except maybe assembly language. I would learn <strong>both</strong> MIPS (so you see how machine architecture is done <em>right</em>) <strong>and</strong> x86 (so you see how it's "actually" done, and the kind of mess your compiler has to deal with when generating code).</p> <p>There's an interesting meme on Planet.python.org making the rounds where people talk about what programming languages they learned and in what order: <a href="http://feeds.feedburner.com/~r/glyph/~3/421073961/programming-and-markup-languages-i.html" rel="nofollow">http://feeds.feedburner.com/~r/glyph/~3/421073961/programming-and-markup-languages-i.html</a></p> <p>My personal list is <a href="http://remanentdomain.blogspot.com/2008/10/programming-languages-i-know.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/207286/does-c-still-matter/207332#207332 17 Answer by Dan for Does C++ still matter? Dan 2008-10-16T03:21:54Z 2008-10-16T03:21:54Z <p>Yeah, I would say that C++ still matters, but its position today is rather tenuous.</p> <p>C is used for the exciting work in low-level operating system stuff (Linux, *BSD, most embedded work). For the high-level web and database and business application and quick-and-dirty work, we have Java (which is not a huge leap from C++) and all the dynamic languages (Perl, Python, PHP, Ruby, others). C++ tries to be as expressive as the dynamic languages and as efficient as C, and it has gotten very very complex and that's one reason think many are looking elsewhere.</p> <p>But as much as I find C++ frustrating (practically whenever I use it), I really have to admire it. It's an incredibly <em>ambitious</em> language, and there is a reason for every one of its complex features. Its great ambition is to map all of the very high-level abstractions ever invented onto a statically-typed, compiled language... so that programmers can use very expressive features without any run-time overhead.</p> <p>For example, dynamic language designers think "we want complex datatypes and don't want to worry about how their memory is managed too much, so allocate them all on the heap and we'll worry about the types at run-time." While C++ takes the approach, "we want complex datatypes without wasting bytes or clock cycles, so provide a whole lot of syntactic hints and memory management options to optimize these data structures at <em>compile</em> time."</p> <p>C++ <strong>really</strong> makes me appreciate the delicate balance between speed and flexibility inherent in computer programming.</p> http://stackoverflow.com/questions/206855/scrape-a-dynamic-website/206913#206913 3 Answer by Dan for Scrape a dynamic website Dan 2008-10-15T23:34:37Z 2008-10-15T23:34:37Z <p>Adam Davis's advice is solid.</p> <p>I would additionally suggest that you try to "reverse-engineer" what the JavaScript is doing, and instead of trying to scrape the page, you issue the HTTP requests that the JavaScript is issuing and interpret the results yourself (most likely in JSON format, nice and easy to parse). This strategy could be anything from trivial to a total nightmare, depending on the complexity of the JavaScript.</p> <p>The best possibility, of course, would be to convince the website's maintainers to implement a developer-friendly API. All the cool kids are doing it these days 8-) Of course, they might not want their data scraped in an automated fashion... in which case you can expect a cat-and-mouse game of making their page increasingly difficult to scrape :-(</p> http://stackoverflow.com/questions/160971/what-are-your-language-hangups Comment by Dan on What are your language "hangups"? Dan 2008-11-21T20:19:16Z 2008-11-21T20:19:16Z Harleqin, if you read what I wrote, it's not the parentheses themselves that bother me, it's the fact that they're <i>all the same</i>. I have trouble conceptually distinguishing different constructs without visual cues. http://stackoverflow.com/questions/231159/use-greater-than-or-equals-or-just-greater-than/231237#231237 Comment by Dan on Use "greater than or equals" or just "greater than" Dan 2008-10-23T20:03:09Z 2008-10-23T20:03:09Z Right on. &quot;Premature optimization is the root of all evil.&quot; (Donald Knuth) http://stackoverflow.com/questions/231159/use-greater-than-or-equals-or-just-greater-than/231232#231232 Comment by Dan on Use "greater than or equals" or just "greater than" Dan 2008-10-23T20:02:16Z 2008-10-23T20:02:16Z I agree, James. The one I can think of is MIPS, which only has less-than. So the compiler usually rearranges &quot;a &lt;= b&quot; to &quot;not (b &lt; a)&quot;. The only case where that doesn't work is when one is a NON-ZERO constant... http://stackoverflow.com/questions/231159/use-greater-than-or-equals-or-just-greater-than/231170#231170 Comment by Dan on Use "greater than or equals" or just "greater than" Dan 2008-10-23T19:46:43Z 2008-10-23T19:46:43Z I still can't believe that there ever was an environment where it <i>would</i> make a difference. Can anyone tell me of an extant architecture where one requires fewer cycles than the other??? http://stackoverflow.com/questions/230584/where-are-variables-in-c-stored/230613#230613 Comment by Dan on Where are variables in C++ stored? Dan 2008-10-23T19:12:57Z 2008-10-23T19:12:57Z Kristopher, a valid point. In the C++ definition, the variable is the pointer, not the pointed-to array, so you're right. http://stackoverflow.com/questions/230584/where-are-variables-in-c-stored/230596#230596 Comment by Dan on Where are variables in C++ stored? Dan 2008-10-23T17:23:40Z 2008-10-23T17:23:40Z Compilers for normal, non-embedded architectures do not place variables in &quot;ROM.&quot; http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform Comment by Dan on What's the best way to check if a file exists in C? (cross platform) Dan 2008-10-23T17:14:55Z 2008-10-23T17:14:55Z Do you <i>really</i> just want to check for existence? Or do you want to check, and write to the file if it doesn't already exist. If so, see my answer below, for a version that doesn't suffer from race conditions. http://stackoverflow.com/questions/222877/how-to-use-super/224020#224020 Comment by Dan on how to use 'super' ? Dan 2008-10-22T01:18:54Z 2008-10-22T01:18:54Z Yes, it's true... <code>super()</code> only works on &quot;new-style&quot; classes descended from <code>object</code>, since their method-resolution order is more complex than old-style classes. http://stackoverflow.com/questions/220884/should-my-c-program-support-ia64-or-only-x64/221485#221485 Comment by Dan on Should my C++ program support IA64 or only x64? Dan 2008-10-21T18:44:48Z 2008-10-21T18:44:48Z Yes, the IA64 platform is still alive. I would call it a bold but failed design. It has been very hard to write effective compilers for it, since it exploits instruction-level parallelism at compile-time rather than run-time. And the processors are WAAY more expensive than Opteron for no clear gain. http://stackoverflow.com/questions/209840/map-two-lists-into-a-dictionary-in-python/209854#209854 Comment by Dan on Map two lists into a dictionary in Python Dan 2008-10-16T21:15:49Z 2008-10-16T21:15:49Z David, it's a good point. zip() is a bad idea with very long lists. Mike Davis's solution below uses izip() to avoid excessive copying and memory usage. For short lists, I don't worry. http://stackoverflow.com/questions/210122/is-there-a-tool-to-automatically-fetch-build-dependencies-under-debian-or-ubuntu/210192#210192 Comment by Dan on Is there a tool to automatically fetch build dependencies under Debian or Ubuntu? Dan 2008-10-16T20:42:01Z 2008-10-16T20:42:01Z Now that's what I'm lookin' for! Thanks, ephemient! http://stackoverflow.com/questions/209888/tutorial-for-python-should-i-use-2-x-or-3-0/209910#209910 Comment by Dan on Tutorial for Python - Should I use 2.x or 3.0? Dan 2008-10-16T20:33:43Z 2008-10-16T20:33:43Z Alex, I agree with you. The differences may be significant (if straightforward) for backporting established projects, but they're small enough that if you know one version well, you can get the hang of the other in a few minutes. So it doesn't much matter, but 3.0 is the future, so I say learn it. http://stackoverflow.com/questions/210122/is-there-a-tool-to-automatically-fetch-build-dependencies-under-debian-or-ubuntu/210126#210126 Comment by Dan on Is there a tool to automatically fetch build dependencies under Debian or Ubuntu? Dan 2008-10-16T20:27:03Z 2008-10-16T20:27:03Z Thanks, John, I am aware of this tool but it only works for packages that have already been &quot;Debianized&quot;. I'm wondering if there is something similar that will do the trick for distro-agnostic tarballs using the standard automake/autoconf system. http://stackoverflow.com/questions/209840/map-two-lists-into-a-dictionary-in-python/209854#209854 Comment by Dan on Map two lists into a dictionary in Python Dan 2008-10-16T20:25:13Z 2008-10-16T20:25:13Z And thus begins the process of reshaping your brain to think &quot;Pythonically&quot;, my young Padawan :-p http://stackoverflow.com/questions/209840/map-two-lists-into-a-dictionary-in-python Comment by Dan on Map two lists into a dictionary in Python Dan 2008-10-16T19:38:52Z 2008-10-16T19:38:52Z A more &quot;Pythonic&quot; way to do map() is with list or generator comprehensions. Not necessary in this case, but keep it in mind.