User Demur Rumed - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T17:55:24Z http://stackoverflow.com/feeds/user/40172 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/313395#313395 1 Answer by Demur Rumed for What are five things you hate about your favorite language? Demur Rumed 2008-11-24T04:12:33Z 2009-09-10T08:45:42Z <p>I feel that a favorite language is impossible to choose. Dynamic typing and static typing can't quite be compared, so I'll just list which of which I use</p> <p>C++:</p> <ul> <li>Template metaprogramming syntax is ugly. An implicit <code>::value</code> would make it much more concise</li> <li><code>-&gt;.</code> Why can't the compiler figure out that I'm doing a <code>ptr.thing</code> and just do <code>-&gt;</code> for me?</li> <li>I hate whitespace. So the whole <code>vector&lt;vector&lt;int&gt;&gt;</code> has to be <code>vector&lt;vector&lt;int&gt; &gt;</code> makes me get the jitters and then I can't focus whenever I see that line of code and I end up trying to figure out a way to use <code>int[][]</code> or something</li> <li>Macros. I personally love the concept of macros. But with C++, I that the system is a hack</li> <li>I'm a hater of <code>;</code></li> </ul> <p>Python:</p> <ul> <li>Strings being immutable. Makes it so I can't just do string[4]="b"</li> <li>Lists being implicitly copied by reference. Which leaks into [[0]<em>width]</em>height issues</li> <li>Lack of tail recursion (I had to rig IDLE to not spit out 1000s of error messages whenever I mistyped a recursive function)</li> <li>Dictionaries keys not accepting lists/dicts</li> <li>Lack of deep scopes. When I do a list comprehension, I don't want the variable in it to affect the outer scope</li> </ul> http://stackoverflow.com/questions/248161/palindrome-detection-efficiency/486278#486278 0 Answer by Demur Rumed for Palindrome detection efficiency Demur Rumed 2009-01-28T02:33:17Z 2009-01-28T02:33:17Z <p>With Python, short code can be faster since it puts the load into the faster internals of the VM (And there is the whole cache and other such things) def ispalin(x):return all(x[a]==x[-a-1] for a in xrange(len(x)>>1))</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/484014#484014 1 Answer by Demur Rumed for What's your most controversial programming opinion? Demur Rumed 2009-01-27T16:12:52Z 2009-01-27T16:12:52Z <p>I don't believe that any question related to optimization should be flooded with a chant of the misquoted "Premature optimization is the root of all evil"s because code that is optimized into obfuscation is what makes coding fun</p> http://stackoverflow.com/questions/449560/how-do-i-determine-the-size-of-an-object-in-python/449605#449605 -3 Answer by Demur Rumed for How do I determine the size of an object in Python? Demur Rumed 2009-01-16T05:39:28Z 2009-01-16T05:39:28Z <p>Besides int and float, nothing is really fixed in size (And int is now long in Python 3, so so much for that). So you'd have to make a function sizeof function that specially works on the object based on type() or something. Either way, sizeof messes seem unpythonic</p> http://stackoverflow.com/questions/419240/how-to-get-javascript-function-data-into-php-variable/419250#419250 0 Answer by Demur Rumed for How to get javascript function data into Php variable Demur Rumed 2009-01-07T05:06:09Z 2009-01-07T05:06:09Z <p>JS is executed clientside while PHP is executed serverside, so you'll have to send the JS values to the server. This could possibly be tucked in $_POST or through AJAX</p> http://stackoverflow.com/questions/397034/confusing-list-in-python-what-is-it 8 Confusing [...] List in Python: What is it? Demur Rumed 2008-12-29T02:46:31Z 2008-12-30T14:14:31Z <p>So I was writing up a simple binary tree in Python and came across [...]</p> <p>I don't believe this to be related to the Ellipsis object, more it seems to have something to do with an infinity loop (due to Python's shallow copy?). The source of this infinity loop and why it doesn't get expanded while expanding when accessed is something I'm completely lost to, however <code></p> <pre><code>&gt;&gt;&gt; a [[[[[], [], 8, 3], [[], [], 3, 2], 6, 3], [], 1, 4], [[], [], -4, 2], 0, 0] &gt;&gt;&gt; Keys(a)#With a+b [0, 1, 6, 8, 3, -4] &gt;&gt;&gt; Keys(a)#With [a,b] [8, [...], [...], 3, [...], [...], 6, [...], [...], 1, [...], [...], -4, [...], [...], 0, [...], [...]] &gt;&gt;&gt; Keys(a)[1]#?? [8, [...], [...], 3, [...], [...], 6, [...], [...], 1, [...], [...], -4, [...], [...], 0, [...], [...], 8, [...], [...], 3, [...], [...], 6, [...], [...], 1, [...], [...], -4, [...], [...], 0, [...], [...]] </code></pre> <p></code></p> <p>Version using a+b</p> <pre><code>def Keys(x,y=[]): if len(x):y+=[x[2]]+Keys(x[0],y)+Keys(x[1],y)#Though it seems I was using y=y[:]+, this actually outputs an ugly mess return y </code></pre> <p>version using [a,b]</p> <pre><code>def Keys(x,y=[]): if len(x):y+=[x[2],Keys(x[0],y),Keys(x[1],y)] return y </code></pre> <p>So what exactly is [...]?</p> http://stackoverflow.com/questions/111933/why-shouldnt-i-use-hungarian-notation/397087#397087 0 Answer by Demur Rumed for Why shouldn't I use "Hungarian Notation"? Demur Rumed 2008-12-29T03:32:53Z 2008-12-29T03:32:53Z <p>If you don't know the type of a variable without being told, you probably shouldn't be messing with it anyways</p> <p>The type might also not be that important. If you know what the methods do, you can figure out what is being done with the variable and then you'll what the program is doing</p> <p>There may be times you want it; when type is important and the declaration isn't near or the type can't be inferred with ease. But it should never be seen as absolute</p> http://stackoverflow.com/questions/397002/what-are-the-biggest-time-wasters-for-learning-programming/397053#397053 0 Answer by Demur Rumed for What are the biggest time wasters for learning programming? Demur Rumed 2008-12-29T03:01:18Z 2008-12-29T03:01:18Z <p>Work on projects/problems that you already know how to solve partially</p> http://stackoverflow.com/questions/392397/arrays-whats-the-point/397042#397042 2 Answer by Demur Rumed for Arrays, What's the point? Demur Rumed 2008-12-29T02:53:50Z 2008-12-29T02:53:50Z <p>Arrays are a simple concept. Why would I not want a simple datatype that I can visualize perfectly and use as a simple foundation for other datatypes? Simplicity is self explanatory</p> http://stackoverflow.com/questions/315435/need-instructions-for-reversi-game/315515#315515 0 Answer by Demur Rumed for Need instructions for Reversi game Demur Rumed 2008-11-24T21:21:09Z 2008-11-24T21:21:09Z <p>You'll need a 2D array. Beware of [[0] * 8] * 8, instead use [[0 for _ in [0] * 8] for _ in [0] * 8]</p> <p>White should be 1 and black -1 (Or vice versa, of course). This way you can do flips with *=-1 and keep blank blank Double four loops will be able to total scores and determine if the game is done pretty well. map(sum,map(sum,board)) will give you the net score</p> <p>Don't forget to check and see if the player can even move at the beginning of a round</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages/315465#315465 0 Answer by Demur Rumed for Practical non-Turing-complete languages? Demur Rumed 2008-11-24T21:04:21Z 2008-11-24T21:04:21Z <p>What you're asking for wouldn't be a very good language. You're not really asking for a language though, you're asking for a subset. It reminds me a bit of the whole SafeD concept with the D language. What you're looking for is a subset of a language, which can be attained by simply ignoring features you deem risky</p> http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315439#315439 2 Answer by Demur Rumed for C++ performance tips and rules of thumb anyone? Demur Rumed 2008-11-24T20:55:45Z 2008-11-24T20:55:45Z <p><a href="http://en.wikibooks.org/wiki/Optimizing_C%2B%2B/Writing_efficient_code" rel="nofollow">Wikibooks has some things.</a></p> <p>A good thing to do is know the efficiency of what you're using. How fast addition is to multiplication, how fast a vector is compared to a normal array or to the higher scales how certain algorithms compare. This allows you to choose the most efficient tool for a task</p> http://stackoverflow.com/questions/315306/is-if-expensive/315416#315416 0 Answer by Demur Rumed for Is "IF" expensive? Demur Rumed 2008-11-24T20:47:45Z 2008-11-24T20:47:45Z <p>I had this argument with a friend of mine once. He was using a very naive circle algorithm, but claimed his to be faster than mine (The kind that only calculates 1/8th of the circle) because mine used if. In the end, the if statement was replaced with sqrt and somehow that was faster. Perhaps because the FPU has sqrt built in?</p> http://stackoverflow.com/questions/313364/should-a-beginning-php-programmer-consider-frameworks/313415#313415 3 Answer by Demur Rumed for Should a beginning PHP programmer consider frameworks? Demur Rumed 2008-11-24T04:32:34Z 2008-11-24T04:32:34Z <p>PHP itself is a large language, you should probably find out what PHP can do well on its own before looking into frameworks that abstract you away from the language. But then you might end up like me, afraid of using any real extensions besides the language's standard library. Have you used a framework in another language? If you haven't, using a framework now might be beneficial for future use of other frameworks in perhaps other languages</p> http://stackoverflow.com/questions/273108/which-programming-languages-have-helped-you-to-understand-programming-better/313406#313406 3 Answer by Demur Rumed for Which programming languages have helped you to understand programming better? Demur Rumed 2008-11-24T04:25:37Z 2008-11-24T04:25:37Z <p>The thing I love most when learning a language is when it teaches me a new way to think about programming</p> <p>I barely used Lisp and yet it introduced to me to so much. Before Lisp, I only thought in the imperative paradigm</p> <p>Python is where I get a more sweet syntax of Lisp. That's where I started to use first class functions and the way datatypes can just be spelt out makes it all so elegant. It also got me to start tabbing code. The structures that mix naturally makes everything feel concise and readable, something I had previously not thought possible</p> <p>C++ brings pointers. Before C++, I thought all datastructures were just fancy arrays</p> <p>Assembly is weird. Programming in such a deliberate language is like playing an RTS that has excessive micromanagement. It's one of those languages we should all learn but not use</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/477730#477730 Comment by Demur Rumed on What's your most controversial programming opinion? Demur Rumed 2009-01-27T16:16:55Z 2009-01-27T16:16:55Z <a href="http://en.wikipedia.org/wiki/Thought-terminating_clich%C3%A9" rel="nofollow">en.wikipedia.org/wiki/&hellip;</a> http://stackoverflow.com/questions/386854/how-do-you-type-lisp-efficiently-with-so-many-parentheses/387950#387950 Comment by Demur Rumed on How do you type lisp efficiently, with so many parentheses? Demur Rumed 2008-12-29T19:13:57Z 2008-12-29T19:13:57Z The issue is lack of glue words. Python has to have an else keyword, while brace syntax could use if{true}{false}. Thus, the issues are when a )( is struck http://stackoverflow.com/questions/397034/confusing-list-in-python-what-is-it/397223#397223 Comment by Demur Rumed on Confusing [...] List in Python: What is it? Demur Rumed 2008-12-29T17:08:15Z 2008-12-29T17:08:15Z Quite elegant. Though I had to change a[2] to [a[2]] http://stackoverflow.com/questions/396421/checking-if-two-strings-are-permutations-of-each-other-in-python/396438#396438 Comment by Demur Rumed on Checking if two strings are permutations of each other in Python Demur Rumed 2008-12-29T03:49:39Z 2008-12-29T03:49:39Z The last 4 lines can be replaced with &quot;return not any(d.itervalues())&quot; http://stackoverflow.com/questions/397034/confusing-list-in-python-what-is-it/397070#397070 Comment by Demur Rumed on Confusing [...] List in Python: What is it? Demur Rumed 2008-12-29T03:25:34Z 2008-12-29T03:25:34Z When you call a[1] you get [0,[...]] again however. In the case of my example, it seems to be returning a larger list rather than the same list. Perhaps Python is merging [...]+[...] into [...]? http://stackoverflow.com/questions/397034/confusing-list-in-python-what-is-it/397062#397062 Comment by Demur Rumed on Confusing [...] List in Python: What is it? Demur Rumed 2008-12-29T03:21:22Z 2008-12-29T03:21:22Z Added y=y[:] to the top of the [a,b] version and got an output of [[0], [[1], [[6], [[8], [], []], [[3], [], []]], []], [[-4], [], []]]