User zvrba - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:00:59Z http://stackoverflow.com/feeds/user/2583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119414/how-would-you-unittest-a-memory-allocator 5 How would you unittest a memory allocator? zvrba 2008-09-23T06:36:32Z 2009-11-24T12:55:00Z <p>There's a lot of people today who sell unittesting as bread-and-butter of development. That might even work for strongly algorithmically-oriented routines. However, how would you unit-test, for example, a memory allocator (think malloc()/realloc()/free()). It's not hard to produce a working (but absolutely useless) memory allocator that satisfies the specified interface. But how to provide the proper context for unit-testing functionality that is absolutely desired, yet not part of the contract: coalescing free blocks, reusing free blocks on next allocations, returning excess free memory to the system, asserting that the allocation policy (e.g. first-fit) really is respected, etc.</p> <p>My experience is that assertions, even if complex and time-consuming (e.g. traversing the whole free list to check invariants) are much less work and are more reliable than unit-testing, esp. when coding complex, time-dependent algorithms.</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1742370/how-to-create-a-symbol-table-in-c-without-hashing/1742411#1742411 0 Answer by zvrba for How to create a symbol table in C without hashing? zvrba 2009-11-16T14:13:25Z 2009-11-16T14:13:25Z <p>Yes, linked list is one of the simplest ways of implementing a symbol table.</p> http://stackoverflow.com/questions/1723361/is-user-sys-time-equal-to-real-wall-clock-time/1723431#1723431 9 Answer by zvrba for Is user + sys time equal to real/wall clock time? zvrba 2009-11-12T16:17:08Z 2009-11-12T20:00:59Z <p>No, it is not. User and system time account only for used CPU time. While the program is asleep, real time still passes, but the user and system time stand still. Also, on multi-CPU systems, it may well happen that user+system is <em>greater</em> than real time.</p> http://stackoverflow.com/questions/1322018/bit-manipulation-library-for-ansi-c/1322202#1322202 1 Answer by zvrba for Bit manipulation library for ANSI C zvrba 2009-08-24T12:50:00Z 2009-08-24T12:50:00Z <p>Maybe the <a href="http://www.jjj.de/fxt/" rel="nofollow">algorithms</a> from the "FXT" book (link at the bottom of the page) will be useful.</p> http://stackoverflow.com/questions/1281859/unix-timestamp-to-mysql-datetime/1281880#1281880 1 Answer by zvrba for UNIX Timestamp to MySQL DATETIME zvrba 2009-08-15T13:20:52Z 2009-08-15T13:20:52Z <ol> <li>use alter table to create a new column (eg. time2) with the datetime type in the same table</li> <li>update stats set time2=from_unixtime(time);</li> <li>use alter table to a) delete the time column, and b) rename the time2 to time.</li> </ol> http://stackoverflow.com/questions/1242400/how-to-use-make-to-use-64-bit-libs-because-of-elfclass64-error/1251945#1251945 0 Answer by zvrba for How to use "make" to use 64 bit libs because of ELFCLASS64 error zvrba 2009-08-09T18:35:58Z 2009-08-09T18:35:58Z <p>Maybe the runtime linker's library path is wrong. Does the directory /opt/lampp/lib64 exist? Is lampp a shell script? If so, to what value (and whether) does it set the LD_LIBRARY_PATH variable? </p> http://stackoverflow.com/questions/1224097/apis-for-accessing-intel-txt-trusted-execution-mode-or-amd-svm 0 APIs for accessing Intel TXT (trusted execution mode) or AMD SVM ? zvrba 2009-08-03T19:10:02Z 2009-08-04T21:51:53Z <p>Do any current operating systems (windows, linux, BSD) provide drivers that enable user-mode programs to execute partly in the trusted execution mode (isolated from everything else running on the computer)? If so, where can the documentation be found?</p> http://stackoverflow.com/questions/1224021/what-should-every-web-developer-know-about-encryption/1224090#1224090 6 Answer by zvrba for What should every web developer know about encryption? zvrba 2009-08-03T19:07:22Z 2009-08-03T19:07:22Z <p>Where to learn about security: get Schneier's book <a href="http://www.schneier.com/book-applied.html" rel="nofollow">Applied Cryptography</a>.</p> http://stackoverflow.com/questions/1224042/c-returning-a-pointer-to-an-automatic-variable/1224074#1224074 2 Answer by zvrba for C: Returning a pointer to an automatic variable zvrba 2009-08-03T19:04:37Z 2009-08-03T19:04:37Z <p>It will not cause memory leak, but it will cause undefined behavior. This case is particularly dangerous because the pointer will point somewhere in the program's stack, and if you use it, you will be accessing random data. Such pointer, when written through, can also be used to compromise program security and make it execute arbitrary code.</p> http://stackoverflow.com/questions/1215949/cake-comparison-algorithm/1216115#1216115 2 Answer by zvrba for Cake Comparison Algorithm zvrba 2009-08-01T07:56:07Z 2009-08-01T07:56:07Z <p>Perhaps reading about <a href="http://en.wikipedia.org/wiki/Voting%5Fsystem" rel="nofollow">voting systems</a> will be helpful. PS: don't take whatever is written on Wikipedia as "good fish". I have found factual errors in advanced topics there.</p> http://stackoverflow.com/questions/127137/sample-code-for-r/127147#127147 14 Answer by zvrba for Sample Code for R? zvrba 2008-09-24T13:33:48Z 2009-07-23T18:50:32Z <p>Why not look at <a href="http://www.r-project.org" rel="nofollow">www.r-project.org</a> under documentation and read at least the introduction? The language is sufficiently different from what you're used to that just looking at code samples won't be enough for you to pick it up. (At least, not beyond basic calculator-like functionality.)</p> <p>If you want to look a bit deeper, you might want to look at <a href="http://cran.r-project.org" rel="nofollow">CRAN</a>: an online collection of R modules with source code: <a href="http://cran.r-project.org" rel="nofollow">cran.r-project.org</a></p> http://stackoverflow.com/questions/1148294/bigint-for-standard-ml-nj/1148355#1148355 4 Answer by zvrba for BigInt for Standard ML/NJ zvrba 2009-07-18T19:24:52Z 2009-07-18T19:24:52Z <p>Yes, see the <a href="http://www.standardml.org/Basis/int-inf.html#IntInf:STR:SPEC" rel="nofollow">IntInf</a> structure.</p> http://stackoverflow.com/questions/1133408/continue-in-nested-while-loops/1133531#1133531 -1 Answer by zvrba for Continue in nested while loops zvrba 2009-07-15T19:41:41Z 2009-07-15T19:41:41Z <p>Use an own exception type, e.g., MyException. Then:</p> <pre><code>while { try { // outer loop while { // inner loop try { throw; } catch { // how do I continue on the outer loop from here? throw MyException; } } } catch(MyException) { ; } } </code></pre> <p>This will work for continuing and breaking out of several levels of nested while statements. Sorry for bad formatting ;)</p> http://stackoverflow.com/questions/1087204/how-can-i-tell-if-a-file-is-open-elsewhere-in-c-on-linux/1087275#1087275 0 Answer by zvrba for How can I tell if a file is open elsewhere in C on Linux? zvrba 2009-07-06T14:26:48Z 2009-07-06T14:26:48Z <p>If you are in control of both producer and consumer, you could use lockf() of flock() to lock the file.</p> http://stackoverflow.com/questions/1084594/where-is-interlockedread/1084734#1084734 2 Answer by zvrba for Where is InterlockedRead? zvrba 2009-07-05T20:10:42Z 2009-07-05T20:10:42Z <p>I think that your interpretation of "not synchronized" is wrong. Simple reads <em>are</em> atomic, but you have to take care of reordering and memory visibility issues yourself. The former is handled by using fence instructions at appropriate places, the latter is a non-issue with read (but a potential concurrent write has to ensure proper visibility, which Interlocked functions <em>should</em> do <em>if</em> they map to LOCKED asm instructions).</p> http://stackoverflow.com/questions/1081519/why-does-c-use-pointers/1081605#1081605 5 Answer by zvrba for Why does C++ use pointers? zvrba 2009-07-04T05:49:15Z 2009-07-04T05:49:15Z <p>You're mixing up pointer arithmetic with immutable pointers, AKA, <strong>references</strong>. All of these languages, including Java, which you didn't mention, do have references. References are slightly less powerful than pointers, but you won't notice this until you get to the stage where you need pointer arithmetic or double or triple pointers. But, under the hood, references <em>are</em> really the same thing as pointers, just that the language won't let you do whatever you want to them (i.e., they're not first-class objects). </p> <p>Consider this python code:</p> <pre><code>class X: z=13 y=X() def f(aa): aa.z = aa.z+1 print(y.z) f(y) print(y.z) </code></pre> <p>f() changes the value of y.z, and this is exactly what would happen in the corresponding C or C++ code written with pointers.</p> http://stackoverflow.com/questions/685761/emms-instuction-execution-time/1070601#1070601 0 Answer by zvrba for EMMS instuction execution time? zvrba 2009-07-01T18:19:35Z 2009-07-01T18:19:35Z <p>You need a serializing instruction, such as CPUID, to ensure that RDTSC is not executed out of order. You can read more <a href="http://en.wikipedia.org/wiki/Time%5FStamp%5FCounter" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe/1023358#1023358 0 Answer by zvrba for Finding current executable's path without /proc/self/exe zvrba 2009-06-21T07:14:44Z 2009-06-21T07:14:44Z <p>AFAIK, no such way. And there is also an ambuiguity: what would you like to get as the answer if the same executable has multiple hard-links "pointing" to it? (Hard-links don't actually "point", they <em>are</em> the same file, just at another place in the FS hierarchy.) Once execve() successfully executes a new binary, all information about its arguments is lost.</p> http://stackoverflow.com/questions/902038/lua-vs-other-scripting-languages/902052#902052 0 Answer by zvrba for Lua vs. Other scripting languages zvrba 2009-05-23T17:53:32Z 2009-05-23T17:53:32Z <p>First and foremost: where did you see this claim about speed?</p> <p>Anyway, a wild guess: a simpler and smaller language, with cleaner semantics and a small number of orthogonal mechanisms eliminates many special cases that a larger language, such as Python, must handle.</p> http://stackoverflow.com/questions/891554/aix-xlc-implementation-of-stl-significantly-slower-than-other-platforms/891657#891657 0 Answer by zvrba for AIX xlC implementation of STL significantly slower than other platforms? zvrba 2009-05-21T06:47:52Z 2009-05-21T06:47:52Z <p>I suspect a suboptimal memory allocation strategy. What happens if you add</p> <pre><code>vec.reserve(10000); </code></pre> <p>before the for-loop?</p> http://stackoverflow.com/questions/879603/how-do-i-remove-an-element-of-an-array-and-shift-the-reamining-elements-down/879633#879633 3 Answer by zvrba for how do i remove an element of an array and shift the reamining elements down zvrba 2009-05-18T20:28:49Z 2009-05-18T20:28:49Z <p>You can't achieve what you want with arrays. Use vectors instead, and read about the std::remove algorithm. Something like:</p> <pre><code>std::remove(array, array+5, 3) </code></pre> <p>will work on your array, but it will not shorten it (why -- because it's impossible). With vectors, it'd be something like</p> <pre><code>v.erase(std::remove(v.begin(), v.end(), 3), v.end()) </code></pre> http://stackoverflow.com/questions/869744/how-to-write-a-scalable-tcp-ip-based-server/873983#873983 2 Answer by zvrba for How to write a scalable Tcp/Ip based server zvrba 2009-05-17T05:56:15Z 2009-05-17T05:56:15Z <p>You can find a nice overview of techniques at the <a href="http://www.kegel.com/c10k.html" rel="nofollow">C10k problem page</a>.</p> http://stackoverflow.com/questions/871234/circular-lock-free-buffer/871773#871773 3 Answer by zvrba for Circular lock-free buffer zvrba 2009-05-16T05:29:44Z 2009-05-16T05:29:44Z <p>I would agree with <a href="http://queue.acm.org/detail.cfm?id=1454462" rel="nofollow">this article</a> and recommend against using lock-free data structures. A relatively recent paper on lock-free fifo queues is <a href="http://www.cs.chalmers.se/~tsigas/papers/latest-spaa01.ps.gz" rel="nofollow">this</a>, search for further papers by the same author(s); there's also a PhD thesis on Chalmers regarding lock-free data structures (I lost the link). However, you did not say how large your elements are -- lock-free data structures work efficiently only with word-sized items, so you'll have to dynamically allocate your elements if they're larger than a machine word (32 or 64 bits). If you dynamically allocate elements, you shift the (supposed, since you haven't profiled your program and you're basically doing premature optimization) bottleneck to memory allocator, so you need a lock-free memory allocator, e.g., <a href="http://people.cs.vt.edu/~scschnei/streamflow/" rel="nofollow">Streamflow</a>, and integrate it with your application. </p> http://stackoverflow.com/questions/871388/why-are-ssl-certs-self-signed-if-they-have-no-real-signature/871750#871750 0 Answer by zvrba for Why are SSL certs self-signed if they have no real signature zvrba 2009-05-16T05:16:09Z 2009-05-16T05:16:09Z <p>Certificate contains the server's public key. Self-signature is a proof that whoever generated the certificate also posseses the private key.</p> http://stackoverflow.com/questions/814823/how-do-i-refer-to-a-global-variable-in-a-dynamically-linked-library/814857#814857 1 Answer by zvrba for How do I refer to a global variable in a dynamically linked library? zvrba 2009-05-02T13:18:31Z 2009-05-02T13:18:31Z <p>Yes, I believe you have to go through GOT to address private data. See section 9.2 <a href="http://www.nasm.us/doc/" rel="nofollow">here</a>. Although NASM is x86 assembler, the general principles should be the same also on SPARC/Solaris.</p> <p>Also, AT&amp;T assemblers usually use '@got' syntax to specify relocation wrt. GOT. The exact details will be described in your assembler manual, i.e., the syntax details of NASM will not work with Solaris' assembler.</p> http://stackoverflow.com/questions/814159/mips-syscall-eof-cant-read-the-entire-file/814182#814182 0 Answer by zvrba for Mips syscall + eof = can't read the entire file? zvrba 2009-05-02T05:05:20Z 2009-05-02T05:05:20Z <p>Try opening the file in binary mode.</p> http://stackoverflow.com/questions/810923/where-is-java-going/811107#811107 0 Answer by zvrba for Where is Java going? zvrba 2009-05-01T12:01:14Z 2009-05-01T12:01:14Z <p>Java was never "innovative". It began as a crippled, "programmer-friendly" version of C++, and then started to slowly reintroduce missing features which have been existing in other programming languages for a looong time. Only that those decades-old "novelties" were mangled in order to make them fit into the limitations of the JVM.</p> <p>But maybe I misunderstand your notion of "innovative".</p> http://stackoverflow.com/questions/790537/question-about-lgpl-gpl-licensing/790550#790550 0 Answer by zvrba for Question about LGPL/GPL licensing zvrba 2009-04-26T09:31:07Z 2009-04-26T09:31:07Z <p>I am not a lawyer, but.. as long as you do not distribute the program (making it available for use as web app is not distribution), you do not have to release the source for anything.</p> http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789104#789104 0 Answer by zvrba for Expressing an integer as a series of multipliers zvrba 2009-04-25T15:16:02Z 2009-04-25T15:16:02Z <p>Just set x:=x/n where n is the <em>largest</em> number that is less both than x and y. When you end up with x&lt;=y, this is your last number in the sequence.</p> http://stackoverflow.com/questions/403687/switching-ok-cancel-and-cancel-ok-to-enforce-user-interaction/765958#765958 0 Answer by zvrba for Switching OK-Cancel and Cancel-OK to enforce user interaction? zvrba 2009-04-19T19:45:58Z 2009-04-19T19:45:58Z <p>Why not reformulate the UI to make the OK the "safe choice"?</p> http://stackoverflow.com/questions/1321467/which-programming-technique-helps-you-most-to-avoid-or-resolve-bugs-before-they-c/1321479#1321479 Comment by zvrba on Which programming technique helps you most to avoid or resolve bugs before they come into production zvrba 2009-08-24T14:09:28Z 2009-08-24T14:09:28Z Yes, asserts are a life-saver when used properly. http://stackoverflow.com/questions/1251791/what-are-the-limits-of-type-checking-and-type-systems/1251840#1251840 Comment by zvrba on What are the limits of type checking and type systems? zvrba 2009-08-09T17:53:19Z 2009-08-09T17:53:19Z That's not a problem at all. Haskell is a statically, strongly-typechecked language and it is possible to make a function composition operator. See, for example, definition of the dot (.) operator on this page: <a href="http://www.uni-bonn.de/~manfear/haskell-functions.php" rel="nofollow">uni-bonn.de/~manfear/haskell-functions.php/&hellip;</a> http://stackoverflow.com/questions/1215949/cake-comparison-algorithm/1216115#1216115 Comment by zvrba on Cake Comparison Algorithm zvrba 2009-08-01T16:25:40Z 2009-08-01T16:25:40Z It's a Norwegian idiom... I googled a bit and it doesn't appear to be an English idiom :/ You got the point anyway :) http://stackoverflow.com/questions/1133408/continue-in-nested-while-loops/1133425#1133425 Comment by zvrba on Continue in nested while loops zvrba 2009-07-15T19:34:53Z 2009-07-15T19:34:53Z This is problematic because the separate metod will not have access to existing local variables. http://stackoverflow.com/questions/135637/what-are-some-interesting-small-linux-kernel-projects-to-help-learn-the-source/135711#135711 Comment by zvrba on What are some interesting, small Linux kernel projects to help learn the source? zvrba 2009-07-08T13:50:57Z 2009-07-08T13:50:57Z Is this good enough citation: <a href="http://www.linuxtoday.com/news_story.php3?ltsn=2000-09-07-002-21-OS-CY-KN" rel="nofollow">linuxtoday.com/news_story.php3?ltsn=2000-09-07-00&hellip;</a> http://stackoverflow.com/questions/1084594/where-is-interlockedread/1084734#1084734 Comment by zvrba on Where is InterlockedRead? zvrba 2009-07-07T14:12:33Z 2009-07-07T14:12:33Z The thread starting with this post may also be insightful: <a href="http://newsgroups.derkeiler.com/Archive/Comp/comp.programming.threads/2006-03/msg00003.html" rel="nofollow">newsgroups.derkeiler.com/Archive/Comp/&hellip;</a> http://stackoverflow.com/questions/1084594/where-is-interlockedread/1084734#1084734 Comment by zvrba on Where is InterlockedRead? zvrba 2009-07-07T14:09:52Z 2009-07-07T14:09:52Z AFAIK, bus transactions can be larger than 32 bits even on 32-bit x86. You could use 64-bit floating-point or MMX loads to read a 64-bit value atomically if the value is aligned to 64-bits. (from assembly. it's probably not possible within CLR due to many ugly casts that would be involved.) http://stackoverflow.com/questions/1087204/how-can-i-tell-if-a-file-is-open-elsewhere-in-c-on-linux/1087234#1087234 Comment by zvrba on How can I tell if a file is open elsewhere in C on Linux? zvrba 2009-07-06T14:25:13Z 2009-07-06T14:25:13Z Yes, he can also use inotify to detect that a file has been closed. http://stackoverflow.com/questions/1087204/how-can-i-tell-if-a-file-is-open-elsewhere-in-c-on-linux/1087232#1087232 Comment by zvrba on How can I tell if a file is open elsewhere in C on Linux? zvrba 2009-07-06T14:20:50Z 2009-07-06T14:20:50Z This will not work, he needs to find out whether <i>another</i> program has a file open. http://stackoverflow.com/questions/1084594/where-is-interlockedread/1084734#1084734 Comment by zvrba on Where is InterlockedRead? zvrba 2009-07-06T14:17:52Z 2009-07-06T14:17:52Z This is an answer -- interlocked read (whatever that might be) is not necessary. http://stackoverflow.com/questions/245742/examples-of-good-gotos-in-c-or-c/246027#246027 Comment by zvrba on Examples of good gotos in C or C++ zvrba 2009-06-29T17:08:29Z 2009-06-29T17:08:29Z Which assumptions? His examples are as real today for a procedural language as C (he gives them in some pseudo-code) as they were at that time. http://stackoverflow.com/questions/132241/hidden-features-of-c/132509#132509 Comment by zvrba on Hidden features of C zvrba 2009-06-12T18:52:55Z 2009-06-12T18:52:55Z I said that the standard should have provided <i>library</i> support for checking for arithmetic overflow. Now, how can a library routine incur a performance hit if you never use it? http://stackoverflow.com/questions/971802/how-can-i-put-a-pointer-on-the-pipe/971818#971818 Comment by zvrba on How can I put a pointer on the pipe? zvrba 2009-06-09T21:04:41Z 2009-06-09T21:04:41Z Passing a pointer to shared memory won't work because the shared memory segment is not necessarily mapped at the same base address in both processes. http://stackoverflow.com/questions/962007/what-one-feature-would-you-cut-from-your-favorite-language/962380#962380 Comment by zvrba on What one feature would you cut from your favorite language? zvrba 2009-06-07T18:09:32Z 2009-06-07T18:09:32Z Fallthrough is not nonsense; I've found it quite handy in some situations. http://stackoverflow.com/questions/932519/opening-a-file-on-unix-using-c/932571#932571 Comment by zvrba on Opening a file on unix using c++ zvrba 2009-05-31T18:51:45Z 2009-05-31T18:51:45Z +1, I didn't know about wordexp.