User Chris Upchurch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T00:35:11Zhttp://stackoverflow.com/feeds/user/2600http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/805429/learning-scala-or-haskell11Learning Scala or HaskellChris Upchurch2009-04-30T05:20:02Z2009-12-10T13:37:33Z
<p>I'm considering dipping my toe in the functional programming world, and wondering if it would be better to start with Scala or Haskell. I'm coming at this primarily as a Python programmer. My only real functional programming experience with functional programming is using Scheme in an intro comp-sci class over a decade ago.</p>
<p>Some of the comments in <a href="http://blog.stackoverflow.com/2009/04/podcast-50/" rel="nofollow">Podcast #50</a> about Scala being more pragmatic than Haskell tend to push me towards Scala. While this is primarily a learning exercise, I'd still like to be able to put it to some practical use. However, I'm interested in hearing other people's opinions.</p>
<p><em>Edited to add:</em>
Including suggestions for other languages beyond Scala and Haskell.</p>
http://stackoverflow.com/questions/815313/detecting-retweets-using-computationally-inexpensive-python-hashing-algorithms/815317#8153176Answer by Chris Upchurch for Detecting Retweets using computationally inexpensive Python hashing algorithmsChris Upchurch2009-05-02T18:21:12Z2009-05-02T18:21:12Z<p>Do you really need to hash at all? Twitter messages are short enough (and disk space cheap enough) that it may be better to just store the whole message, rather than eating up clock cycles to hash it.</p>
http://stackoverflow.com/questions/38388/organization-wide-backup-strategy5Organization-wide backup strategy?Chris Upchurch2008-09-01T20:33:17Z2009-05-01T20:09:46Z
<p>I'm a big fan of regular, automatic backups. However, most of my experience is at a personal level. I've recently joined an organization (a university department) where almost nobody seems to have a backup strategy in place. I'd like to promote good backup practices, but aside from telling them what I do at a personal level, I don't quite know what to do. </p>
<p>Does anyone have any experience designing an organization-wide backup strategy? Particularly for an organization where some individuals are not that interested in doing backups?</p>
http://stackoverflow.com/questions/808546/grad-school-for-compsci-and-or-software-engineering/808578#8085781Answer by Chris Upchurch for Grad School for CompSci and/or Software EngineeringChris Upchurch2009-04-30T19:13:09Z2009-04-30T19:13:09Z<p>The standard place to start for graduate programs is the <a href="http://www.cra.org/statistics/nrcstudy2/home.html" rel="nofollow">National Research Council rankings</a>. Unfortunately, the existing rankings are somewhat out of date at this point, and the new rankings are still in progress.</p>
http://stackoverflow.com/questions/766636/why-wont-you-switch-to-python-3-x/766648#7666482Answer by Chris Upchurch for Why won't you switch to Python 3.x?Chris Upchurch2009-04-20T02:27:07Z2009-04-20T02:38:59Z<blockquote>
<p>For many of the python-based questions here, people are giving solutions that simply do not work in python 3.x.</p>
</blockquote>
<p>I think you answered your own question here. The lack of backwards compatibility makes 3.0 a much harder sell than a seamless upgrade because you have to adjust your thinking and discard some programming techniques to use the new version. </p>
<p>Call me back when they have an upgrade script for my brain.</p>
http://stackoverflow.com/questions/757063/why-would-you-not-want-to-use-cloud-computing/757167#7571670Answer by Chris Upchurch for Why would you not want to use Cloud ComputingChris Upchurch2009-04-16T17:20:37Z2009-04-16T17:20:37Z<p>Most cloud computing environment are at least partially vendor specific. There's no good way to move stuff from one cloud to another without having to do a lot of rewriting. That sort of lock-in puts you at the mercy of one vendor when it comes to downtime, price increases, etc. If you rent or own your own servers, hosting providers and colos are pretty much interchangeable. You always have the option of moving somewhere else.</p>
<p>This may change in the future, as these things become standardized, but for now tying yourself to the cloud means tying yourself to a specific vendor.</p>
http://stackoverflow.com/questions/754539/code-quality/754548#75454816Answer by Chris Upchurch for Code QualityChris Upchurch2009-04-16T02:42:28Z2009-04-16T02:58:18Z<p>Trying to measure programmers performance with bug reports is a bad idea. However, so is trying to measure performance with virtually <a href="http://www.joelonsoftware.com/news/20020715.html" rel="nofollow">any other metric</a>. No matter what you do, people will figure out how to game it and give you what you're measuring without giving you what you really want.</p>
<p>From one of Joel's <a href="http://joelonsoftware.com/items/2006/08/09.html" rel="nofollow">other articles</a>:</p>
<blockquote>
<p>Robert Austin, in his book Measuring and Managing Performance in Organizations, says there are two phases when you introduce new performance metrics. At first, you actually get what you wanted, because nobody has figured out how to cheat. In the second phase, you actually get something worse, as everyone figures out the trick to maximizing the thing that you’re measuring, even at the cost of ruining the company.</p>
</blockquote>
http://stackoverflow.com/questions/753801/how-can-sha-encryption-be-possible/753810#7538105Answer by Chris Upchurch for How can SHA encryption be possible?Chris Upchurch2009-04-15T21:28:44Z2009-04-15T21:28:44Z<p>SHA doesn't create a unique 40 character hash for any string. If you create enough hashes, you'll get a collision (two inputs that hash to the same output) eventually. What makes SHA and other hash functions cryptographically useful is that there's no easy way to find two files that will have the same hash. </p>
http://stackoverflow.com/questions/749070/partial-list-unpack-in-python/749101#74910113Answer by Chris Upchurch for partial list unpack in pythonChris Upchurch2009-04-14T19:51:25Z2009-04-14T22:48:58Z<pre><code># this will result in a="length" and b="25"
a, b = "length=25".partition("=")[::2]
# this will result in a="DEFAULT_LENGTH" and b=""
a, b = "DEFAULT_LENGTH".partition("=")[::2]
</code></pre>
http://stackoverflow.com/questions/744626/calling-unknown-python-functions/744632#7446321Answer by Chris Upchurch for Calling unknown Python functionsChris Upchurch2009-04-13T17:14:58Z2009-04-13T18:28:34Z<pre><code>functions_to_call = ["func_1", "func_2", "func_3"]
for f in functions_to_call:
eval(f+'()')
</code></pre>
<p><em>Edited to add:</em></p>
<p>Yes, eval() generally is a bad idea, but this is what the OP was looking for.</p>
http://stackoverflow.com/questions/744256/reading-huge-file-in-python/744309#7443096Answer by Chris Upchurch for Reading Huge File in PythonChris Upchurch2009-04-13T15:46:13Z2009-04-13T15:46:13Z<p>Slight optimization of S.Lotts answer:</p>
<pre><code>from collections import defaultdict
keyValues= defaultdict(list)
targetKeys= # some list of keys as strings
for line in fin:
key, value = line.split()
if key in targetKeys:
keyValues[key].append( value )
</code></pre>
<p>Since we're using a dictionary rather than a list, the keys don't have to be numbers. This saves the map() operation and a string to integer conversion for each line. If you want the keys to be numbers, do the conversion a the end, when you only have to do it once for each key, rather than for each of 50 million lines.</p>
http://stackoverflow.com/questions/741857/representing-a-2d-map-of-doubles-in-as-few-parameters-as-possible/741907#7419071Answer by Chris Upchurch for Representing a 2D map of doubles in as few "parameters" as possible.Chris Upchurch2009-04-12T14:59:57Z2009-04-12T15:45:50Z<p>Basically, any graphics compression algorithm is going to do what you want. They're heavily optimized for compressing 2D arrays of numbers into the smallest possible footprint.</p>
<p><em>Edited to add:</em></p>
<p>The other thing to consider, since you're looking to use compression to reduce processing time, is that getting really high compression ratios generally involves more calculation to compress and decompress the array. You may reach a point where you're spending more time compressing and decompressing the array than running the neural network.</p>
<p><em>Edited again to add:</em></p>
<p>Based on your comments, it sounds like what you may want is a <a href="http://en.wikipedia.org/wiki/Space%5Ffilling%5Fcurves" rel="nofollow">space-filling curve</a>. Use the curve to turn your 50x50* array into a 1x2500 line and then come up with a formula that approximates the values you want for each cell of the array.</p>
<p>*Does the array have to be 50x50? It may be much easier to fill with a space filling curve if it's a square of slightly different dimensions. The Hilbert curve works nicely for dimensions that are powers of two, for instance.</p>
http://stackoverflow.com/questions/741070/assigning-random-colors-per-session-for-chat/741074#7410745Answer by Chris Upchurch for Assigning random colors per session, for chatChris Upchurch2009-04-12T00:48:36Z2009-04-12T01:26:46Z<p>I think you're going to be better off randomly picking from a list of pregenerated colors that meet your requirements (dark enough, different enough from each other) than trying to generate colors on the fly.</p>
<p><em>Edited to add:</em></p>
<p>As far as keeping more than one user from having the same color, one thing I've seen systems do is to just assign colors locally on the users machine using Javascript. Usually it's not that important that different users see the same colors for other people. I don't care if the colors on my screen are the same as they are on some other user's screen, as long as all the colors on my screen are unique. In fact it may be desirable for each user's own text to be distinct (their's is black, everyone else's is colored, for instance).</p>
http://stackoverflow.com/questions/740287/python-check-if-one-of-the-following-items-is-in-a-list/740300#7403002Answer by Chris Upchurch for Python Check if one of the following items is in a listChris Upchurch2009-04-11T15:26:36Z2009-04-11T16:31:16Z<p>This will do it in one line.</p>
<pre><code>>>> a=[2,3,4]
>>> b=[1,2]
>>> bool(sum(map(lambda x: x in b, a)))
True
</code></pre>
http://stackoverflow.com/questions/739561/what-programming-languages-were-used-to-go-to-the-moon/739567#7395673Answer by Chris Upchurch for What programming languages were used to go to the moon?Chris Upchurch2009-04-11T05:32:02Z2009-04-11T05:32:02Z<p>The <a href="http://en.wikipedia.org/wiki/Apollo%5FGuidance%5FComputer" rel="nofollow">Apollo Guidance Computer</a> was programmed in assembly language.</p>
http://stackoverflow.com/questions/739439/is-the-ps3s-cell-architecure-the-wrong-platform-to-be-learning-game-programming/739447#7394478Answer by Chris Upchurch for Is the PS3's Cell architecure the wrong platform to be learning game programming?Chris Upchurch2009-04-11T03:15:35Z2009-04-11T03:15:35Z<p>The problem isn't so much that a PS3 is overkill, it's that the Cell processor is notoriously difficult to program to it's potential. The highly parallelized architecture is potentially quite powerful, but it's not easy to actually get that performance.</p>
http://stackoverflow.com/questions/736043/checking-if-a-string-can-be-converted-to-float-in-python3Checking if a string can be converted to float in PythonChris Upchurch2009-04-09T21:52:33Z2009-04-10T21:34:47Z
<p>I've got some Python code that runs through a list of strings and converts them to integers or floating point numbers if possible. Doing this for integers is pretty easy</p>
<pre><code>if element.isdigit():
newelement=int(element)
</code></pre>
<p>Floating point numbers are more difficult. Right now I'm using partition('.') to split the string and checking to make sure that one or both sides are digits.</p>
<pre><code>partition=element.partition('.')
if (partition[0].isdigit() and partition[1]=='.' and partition[2].isdigit()) or (partition[0]=='' and partition[1]=='.' and partition[2].isdigit()) or (partition[0].isdigit() and partition[1]=='.' and partition[2]==''):
newelement=float(element)
</code></pre>
<p>This works, but obviously the if statement for that is a bit of a bear. The other solution I considered is to just wrap the conversion in a try/catch block and see if it succeeds, as described in <a href="http://stackoverflow.com/questions/354038/checking-if-string-is-a-number-python">this question</a>.</p>
<p>Anyone have any other ideas? Opinions on the relative merits of the partition and try/catch approaches?</p>
http://stackoverflow.com/questions/730645/python-wxpython-doing-work-continuously-in-the-background/730663#7306633Answer by Chris Upchurch for Python/wxPython: Doing work continuously in the backgroundChris Upchurch2009-04-08T15:58:29Z2009-04-08T16:12:37Z<p>Launch a new process to render in background and periodically check to see if it has returned.</p>
<p>You can find the documentation for the subprocess module <a href="http://docs.python.org/library/subprocess.html#module-subprocess" rel="nofollow">here</a> and the multiprocess module <a href="http://docs.python.org/library/multiprocessing.html?highlight=multiprocess#module-multiprocessing" rel="nofollow">here</a>. As Jay said, multiprocess is probably better if you're using Python 2.6. That said, I don't think there would be any performance difference between the two. Multiprocess just seems to be a wrapper around subprocess making certain things easier to do.</p>
<p>While subprocess/multiprocess is the standard way to do this, you may also want to take a look at <a href="http://www.parallelpython.com/content/view/15/30/#API" rel="nofollow">Parallel Python</a>.</p>
http://stackoverflow.com/questions/727433/what-would-happen-with-my-data-on-my-backup-usb-harddrive-when-i-connect-it-with/727454#7274541Answer by Chris Upchurch for What would happen with my data on my backup-USB-Harddrive, when I connect it with TimeMachine?Chris Upchurch2009-04-07T20:26:53Z2009-04-07T20:42:14Z<p>If it isn't already formatted with HFS+, Time Machine will reformat the drive.</p>
<p>HFS+ is the standard OSX filesystem. This means that if your usb drive wasn't initially formatted on a Mac, using it as a Time Machine drive will delete all your data when the drive is reformatted.</p>
http://stackoverflow.com/questions/726565/tracking-and-prediciting-quality-level/726597#7265970Answer by Chris Upchurch for Tracking and prediciting quality levelChris Upchurch2009-04-07T16:42:25Z2009-04-07T16:42:25Z<p>This depends a lot on what kind of comparisons you're trying to make. If you're looking at a single project over time and the team doesn't change, then bug rates might be meaningful. However, if you're comparing different projects, with different teams, there's really no way to compare things like bug rates, because you are really comparing the rate of <em>known</em> bugs. One team may be much better at identifying bugs than the other, making their bug rate look higher, but they're really the ones with better software quality.</p>
http://stackoverflow.com/questions/725782/python-list-concatenation-what-is-difference-in-append-and/726321#7263210Answer by Chris Upchurch for Python: List concatenation. What is difference in "append" and "+= []"? Chris Upchurch2009-04-07T15:24:17Z2009-04-07T15:24:17Z<p>In addition to the aspects described in the other answers, append and +[] have very different behaviors when you're trying to build a list of lists.</p>
<pre><code>>>> list1=[[1,2],[3,4]]
>>> list2=[5,6]
>>> list3=list1+list2
>>> list3
[[1, 2], [3, 4], 5, 6]
>>> list1.append(list2)
>>> list1
[[1, 2], [3, 4], [5, 6]]
</code></pre>
<p>list1+['5','6'] adds '5' and '6' to the list1 as individual elements. list1.append(['5','6']) adds the list ['5','6'] to the list1 as a single element.</p>
http://stackoverflow.com/questions/725364/string-manipulation-in-python/726197#7261971Answer by Chris Upchurch for String manipulation in PythonChris Upchurch2009-04-07T14:57:50Z2009-04-07T14:57:50Z<p>Others have answered the string manipulation part of your question, but I think you ought to think about whether it would be better to parse the file and modify the data structure the text represents rather than manipulating the text directly.</p>
http://stackoverflow.com/questions/719043/call-member-function-on-each-element-in-a-container/719090#7190900Answer by Chris Upchurch for Call member function on each element in a container.Chris Upchurch2009-04-05T15:12:42Z2009-04-05T15:12:42Z<p>If you actually want to improve performance rather than just pretty up your code, what you really need is a map function. Eric Sink wrote a <a href="http://www.ericsink.com/entries/multicore%5Fmap.html" rel="nofollow">.net implementation</a> </p>
http://stackoverflow.com/questions/717994/how-to-handle-multiplication-of-numbers-close-to-1/717998#7179983Answer by Chris Upchurch for How to handle multiplication of numbers close to 1Chris Upchurch2009-04-04T23:04:17Z2009-04-04T23:25:50Z<p>Isn't this sort of situation exactly what BigDecimal is for?</p>
<p><em>Edited to add:</em></p>
<p>"Per the second-last paragraph, I would prefer to avoid BigDecimals if possible for performance reasons." – sanity</p>
<p>"Premature optimization is the root of all evil" - Knuth</p>
<p>There is a simple solution practically made to order for your problem. You are concerned it might not be fast enough, so you want to do something complicated that you <em>think</em> will be faster. The Knuth quote gets overused sometimes, but this is exactly the situation he was warning against. Write it the simple way. Test it. Profile it. See if it's too slow. If it is <em>then</em> start thinking about ways to make it faster. Don't add all this additional complex, bug-prone code until you know it's necessary.</p>
http://stackoverflow.com/questions/717861/project-euler-problem-28-algorithm/717909#717909-2Answer by Chris Upchurch for Project Euler problem 28 AlgorithmChris Upchurch2009-04-04T22:06:11Z2009-04-04T22:56:38Z<p>You could generate the entire spiral and brute force it like S.Lott proposes. However, the values of the numbers in the diagonals are quite regular, and it's pretty easy to figure out how to generate them without generating the entire spiral. </p>
<p><em>Edited to add:</em></p>
<p>Well, since John posted actual code, rather than a hint, here it is in Python:</p>
<pre><code>diagonalSum=1+sum([4*d**2-6*d+6 for d in range(3,1001+1,2)])
</code></pre>
<p>Basically, this solves the problem more like a mathematician than a programmer. The diagonal going up and to the right is the diameter of the spiral squared (9, 25, 49 . . .). So the value for that corner of the spiral is:</p>
<pre><code>diameter**2
</code></pre>
<p>The upper left corner of the spiral is the upper right corner, minus the diameter, plus one, or:</p>
<pre><code>diameter**2-diameter+1
</code></pre>
<p>The lower right and lower left are:</p>
<pre><code>diameter**2-2*diameter+2
diameter**2-3*diameter+3
</code></pre>
<p>Use a bit of algebra to add the equations for the four corners together and you get:</p>
<pre><code>4*diameter**2-6*diameter+6
</code></pre>
<p>That gets you the four corners at a given diameter. To find the entire spiral, just sum this for every diameter between 3 and 1001, stepping the diameter up by 2 each time. I used a Python list comprehension to do this. A list comprehension takes a list and does the same thing to each element in the list. I started with a list of diameters generated using range()</p>
<pre><code>range(3,1001+1,2)
</code></pre>
<p>It starts at three because the equation doesn't work for the diameter 1 case. It runs to 1001+1 because Python ranges stop before the second argument, not after. And it steps by 2 each time.</p>
<p>The list comprehension just runs the formula on each element in the list of ranges.</p>
<pre><code>[4*d**2-6*d+6 for d in range(3,1001+1,2)]
</code></pre>
<p>The summation statement totals up the list, and it adds one to account for the center of the spiral.</p>
<pre><code>diagonalSum=1+sum([4*d**2-6*d+6 for d in range(3,1001+1,2)])
</code></pre>
http://stackoverflow.com/questions/717725/understanding-recursion/717790#7177905Answer by Chris Upchurch for Understanding recursionChris Upchurch2009-04-04T20:45:23Z2009-04-04T20:45:23Z<p>If you want a book that does a good job of explaining recursion in simple terms, take a look at <em>Gödel, Escher, Bach: An Eternal Golden Braid</em> by Douglas Hofstadter, specifically Chapter 5. In addition to recursion it does a nice job of explaining a number of complex concepts in computer science and math in an understandable way, with one explanation building on another. If you haven't had much exposure to these sorts of concepts before, it can be a pretty mindblowing book.</p>
http://stackoverflow.com/questions/712402/where-does-the-bazaar-os-x-installer-put-the-executable0Where does the Bazaar OS X installer put the executable?Chris Upchurch2009-04-03T02:54:56Z2009-04-03T02:59:06Z
<p>I recently installed Bazaar on my Mac laptop and I'm trying to get bzreclipse working. In order to do that, I need to tell it where the bzr executable is. I can't figure out where the installer put it. Anyone know what the default location is for this?</p>
http://stackoverflow.com/questions/27099/what-to-do-with-extra-screen-real-estate5What to do with extra screen real estate?Chris Upchurch2008-08-25T23:14:53Z2009-03-12T19:49:03Z
<p>I'm a big fan of screen real estate. I love <a href="http://beta.stackoverflow.com/questions/26625/one-large-monitor-or-dual-monitor-setup#27050" rel="nofollow">big monitors and multiple monitors</a>. I ran dual 19" CRTs for years, and switched to dual 19" LCDs a few years ago. That's still what I run at home, but I recently started a new job where I wrangled a big hardware budget and promptly blew a bunch of it on twin 24" monitors. I really love these screens, but I feel like I'm not getting the most out of them. </p>
<p>Two big, widescreen monitors like these really feels like four regular monitors to me, since I can keep four web browsers or word documents open at the same time. I'll occasionally fill a whole screen with a single program (usually an IDE or Excel) but that's the exception. Problem is I'm having trouble using more than three windows at a time (yeah, I know, poor me right?). Either the extreme right or the extreme left of my screen just ends up getting neglected, either remaining empty or holding some Firefox instance that was related to whatever I was doing an hour ago. So I'm asking those with experience with enormous amounts of screen real estate (triple monitors or dual widescreens), what's the best way to put all that area to good use?</p>
<p>Edited to add:
Lots of good answers, but I just had to accept mauriciopastrana's because Earthdesk is simply awesome. Thank you all.</p>
http://stackoverflow.com/questions/35669/windows-home-server-versus-vista-backup-and-restore-center1Windows Home Server versus Vista Backup and Restore CenterChris Upchurch2008-08-30T04:01:53Z2009-03-01T06:50:39Z
<p>I've been using Window Home Server for my backups here at home for most of a year now, and I'm really pleased with it. It's far better than the software I was using previously (Acronis). I'm thinking about a backup strategy for my work machine and I'd like to know how WHS compares with Vista's built-in backup and restore features. The plan is to do a full backup to a local external hard drive and backup the documents folder to a network drive on the server. Anyone have experience using the Vista backup feature like this?</p>
http://stackoverflow.com/questions/562904/clustering-algorithm-for-paper-boys/563013#5630132Answer by Chris Upchurch for Clustering Algorithm for Paper BoysChris Upchurch2009-02-18T21:56:55Z2009-02-18T21:56:55Z<p>Rather than a clustering model, I think you really want some variant of the Set Covering location model, with an additional constraint to cover the number of addresses covered by each facility. I can't really find a good explanation of it online. You can take a look at <a href="http://mat.gsia.cmu.edu/orclass/integer/node8.html" rel="nofollow">this page</a>, but they're solving it using areal units and you probably want to solve it in either euclidean or network space. If you're willing to dig up something in dead tree format, check out chapter 4 of Network and Discrete Location by Daskin. </p>
http://stackoverflow.com/questions/107165/big-o-for-eight-year-olds/107189#107189Comment by Chris Upchurch on Big-O for Eight Year Olds?Chris Upchurch2009-10-22T19:53:58Z2009-10-22T19:53:58ZExcellent answer! I plan on using this next time I have to explain Big-O notation in one of my classes.http://stackoverflow.com/questions/1285078/dvd-rw-drive-not-recognizing-a-dvdr-discComment by Chris Upchurch on DVD-RW Drive not recognizing a DVD+R discChris Upchurch2009-08-16T19:06:49Z2009-08-16T19:06:49ZThis is a job for superuser.comhttp://stackoverflow.com/questions/1150642/develop-an-osComment by Chris Upchurch on Develop An OSChris Upchurch2009-07-19T19:44:32Z2009-07-19T19:44:32ZYou should really take a look at the answers to the question devio linked to. I think you are likely to find them very helpful.http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logoComment by Chris Upchurch on How do I move the turtle in LOGO?Chris Upchurch2009-06-19T04:24:00Z2009-06-19T04:24:00ZWe have a "Turtle" tag! SO also has a "Ninja" tag. Now I just need to find some questions to tag "Teenage" and "Mutant".http://stackoverflow.com/questions/357219/whats-your-favourite-character/905481#905481Comment by Chris Upchurch on What's your favourite character?Chris Upchurch2009-05-25T16:38:17Z2009-05-25T16:38:17ZHeavy metal ümlat!http://stackoverflow.com/questions/825807/what-to-look-at-after-a-dos-attackComment by Chris Upchurch on what to look at after a DoS attack?Chris Upchurch2009-05-05T16:54:36Z2009-05-05T16:54:36ZServerfault is in beta right now. See the link that Alex B posted.http://stackoverflow.com/questions/815310/how-to-designate-unreachable-python-codeComment by Chris Upchurch on How to designate unreachable python codeChris Upchurch2009-05-02T18:22:38Z2009-05-02T18:22:38ZPerhaps it should say "Pat"?http://stackoverflow.com/questions/805429/learning-scala-or-haskellComment by Chris Upchurch on Learning Scala or HaskellChris Upchurch2009-04-30T16:29:33Z2009-04-30T16:29:33ZNothing specific in mind.http://stackoverflow.com/questions/776867/is-any-new-microsoft-developer-technology-safe-for-useComment by Chris Upchurch on Is any new Microsoft developer technology safe for use?Chris Upchurch2009-04-22T12:36:41Z2009-04-22T12:36:41ZThe list seems to be missing MVChttp://stackoverflow.com/questions/758670/how-can-we-encourage-people-to-ask-better-questionsComment by Chris Upchurch on How can we encourage people to ask better questionsChris Upchurch2009-04-17T01:28:28Z2009-04-17T01:28:28ZAre the people asking bad questions really going to read a "how to ask good questions" guide even if it's prominent?http://stackoverflow.com/questions/758165/coordinate-transformation-ll-elevation-to-wgs84Comment by Chris Upchurch on Coordinate Transformation (LL + Elevation to WGS84)Chris Upchurch2009-04-16T21:46:51Z2009-04-16T21:46:51ZI'm not quite sure I understand what you're trying to do here. Are you saying that you're trying to convert LatLong to WGS 84 at elevations that are substantially different from the Earth's surface?http://stackoverflow.com/questions/756650/why-do-people-close-questions-on-stackoverflowComment by Chris Upchurch on Why do people close questions on Stackoverflow?Chris Upchurch2009-04-16T18:10:20Z2009-04-16T18:10:20ZJoel owns 50% of the site. That seems like plenty of justification to give him mod powers.http://stackoverflow.com/questions/756650/why-do-people-close-questions-on-stackoverflowComment by Chris Upchurch on Why do people close questions on Stackoverflow?Chris Upchurch2009-04-16T17:32:42Z2009-04-16T17:32:42Z@Shog9: Michael Pryor has been on the site since it's inception, so clearly there is some doubt out there, even among longtime users.http://stackoverflow.com/questions/756650/why-do-people-close-questions-on-stackoverflow/756865#756865Comment by Chris Upchurch on Why do people close questions on Stackoverflow?Chris Upchurch2009-04-16T16:42:07Z2009-04-16T16:42:07ZThe cake is a lie.http://stackoverflow.com/questions/756895/configuring-subdomains-on-an-apache-serverComment by Chris Upchurch on Configuring subdomains on an Apache ServerChris Upchurch2009-04-16T16:37:53Z2009-04-16T16:37:53ZFrom what Jeff said on the last podcast, I'm guessing that questions that get tagged as 'belongs on serverfault' will be used to seed the new site at the start of the beta.