User Michał Kwiatkowski - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T10:45:58Z http://stackoverflow.com/feeds/user/21998 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1599267/jquery-val-on-html-select-text-takes-precedence-over-value/1599319#1599319 2 Answer by Michał Kwiatkowski for jQuery val() on HTML Select Text takes precedence over Value Michał Kwiatkowski 2009-10-21T07:47:09Z 2009-10-21T07:47:09Z <p>When selecting options jQuery looks first at the value then at the text of an option. It also goes through options in order. So, <code>$('#selValues').val('3')</code> selects options 3 first, but right after that changes selection to option 4 (as it has the text "3"). Use a multiple select to see that in fact both options are selected</p> <pre><code>&lt;select name="selValues" id="selValues" multiple="multiple"&gt; &lt;option value="1"&gt;One&lt;/option&gt; &lt;option value="2"&gt;Two&lt;/option&gt; &lt;option value="3"&gt;5&lt;/option&gt; &lt;option value="4"&gt;3&lt;/option&gt; &lt;/select&gt; </code></pre> http://stackoverflow.com/questions/287233/suitable-data-storage-backend-for-erlang-application-when-data-doesnt-fit-memory/318736#318736 1 Answer by Michał Kwiatkowski for Suitable data storage backend for Erlang application when data doesn't fit memory Michał Kwiatkowski 2008-11-25T20:31:49Z 2008-11-25T20:31:49Z <p>Is there any reason why you can't just use a file system, treating filename as your string id and file contents as a binary blob? You can choose one (filesystem) that fits your performance requirements, and you should get caching basically for free, provided by your OS.</p> http://stackoverflow.com/questions/145175/how-to-invoke-an-interactive-elisp-interpreter-in-emacs 10 How to invoke an interactive elisp interpreter in Emacs? Michał Kwiatkowski 2008-09-28T03:59:52Z 2008-11-04T08:55:19Z <p>Right now I write expressions in the <code>*scratch*</code> buffer and test them by evaluating with C-x C-e. I would really appreciate having an interactive interpreter like SLIME or irb, in which I could test Emacs Lisp expressions.</p> http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/236019#236019 21 Answer by Michał Kwiatkowski for The Halting Problem in the Field Michał Kwiatkowski 2008-10-25T06:37:51Z 2008-10-25T06:37:51Z <p><a href="http://pythoscope.org" rel="nofollow">The project I'm working on right now</a> has undecidable problems all over it. It's a unit test generator, so in general what it tries to accomplish is to answer the question <em>"what this program does"</em>. Which is an instance of a halting problem. Another problem that came up during development is <em>"are given two (testing) functions the same"</em>? Or even <em>"does the order of those two calls (assertions) matter"</em>?</p> <p>What's interesting about this project is that, even though you can't answer those questions in <strong>all</strong> situations, you <strong>can</strong> find smart solutions that solve the problem 90% of the time, which for this domain is actually very good.</p> <p>Other tools that try to reason about other code, like optimizing compilers/interpreters, static code analysis tools, even refactoring tools, are likely to hit (thus be forced to find workarounds to) the halting problem.</p> http://stackoverflow.com/questions/223468/can-someone-help-explain-this-scheme-procedure/223609#223609 5 Answer by Michał Kwiatkowski for Can someone help explain this scheme procedure Michał Kwiatkowski 2008-10-21T21:40:52Z 2008-10-21T21:40:52Z <p>Let's look at this again...</p> <pre><code>((lambda (x y) (x y)) (lambda (x) (* x x)) (* 3 3)) </code></pre> <p>To evaluate a form we evaluate each part of it in turn. We have three elements in our form. This one is on the first (function) position:</p> <pre><code>(lambda (x y) (x y)) </code></pre> <p>This is a second element of a form and a first argument to the function:</p> <pre><code>(lambda (x) (* x x)) </code></pre> <p>Last element of the form, so a second argument to the function.</p> <pre><code>(* 3 3) </code></pre> <p>Order of evaluation doesn't matter in this case, so let's just start from the left.</p> <pre><code>(lambda (x y) (x y)) </code></pre> <p>Lambda creates a function, so this evaluates to a function that takes two arguments, x and y, and then applies x to y (in other words, calls x with a single argument y). Let's call this <strong>call-1</strong>.</p> <pre><code>(lambda (x) (* x x)) </code></pre> <p>This evaluates to a function that takes a single argument and returns a square of this argument. So we can just call this <strong>square</strong>.</p> <pre><code>(* 3 3) </code></pre> <p>This obviously evaluates to <strong>9</strong>.</p> <p>OK, so after this first run of evaluation we have:</p> <pre><code>(call-1 square 9) </code></pre> <p>To evaluate this, we call <strong>call-1</strong> with two arguments, <strong>square</strong> and <strong>9</strong>. Applying <strong>call-1</strong> gives us:</p> <pre><code>(square 9) </code></pre> <p>Since that's what <strong>call-1</strong> does - it calls its first argument with its second argument. Now, square of <strong>9</strong> is <strong>81</strong>, which is the value of the whole expression.</p> http://stackoverflow.com/questions/181498/listsusort-for-nth-element-in-tuple/181673#181673 3 Answer by Michał Kwiatkowski for lists:usort for nth element in tuple Michał Kwiatkowski 2008-10-08T07:27:57Z 2008-10-08T07:27:57Z <p>Have you tried <a href="http://www.erlang.org/doc/man/lists.html#keysort-2" rel="nofollow">keysort/2</a> function (or its counterpart <a href="http://www.erlang.org/doc/man/lists.html#ukeysort-2" rel="nofollow">ukeysort/2</a>)?</p> <pre><code>&gt; lists:reverse(lists:keysort(2, [{a,2}, {b,1}, {c, 3}])). [{c,3},{a,2},{b,1}] </code></pre> <p>If you don't sort very big lists this is probably the most readable solution you can get.</p> http://stackoverflow.com/questions/172245/whats-a-good-project-for-an-introduction-to-a-i/172564#172564 2 Answer by Michał Kwiatkowski for What's a good project for an introduction to A.I.? Michał Kwiatkowski 2008-10-05T20:12:35Z 2008-10-05T20:12:35Z <p>If you like the hands-on approach IMHO the best thing you can do is to get PAIP (<a href="http://norvig.com/paip.html" rel="nofollow">"Paradigms of Artificial Intelligence Programming"</a> by Peter Norvig). Author walks you through implementation of many classical AI programs, starting with <a href="http://en.wikipedia.org/wiki/General_Problem_Solver" rel="nofollow">General Problem Solver</a> and <a href="http://en.wikipedia.org/wiki/ELIZA" rel="nofollow">ELIZA</a>. Each chapter ends with a list of exercises which help you notice how deep some problems in AI are. Those exercises, more than anything, can get you hooked on AI big time, be warned. :)</p> <p>It also teaches you Common Lisp along the way, which you'll surely find helpful later on.</p> http://stackoverflow.com/questions/137580/how-can-i-perform-a-head-request-with-the-mechanize-library/137624#137624 2 Answer by Michał Kwiatkowski for How can I perform a HEAD request with the mechanize library? Michał Kwiatkowski 2008-09-26T03:37:33Z 2008-09-26T03:37:33Z <p>Mechanize itself only sends GETs and POSTs, but you can easily extend the Request class to send HEAD. Example:</p> <pre><code>import mechanize class HeadRequest(mechanize.Request): def get_method(self): return "HEAD" request = HeadRequest("http://www.example.com/") response = mechanize.urlopen(request) print response.info() </code></pre> http://stackoverflow.com/questions/1599267/jquery-val-on-html-select-text-takes-precedence-over-value Comment by Michał Kwiatkowski on jQuery val() on HTML Select Text takes precedence over Value Michał Kwiatkowski 2009-10-21T07:48:22Z 2009-10-21T07:48:22Z It's not a bug, it's a feature, as I explained in my answer. http://stackoverflow.com/questions/635111/working-on-open-source-vs-closed-source/635116#635116 Comment by Michał Kwiatkowski on Working on open-source vs closed source Michał Kwiatkowski 2009-04-02T16:19:22Z 2009-04-02T16:19:22Z Unfortunately making your code open doesn't automatically mean people will review it. Most open source projects are developed by a single person anyway, and even those with a team rarely get any outside code reviews. http://stackoverflow.com/questions/12023/how-do-i-attract-developers-to-an-open-source-project/12733#12733 Comment by Michał Kwiatkowski on How do I attract developers to an Open Source project? Michał Kwiatkowski 2008-10-18T10:09:04Z 2008-10-18T10:09:04Z What project was it and what is the commercial counterpart? http://stackoverflow.com/questions/145175/how-to-invoke-an-interactive-elisp-interpreter-in-emacs/146251#146251 Comment by Michał Kwiatkowski on How to invoke an interactive elisp interpreter in Emacs? Michał Kwiatkowski 2008-09-29T00:27:10Z 2008-09-29T00:27:10Z Exactly what I was looking for, big thanks! http://stackoverflow.com/questions/145175/how-to-invoke-an-interactive-elisp-interpreter-in-emacs/145212#145212 Comment by Michał Kwiatkowski on How to invoke an interactive elisp interpreter in Emacs? Michał Kwiatkowski 2008-09-28T05:14:02Z 2008-09-28T05:14:02Z This REPL implementation doesn't handle multi-line inputs. If you don't end an expression in a single line it gives: Error parsing '(whatever' (end-of-file repl.el) Is there an easy way to fix that? http://stackoverflow.com/questions/145175/how-to-invoke-an-interactive-elisp-interpreter-in-emacs/145212#145212 Comment by Michał Kwiatkowski on How to invoke an interactive elisp interpreter in Emacs? Michał Kwiatkowski 2008-09-28T04:57:29Z 2008-09-28T04:57:29Z This looks more complicated than it should be - running a shell, which runs another emacs in batch mode, which runs the REPL, all inside the main emacs runtime. Anyway, it solves my problem, so thank you for help!