User Michał Kwiatkowski - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T10:45:58Zhttp://stackoverflow.com/feeds/user/21998http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1599267/jquery-val-on-html-select-text-takes-precedence-over-value/1599319#15993192Answer by Michał Kwiatkowski for jQuery val() on HTML Select Text takes precedence over ValueMichał Kwiatkowski2009-10-21T07:47:09Z2009-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><select name="selValues" id="selValues" multiple="multiple">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">5</option>
<option value="4">3</option>
</select>
</code></pre>
http://stackoverflow.com/questions/287233/suitable-data-storage-backend-for-erlang-application-when-data-doesnt-fit-memory/318736#3187361Answer by Michał Kwiatkowski for Suitable data storage backend for Erlang application when data doesn't fit memoryMichał Kwiatkowski2008-11-25T20:31:49Z2008-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-emacs10How to invoke an interactive elisp interpreter in Emacs?Michał Kwiatkowski2008-09-28T03:59:52Z2008-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#23601921Answer by Michał Kwiatkowski for The Halting Problem in the FieldMichał Kwiatkowski2008-10-25T06:37:51Z2008-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#2236095Answer by Michał Kwiatkowski for Can someone help explain this scheme procedureMichał Kwiatkowski2008-10-21T21:40:52Z2008-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#1816733Answer by Michał Kwiatkowski for lists:usort for nth element in tupleMichał Kwiatkowski2008-10-08T07:27:57Z2008-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>> 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#1725642Answer by Michał Kwiatkowski for What's a good project for an introduction to A.I.?Michał Kwiatkowski2008-10-05T20:12:35Z2008-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#1376242Answer by Michał Kwiatkowski for How can I perform a HEAD request with the mechanize library?Michał Kwiatkowski2008-09-26T03:37:33Z2008-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-valueComment by Michał Kwiatkowski on jQuery val() on HTML Select Text takes precedence over ValueMichał Kwiatkowski2009-10-21T07:48:22Z2009-10-21T07:48:22ZIt'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#635116Comment by Michał Kwiatkowski on Working on open-source vs closed sourceMichał Kwiatkowski2009-04-02T16:19:22Z2009-04-02T16:19:22ZUnfortunately 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#12733Comment by Michał Kwiatkowski on How do I attract developers to an Open Source project?Michał Kwiatkowski2008-10-18T10:09:04Z2008-10-18T10:09:04ZWhat project was it and what is the commercial counterpart?http://stackoverflow.com/questions/145175/how-to-invoke-an-interactive-elisp-interpreter-in-emacs/146251#146251Comment by Michał Kwiatkowski on How to invoke an interactive elisp interpreter in Emacs?Michał Kwiatkowski2008-09-29T00:27:10Z2008-09-29T00:27:10ZExactly what I was looking for, big thanks!http://stackoverflow.com/questions/145175/how-to-invoke-an-interactive-elisp-interpreter-in-emacs/145212#145212Comment by Michał Kwiatkowski on How to invoke an interactive elisp interpreter in Emacs?Michał Kwiatkowski2008-09-28T05:14:02Z2008-09-28T05:14:02ZThis 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#145212Comment by Michał Kwiatkowski on How to invoke an interactive elisp interpreter in Emacs?Michał Kwiatkowski2008-09-28T04:57:29Z2008-09-28T04:57:29ZThis 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!