User ypnos - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T13:01:47Zhttp://stackoverflow.com/feeds/user/21974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1786884/iterator-dereferencing-issue/1786906#17869062Answer by ypnos for iterator dereferencing issueypnos2009-11-23T23:52:59Z2009-11-24T00:00:27Z<p>Try <code>(**it).ns_member1</code>.</p>
<p>Otherwise, the dereferencing would be done after trying to evaluate <code>it.ns_member1</code>. It's like <code>3*(1+2)</code> vs <code>3*1+2</code>.</p>
http://stackoverflow.com/questions/1722730/file-paths-in-java-linux/1722793#17227931Answer by ypnos for File paths in Java (Linux)ypnos2009-11-12T14:58:14Z2009-11-12T14:58:14Z<p>You should check the working directory of your application. Perhaps it is not the one you assume and that's why 'src' directory is not present.</p>
<p>An easy check for this is to try the absolute path (only for debugging!).</p>
http://stackoverflow.com/questions/1653816/dynamic-memory-allocation-on-stack/1653820#16538201Answer by ypnos for Dynamic memory allocation on stackypnos2009-10-31T08:55:05Z2009-10-31T08:55:05Z<p>This is legal, but not all compilers support it. At least Visual Studio <= 2003 afaik do not support it.</p>
<p>I would assume it is not Ansi C++, try gcc -ansi -pedantic.</p>
http://stackoverflow.com/questions/1555545/const-correctness-question-in-c/1555621#15556213Answer by ypnos for Const Correctness Question in C++ypnos2009-10-12T16:37:23Z2009-10-12T17:00:46Z<p><code>GetInstance()</code> returns a non-<code>const</code> pointer.
As the function <code>GetInstance()</code> is not bound to the object itself, but class-wide, it may be called from a <code>const</code> function.</p>
<p>Essentially, you have tricked yourself out of the <code>const</code> environment; but then, you could do that from any context/state of your program (privateness of members is not bound to specific objects, only classes). In this scenario, you have to care for a safe usage of the singleton accessors on your own.</p>
http://stackoverflow.com/questions/1550793/windows-api-function-equivalents-setcursorpos-getcursorpos-mouseevent-keybd/1555685#15556850Answer by ypnos for Windows API function equivalents (SetCursorPos, GetCursorPos, mouse_event, keybd_event ...) for Linux (X11)?ypnos2009-10-12T16:50:54Z2009-10-12T16:50:54Z<p>Letting GetCursorPos apart, what you essentially want to do here is to emulate user input, like motion of the mouse pointer to a given location, or mouse button/keyboard input.</p>
<p>This is not part of the standard X11 API. However, the XTest extension provides this functionality and it should come with every decent X11 implementation out there. Another possibility may be the XTrap extension.</p>
<p>Here is the reference of XTest:
<a href="http://www.xfree.org/current/xtestlib.pdf" rel="nofollow">X11 XTEST EXTENSION</a> (PDF)</p>
<p>For GetCursorPos, I don't know of a simple equivalent right now (although I assume it is there). What you can always do, however, is to process motion events, which will tell you where the pointer was moved to, whenever it is moved.</p>
http://stackoverflow.com/questions/1525117/whats-the-fastest-algorithm-for-sorting-a-linked-list/1525130#15251305Answer by ypnos for What's the fastest algorithm for sorting a linked list?ypnos2009-10-06T11:53:43Z2009-10-07T02:34:49Z<p>Mergesort is the best you can do here.</p>
http://stackoverflow.com/questions/725905/best-ways-of-marketing-an-open-source-application-to-users-and-programmers/1472561#14725610Answer by ypnos for Best ways of marketing an open source application to users and programmersypnos2009-09-24T15:49:11Z2009-09-24T15:49:11Z<p>My open source projects catched momentum (and fairly quickly) by the following:</p>
<ul>
<li><p>Release the code on a renowned website like Sourceforge (people see SF and immediately believe in the open-ness of your project).</p></li>
<li><p>Advertize on sites like Freshmeat. Freshmeat has impact on every announcement (for every release, make an announcement!). Basically a lot of user base was created in the 2-3 days after any freshmeat release announcement. Try to find more specialized sites as well, like happypenguin.org for games.</p></li>
<li><p>Find other Open-Source projects or communities which are related and announce on their mailing lists/forums. Be nice and have your message being directed to the specific audience. They will not complain if your project is open source, your audience fits and you keep it in the right tone (and stay responsive to them!)</p></li>
<li><p>Maybe find related IRC channels, and ask people, like "who wants to try my new awesome project related to XYZ?". Often I found single persons interested who then stayed with the project quite a while. A good network for OSS is Freenode.</p></li>
<li><p>Get your software into distributions. This is harder for some than others. For example, for Arch Linux you can package <em>and</em> upload your package yourself (using AUR), then you can announce in the forums and try in IRC: "hey I packaged this awesome new software, somebody want to give it a shot?" For others like Debian, it is harder. You need to find a debian developer willing to maintain your package. On the other hand, there is lots of traffic on Ubuntu forums. <strong>Note that this is the best way to get a large, however less responsive user base.</strong> Thousands of people installed my software, but I only know because of statistics released by Debian, Ubuntu. Btw: the Ubuntu guys even fixed a bug in my software downstream which I adopted upstream. Great!</p></li>
</ul>
<p>And finally: With users come developers. The more impact you get on users in general, the more developers will jump on your boat. You also have to enable this: Have an up to date website, with specific information for developers. Be reachable in easy terms. Communicate on your website what is the best/quickest way to contact you or other developers.</p>
http://stackoverflow.com/questions/1280963/create-glx-context-in-specific-region-of-a-window0Create GLX context in specific region of a windowypnos2009-08-15T02:06:34Z2009-09-21T21:06:57Z
<p>I would like to create an OpenGL context with GLX inside a window. However, I do not want it to span over the whole window region. Instead, it should only cover a subregion.</p>
<p>For example, GLUT provides a function for this behaviour. Also major toolkits like GTK+ or QT provide GL widgets, which are only subregions of X windows. However I need to work low-level.</p>
<p>glXMakeCurrent() accepts a X Drawable identifier. Is it possible to define a Drawable as being a subregion of a window? Or are there other ways to bind the context to a window region?</p>
<p><a href="http://glprogramming.com/blue/ch07.html" rel="nofollow">GLX reference (Blue Book)</a></p>
<p><strong>Edit: Added awesome bounty!</strong></p>
http://stackoverflow.com/questions/1456302/java-make-an-low-quality-image/1456340#14563401Answer by ypnos for Java: make an low quality imageypnos2009-09-21T19:23:37Z2009-09-21T19:23:37Z<p>You have four alternatives for lossy compression:</p>
<ul>
<li>reduce spatial resolution (size)</li>
<li>reduce bitdepth</li>
<li>compress in another domain (JPEG)</li>
<li>a combination of these</li>
</ul>
<p>And you will probably get the best gain with JPEG for rich pictures like photos, and with bitdepth reduction (even down to using 8bit or less palette) on others with less variation in colors. Please note that bitdepth reduction is most effective if combined with lossless compression afterwards, like runlength encoding (did you know that even jpeg uses that?)</p>
http://stackoverflow.com/questions/1450810/linux-vs-windows-programming/1450853#145085362Answer by ypnos for Linux vs Windows Programming?ypnos2009-09-20T11:47:29Z2009-09-20T11:53:58Z<p>The important difference between the two platforms from a developer's point of view is how different parts of them help you to get your job done.</p>
<ul>
<li><p>Under Windows, you have the
swiss-army-knife kindof application
called Visual Studio, an oasis full
of joy inside of developer's desert.</p></li>
<li><p>Under Linux, you live in the land of
the developers. You have a wild
forest of tools that grow on an
extremely fertile ground. However,
the "one tree that does it all" is
missing.</p></li>
</ul>
<p>If you are able to leverage the power of the platform, for example using shell scripts, knowing all the small handy tools etc., then I find developing under Linux being much easier and quicker than under Windows. But if you don't, it has to be harder. Because, and that is true, Visual Studio is severely missing.</p>
<p>I would assume the learning curve therefore is quite tough, as you have to change the <em>way of thinking</em>. There is no button or menu entry for everything. On the other hand, there <strong>cannot</strong> be a button for everything -- this is where Linux wins. I see Windows developers regularly writing 'redundant' code (code that you wouldn't neet to write under Linux as you can just ask your shell to do it for you). On the other hand, I see Linux developers who do redundant hand-work. Me personally, I prefer the linux platform, and new IDEs like QtCreator are promising. (Windows has to do a lot more to catch-up than Linux has)</p>
http://stackoverflow.com/questions/1423521/bash-script-running-current-or-new-instance-of-an-application/1423564#14235641Answer by ypnos for Bash Script - Running current or new instance of an applicationypnos2009-09-14T19:54:02Z2009-09-14T20:11:17Z<p>You can also try a script like this:</p>
<pre><code>#! /bin/bash
user=`id -un`
lock=/tmp/$user-$1-lock
if [ -e $lock ]; then
exit #app is already running
fi
touch $lock
$@
rm $lock
</code></pre>
<p>If you called the script 'runner.sh', you can use it like this:</p>
<pre><code>runner.sh xcalc
</code></pre>
<p>Is for cases where pidof doesn't work. Else go for hacker's solution, which is also more robust.</p>
http://stackoverflow.com/questions/1412197/how-do-i-tell-if-a-c-integer-variable-is-signed/1412237#14122375Answer by ypnos for How do I tell if a C integer variable is signed?ypnos2009-09-11T17:22:51Z2009-09-11T17:31:26Z<pre><code>#define ISVARSIGNED(V) ((-(V) < 0) != ((V) < 0))
</code></pre>
<p>Without destroying the variable's value. But doesn't work for 0 values.</p>
<p>What about:</p>
<pre><code>#define ISVARSIGNED(V) (((V)-(V)-1) < 0)
</code></pre>
http://stackoverflow.com/questions/1409920/calling-a-function-in-child-thread-in-qt/1409982#14099823Answer by ypnos for Calling a function in child thread in Qt?ypnos2009-09-11T09:37:45Z2009-09-11T09:37:45Z<p>Actually your current solution to the problem is quite a nice hack.</p>
<p>If you prefer to do it in a "cleaner" fashion, you should start an event loop in your worker thread. Then the worker thread will be able to receive signals from the main thread. You could call a function in the child thread (using signal/slot mechanism) from the main thread to trigger operation.</p>
<p>See here for more details:
<a href="http://doc.trolltech.com/4.2/threads.html#per-thread-event-loop" rel="nofollow">http://doc.trolltech.com/4.2/threads.html#per-thread-event-loop</a></p>
<p>(Hint: The key idea is that you create the receiving object in the worker thread; then its slots will be processed in that thread; or you could use MoveToThread() function)</p>
http://stackoverflow.com/questions/1340658/fno-omit-frame-pointer-without-optimization/1340770#13407701Answer by ypnos for -fno-omit-frame-pointer without optimizationypnos2009-08-27T12:31:33Z2009-08-27T12:31:33Z<p>As you already imply yourself, <code>-fno-omit-frame-pointer</code> is just ignored in your case, as the frame pointer wouldn't be ommitted anyways in the default -O0.</p>
http://stackoverflow.com/questions/1300243/hibernating-restarting-a-thread/1300282#13002820Answer by ypnos for Hibernating/restarting a threadypnos2009-08-19T14:18:06Z2009-08-19T14:18:06Z<p>As the whole logical address space of the program is part of the thread's context, you would have to hibernate the whole process.</p>
<p>If you can guarantee that the thread only uses local variables, you could save its stack. It is easy to suspend a thread with pthreads, but I don't see how you could access its stack from outside then.</p>
http://stackoverflow.com/questions/1280963/create-glx-context-in-specific-region-of-a-window/1294569#12945691Answer by ypnos for Create GLX context in specific region of a windowypnos2009-08-18T15:17:59Z2009-08-18T15:17:59Z<p>I found this helpful piece of information in a <a href="http://linux.die.net/man/3/glutcreatesubwindow" rel="nofollow">BSD manpage</a>:</p>
<blockquote>
<p>In almost every regard that is important to you, a subwindow is like a top-level window. It has a window id; it has its own set of event callbacks; you can render to it; you are notified of its creation; ...</p>
<p>A subwindow lives inside of some other window (possibly a top-level window, possibly another subwindow). Because of this, it generally only interacts with other windows of your own creation, hence it is not subjected to a window manager. This is the primary source for its differences from a top-level window: </p>
</blockquote>
<p>So I assume that GL widgets in popular toolkits also act in fact as a distinct (sub)window. The interesting part is that this is transparent to the window manager, and therefore the user.</p>
http://stackoverflow.com/questions/1288189/elegant-and-safe-way-to-determine-if-architecture-is-32bit-or-64bit/1288202#12882022Answer by ypnos for Elegant and safe way to determine if architecture is 32bit or 64bitypnos2009-08-17T14:20:27Z2009-08-17T14:20:27Z<p>The most common way is to test <code>sizeof(void*)</code> and <code>sizeof(int)</code> (note that they do not necessarily have to be the same).</p>
<p>Another possibility on x86/x64 CPUs is to test for the 'lm' flag. If it is present the CPU understands the AMD64 instruction set.</p>
http://stackoverflow.com/questions/1226772/can-rdp-clients-launch-remote-applications-and-not-desktops/1284697#12846970Answer by ypnos for Can RDP clients launch remote applications and not desktopsypnos2009-08-16T16:31:01Z2009-08-16T16:31:01Z<p>This is called "seamless" mode. <code>rdesktop</code>, the RDP client for Unix, is capable of this. From the manpage:</p>
<blockquote>
<pre><code> -A Enable SeamlessRDP. In this mode, rdesktop creates a X11 window for each window on the server
side. This mode requires the SeamlessRDP server side component, which is available from
http://www.cendio.com/seamlessrdp/. When using this option, you should specify a startup
shell which launches the desired application through SeamlessRDP.
</code></pre>
</blockquote>
<p>See mentioned <a href="http://www.cendio.com/seamlessrdp/" rel="nofollow">Cendio website</a> for more information.</p>
http://stackoverflow.com/questions/1284055/why-is-rdp-so-fast-compared-to-other-remote-control-software/1284078#12840785Answer by ypnos for Why is RDP so fast compared to other remote control software?ypnos2009-08-16T11:23:40Z2009-08-16T11:23:40Z<p>RDP is a specific protocol which allows to transmit low-level screen drawing operations. It is also aware of pixmap entities on the screen. For example it understands when an icon is drawn and caches it (typically in a lossy compressed format) on the client side.</p>
<p>Other software does not have this low-level access: It waits for the screen to change and then re-transmit a capture of the screen or the changed regions. Whenever the screen changes, a pixmap representation has to be transmitted. Because this is lossy compressed in general, it also looks worse.</p>
http://stackoverflow.com/questions/1257640/boost-program-options-examples/1257657#12576571Answer by ypnos for Boost Program Options Examplesypnos2009-08-10T22:47:50Z2009-08-10T22:47:50Z<p>On Debian systems, you find it in <code>/usr/share/doc/libboost-doc/examples/libs/program_options</code>.
Otherwise, I suggest to download the archive from boost.org and have a look there.</p>
http://stackoverflow.com/questions/1163846/what-is-a-reentrant-kernel/1163946#11639463Answer by ypnos for what is a reentrant kernelypnos2009-07-22T08:52:45Z2009-07-22T09:25:36Z<p>Much simpler answer:</p>
<p><strong>Kernel Re-Entrance</strong></p>
<p>If the kernel is not re-entrant, a process can only be suspended while it is in user mode (to be more precise, it could be suspended in kernel mode, but would block kernel mode execution on all other processes). The reason for this is that all kernel threads share the same memory and corruption would occur if execution would jump between them arbitrarily.</p>
<p>A re-entrent kernel enables processes (or, to be more precise, their corresponding kernel threads) to give away the CPU while in kernel mode, not hindering other processes from also entering kernel mode. A typical use case is IO wait. The process wants to read a file. It calls a kernel function for this. Inside the kernel function, the disk controller is asked for the data. Getting the data will take some time and the function is blocked during that time.
With a re-entrant kernel, the scheduler will assign the CPU to another process (kernel thread) until an interrupt from the disk controller indicates that the data is available and our thread can be resumed. This process can still access IO (which needs kernel functions), like user input. The system stays responsive and CPU time waste due to IO wait is reduced.</p>
<p>This is pretty much standard for today's desktop operating systems.</p>
<p><strong>Kernel pre-emption</strong></p>
<p>Kernel pre-emption does not help in the overall throughput of the system. Instead, it seeks for better responsiveness. </p>
<p>The idea here is that normally kernel functions are only interrupted by hardware causes: Either external interrupts, or IO wait cases, where it voluntarily gives away control to the scheduler. A pre-emptive kernel instead also interrupts and suspends kernel functions just like it would interrupt processes in user mode. The system is more responsive, as processes e.g. handling mouse input, are woken up even while heavy work is done inside the kernel.</p>
<p>Pre-emption on kernel level makes things harder for the kernel developer: The kernel function cannot be suspended only voluntarily or by interrupt handlers (which are somewhat a controlled environment), but also by any other process due to the scheduler. Care has to be taken to e.g. avoid deadlocks: A thread locks ressource A but needing ressource B is interrupted by another thread which locks ressource B, but then needs ressource A.</p>
<p><strong>Take my explanation of pre-emption with a grain of salt.</strong> I'm happy for any corrections.</p>
http://stackoverflow.com/questions/1115633/should-i-use-std-and-boost-prefixes-everywhere/1115640#111564014Answer by ypnos for Should I use std:: and boost:: prefixes everywhere?ypnos2009-07-12T09:31:07Z2009-07-12T09:31:07Z<p><code>Using namespace ...</code> was not invented just for fun.</p>
<p>If you have a good reason to use it, then do so (and the frequent use of stuff from these namespaces is the exact good reason). Don't listen to fanatics who tell you everything they don't want to do for obscure reasons themselves is evil.</p>
<p>However, a good source for reasoning in these regards is C++ FAQ lite:
<a href="http://www.parashift.com/c++-faq-lite/coding-standards.html#faq-27.5" rel="nofollow">http://www.parashift.com/c++-faq-lite/coding-standards.html#faq-27.5</a></p>
<p>I have read it and still decided to use it like you want to. Now you can make your own informed decision :-)</p>
http://stackoverflow.com/questions/1084140/run-qt-application-on-startup-as-linux-daemon/1084162#10841620Answer by ypnos for Run Qt application on startup as Linux daemonypnos2009-07-05T14:26:45Z2009-07-05T14:26:45Z<p>Is your program a GUI application or does it work without GUI?</p>
<p>Why don't you just background it within the init script using &?</p>
http://stackoverflow.com/questions/1083809/how-to-optimize-image-in-java-for-performance/1084126#10841262Answer by ypnos for how to optimize image in java for performance ypnos2009-07-05T14:09:03Z2009-07-05T14:09:03Z<p>To find the right answer to your question, you need to have a look at the images themselves. Are they real world images captured on camera? Or are they synthetic images, like icons or graphs?</p>
<p><strong>Lossy compression</strong> (like JPEG) works very well for real scenes with many gradients and smooth edges. For images with solid colors and hard edges, you have a much higher (even perceived) loss in image quality and less gain in compression rates compared to <strong>lossless compression</strong>.</p>
<p>Basically, established image formats for your domain are <strong>PNG</strong> (Portable Network Graphics) and <strong>JPEG</strong>. PNG images are always compressed lossless, but their compression algorithm works better than competition, i.e. GIF. If the images are well-suited, you gain compression rates comparable to JPEG, if not (like real world images), you gain typical ZIP compression rates (around 50%).</p>
<p>After determining lossy/lossless compression (or a combination, based on picture type -- you could also think of compressing images first in both formats and then compare, if processing time does not matter as much as network througput), you should also take the advantage of <strong>progressive</strong> coding, which is supported both by JPEG and PNG formats.
With progressive coding, basically the data is organized in a way that the more data you receive, the better the quality (other than just sending the images row-by-row). The advantage here is that you can show the image to the user already while it is still being received. However, for this you need a decoder who exposes this functionality.</p>
<p>I don't know about the libraries available in Java for this.</p>
http://stackoverflow.com/questions/1023948/rotate-normal-vector-onto-axis-plane2Rotate normal vector onto axis planeypnos2009-06-21T13:54:50Z2009-06-21T20:32:07Z
<p>I have a set of data points in 3D space which apparently all fall onto a specific plane. I use PCA to compute the plane parameters. The 3rd component of PCA gives me the normal vector of the plane (weakest component).</p>
<p>What I want to do next is to transform all the points onto said plane and look at it in 2D. </p>
<p>My idea was to do the following:</p>
<ul>
<li>Find a center point (average point) on the plane</li>
<li>Substract it from all data points to arrange them around the origin</li>
<li>Rotate the normal so that it becomes (0,0,-1)</li>
<li>Apply this rotation to all data points</li>
<li>Use orthogonal projection (basically, skip z axis)</li>
</ul>
<p>Now I'm stuck at finding the right rotation operation. I tried working with acos or atan and setting up two rotation matrices. Seems both methods (using acos, using atan) give me the wrong result. Perhaps you can help me out here!</p>
<p>Matlab code follows:</p>
<pre><code>b = atan(n(1) / n(2));
rotb = [cos(b) -sin(b) 0; sin(b) cos(b) 0; 0 0 1];
n2 = n * rotb;
a = atan(n(1) / n(3));
rota = [cos(a) 0 sin(a); 0 1 0; -sin(a) 0 cos(a)];
n3 = n2 * rotaows:
</code></pre>
<p>I expect n2 to have y component of zero. However that fails already for the vector (-0.6367, 0.7697, 0.0467).</p>
<p>Thank you for answering this (maybe stupid) question!</p>
http://stackoverflow.com/questions/1023948/rotate-normal-vector-onto-axis-plane/1024128#10241280Answer by ypnos for Rotate normal vector onto axis planeypnos2009-06-21T15:13:04Z2009-06-21T15:13:04Z<p>Although there were other interesting responses, this is the solution we figured out while waiting for answers:</p>
<pre><code>function roti = magic_cosini(n)
b = acos(n(2) / sqrt(n(1)*n(1) + n(2)*n(2)));
bwinkel = b * 360 / 2 / pi;
if (n(1) >= 0)
rotb = [cos(-b) -sin(-b) 0; sin(-b) cos(-b) 0; 0 0 1];
else
rotb = [cos(-b) sin(-b) 0; -sin(-b) cos(-b) 0; 0 0 1];
end
n2 = n * rotb;
a = acos(n2(3) / sqrt(n2(2)*n2(2) + n2(3)*n2(3)));
awinkel = a * 360 / 2 / pi;
rota = [1 0 0; 0 cos(-a) -sin(-a); 0 sin(-a) cos(-a)];
roti = rotb * rota;
</code></pre>
<p>(It's returning a hopefully correct double rotation matrix)</p>
<p>The flaw we had before and fixed here was to esp. deal with the sign of the X component, which was not covered in the cosine computations. This made us rotate in the wrong direction once (rotating with 180° - angle).</p>
<p>I hope I will also find time to try Nosredna's solution! It's always good to avoid trigonometry.</p>
http://stackoverflow.com/questions/1013706/what-is-covered-by-the-not-for-redistribution-clause-in-licenses/1013736#10137360Answer by ypnos for What is covered by the "not for redistribution" clause in licenses?ypnos2009-06-18T16:31:19Z2009-06-18T16:31:19Z<p>You should ask the issuer of the Software about this. Why can't the people of the group get it on their own? Perhaps there lies the answer to your question..</p>
http://stackoverflow.com/questions/995310/can-udp-unicast-client-recvfrom-other-servers-other-than-the-one-sendto/995430#9954302Answer by ypnos for Can UDP (unicast client) recvfrom() other servers other than the one sendto()?ypnos2009-06-15T10:36:44Z2009-06-15T10:36:44Z<p>Yes, this is perfectly possible. The reason for this is that UDP is not stream-based, but packet-based. Every packet is treated without any history (other packets sent or received).</p>
<p>For this reason you may also open a UDP port and then send packets to different hosts from it. However, I do not remember how well this is supported by the API.</p>
http://stackoverflow.com/questions/995281/bus-error-segmentation-fault-for-stdvectorint-declaration/995406#9954061Answer by ypnos for bus error/segmentation fault for std::vector<int> declarationypnos2009-06-15T10:29:15Z2009-06-15T10:29:15Z<p>As it is not possible for us to determine the cause by looking at the code at this stage, you should start working with a debugger on it. I personally recommend <code>valgrind</code>. It is very good at often finding the cause earlier than when the segfault actually occurs.</p>
http://stackoverflow.com/questions/994764/rounding-doubles-5-sprintf/994779#9947795Answer by ypnos for Rounding doubles - .5 - sprintfypnos2009-06-15T06:52:53Z2009-06-15T06:52:53Z<p>It seems you have to use math round function for correct rounding.</p>
<pre><code>printf("%.2lf %.2lf\n", 5.555, round(5.555 * 100.)/100.);
</code></pre>
<p>This gives the following output on my machine:</p>
<pre><code>5.55 5.56
</code></pre>
<p>Note that you also need %lf for printing a double, not only %f.</p>
http://stackoverflow.com/questions/1786888/in-bash-shell-script-how-do-i-convert-a-string-to-an-numberComment by ypnos on In bash shell script how do I convert a string to an numberypnos2009-11-23T23:53:59Z2009-11-23T23:53:59Z0.70, and 0.80, are not integers.http://stackoverflow.com/questions/1734916/limit-the-precision-on-stdcout-of-default-values-in-boostoptionsdescription/1737117#1737117Comment by ypnos on Limit the precision on std::cout of default values in boost::options_descriptionypnos2009-11-17T14:49:54Z2009-11-17T14:49:54ZHi John, unfortunately Christian cannot accept as he didn't register.http://stackoverflow.com/questions/1722730/file-paths-in-java-linux/1722735#1722735Comment by ypnos on File paths in Java (Linux)ypnos2009-11-12T14:56:53Z2009-11-12T14:56:53ZUnder Java '/' works well even on Windows systems, actually Visual c++ handles '/' as well.http://stackoverflow.com/questions/1665419/do-threads-share-the-heap/1665457#1665457Comment by ypnos on Do threads share the heap?ypnos2009-11-03T13:41:13Z2009-11-03T13:41:13Zfork() can serve in many use-cases where threads may be used also. Due to copy-on-write, there is no significant cost difference on Unix systems. Typical use-case is where the worker is autonomous (like web server) from the rest of the service. Another possibility is to communicate through stdin/out with the main thread/program. fork() is strong on Unix, whereas other platforms like Windows prefer threading. The main reason probably is that using fork() is much simpler and safer and Unix has this simplicity philosophy. See for example apache webserver, with its slow transition to threads.http://stackoverflow.com/questions/1559487/how-to-empty-a-char-array/1559510#1559510Comment by ypnos on How to empty a char array?ypnos2009-10-13T11:47:09Z2009-10-13T11:47:09ZNot a better solution. Just a solution to a different problem.http://stackoverflow.com/questions/1554178/how-to-register-fuse-filesystem-type-with-mount8-and-fstabComment by ypnos on How to register FUSE filesystem type with mount(8) and fstab?ypnos2009-10-12T12:53:18Z2009-10-12T12:53:18ZGood question, but not programming related and there is serverfault.com now.http://stackoverflow.com/questions/1461867/why-does-this-work-finding-odd-number-in-cComment by ypnos on why does this work? (finding odd number in c++)ypnos2009-09-22T18:53:40Z2009-09-22T18:53:40Zyou know, i & 1 does the trick too..http://stackoverflow.com/questions/1427711/keep-qpixmap-copy-of-screen-contents-using-x11-xdamage-xrender-and-other-trickComment by ypnos on Keep QPixmap copy of screen contents using X11, XDamage, XRender, and other tricks.ypnos2009-09-22T10:02:32Z2009-09-22T10:02:32ZWhy use XRender instead of XCopyArea? XRender is error prone (if you don't do it exactly the right way, it won't work..)http://stackoverflow.com/questions/1450810/linux-vs-windows-programming/1451589#1451589Comment by ypnos on Linux vs Windows Programming?ypnos2009-09-22T00:13:14Z2009-09-22T00:13:14ZNo need to downvote your rant, although it is unhelpful in many ways and a vote would be easily justified. I told you what's the problem with your answer, others did as well. It is not your opinion. It is just the rant character. If you want to rant, why not start a blog. See, I just told you what's wrong if your answer, your thank-you is to bash me. The rest of my comment was not about your answer, it was about <i>comments</i>. Somebody writes "if vi is too complicated, use other <i>easier</i> tools, which work with mouse" you respond "vi its too complicated, I want to work with mouse"... aaalright..http://stackoverflow.com/questions/1280963/create-glx-context-in-specific-region-of-a-window/1456859#1456859Comment by ypnos on Create GLX context in specific region of a windowypnos2009-09-22T00:00:28Z2009-09-22T00:00:28ZHow to create a child window of the root window that really is not a top level window?http://stackoverflow.com/questions/1456021/what-is-a-good-live-cd-distribution-that-could-be-used-as-the-base-for-my-linux-pComment by ypnos on What is a good live-cd distribution that could be used as the base for my linux program?ypnos2009-09-21T19:26:34Z2009-09-21T19:26:34Znope I don't think so.http://stackoverflow.com/questions/1456056/good-way-to-hash-256-bit-values-in-cComment by ypnos on Good way to hash 256-bit values in C++?ypnos2009-09-21T18:30:57Z2009-09-21T18:30:57Zstd::map is O(n*log(n))http://stackoverflow.com/questions/1454407/macros-to-disallow-class-copy-and-assignment-google-vs-qt/1454423#1454423Comment by ypnos on Macros to disallow class copy and assignment. Google -vs- Qtypnos2009-09-21T15:30:13Z2009-09-21T15:30:13ZI don't see how this makes my answer wrong or unhelpful. In fact others state the same.http://stackoverflow.com/questions/1454407/macros-to-disallow-class-copy-and-assignment-google-vs-qt/1454423#1454423Comment by ypnos on Macros to disallow class copy and assignment. Google -vs- Qtypnos2009-09-21T13:08:09Z2009-09-21T13:08:09ZPlease state the reason for downvote, thx.http://stackoverflow.com/questions/1450810/linux-vs-windows-programming/1450853#1450853Comment by ypnos on Linux vs Windows Programming?ypnos2009-09-21T12:17:12Z2009-09-21T12:17:12ZYou raise an interesting question. You carry over open source technologies that originated on the Linux platform to Windows. It is totally valid and if you pursue this, you may end up getting a similiar productive environment -- essentially what you are doing is bringing in a full POSIX system with GNU toolchain etc. The question is, am I willing to do this instead of just putting an Ubuntu CD into the drive, so that I get the whole package? Essentially, I would say you talk about option 3 here: Linux vs Windows vs "Cygwin/GNU/X11/... on Windows". The "catch up" would be to have this natively.