User liori - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T18:26:29Zhttp://stackoverflow.com/feeds/user/42610http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1782655/swi-prolog-conditional-not/1782765#17827652Answer by liori for SWI Prolog - conditional NOT?liori2009-11-23T12:09:17Z2009-11-23T15:49:36Z<p>In imperative language you'd use some kind of flag; for example:</p>
<pre><code>found = False
for word in wordlist:
if word in ('car', 'train', 'plane'):
print "Found: " + word
found = True
if not found:
print "Nothing found."
</code></pre>
<p>You can implement this flag as another parameter to your clauses:</p>
<pre><code>% entry point
contains(X) :- contains(X, false).
% for each word...
contains([Word|Rest], Flag) :-
Word = car -> (write('Car found.'), nl, contains(Rest, true)) ;
Word = train -> (write('Train found.'), nl, contains(Rest, true)) ;
Word = plane -> (write('Plane found.'), nl, contains(Rest, true)) ;
contains(Rest, Flag).
% end of recursion
contains([], true).
contains([], false) :- write('Nothing found.'), nl.
</code></pre>
<p>If you want to make distinct clause for each word (and abstract the loop), change the middle part to:</p>
<pre><code>% for each word...
contains([Word|Rest], Flag) :-
checkword(Word) -> NewFlag=true ; NewFlag=Flag,
contains(Rest, NewFlag).
% and at the end:
checkword(car) :- write('Car found.'), nl.
checkword(plane) :- write('Plane found.'), nl.
checkword(train) :- write('Train found.'), nl.
</code></pre>
http://stackoverflow.com/questions/1779709/friend-function-declared-inside-befriended-class-gcc-does-not-compile1friend function declared inside befriended class, GCC does not compileliori2009-11-22T19:30:54Z2009-11-22T20:02:18Z
<p>Hello,</p>
<p>I've got following code:</p>
<p>File: Foo.h</p>
<pre><code>class Foo {
friend void Bar();
};
</code></pre>
<p>File: Foo.cpp</p>
<pre><code>void Bar() {};
</code></pre>
<p>File Test.cpp</p>
<pre><code>#include "Foo.h"
int main(void) {
Bar();
return 0;
}
</code></pre>
<p>VS2008 compiles this without any error or warning. G++ 4.3.4 reports:</p>
<pre><code>test.cpp: In function ‘int main()’:
test.cpp:8: error: ‘Bar’ was not declared in this scope
</code></pre>
<p>Why?</p>
http://stackoverflow.com/questions/1767671/working-with-lists-in-prolog/1767841#17678410Answer by liori for Working with lists in Prologliori2009-11-20T01:52:55Z2009-11-20T02:20:17Z<p>I'll try to introduce as little changes as possible to your code.</p>
<p>One thing that is definitely wrong is where you try to calculate the difference. Prolog does arithmetic computations only when using <code>is</code> operator. Your code:</p>
<pre><code>if((Hi1row - Hi2row), IsumDiff, Hi1row),
</code></pre>
<p>is merely passing the expression of the form (X-Y) to the <code>if</code> predicate, and not calculating it. Later inside <code>if</code>, you do not compute the difference but try to compare the expression to zero... which fails, because you can only compare numbers to numbers, and not to expressions -- and <code>Diff</code> gets assigned to an expression.</p>
<p>It would work if you rewrite the first clause of if as follows (even though you should also get rid of that <code>is</code> here):</p>
<pre><code>if((X-Y), Iresult, Entry) :-
X > Y,
Iresult is Entry.
</code></pre>
<p>This way your <code>if</code> predicate will get X and Y from the expression to be able to compare them.</p>
<p>Also, you need to avoid your <code>if</code> predicate to yield two possible answers. Your second <code>if</code> clause will be invoked even when X>Y: in the process of backtracking. The easiest way is to put <code>!</code> at the end of first clause. It means: "Up to this point, I accept the first solution in this program and I don't want to go back from here to find any other solutions". The clause will be changed to:</p>
<pre><code>if((X-Y), Iresult, Entry) :-
X > Y,
Iresult is Entry,
!.
</code></pre>
<p>But... this is good in small programs, and if you actually need backtracking in other parts of your program, this can break it. The cleaner way would be to check proper condition in both clauses. Rewrite them to:</p>
<pre><code>if((X-Y), Iresult, Entry) :-
X > Y,
Iresult is Entry.
if((X-Y), Iresult, _) :-
X =< Y,
Iresult is 0.
</code></pre>
<p>Then you're sure that if X>Y, the second clause will fail.</p>
<p>After these modifications your code should work... Please report if it doesn't.
It still won't be very prolog-ish though; it is a little bit too verbose.</p>
<p><hr></p>
<p>Edit:</p>
<p>Ok, I'd write it in a simple way:</p>
<pre><code>sum_if_bigger([], [], 0).
sum_if_bigger([A|L1], [B|L2], Result) :-
sum_if_bigger(L1, L2, Partial),
Result is Partial + max(0, A-B).
</code></pre>
<p>...or in a tail-recursive way:</p>
<pre><code>sum_if_bigger_tr(L1, L2, R) :-
sum_if_bigger_tr(L1, L2, 0, R).
sum_if_bigger_tr([], [], R, R).
sum_if_bigger_tr([A|L1], [B|L2], Partial, Result) :-
NewPartial is Partial + max(0, A-B),
sum_if_bigger_tr(L1, L2, NewPartial, Result).
</code></pre>
http://stackoverflow.com/questions/1767329/how-do-i-simplify-bashs-eval-time-binfile-binopts-logfile-and-keep/1767577#17675773Answer by liori for How do I simplify bash's 'eval "$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE"' and keep it working?liori2009-11-20T00:24:54Z2009-11-20T00:24:54Z<p><code>time</code> is a reserved word in bash. It must be written explicitly because it is parsed before parsing the "<a href="http://www.gnu.org/software/bash/manual/bashref.html#Simple-Commands" rel="nofollow">simple commands</a>", and therefore before variable substitutions. For example, you cannot use builtin <code>time</code> in this way:</p>
<pre><code>cat long-file | time sort
</code></pre>
<p>It has to be:</p>
<pre><code>time cat long-file | sort
</code></pre>
<p>and here <code>bash</code> will measure time spend by whole pipeline.</p>
<p><code>GNU time</code> is a simple binary, so it can be used in the way you mean it... and it can be used in the middle of a pipeline. But it is not always installed, so I guess you'd better use builtin.</p>
<p>I guess you want to omit <code>time</code> in some specific cases and because of that you want variable substitution. If so, you can go with <code>GNU time</code>, <code>eval</code> or some kind of <code>if..fi</code> structure, but you definitely cannot use builtin the way you wanted.</p>
<p>If you want to be more portable, you should use its <code>-p</code> option to get the same output under different implementations. See f.e. <a href="http://www.opengroup.org/onlinepubs/9699919799/utilities/time.html" rel="nofollow">OpenGroup's <code>time</code> description</a>. Then whatever implementation you choose, it should behave the same way (as long as it is POSIX-compliant).</p>
http://stackoverflow.com/questions/1754438/python-multiprocessing-db-access-is-very-slow/1754595#17545950Answer by liori for python multiprocessing db access is very slow.liori2009-11-18T08:59:49Z2009-11-18T08:59:49Z<p>Have you tried opening new database connection for each of your processes? It seems to me that you are simply adding overhead trying to reuse them in different processes.</p>
<p>Also, I'm not sure (your sample is to small to deduce) but it looks like you're opening new DB connection for each query... Are you closing connection with <code>self.conn.close()</code> after each query? You're supposed to have one long-lasting connection.</p>
http://stackoverflow.com/questions/1669922/is-it-possible-to-find-two-numbers-whose-difference-is-minimum-in-on-time/1670301#16703010Answer by liori for Is it possible to find two numbers whose difference is minimum in O(n) timeliori2009-11-03T21:37:29Z2009-11-03T21:37:29Z<p>It <a href="http://www.computer.org/portal/web/csdl/doi/10.1109/SFCS.2002.1181890" rel="nofollow">seems</a> to be possible to sort unbounded set of integers in O(n*sqrt(log(log(n))) time. After sorting it is of course trivial to find the minimal difference in linear time.</p>
<p>But I can't think of any algorithm to make it faster than this.</p>
http://stackoverflow.com/questions/1665549/ignore-non-matching-lines/1665662#16656621Answer by liori for Ignore non-matching linesliori2009-11-03T06:56:13Z2009-11-03T06:56:13Z<p>Another way with plain sed:</p>
<pre><code>sed -e 's/.../.../;tx;d;:x'
</code></pre>
<p><code>s///</code> is a substituion, <code>tx</code> branches to label x if the substitution was successful, <code>d</code> deletes line, <code>:x</code> is a marker for label x.</p>
<p>No need for perl or grep.</p>
http://stackoverflow.com/questions/972113/a-pre-coded-web-based-client-that-can-connect-to-oscar-aim-and-or-gchat-that-i-ca/1665027#16650270Answer by liori for A pre-coded web-based client that can connect to OSCAR/AIM and/or GCHAT that I can host on my web server?liori2009-11-03T03:15:20Z2009-11-03T03:15:20Z<p>Any web-based XMPP client (like <a href="http://blog.jwchat.org/jwchat/" rel="nofollow">JWChat</a>) + XMPP AIM transport.</p>
<p>Or (I don't know whether this is still current):</p>
<p>Any web-based XMPP client connected to <a href="http://florianjensen.com/2008/01/17/aol-adopting-xmpp-aka-jabber/" rel="nofollow">AIM's XMPP service</a>.</p>
http://stackoverflow.com/questions/1658131/algorithms-to-evaluate-user-responses/1658231#16582312Answer by liori for algorithms to evaluate user responsesliori2009-11-01T20:33:13Z2009-11-01T20:33:13Z<p>Read <a href="http://www-stat.stanford.edu/~tibs/ElemStatLearn/download.html" rel="nofollow">The Elements of Statistical Learning</a>, it is a great compendium on data mining.</p>
<p>You can be interested especially in unsupervised algorithms, for example clustering. Assuming that most people do not lie, the biggest cluster is right and the rest is wrong. Mark people accordingly, then apply some bayesian statistics and you'll be done.</p>
<p>Of course, most data mining technologies are pretty experimentative, so don't count on that they will be always right... or even in most cases.</p>
http://stackoverflow.com/questions/1652779/widget-transparency-in-pygtk/1652873#16528731Answer by liori for Widget Transparency in PyGTK?liori2009-10-30T23:58:04Z2009-10-30T23:58:04Z<p>Assuming that your program runs under composition manager, you could get per-widget transparency by manipulating widget's X window. Look at <a href="http://www.pygtk.org/docs/pygtk/class-gdkwindow.html#method-gdkwindow--set-opacity" rel="nofollow">gtk.gdk.Window.set_opacity()</a>.</p>
<p>Note, it is not <code>gtk.Window</code>; you can get this object by getting its <code>window</code> property (<code>buttonWidget.window</code>), but only when widget is realized and only when widget does handle events -- gtk.Label does not have its own X window for instance.</p>
<p>If you need to work also when you don't have composition manager, drawing your widgets by yourself is the only option -- but you don't necessarily have to use cairo; drawing pixel by pixel on the bare X window will also work.</p>
http://stackoverflow.com/questions/1647534/revert-from-revision/1647589#16475892Answer by liori for Revert From Revisionliori2009-10-30T01:43:41Z2009-10-30T01:43:41Z<p>Assuming that you want to revert the changes you made in revision 1234: just merge the differences from 1234 to 1234-1.</p>
<p>In CLI this would be: <code>svn merge -r 1234:1233 <a href="http://your-repo/" rel="nofollow">http://your-repo/</a> && svn ci</code></p>
<p>In TortoiseSVN, get a merge dialog box, "Merge a range of revisions", enter 1234 as revision to merge and click "Reverse merge". Then check if you didn't get any conflicts (with changes other people did after 1234), and make a check in. Then your HEAD revision won't have that code.</p>
<p>I am not sure if you can do that on specific files in TortoiseSVN. I did that in CLI, and you can try too (CLI tool, TortoiseSVN, AnkhSVN, they all share metadata).</p>
<p>The SVN will still remember that you have wrote this code, and this is what it is designed for. If there are no real reasons to remove this code from SVN (like, legal or blackmail or whatever), keep it.</p>
http://stackoverflow.com/questions/1640748/suggesting-for-an-open-source-application-with-a-slick-user-interface-like-google/1640880#16408800Answer by liori for Suggesting for an open source application with a slick user interface like Google Talkliori2009-10-28T23:56:01Z2009-10-28T23:56:01Z<p><a href="http://www.clutter-project.org/" rel="nofollow">Clutter</a> is a library to make cute UI; it's new, so not many apps use it. You might check <a href="http://moblin.org/" rel="nofollow">Moblin</a> as an example of using this library, or see their <a href="http://www.youtube.com/watch?v=vsCpIeLLoT8" rel="nofollow">demo video</a>.</p>
http://stackoverflow.com/questions/1619157/leader-election-algorithm-comparison-functions-are-not-allowed/1619315#16193150Answer by liori for Leader Election Algorithm - Comparison functions are not allowedliori2009-10-24T22:12:24Z2009-10-24T22:12:24Z<p>I think it is possible. My idea (assuming that size of the network <code>n</code> is known to all nodes):</p>
<pre><code>Leader(i, n):
p := 1/n
id[i] := Random identifier of node i
p[i] := Choose 1 with probability p, 0 otherwise.
If p[i]==1, send message (id[i]) to the next node.
// p[i]==1 means i-th node pretends to be the leader
For next n rounds:
If received message (X), X!=id[i]:
p[i] := 0
Send message (X) to the next node.
// now after n rounds at most 1 node pretends to be the leader
// Chosen[i] will represent whether i-th node knows if there is a leader.
Chosen[i] := p[i];
If p[i]==1, send message (id[i]) to the next node.
For next n rounds:
If received message (X):
Chosen[i] := 1
Send message (X) to the next node.
// now every node knows whether the election went successfully
If Chosen[i]==0, then repeat from scratch.
</code></pre>
<p>And if you don't know the size of network:</p>
<pre><code>Size(i):
Send message (id[i], 1) to the next node.
For each following round:
If received message (X, Y), X!=id[i]:
Send message (X, Y+1) to the next node.
If received message (X, Y), X==id[i]:
Size of the ring is Y.
Stop.
</code></pre>
<p>Size() takes n rounds and n² messages, Leader() takes 2n*e rounds on average for large n (if I recall this part of math correctly).</p>
http://stackoverflow.com/questions/1599658/is-there-a-single-server-i-can-use-to-store-manage-version-control-for-svn-git-hg/1601990#16019900Answer by liori for Is there a single server I can use to store/manage version control for SVN/Git/Hg/etc?liori2009-10-21T16:28:22Z2009-10-21T16:28:22Z<p>Note that SVN, git and others work in different ways and have different features. If you will settle on one solution, that solution will only have features that are common to all VCS -- probably annoying developers who chose git/svn/hg for their specific features.</p>
<p>You wrote in comment that "freelancers & remote workers who are only comfortable certain VCSs" -- and that's what I mean too.</p>
<p>There are some workarounds, like <a href="http://wiki.darcs.net/RelatedSoftware/Tailor" rel="nofollow">tailor</a> or already mentioned <code>git-svn</code> and <code>hgsubversion</code>, but from my own experience they don't work very well.</p>
http://stackoverflow.com/questions/1601923/is-it-possible-to-write-offline-gps-navigation-software-as-a-hobbyist/1601937#16019371Answer by liori for Is it possible to write offline GPS navigation software as a hobbyist?liori2009-10-21T16:20:36Z2009-10-21T16:20:36Z<p>There's <a href="http://www.openstreetmap.org/" rel="nofollow">http://www.openstreetmap.org/</a>, which aims to be a free mapping database. It is far from complete, but as a starting point it might fit. Look at their wiki: <a href="http://wiki.openstreetmap.org/wiki/Main%5FPage" rel="nofollow">http://wiki.openstreetmap.org/wiki/Main%5FPage</a></p>
http://stackoverflow.com/questions/1525421/drawing-svg-in-net-c2Drawing SVG in .NET/C#?liori2009-10-06T12:57:52Z2009-10-20T14:31:10Z
<p>Hello,</p>
<p>I'd like to generate an SVG file using C#. I already have code to draw them in PNG and EMF formats (using framework's standard class <a href="http://msdn.microsoft.com/en-us/library/system.drawing.imaging.metafile.aspx" rel="nofollow">System.Drawing.Imaging.Metafile</a> and <a href="http://zedgraph.org/wiki/index.php?title=Main%5FPage" rel="nofollow">ZedGraph</a>). What could you recommend to do to adapt that code to SVG? Preferably I'd like to find some library (free or not) that would mimic <a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.aspx" rel="nofollow">System.Drawing.Graphics</a> interface.</p>
http://stackoverflow.com/questions/1584864/grep-multi-layered-iterable-for-strings-that-match-python/1584979#15849793Answer by liori for Grep multi-layered iterable for strings that match (Python)liori2009-10-18T14:06:27Z2009-10-18T14:06:27Z<p>I'd split recursive enumeration from grepping:</p>
<pre><code>def enumerate_recursive(iter, base=()):
for index, item in enumerate(iter):
if isinstance(item, basestring):
yield (base + (index,)), item
else:
for pair in enumerate_recursive(item, (base + (index,))):
yield pair
def grep_index(filt, iter):
return (index for index, text in iter if filt in text)
</code></pre>
<p>This way you can do both non-recursive and recursive grepping:</p>
<pre><code>l = list(grep_index('opt1', enumerate(sys.argv))) # non-recursive
r = list(grep_index('diff', enumerate_recursive(your_data))) # recursive
</code></pre>
<p>Also note that we're using iterators here, saving RAM for longer sequences if necessary.</p>
<p>Even more generic solution would be to give a callable instead of string to grep_index. But that might not be necessary for you.</p>
http://stackoverflow.com/questions/1582737/what-is-the-simplest-way-to-execute-arbitrary-process-with-stdin-stdout-forwarde/1582763#15827632Answer by liori for What is the simplest way to execute arbitrary process with stdin, stdout forwarded to a socket?liori2009-10-17T17:40:55Z2009-10-17T17:40:55Z<p>Linux/OSX (actually POSIX), programming (any language that have POSIX calls), general scheme:</p>
<ol>
<li>setup a socket...</li>
<li><code>fork()</code></li>
<li><code>close(0)</code>, <code>close(1)</code> (not necessary, <code>dup2</code> will close it too... but added for clarity)</li>
<li><code>dup2(socket, 0)</code>, <code>dup2(socket, 1)</code></li>
<li><code>exec()</code></li>
</ol>
<p>Shell: use <code>nc</code>. Example in my other answer: <a href="http://stackoverflow.com/questions/1269400/is-this-a-fair-question-to-ask-in-a-software-engineering-interview-phase-1/1269577#1269577">http://stackoverflow.com/questions/1269400/is-this-a-fair-question-to-ask-in-a-software-engineering-interview-phase-1/1269577#1269577</a></p>
http://stackoverflow.com/questions/1578592/ipython-in-unbuffered-mode/1578832#15788320Answer by liori for IPython in unbuffered mode liori2009-10-16T15:32:20Z2009-10-16T15:32:20Z<p>Try:</p>
<pre><code>python -u `which ipython`
</code></pre>
<p>Not sure if it will work, though.</p>
http://stackoverflow.com/questions/1565474/i-need-raw-read-data-from-and-write-data-into-drive-help/1565599#15655991Answer by liori for I need raw read data from and write data into drive..helpliori2009-10-14T11:01:16Z2009-10-14T11:01:16Z<p>Files <code>/dev/hd*</code> and <code>/dev/sd*</code>, depending on your setup, contain raw disk data. You need <code>root</code> account usually.</p>
<p>Use <code>mount</code> command to find out which disks/partitions are mapped to which files.</p>
http://stackoverflow.com/questions/1548419/why-leading-zero-not-possible-in-pythons-map-and-str/1548425#15484254Answer by liori for Why leading zero not possible in Python's Map and Strliori2009-10-10T16:41:53Z2009-10-10T16:41:53Z<p><a href="http://stackoverflow.com/questions/336181/python-invalid-token">http://stackoverflow.com/questions/336181/python-invalid-token</a></p>
<p>Use:</p>
<pre><code>map(int,"08978789787")
</code></pre>
http://stackoverflow.com/questions/1545050/python-one-line-for-expression/1545056#15450565Answer by liori for Python one-line "for" expressionliori2009-10-09T17:18:13Z2009-10-09T17:18:13Z<pre><code>for item in array: array2.append (item)
</code></pre>
<p>Or, in this case:</p>
<pre><code>array2 += array
</code></pre>
http://stackoverflow.com/questions/1534374/editing-mp3-metadata-on-a-file-like-object-in-python/1534398#1534398-1Answer by liori for Editing MP3 metadata on a file-like object in Python?liori2009-10-07T21:43:54Z2009-10-07T21:43:54Z<p>AFAIR tags are appended to the end of file. You might want to study the format and make a simple library yourself, that should not be very difficult.</p>
<p>Also, you could consider storing them temporary on a filesystem like tmpfs (ramdisk). </p>
http://stackoverflow.com/questions/1534335/stdstring-equivalent-for-data-with-null-characters/1534369#15343694Answer by liori for std::string equivalent for data with NULL characters?liori2009-10-07T21:38:44Z2009-10-07T21:38:44Z<p><code>std::string</code> should be safe to do so... you only have to be careful using <code>.c_str()</code> method. Use <code>.data()</code>.</p>
http://stackoverflow.com/questions/1521079/how-to-implement-tail-recursion-for-tree-algorithms-in-prolog/1526224#15262240Answer by liori for How to implement tail recursion for tree algorithms in prolog.liori2009-10-06T15:11:15Z2009-10-06T15:11:15Z<p>Yes, your solution is optimal, because it will call sum/2 predicate exactly once for each node in tree (and you simply cannot make less calls). No, you can make it tail-recursive, by implementing the stack yourself using an accumulator.</p>
<p>Here's an example (not tested). The flattening predicate could be integrated with sum, but here they are distinct for clarity (both are tail-recursive):</p>
<pre><code>flatten([], Acc, Acc).
flatten([void|ToGo], Acc, Result) :-
flatten(ToGo, Acc, Result).
flatten([t(V,L,R)|ToGo], Acc, Result) :-
flatten([L,R|ToGo], [t(V,L,R)|Acc], Result).
flatten(Root, Result) :-
flatten([Root], [], Result).
sum([], Result, Result).
sum([t(V,_,_)|ToGo], Acc, Result) :-
NewAcc is Acc+V,
sum(ToGo, NewAcc, Result).
sum(Tree, Result) :-
flatten(Tree, FlatTree),
sum(FlatTree, 0, Result).
</code></pre>
http://stackoverflow.com/questions/1517616/stream-large-binary-files-with-urllib2-to-file/1517659#15176591Answer by liori for stream large binary files with urllib2 to fileliori2009-10-04T23:07:49Z2009-10-04T23:07:49Z<p>I used to use <code>mechanize</code> module and its Browser.retrieve() method. In the past it took 100% CPU and downloaded things very slowly, but some recent release fixed this bug and works very quickly.</p>
<p>Example:</p>
<pre><code>import mechanize
browser = mechanize.Browser()
browser.retrieve('http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.32-rc1.tar.bz2', 'Downloads/my-new-kernel.tar.bz2')
</code></pre>
<p>Mechanize is based on urllib2, so urllib2 can also have similar method... but I can't find any now.</p>
http://stackoverflow.com/questions/1512520/decent-sharedptr-implementation-that-does-not-require-a-massive-library/1512541#15125412Answer by liori for Decent shared_ptr implementation that does not require a massive library?liori2009-10-03T01:40:44Z2009-10-03T01:40:44Z<p>Preprocess boost header that contains the definition of <code>shared_ptr</code>. Write it to a single .hpp file. This way you'll get boost <code>shared_ptr</code> and all its dependencies in one header file, without the need for full installation of boost.</p>
<p><code>shared_ptr</code> does not need any shared library to be linked to your code, it is a header-only library... so this should work.</p>
http://stackoverflow.com/questions/1512396/parallelizing-nested-loops-with-dependencies/1512503#15125032Answer by liori for Parallelizing nested loops with dependenciesliori2009-10-03T01:17:06Z2009-10-03T01:22:29Z<p>You could try to express your problem in form of a map-reduce problem (<a href="http://en.wikipedia.org/wiki/MapReduce" rel="nofollow">http://en.wikipedia.org/wiki/MapReduce</a>), making each level of nesting a single map-reduce job. The for loop would be translated to the mapping, and the g_i call to the reduction step.</p>
<p>You could try to make your pseudolanguage a bit more clear... maybe express it as python program with n=3 or n=4? Is your "for" a regular <code>for</code> loop? If so, I don't really understand the first pair of parentheses.</p>
<p>I'm not really sure if your problem is parallelizable in stated form. If you say that the loop's variable depends on previous iteration, then it looks more like a sequential problem to me.</p>
http://stackoverflow.com/questions/1512117/would-a-cloud-based-compiler-be-feasible/1512307#15123071Answer by liori for Would a cloud-based compiler be feasible?liori2009-10-02T23:39:54Z2009-10-02T23:39:54Z<p>You can use <code>distcc</code> and <code>make -j</code> for distributed compilation of most typical unix code. If you regularly compile big chunks of code, it might get you big speedups... afaik samba (free smb implementation) developers use it for this. <code>distcc</code> does only the compilation phase in a distributed way, leaving preprocessing and linking to the master machine.</p>
<p>Interaction with "the cloud" might induce latency, but I still think with more complicated c++ code it might be very useful. I guess if you have more than 100 compilation units (f.e. .cpp files), you could get noticeable speedup.</p>
http://stackoverflow.com/questions/1508938/parsing-large-pseudo-xml-files-in-python/1508976#15089769Answer by liori for Parsing large pseudo-xml files in pythonliori2009-10-02T11:26:55Z2009-10-02T11:34:32Z<p><a href="http://docs.python.org/library/xml.sax.html" rel="nofollow">http://docs.python.org/library/xml.sax.html</a></p>
<p>Note, that you can pass a 'stream' object to <code>xml.sax.parse</code>. This means you can probably pass any object that has file-like methods (like <code>read</code>) to the <code>parse</code> call... Make your own object, which will firstly put your virtual root start-tag, then the contents of file, then virtual root end-tag. I guess that you only need to implement <code>read</code> method... but this might depend on the sax parser you'll use.</p>
<p>Example that works for me:</p>
<pre><code>import xml.sax
import xml.sax.handler
class PseudoStream(object):
def read_iterator(self):
yield '<foo>'
yield '<bar>'
for line in open('test.xml'):
yield line
yield '</bar>'
yield '</foo>'
def __init__(self):
self.ri = self.read_iterator()
def read(self, *foo):
try:
return self.ri.next()
except StopIteration:
return ''
class SAXHandler(xml.sax.handler.ContentHandler):
def startElement(self, name, attrs):
print name, attrs
d = xml.sax.parse(PseudoStream(), SAXHandler())
</code></pre>
http://stackoverflow.com/questions/1797640/disadvantages-of-first-class-functions/1797752#1797752Comment by liori on Disadvantages of First-class functionsliori2009-11-28T14:24:46Z2009-11-28T14:24:46ZNot necessarily. There are languages with first class functions which aren't interpreted and don't have GC (f.e. C++). Closures are more difficult to implement without GC though.http://stackoverflow.com/questions/1804311/how-to-check-if-an-integer-is-power-of-3/1804339#1804339Comment by liori on How to check if an integer is power of 3?liori2009-11-26T22:14:29Z2009-11-26T22:14:29ZWell, formally you cannot say that the mentioned power-of-two test is O(1) -- because we limit our numbers to some kind of MAX_INT, whatever it is on given system.http://stackoverflow.com/questions/1782655/swi-prolog-conditional-not/1782831#1782831Comment by liori on SWI Prolog - conditional NOT?liori2009-11-25T01:29:22Z2009-11-25T01:29:22ZOk, I checked SWI-Prolog's documentation... you're right. I was under assumption it is defined more like <code>((If, Then); (\+If, Else))</code>.http://stackoverflow.com/questions/1782655/swi-prolog-conditional-not/1782831#1782831Comment by liori on SWI Prolog - conditional NOT?liori2009-11-24T12:01:27Z2009-11-24T12:01:27Z<code>write</code> might be only a placeholder.http://stackoverflow.com/questions/1784853/how-is-the-x64-architecture-different-from-x86/1784929#1784929Comment by liori on How is the x64 architecture different from x86liori2009-11-23T20:20:49Z2009-11-23T20:20:49ZIt probably means that AMD will not make much effort in optimizing them (so they might get very slow), and is probably going to drop it from hardware and emulate it only in software. That's my guess.http://stackoverflow.com/questions/1783130/draw-emf-antialiasedComment by liori on Draw emf antialiasedliori2009-11-23T17:36:47Z2009-11-23T17:36:47ZDuplicate: <a href="http://stackoverflow.com/questions/1422949/emf-with-forced-antialiasing" rel="nofollow" title="emf with forced antialiasing">stackoverflow.com/questions/1422949/…</a>http://stackoverflow.com/questions/1782655/swi-prolog-conditional-not/1782765#1782765Comment by liori on SWI Prolog - conditional NOT?liori2009-11-23T15:05:11Z2009-11-23T15:05:11ZHa, I somehow misread your code... you want to find all occurences. I'll edit my answer.http://stackoverflow.com/questions/1782655/swi-prolog-conditional-not/1782831#1782831Comment by liori on SWI Prolog - conditional NOT?liori2009-11-23T15:04:16Z2009-11-23T15:04:16ZUsing cuts isn't considered nice.http://stackoverflow.com/questions/1779709/friend-function-declared-inside-befriended-class-gcc-does-not-compile/1779802#1779802Comment by liori on friend function declared inside befriended class, GCC does not compileliori2009-11-22T20:35:01Z2009-11-22T20:35:01Zsbi, case when a friend function is defined (not only declared) inside class is covered by 11.4.5 ("A function can be defined in a friend declaration of a class if and only if the class is a non-local class, the function name is unqualified, and the function has namespace scope" -- your example fulfils these requirements). I <i>guess</i> that standard does allow declaration ("prototype") of a friend function inside class. It is the error g++ is generating which bothers me.http://stackoverflow.com/questions/1779709/friend-function-declared-inside-befriended-class-gcc-does-not-compile/1779802#1779802Comment by liori on friend function declared inside befriended class, GCC does not compileliori2009-11-22T20:08:34Z2009-11-22T20:08:34ZCould you prove that with a reference to C++ Standard? I couldn't find that.http://stackoverflow.com/questions/1779675/how-would-you-store-encrypted-information-in-public-dvcs-repositoryComment by liori on How would you store encrypted information in public DVCS repository?liori2009-11-22T19:55:03Z2009-11-22T19:55:03ZWhy do you want to encrypt them? You don't trust your developers?http://stackoverflow.com/questions/1767671/working-with-lists-in-prolog/1767841#1767841Comment by liori on Working with lists in Prologliori2009-11-20T17:31:25Z2009-11-20T17:31:25ZWell, you have to start with zero, and then with each recursive call increment it. It will probably be easier for you to modify the tail-recursive version: add another parameter to <code>sum_if_bigger_tr/4</code>. If you'll have problems doing this, please make another question in SO... this one is getting a bit too long ;-)http://stackoverflow.com/questions/1767671/working-with-lists-in-prolog/1767841#1767841Comment by liori on Working with lists in Prologliori2009-11-20T03:09:07Z2009-11-20T03:09:07ZYes, you do. You firstly assign value to NewResult, then put it to recursive total_sum call. Don't do that. Firstly gather all data: <code>sum_if_bigger(A, B, SingleRowResult), total_sum(L1, L2, ResultForOtherRows)</code>, and only then calculate the composite result: <code>Result is SingleRowResult + ResultForOtherRows</code>.http://stackoverflow.com/questions/1767671/working-with-lists-in-prolog/1767841#1767841Comment by liori on Working with lists in Prologliori2009-11-20T02:24:02Z2009-11-20T02:24:02ZBTW, you can try to work out how code (both your and mine) work using <code>trace/0</code>. Simply enter <code>trace.</code> in swipl's prompt, launch a query and press enter to do step-by-step go. Use <code>notrace.</code> to stop tracing.http://stackoverflow.com/questions/1767671/working-with-lists-in-prologComment by liori on Working with lists in Prologliori2009-11-20T01:53:51Z2009-11-20T01:53:51ZOk, so the second one :-).