User Claudiu - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:40:46Z http://stackoverflow.com/feeds/user/15055 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used 195 Worst UI You've Ever Used Claudiu 2008-10-26T16:11:01Z 2009-11-27T01:56:26Z <p>What is the <b>worst user interface</b> you've ever had to use? One that made you want to somehow locate the creators over the internet, personally fly to their location, and then <b>beat them severely with a large trout</b>. </p> <p>What made it so terrible? Was it <b>too many screens</b>, <b>ill-marked buttons</b>, or just really annoying <b>dialog boxes</b> showing up everywhere? <b>Screenshots</b> are a plus.</p> <p>Related question: <a href="http://stackoverflow.com/questions/238180/best-ui-youve-ever-used">Best UI Ever</a></p> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used 63 What is the best UI you've ever used? Claudiu 2008-10-26T16:13:51Z 2009-11-26T03:44:24Z <p>What is the <b>best user interface</b> you've ever used? One that made doing your task a pleasure, that was perfectly designed for the task it was intended for and facilitated doing it with ease. One that made you want to somehow locate the creators over the internet, personally fly to their location, and then <b>hand them large pile of money</b>.</p> <p>What made it so great? Was it simplicity, unobtrusiveness? Screenshots are a plus.</p> <p>Related question: <a href="http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used">Worst UI Ever</a>.</p> http://stackoverflow.com/questions/1767413/turn-a-string-into-a-regexp-that-matches-the-plain-string-in-drscheme 0 Turn a string into a regexp that matches the plain string, in DrScheme Claudiu 2009-11-19T23:45:48Z 2009-11-25T03:33:05Z <p>I want to split a string based on a non-regular expression. My input is a plain string. So, for example, given the input <code>"hello.*there"</code> and <code>".*"</code>, I want the result ("hello" "there").</p> <p>Doing this obv doesn't work:</p> <pre><code>(regexp-split (regexp sep) str)) </code></pre> <p>since it will try to match the regular expression <code>.*</code>. How do I escape <code>sep</code> to nullify any regexp-like patterns?</p> http://stackoverflow.com/questions/228518/palindrome-golf 14 Palindrome Golf Claudiu 2008-10-23T04:17:25Z 2009-11-24T08:09:54Z <p>The goal: Any language. The smallest function which will return whether a string is a palindrome. Here is mine in <b>Python</b>:</p> <pre><code>R=lambda s:all(a==b for a,b in zip(s,reversed(s))) </code></pre> <p>50 characters.</p> <p>The accepted answer will be the current smallest one - this will change as smaller ones are found. Please specify the language your code is in.</p> http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem 4 Best-case Running-time to solve an NP-Complete problem? Claudiu 2009-11-22T01:28:48Z 2009-11-23T17:06:29Z <p>What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of <a href="http://en.wikipedia.org/wiki/Travelling%5Fsalesman%5Fproblem" rel="nofollow">travelling salesman</a> is O(n!), but with dynamic programming it can be done in O(n^2 * 2^n). Is there any perhaps "easier" NP-Complete problem that has a better running time?</p> <p>I'm curious about exact solutions, not approximations.</p> http://stackoverflow.com/questions/1780489/haskell-minimum-maximum-double-constant 2 Haskell minimum/maximum Double Constant Claudiu 2009-11-23T00:04:24Z 2009-11-23T02:45:25Z <p>Is there any way in Haskell to get the constant that is the largest and smallest possible positive rational number greater than zero that can be represented by doubles?</p> http://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/1780182#1780182 0 Answer by Claudiu for Do you listen to anything while programming? Claudiu 2009-11-22T22:13:29Z 2009-11-22T22:13:29Z <p><a href="http://www.pandora.com" rel="nofollow">Pandora</a>, Eyes Set to Kill station. It's the right kind of music that both drowns out outside noise and lets me work.</p> http://stackoverflow.com/questions/1777497/what-javascript-frameworks-should-i-become-familiar-with/1777511#1777511 0 Answer by Claudiu for What javascript frameworks should I become familiar with? Claudiu 2009-11-22T01:46:58Z 2009-11-22T01:46:58Z <p>Take a look at <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a>. There are tons more out there, but really they offer the same basic functionality:</p> <ul> <li>A method to bind methods because of javascript's silly way of handling <code>this</code>.</li> <li>Sane way to do AJAX.</li> <li>Helper DOM look-up functions like <code>$</code> for jQuery.</li> </ul> <p>So I expect that once you know two you can start to use others pretty quickly. </p> http://stackoverflow.com/questions/1777272/complexity-in-prolog-programs/1777299#1777299 3 Answer by Claudiu for Complexity in Prolog programs? Claudiu 2009-11-22T00:26:54Z 2009-11-22T00:26:54Z <p>You can definitely analyze the complexity of Prolog programs, just like any other language. That particular problem you linked might be O(n^2). But not all Prolog programs will have this complexity. For example, you can easily write a SAT solver in Prolog, and that problem is NP-Complete.</p> http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1776146#1776146 0 Answer by Claudiu for What is a programming language? Claudiu 2009-11-21T17:38:57Z 2009-11-21T17:38:57Z <p>A programming language is a grammar describing what sequence of characters is a valid program, paired with a semantics defining what a valid program should cause the computer to do when executed.</p> http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers/1767976#1767976 7 Answer by Claudiu for Paying great programmers more than average programmers Claudiu 2009-11-20T02:39:47Z 2009-11-20T02:39:47Z <p>To have a superstar phenomenon, you must have two conditions:</p> <ul> <li>Everybody must want the very, very best person, much more than the next person down.</li> <li>The very best person must be able to easily distribute his work to a huge audience.</li> </ul> <p>Movie stars like Johnny Depp fit into both categories. You might argue that programmers can fit into the first category but I'd argue there are more exceptional programmers than top-of-the-line actors. And, at your regular company, programmers don't fit into the 2nd category. Their work influences at most everybody in the company.</p> http://stackoverflow.com/questions/1767850/code-golf-perfect-tic-tac-toe 1 Code Golf: Perfect Tic-Tac-Toe Claudiu 2009-11-20T01:54:50Z 2009-11-20T02:35:11Z <p>Given a tic-tac-toe board as input, where the game may already be started:</p> <pre><code> | | -+-+- |X| -+-+- | | </code></pre> <p>Output a tic-tac-toe board with the best possible move for the player whose next turn it is. You can assume a well-formed board (you won't have just 3 Os):</p> <pre><code> | |O -+-+- |X| -+-+- | | </code></pre> <p>The only acceptable moves here are corners, since if you put it on the side X can force a win.</p> <p>Smallest character count wins!</p> http://stackoverflow.com/questions/1767387/string-split-in-drscheme 0 string-split in DrScheme Claudiu 2009-11-19T23:39:39Z 2009-11-20T01:06:57Z <p>How do I do equivalent of python's str.split in DrScheme? SRFI-13 doesn't seem to have it provided.</p> http://stackoverflow.com/questions/216624/favorite-non-esoteric-programming-language 2 Favorite (non-esoteric) Programming Language Claudiu 2008-10-19T16:33:54Z 2009-11-19T10:11:30Z <p>What is your favorite programming language? This is <b>not the one you use at work</b>, but the <b>one you tend to use for personal projects</b>... the one that you first go to because it most matches your way of thinking / programming style, etc... </p> <p>List the reasons for it, too. </p> http://stackoverflow.com/questions/1753529/check-string-containment-in-scheme 1 Check string containment in Scheme Claudiu 2009-11-18T04:00:34Z 2009-11-18T17:27:02Z <p>How do I check, in <strong>DrScheme</strong>, whether a string contains a given character / substring? How do I include the proper module if it is defined in a module?</p> http://stackoverflow.com/questions/1744208/prolog-member-predicate-one-liner 3 Prolog - member predicate one-liner Claudiu 2009-11-16T19:11:14Z 2009-11-17T18:28:21Z <p>Interview question!</p> <p>This is how you normally define the <code>member</code> relation in Prolog:</p> <pre><code>member(X, [X|_]). % member(X, [Head|Tail]) is true if X = Head % that is, if X is the head of the list member(X, [_|Tail]) :- % or if X is a member of Tail, member(X, Tail). % ie. if member(X, Tail) is true. </code></pre> <p>Define it using only one rule.</p> http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books/1745214#1745214 0 Answer by Claudiu for List of freely available programming books Claudiu 2009-11-16T22:18:12Z 2009-11-16T22:18:12Z <p>This is a good 1000-word summary of Javascript:</p> <p><img src="http://i.imgur.com/RzRcw.jpg" alt="img" title=""></p> <p>Both of these books are good, though.</p> http://stackoverflow.com/questions/1717553/pointer-equality-in-haskell 1 Pointer equality in Haskell? Claudiu 2009-11-11T19:39:42Z 2009-11-16T17:56:01Z <p>Is there any notion of pointer quality in Haskell? == requires things to be deriving Eq, and I have something which contains a (Value -> IO Value), and neither -> nor IO derive Eq.</p> <p>EDIT: I'm creating an interpreter for another language which <em>does</em> have pointer equality, so I'm trying to model this behavior while still being able to use Haskell functions to model closures.</p> <p>EDIT: Example: I want a function <code>special</code> that would do this:</p> <pre><code>&gt; let x a = a * 2 &gt; let y = x &gt; special x y True &gt; let z a = a * 2 &gt; special x z False </code></pre> http://stackoverflow.com/questions/321000/dynamic-scoping-why 7 Dynamic Scoping - Why? Claudiu 2008-11-26T15:04:01Z 2009-11-16T17:18:24Z <p>I've learned that <a href="http://en.wikipedia.org/wiki/Static_scoping#Static_scoping_.28also_known_as_lexical_scoping.29" rel="nofollow">static scoping</a> is the only sane way to do things, and that <a href="http://en.wikipedia.org/wiki/Static_scoping#Dynamic_scoping" rel="nofollow">dynamic scoping</a> is the tool of the devil, and results only from poor implementations of interpreters/compilers. </p> <p>Then I saw this snippet from a <a href="http://community.schemewiki.org/?scheme-vs-common-lisp" rel="nofollow">Common Lisp vs. Scheme</a> article:</p> <pre> Both Lexically and Dynamically Lexical scope only, per the standard. scoped special vars. Common Dynamically scoped vars are provided Lisp just wins on this point. by some implementations as an extension but code using them is not portable. (I have heard the arguments about whether Dynamic scoping is or is not a Bad Idea in the first place. I don't care. I'm just noting that you can do things with it that you can't easily do without it.) </pre> <p>Why does Common Lisp "just win on this point"? What things are easier to do with dynamic scoping? I really can't justify ever needing it / seeing it as a good thing.</p> http://stackoverflow.com/questions/307305/play-a-sound-with-python 1 Play a Sound with Python Claudiu 2008-11-20T23:40:34Z 2009-11-16T07:33:51Z <p>What's the easiest way to play a sound file (.wav) in Python? By easiest I mean both most platform independent and requiring the least dependencies. pygame is certainly an option, but it seems overkill for just sound.</p> http://stackoverflow.com/questions/1736348/python-binary-diff/1736360#1736360 3 Answer by Claudiu for Python binary diff Claudiu 2009-11-15T02:26:03Z 2009-11-15T02:26:03Z <p>From the <a href="http://www.daemonology.net/bsdiff/" rel="nofollow">bsdiff</a> website:</p> <blockquote> <p>It has also been made into a <a href="http://starship.python.net/crew/atuining/cx%5Fbsdiff/index.html" rel="nofollow">Python extension module</a>, and there is a Windows port available.</p> </blockquote> <p>Following the link brings you to the module's page.</p> http://stackoverflow.com/questions/1736150/find-out-whether-a-linked-list-has-a-loop 0 Find out whether a Linked List has a loop [closed] Claudiu 2009-11-15T00:38:51Z 2009-11-15T00:56:19Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1103522/what-is-an-efficient-algorithm-to-find-whether-a-singly-linked-list-is-circular-c">What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not?</a> </p> </blockquote> <p>Given the head node of a linked list, how can you find out whether the linked list has a loop? I got this during a job interview. My solution was ~O(n) time and ~O(n) space but there is a better way.</p> http://stackoverflow.com/questions/1736094/longest-circle-in-graphs/1736165#1736165 1 Answer by Claudiu for Longest circle in graphs Claudiu 2009-11-15T00:42:52Z 2009-11-15T00:42:52Z <p>You're trying to find the smallest possible way to get everything done? This reminds me of a max-flow/min-cut problem. You might be able to approximate the best answer by:</p> <ul> <li>Connect all terminal nodes to a final <code>end</code> node.</li> <li>Run one of the various <a href="http://en.wikipedia.org/wiki/Maximum%5Fflow%5Fproblem" rel="nofollow">maximum flow</a> algorithms to find the max flow between <code>a</code> and <code>end</code>.</li> <li>Return to city <code>a</code>. Update the graph to reflect what you just did. Repeat until all jobs are done.</li> </ul> <p>The idea is that you get the most bang for every trip. Each trip after the 1st will be less efficient and less efficient, but that's to be expected.</p> <p><strong>Note:</strong> This only works because you have a DAG. Travelling salesman wouldn't be NP-Complete on a DAG, either, and it will likely be impossible to even hit all nodes on the graph. Re-reading your problem, it seems like you don't have a DAG, since you can return to city <code>a</code> - is that true?</p> http://stackoverflow.com/questions/1729124/how-to-implement-a-counter-for-every-number-inside-a-list-with-scheme/1729316#1729316 0 Answer by Claudiu for How to Implement a counter for every number inside a list with Scheme ? Claudiu 2009-11-13T13:53:36Z 2009-11-13T13:53:36Z <p>You could use a hashtable mapping the number to its number of occurrences. Create it with <code>(make-hash)</code>.</p> http://stackoverflow.com/questions/1722260/what-creates-the-stack/1722277#1722277 4 Answer by Claudiu for What creates the stack? Claudiu 2009-11-12T13:45:02Z 2009-11-12T21:13:17Z <p>If you mean the data structure: The processor executes the code. The code makes calls to the operating system to get the memory for the stack, and then manipulates it to form it into a stack. The compiler just turns the code you wrote into code the processor can understand.</p> <p>If you mean the execution stack: The OS is responsible for loading a process into memory and setting up its memory space to form the stack.</p> http://stackoverflow.com/questions/1718757/how-are-vtbls-implemented-in-java 0 How are VTBLs implemented in Java? Claudiu 2009-11-11T23:12:35Z 2009-11-12T02:56:36Z <p>Running this code:</p> <pre><code>class A { public int x; public A() { function(); } public void function() { this.x = 20; } public void printhey() { System.out.println("Hey"); } } class B extends A { public B() { super(); printhey(); } public void function() { this.x = 50; } } public class tmp { public static void main(String[] args) { System.out.println((new B()).x); } } </code></pre> <p>prints out:</p> <pre><code>Hey 50 </code></pre> <p>Who sets up the VTBL? in <code>A</code>'s constructor, <code>function</code> is already set to be B. But in <code>B</code>'s constructor, <code>printhey</code> is set up to be A's.</p> http://stackoverflow.com/questions/1713332/file-i-o-in-drscheme 0 File I/O In DrScheme Claudiu 2009-11-11T05:54:25Z 2009-11-11T06:17:08Z <p>(read) takes in a string from stdin, parses it as an s-expression, and returns that expression. How do I do the exact same thing, except taking input from a file?</p> http://stackoverflow.com/questions/1713344/read-in-command-line-arguments-from-drscheme 0 Read in command line arguments from DrScheme Claudiu 2009-11-11T05:59:43Z 2009-11-11T06:11:41Z <p>How do I detect what command line arguments where given when a script is run with mred? That is, the equivalent of sys.argv in Python, args[] in Java, etc...</p> http://stackoverflow.com/questions/1712947/flush-stdout-in-drscheme 0 Flush stdout in DrScheme? Claudiu 2009-11-11T04:10:30Z 2009-11-11T05:02:47Z <p>I can do it in Java, Python, Haskell... how do you do it in DrScheme? A customary google search didn't yield the answer.</p> http://stackoverflow.com/questions/1712422/compiling-a-ss-file 0 Compiling a .ss file Claudiu 2009-11-11T01:26:26Z 2009-11-11T01:51:07Z <p>I heard that you can compile .ss files with DrScheme, and even remember doing it once to result in some good speedups on my code, since it doesn't need to put in all the debugging info necessary for the GUI. How does one go about doing this?</p> http://stackoverflow.com/questions/1767413/turn-a-string-into-a-regexp-that-matches-the-plain-string-in-drscheme/1794420#1794420 Comment by Claudiu on Turn a string into a regexp that matches the plain string, in DrScheme Claudiu 2009-11-25T07:26:54Z 2009-11-25T07:26:54Z thanks! my main problem is that i wasn't able to find a good link to the documentation by google searching, or the docs i found were for certain modules which i didn't know how to import. these are a good place to start though http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/728169#728169 Comment by Claudiu on What are the dark corners of Vim your mom never told you about? Claudiu 2009-11-24T20:37:14Z 2009-11-24T20:37:14Z o my god this is the coolest thing http://stackoverflow.com/questions/1792024/missing-java-util-hashmap Comment by Claudiu on Missing java.util.HashMap Claudiu 2009-11-24T18:35:57Z 2009-11-24T18:35:57Z what error do you get and what's the code exactly? http://stackoverflow.com/questions/1784970/efficient-algorithm-to-remove-any-map-that-is-contained-in-another-map-from-a-col Comment by Claudiu on Efficient algorithm to remove any map that is contained in another map from a collection of maps. Claudiu 2009-11-23T18:42:55Z 2009-11-23T18:42:55Z If input is {{a: 1, b: 1}, {c: 1}, {b: 1, c: 1}}, do you just want {{a: 1, b: 1} , {c: 1}}, or all 3? If it's the former, what exactly do you need this for? http://stackoverflow.com/questions/1784970/efficient-algorithm-to-remove-any-map-that-is-contained-in-another-map-from-a-col Comment by Claudiu on Efficient algorithm to remove any map that is contained in another map from a collection of maps. Claudiu 2009-11-23T18:42:05Z 2009-11-23T18:42:05Z this is more like O(n^2*m), where m is the size of the largest Map http://stackoverflow.com/questions/431866/ignore-python-multiple-return-value/431872#431872 Comment by Claudiu on Ignore python multiple return value Claudiu 2009-11-23T18:22:08Z 2009-11-23T18:22:08Z I really prefer the <code>&#95;</code> variable. It's very obvious that you're ignoring a value http://stackoverflow.com/questions/1780489/haskell-minimum-maximum-double-constant/1780595#1780595 Comment by Claudiu on Haskell minimum/maximum Double Constant Claudiu 2009-11-23T01:30:20Z 2009-11-23T01:30:20Z i mis-spoke: i meant the smallest positive non-zero rational #. http://stackoverflow.com/questions/1780457/ever-had-to-dumb-down-for-a-job Comment by Claudiu on Ever had to "dumb down" for a job? Claudiu 2009-11-23T00:35:03Z 2009-11-23T00:35:03Z off-topic: I agree w/ most of your pts, but is it really necessary to program every class to an interface? http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem/1777558#1777558 Comment by Claudiu on Best-case Running-time to solve an NP-Complete problem? Claudiu 2009-11-22T02:26:26Z 2009-11-22T02:26:26Z ah my mistake, you're right http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem Comment by Claudiu on Best-case Running-time to solve an NP-Complete problem? Claudiu 2009-11-22T02:16:11Z 2009-11-22T02:16:11Z mathoverflow version: <a href="http://mathoverflow.net/questions/6418/best-case-running-time-to-solve-an-np-complete-problem" rel="nofollow" title="best case running time to solve an np complete problem">mathoverflow.net/questions/6418/&hellip;</a> http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem/1777558#1777558 Comment by Claudiu on Best-case Running-time to solve an NP-Complete problem? Claudiu 2009-11-22T02:08:18Z 2009-11-22T02:08:18Z I think it only requires O(n) space http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem Comment by Claudiu on Best-case Running-time to solve an NP-Complete problem? Claudiu 2009-11-22T01:36:24Z 2009-11-22T01:36:24Z @RickNZ: By 'we' I meant 'humanity in general'. I'm not trying to have you guys beat my algorithm, I just want to know what the fastest is that exists. http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775820#1775820 Comment by Claudiu on What is a programming language? Claudiu 2009-11-21T17:33:26Z 2009-11-21T17:33:26Z They're not &quot;fancy&quot;, but &quot;formal&quot; - there is a difference, and a reason that they don't sound so simple http://stackoverflow.com/questions/1767850/code-golf-perfect-tic-tac-toe Comment by Claudiu on Code Golf: Perfect Tic-Tac-Toe Claudiu 2009-11-20T06:34:24Z 2009-11-20T06:34:24Z @dmckee: Ty. I haven't been keeping up to date on these things and I see that my problem doesn't meet many of the standards in the accepted answer. I'd be fine with closing it and I'll try again later when there have been less code golfs around. http://stackoverflow.com/questions/1767850/code-golf-perfect-tic-tac-toe Comment by Claudiu on Code Golf: Perfect Tic-Tac-Toe Claudiu 2009-11-20T02:36:26Z 2009-11-20T02:36:26Z This isn't HW; it's just my first attempt at creating a codegolf. @Moishe: So, can you solve it in &lt; 96 bytes?