User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T02:21:00Zhttp://stackoverflow.com/feeds/user/42412http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/325628/race-condition-in-the-common-lock-on-file/1571711#15717110Answer by jpastuszek for race condition in the common lock on file?jpastuszek2009-10-15T11:14:12Z2009-10-15T11:14:12Z<p>Try flock command:</p>
<pre><code>exec 200>"$LOCK_FILE"
flock -e -n 200 || exit 1
</code></pre>
<p>It will exit if the lock file is locked. It is atomic and it will work over recent version of NFS.</p>
<p>I did a test. I have created a counter file with 0 in it and executed the following in a loop on two servers simultaneously 500 times:</p>
<pre><code>#!/bin/bash
exec 200>/nfs/mount/testlock
flock -e 200
NO=`cat /nfs/mount/counter`
echo "$NO"
let NO=NO+1
echo "$NO" > /nfs/mount/counter
</code></pre>
<p>One node was fighting with the other for the lock. When both runs finished the file content was 1000. I have tried multiple times and it always works!</p>
<p>Note: NFS client is RHEL 5.2 and server used is NetApp.</p>
http://stackoverflow.com/questions/1421671/when-are-static-c-class-members-initialized/1422023#14220231Answer by jpastuszek for When are static C++ class members initialized?jpastuszek2009-09-14T14:46:24Z2009-09-14T14:46:24Z<p>This post looks related: <a href="http://stackoverflow.com/questions/211237/c-static-variables-initialisation-order">C++ - static variables initialisation order</a></p>
http://stackoverflow.com/questions/1410160/ruby-proccall-vs-yield/1410176#14101762Answer by jpastuszek for Ruby: Proc#call vs yieldjpastuszek2009-09-11T10:31:21Z2009-09-11T12:01:51Z<p>I think the first one is actually a syntactic sugar of the other. In other words there is no behavioural difference.</p>
<p>What the second form allows though is to "save" the block in a variable. Then the block can be called at some other point in time - callback.</p>
<p><hr /></p>
<p>Ok. This time I went and did a quick benchmark:</p>
<pre><code>require 'benchmark'
class A
def test
10.times do
yield
end
end
end
class B
def test(&block)
10.times do
block.call
end
end
end
Benchmark.bm do |b|
b.report do
a = A.new
10000.times do
a.test{ 1 + 1 }
end
end
b.report do
a = B.new
10000.times do
a.test{ 1 + 1 }
end
end
b.report do
a = A.new
100000.times do
a.test{ 1 + 1 }
end
end
b.report do
a = B.new
100000.times do
a.test{ 1 + 1 }
end
end
end
</code></pre>
<p>The results are interesting:</p>
<pre><code> user system total real
0.090000 0.040000 0.130000 ( 0.141529)
0.180000 0.060000 0.240000 ( 0.234289)
0.950000 0.370000 1.320000 ( 1.359902)
1.810000 0.570000 2.380000 ( 2.430991)
</code></pre>
<p>This shows that using <strong>block.call</strong> is almost 2x slower than using <strong>yield</strong>.</p>
http://stackoverflow.com/questions/1366761/how-do-i-find-a-dimension-of-aspect-ratio-43-which-fits-within-a-predetermined-s/1366862#13668621Answer by jpastuszek for How do I find a dimension of aspect ratio 4:3 which fits within a predetermined size?jpastuszek2009-09-02T10:14:57Z2009-09-02T10:14:57Z<pre><code> struct dimensions resize_to_fit_in(struct dimensions a, struct dimensions b) {
double wf, hf, f;
struct dimensions out;
wf = (double) b.w / a.w;
hf = (double) b.h / a.h;
if (wf > hf)
f = hf;
else
f = wf;
out.w = a.w * f;
out.h = a.h * f;
return out;
}
</code></pre>
<p>An here is a C version where the returned dimension will be a dimension 'a' fitted in dimension 'b' without loosing aspect ratio.</p>
http://stackoverflow.com/questions/488837/how-do-i-create-a-gui-for-a-windows-application-using-c/492269#4922690Answer by jpastuszek for How do I create a GUI for a windows application using C++?jpastuszek2009-01-29T16:10:12Z2009-01-29T16:10:12Z<p>I have used wxWidgets for small project and I loved it. Qt is another good choice but for commercial use you would probably need to buy a licence.
If you write in C++ don't use Win32 API as you will end up making it object oriented. This is not easy and time consuming. Also Win32 API has too many macros and feels over complicated for what it offers.</p>
http://stackoverflow.com/questions/168805/what-real-life-good-habits-has-programming-given-you/333742#3337421Answer by jpastuszek for What real life good habits has programming given you?jpastuszek2008-12-02T11:59:26Z2008-12-02T11:59:26Z<p>Logical and calm approach to real live problems. Also I tend to optimize things I do like shopping or even how I park my bike. Also I like to keep things in order so I don't waste time later on.</p>
http://stackoverflow.com/questions/1410160/ruby-proccall-vs-yield/1410176#1410176Comment by on Ruby: Proc#call vs yield2009-09-11T15:24:11Z2009-09-11T15:24:11ZI did mine on MRI 1.8.7p174 x86_64-linux.