User eliben - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T21:06:00Z http://stackoverflow.com/feeds/user/8206 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1916722/resizing-of-button-icons-in-pyqt4/1916781#1916781 0 Answer by eliben for resizing of button icons in pyqt4 eliben 2009-12-16T18:46:03Z 2009-12-16T18:54:53Z <p>Qt won't stretch your image for you - and it's best this way. I recommend to keep the pushbutton of a constant size by adding stretchers to the layout holding it. A resizable pushbutton isn't very appealing visually, and is uncommon in GUIs, anyway.</p> <p>To make a clickable image, here's the simplest code I can think of:</p> <pre><code>import sys from PyQt4.QtCore import * from PyQt4.QtGui import * class ImageLabel(QLabel): def __init__(self, image, parent=None): super(ImageLabel, self).__init__(parent) self.setPixmap(image) def mousePressEvent(self, event): print 'I was pressed' class AppForm(QMainWindow): def __init__(self, parent=None): QMainWindow.__init__(self, parent) self.create_main_frame() def create_main_frame(self): name_label = QLabel("Here's a clickable image:") img_label = ImageLabel(QPixmap('image.png')) vbox = QVBoxLayout() vbox.addWidget(name_label) vbox.addWidget(img_label) main_frame = QWidget() main_frame.setLayout(vbox) self.setCentralWidget(main_frame) if __name__ == "__main__": app = QApplication(sys.argv) form = AppForm() form.show() app.exec_() </code></pre> <p>Just replace <code>image.png</code> with your image filename (acceptable format by QPixmap) and you're set.</p> http://stackoverflow.com/questions/1912106/nominal-case-first-vs-positive-boolean-expressions/1912144#1912144 1 Answer by eliben for Nominal case first vs. Positive boolean expressions eliben 2009-12-16T03:50:35Z 2009-12-16T03:50:35Z <p>What are you going to check for more - being <code>alive</code> or <code>dead</code>. If the scale tilts significantly towards one of them, you should name the predicate method accordingly. </p> <p>As for placing nominal or positive cases first, I'd go with the nominal. It's not that hard to figure out <code>!dead</code> as being alive or vice versa, but it's always nice to see the main flow of execution first and the exceptional cases later.</p> http://stackoverflow.com/questions/1898900/question-about-passing-a-variable-created-in-a-function/1898915#1898915 0 Answer by eliben for Question about passing a variable created in a function eliben 2009-12-14T04:25:21Z 2009-12-14T15:47:52Z <p>It can be as simple as this:</p> <pre><code>struct message { void* data; } msgG; void fun2(struct message the_msg) { /* access the_msg.data */ } void fun1() { struct message *ptr; ptr = malloc(sizeof(struct message)); ptr-&gt;data = ... /* initialize it to something */ fun2(*ptr); } </code></pre> <p>But this way, <code>fun2</code> won't be able to manipulate <code>the_msg</code>, because it's passed a copy of the structure by-value. It will be able to manipulate the stuff pointed to by the <code>data</code> pointer inside <code>the_msg</code>, because that's a pointer.</p> <p>If you want to manipulate the contents of <code>the_msg</code> itself, such as retarget the <code>data</code> pointer, <code>fun2</code> should accept a pointer to <code>message</code> (a double pointer is unnecessary for this).</p> <p><strong>And a global variable is almost always a bad solution. Don't use it.</strong></p> http://stackoverflow.com/questions/218717/what-is-a-good-open-source-pastebin-in-python-or-perl 7 What is a good open source pastebin in Python or Perl? eliben 2008-10-20T14:54:02Z 2009-12-14T06:51:57Z <p>Hello,</p> <p>I'm looking for an open-source pastebin web-application written in either Python or Perl. I need it in order to implement a web-based specialized editor for my own needs, and I want to borrow code / ideas from the pastebin since I don't have much experience in web programming.</p> <p>Can you point to one (or a few) ?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1898834/why-would-one-use-movl-1-eax-as-opposed-to-say-movb-1-eax/1898883#1898883 0 Answer by eliben for Why would one use "movl $1, %eax" as opposed to, say, "movb $1, %eax" eliben 2009-12-14T04:15:17Z 2009-12-14T04:15:17Z <p><code>%eax</code> is 32 bits on 32-bit machines. <code>%ax</code> is 16 bits, and <code>%ah</code> and <code>%al</code> are its 8-bit high and low constituents. </p> <p>Therefore <code>movl</code> is perfectly valid here. Efficiency-wise, <code>movl</code> will be as fast as <code>movb</code>, and zeroing out the high 3 bytes of <code>%eax</code> is often a desirable property. You might want to use it as a 32-bit value later, so <code>movb</code> isn't a good way to move a byte there.</p> http://stackoverflow.com/questions/1898823/unit-testing-c-library-memory-management/1898869#1898869 1 Answer by eliben for Unit testing C library, memory management. eliben 2009-12-14T04:11:12Z 2009-12-14T04:11:12Z <p>Another idea is to try and fill the buffer created by <code>malloc</code> to maximal size, and then run your test suite with Valgrind. This should surface allocation problems. Running it with Valgrind is helpful for other things as well, such as detecting memory leaks.</p> http://stackoverflow.com/questions/1898847/improving-strcmp-function/1898855#1898855 1 Answer by eliben for Improving strcmp function eliben 2009-12-14T04:07:43Z 2009-12-14T04:07:43Z <p>Here's a canonical implementation from OpenBSD:</p> <pre><code>/* * Compare strings. */ int strcmp(const char *s1, const char *s2) { while (*s1 == *s2++) if (*s1++ == 0) return (0); return (*(unsigned char *)s1 - *(unsigned char *)--s2); } </code></pre> <p>Please tell us where you see a problem</p> http://stackoverflow.com/questions/1898788/long-long-int-compilation-error-in-vc-6-0/1898818#1898818 1 Answer by eliben for long long int compilation error in vc++ 6.0 eliben 2009-12-14T03:55:33Z 2009-12-14T03:55:33Z <p>AFAIK Visual C++ 6.0 only supports <code>__int64</code> (Microsoft's own type definition for 64-bit integers). <code>long long</code> is a standard type from C99, which 6.0 doesn't support.</p> http://stackoverflow.com/questions/1898753/how-do-you-program-a-custom-wordpress-plug-in/1898807#1898807 0 Answer by eliben for How do you program a custom WordPress plug-in? eliben 2009-12-14T03:50:50Z 2009-12-14T03:50:50Z <p>For anything beyond basic looks (i.e. HTML/CSS twiddling), you'll have to know PHP. Start with the links posted by Andrew Hare, but basically Wordpress provides the user with "hooks" into its system. Hooks can be used by catching various events (e.g. "I'm going to display the post summary") and modifying them before they reach the user.</p> <p>A good idea would be to find some plugin that does something similar to what you want and look at its code. All plugins are open-source - you can download their source code and look at the .php files yourself.</p> http://stackoverflow.com/questions/1892527/static-allocation-of-huge-amounts-of-memory-inside-the-main-function/1892533#1892533 7 Answer by eliben for Static allocation of huge amounts of memory inside the main function eliben 2009-12-12T06:13:10Z 2009-12-12T06:13:10Z <p>The second version allocates on the stack, the size of which may be limited on your system for any given process. The first one allocates in the data segment of the process, the size of which isn't limited (at least for these orders of magnitude of allocation size)</p> <p>From <a href="http://stackoverflow.com/questions/1779545/stack-allocation-limit-for-programs-on-a-linux-32-bit-machine">this SO answer</a> you can learn how to check for the stack allocation limit for various platforms like Linux and Windows. If you're on Linux it's as simple as:</p> <pre><code>ulimit -a </code></pre> http://stackoverflow.com/questions/85230/which-language-is-useful-to-create-a-report-for-a-valid-c-program/1886441#1886441 0 Answer by eliben for Which language is useful to create a report for a valid C program eliben 2009-12-11T07:36:37Z 2009-12-11T07:36:37Z <p><a href="http://code.google.com/p/pycparser/" rel="nofollow">pycparser</a> is a complete parser for ANSI C89/C90 written in pure Python. It's being widely used to analyze C source code for various needs. It comes with some example code, such as listing all the function definitions in files, etc.</p> http://stackoverflow.com/questions/1847478/protecting-class-from-getting-instantiated-before-main/1847518#1847518 0 Answer by eliben for Protecting class from getting instantiated before main() eliben 2009-12-04T15:04:04Z 2009-12-04T15:04:04Z <p>There is no clean way to do this. Perhaps there's something hackish you can do to achieve this end, but <strong>you shouldn't</strong>. </p> <p>Describe the fuller need and I'm certain a better solution can be found.</p> http://stackoverflow.com/questions/1847249/how-can-i-correct-corrupted-pythonpath/1847322#1847322 1 Answer by eliben for How can I correct corrupted $PYTHONPATH? eliben 2009-12-04T14:35:48Z 2009-12-04T14:35:48Z <p>Is mercurial located in one of the library installation paths (<code>dist-packages</code> or <code>site-packages</code>)? You can use the <code>find</code> tool to look for it?</p> <p>Did you have luck installing small libraries and access them from Python on this machine?</p> http://stackoverflow.com/questions/1845038/whats-the-difference-between-system-in-c-and-perl/1845150#1845150 7 Answer by eliben for What's the difference between system() in C and Perl? eliben 2009-12-04T06:04:13Z 2009-12-04T13:45:18Z <p>A little research brings up:</p> <blockquote> <p>The return value is the exit status of the program as returned by the wait call. To get the actual exit value, shift right by eight (see below). See also "exec". This is not what you want to use to capture the output from a command, for that you should use merely backticks or qx//, as described in "<code>STRING</code>" in perlop. Return value of -1 indicates a failure to start the program or an error of the wait(2) system call (inspect $! for the reason).</p> </blockquote> <p>And the docs of <code>wait</code> say:</p> <blockquote> <p>Behaves like the wait(2) system call on your system: it waits for a child process to terminate and returns the pid of the deceased process, or -1 if there are no child processes. The status is returned in $? and ${^CHILD_ERROR_NATIVE} . Note that a return value of -1 could mean that child processes are being automatically reaped, as described in perlipc.</p> </blockquote> <p><hr></p> <p>Sources: This was taken from <a href="http://perldoc.perl.org/functions/system.html" rel="nofollow">perldoc</a>. Here's a <a href="http://perl.about.com/od/programmingperl/qt/perlexecsystem.htm" rel="nofollow">tutorial on system</a> in Perl. </p> http://stackoverflow.com/questions/1846221/a-way-to-catch-up-to-modern-programming-techniques/1846261#1846261 10 Answer by eliben for A way to catch up to modern programming techniques eliben 2009-12-04T11:03:04Z 2009-12-04T12:30:23Z <p>Read some newer programming books like <em>The Pragmatic Programmer</em>. This book talks <em>about</em> programming using modern tools, the idioms and techniques, etc. </p> <p><a href="http://www.pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow"><img src="http://www.pragprog.com/images/covers/190x228/tpp.jpg?1184184147" alt="The Pragmatic Programmer"></a></p> http://stackoverflow.com/questions/1846556/programming-languages-for-writing-gui-application/1846608#1846608 1 Answer by eliben for Programming Languages for writing GUI application eliben 2009-12-04T12:19:23Z 2009-12-04T12:19:23Z <p><a href="http://homepage.mac.com/randyhyde/webster.cs.ucr.edu/Win32Asm/WindowsAsmPgm/html/WinAsmPgm.html" rel="nofollow">x86 assembly</a></p> http://stackoverflow.com/questions/1846392/passing-string-as-an-argument-in-c/1846449#1846449 1 Answer by eliben for passing string as an argument in C eliben 2009-12-04T11:41:15Z 2009-12-04T11:41:15Z <p>Read <a href="http://eli.thegreenplace.net/2009/10/21/are-pointers-and-arrays-equivalent-in-c/" rel="nofollow">this article</a> to understand when pointers and arrays are equivalent in C and C++, and when they are not.</p> http://stackoverflow.com/questions/1846379/can-a-finite-state-machine-transition-to-a-previous-state/1846404#1846404 3 Answer by eliben for Can a finite state machine transition to a previous state? eliben 2009-12-04T11:31:18Z 2009-12-04T11:33:50Z <p>The "next state" of an FSM is defined as the state the machine will transition to in the next "time slice" or when the next input arrives, or whatever.</p> <p>Thus defined, the next state of C can be C itself, B, A, D, ZORG or whatever state you have in the machine. Alphabetical letters don't define what's previous and what's next, only the logical flow of the FSM.</p> <p>This state machine from the Wikipedia page:</p> <p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Finite%5Fstate%5Fmachine%5Fexample%5Fwith%5Fcomments.svg/244px-Finite%5Fstate%5Fmachine%5Fexample%5Fwith%5Fcomments.svg.png" alt="SVG Image, use the link below if you can't view here"><br> <a href="http://en.wikipedia.org/wiki/File%3AFinite%5Fstate%5Fmachine%5Fexample%5Fwith%5Fcomments.svg" rel="nofollow">http://en.wikipedia.org/wiki/File%3AFinite%5Fstate%5Fmachine%5Fexample%5Fwith%5Fcomments.svg</a></p> http://stackoverflow.com/questions/1844705/programmatically-pass-unknown-number-of-parameters-in-python/1845205#1845205 0 Answer by eliben for Programmatically pass unknown number of parameters in Python eliben 2009-12-04T06:19:52Z 2009-12-04T06:19:52Z <p>MatrixFrog's answer is the correct one, but just to complete the picture. For finding out the number of arguments simply call <code>len</code>, because <code>args</code> is a tuple:</p> <pre><code>import time def timefunc(fn, *args): start = time.clock() print len(args), type(args) fn(*args) stop = time.clock() return stop - start def myfoo(a, b): c = a + b return c timefunc(myfoo, 5, 6) </code></pre> <p>The print statement inside timefunc prints:</p> <pre><code>2 &lt;type 'tuple'&gt; </code></pre> <p>Since <code>args</code> is a tuple, you can access it like any other tuple. </p> http://stackoverflow.com/questions/1844230/c-statements-not-recognized-in-yacc-file/1845182#1845182 2 Answer by eliben for c statements not recognized in yacc file eliben 2009-12-04T06:13:13Z 2009-12-04T06:13:13Z <p>Are you sure you have Yacc installed there at all? It's weird <code>-ly</code> isn't needed because it's what links Yacc's libraries with your code. It can also be that Yacc is very old or simply broken on those machines.</p> <p>You can try something like the following: on the problematic platform, run yacc in standalone mode on your .y file and examine the resulting code. Try to find your C statements there. To make it all simpler, start with a small toy grammar and then move to your real/large grammar.</p> http://stackoverflow.com/questions/1843805/exitsuccess-for-function-return/1845173#1845173 1 Answer by eliben for EXIT_SUCCESS for function return? eliben 2009-12-04T06:09:49Z 2009-12-04T06:09:49Z <p>Do no use <code>EXIT_SUCCESS</code> or <code>EXIT_FAILURE</code> for functions, or for anything other than <code>exit</code> calls for that matter.</p> <p>Feel free, however, to define your own types for your functions to return, but that depends on the situation and the exact code you're writing.</p> <p>Some common approaches are:</p> <ul> <li>Functions returning pointers almost always return NULL (which is 0 according to ANSI C, but NULL is a more descriptive name to use) in case of errors</li> <li>Functions that return indexes or positions usually return -1 on error (because it can't be a real index, while 0 can, so 0 isn't a good error return value)</li> <li>In more complex cases, you may find it useful to define a new return type with an <code>enum</code>, one of which is your error, and check for that.</li> </ul> <p>As long as you are consistent, don't stray away from the conventions too far, and document everything, you should be OK.</p> http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841762#1841762 11 Answer by eliben for How to remove punctuation from a String in C eliben 2009-12-03T18:05:08Z 2009-12-03T18:11:23Z <p>Loop over the characters of the string. Whenever you meet a punctuation (<code>ispunct</code>), don't copy it to the output string. Whenever you meet an "alpha char" (<code>isalpha</code>), use <code>tolower</code> to convert it to lowercase.</p> <p>All the mentioned functions are defined in <code>&lt;ctype.h&gt;</code></p> <p>You can either do it in-place (by keeping separate write pointers and read pointers to the string), or create a new string from it. But this entirely depends on your application.</p> http://stackoverflow.com/questions/1841565/valueerror-invalid-literal-for-int-with-base-10/1841624#1841624 1 Answer by eliben for ValueError: invalid literal for int() with base 10: '' eliben 2009-12-03T17:43:40Z 2009-12-03T17:43:40Z <pre><code> readings = (infile.readline()) print readings while readings != 0: global count readings = int(readings) </code></pre> <p>There's a problem with that code. <code>readings</code> is a new line read from the file - it's a string. Therefore you should not compare it to 0. Further, you can't just convert it to an integer unless you're <em>sure</em> it's indeed one. For example, empty lines will produce errors here (as you've surely found out).</p> <p>And why do you need the global count? That's most certainly bad design in Python. </p> http://stackoverflow.com/questions/1837686/converting-utf-8or-other-8-bit-encoding-to-7-or-fewer-bits/1837718#1837718 0 Answer by eliben for Converting UTF-8(or other 8-bit encoding) to 7 or fewer bits. eliben 2009-12-03T04:51:04Z 2009-12-03T04:51:04Z <p>Your idea is unlikely to work. If you write the byte 0x05 into a file, the byte gets written, all 8 bits of it - with leading zeros. To actually accomplish what you need, you can encode each 8 bytes in 7 bytes (since you only need 8*7 bits to encode 8 values). One approach is keep the 7 values in the 7 low bits of their bytes, and spread the 8th byte over the 7 MSBits.</p> <p>As for Python, opening a file in binary write mode is <code>open(filename, 'wb')</code>. You'll also have to learn about bit operations to pack bytes as described above.</p> <p>Just a small example:</p> <pre><code>&gt;&gt;&gt; a = 0x03 &gt;&gt;&gt; b = 0x59 &gt;&gt;&gt; c = ((a &amp; 0x1) &lt;&lt; 7) | b &gt;&gt;&gt; hex(c) '0xd9' &gt;&gt;&gt; </code></pre> <p>This places the lowest bit of <code>a</code> into the MSBit of <code>c</code> and the rest of <code>c</code> is the value of <code>b</code>.</p> <p>I'm sure you can take it from here.</p> http://stackoverflow.com/questions/1837582/how-to-write-to-read-from-network-card-in-x86-assembly/1837695#1837695 0 Answer by eliben for How to write to & read from network card in x86 assembly? eliben 2009-12-03T04:45:25Z 2009-12-03T04:45:25Z <p>The simplest answer, although probably not what you're looking for, would be to write the C code to access the card, compile it, and see the code generated by the compiler.</p> <p>The C code is likely to go through the NIC driver directly, or use a library like <a href="http://www.winpcap.org/" rel="nofollow">winpcap</a>. Built-in support for <a href="http://en.wikipedia.org/wiki/Raw%5Fsocket" rel="nofollow">raw sockets</a> on Windows, for example, was disabled for security reasons.</p> <p>But this isn't the best way to learn how NICs work. For that, pick a datasheet of a popular embedded NIC like <a href="http://www.smsc.com/index.php?tid=145&amp;pid=44" rel="nofollow">LAN91C111</a> and read how to access it. <strong>That</strong> will teach you a lot about interfacing Eterthet in the raw way. </p> <p>This still isn't a good enough sandbox to study assembly language in, IMHO. For that, just implement a few small algorithmic programs in assembly - like binary tree search.</p> http://stackoverflow.com/questions/1837634/is-there-any-open-source-clinic-software-which-develop-with-c/1837645#1837645 1 Answer by eliben for Is there any open source clinic software which develop with C++? eliben 2009-12-03T04:29:59Z 2009-12-03T04:37:20Z <p>Are you looking for just open source projects in C++?</p> <p>Perhaps these can help:</p> <ul> <li><a href="http://stackoverflow.com/questions/712017/open-source-c-projects-for-beginners">http://stackoverflow.com/questions/712017/open-source-c-projects-for-beginners</a></li> <li><a href="http://stackoverflow.com/questions/109684/what-are-some-examples-of-exceptional-c-open-source-code">http://stackoverflow.com/questions/109684/what-are-some-examples-of-exceptional-c-open-source-code</a></li> </ul> <p>Otherwise, you'll have to elaborate more since it's not clear from your question.</p> <p>EDIT: if clinic management interests you, the Wikipedia entry on <a href="http://en.wikipedia.org/wiki/List%5Fof%5Fopen%5Fsource%5Fhealthcare%5Fsoftware" rel="nofollow">List of open source healthcare software</a> should give you some guidance.</p> http://stackoverflow.com/questions/1837559/passing-temporary-variables-to-reference-arg-in-cons-works-but-not-for-functions/1837586#1837586 1 Answer by eliben for passing Temporary variables to reference arg in Cons works. but not for functions in general. Why? eliben 2009-12-03T04:13:50Z 2009-12-03T04:13:50Z <p>You should not be passing a non-constant reference to a temporary, so the <code>print</code> statement should not compile. If you modify that reference in <code>print</code> to <code>const</code>, it will work. </p> http://stackoverflow.com/questions/1837438/can-you-have-hash-tables-in-lisp/1837501#1837501 6 Answer by eliben for Can you have hash tables in lisp? eliben 2009-12-03T03:45:32Z 2009-12-03T03:45:32Z <p>Of course - Common Lisp has <a href="http://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node154.html" rel="nofollow">hash tables</a>.</p> <pre><code>(setq a (make-hash-table)) (setf (gethash 'color a) 'brown) (setf (gethash 'name a) 'fred) (gethash 'color a) =&gt; brown (gethash 'name a) =&gt; fred (gethash 'pointy a) =&gt; nil </code></pre> <p>Property lists are good for very small examples of demonstrative purpose, but for any real need their performance is abysmal, so use hash tables.</p> http://stackoverflow.com/questions/1835246/how-to-solve-homogeneous-linear-equations-with-numpy/1835264#1835264 1 Answer by eliben for How to solve homogeneous linear equations with NumPy? eliben 2009-12-02T19:31:40Z 2009-12-02T19:31:40Z <p>Use the <code>linalg.solve</code> method.</p> <p>The following is from the <a href="http://www.scipy.org/Tentative%5FNumPy%5FTutorial" rel="nofollow">NumPy tutorial</a>:</p> <pre><code>from numpy import matrix from numpy import linalg A = matrix( [[1,2,3],[11,12,13],[21,22,23]]) # Creates a matrix. x = matrix( [[1],[2],[3]] ) # Creates a matrix (like a column vector). y = matrix( [[1,2,3]] ) # Creates a matrix (like a row vector). print A.T # Transpose of A. print A*x # Matrix multiplication of A and x. print A.I # Inverse of A. print linalg.solve(A, x) # Solve the linear equation system. </code></pre> http://stackoverflow.com/questions/1835211/the-right-time-to-handle-all-exceptions/1835257#1835257 0 Answer by eliben for The right time to handle all exceptions eliben 2009-12-02T19:30:10Z 2009-12-02T19:30:10Z <p>The rule for where to catch exceptions usually is: wherever is the place you can meaningfully handle them.</p> http://stackoverflow.com/questions/1916829/how-to-crack-a-quiz Comment by eliben on How to crack a quiz ? eliben 2009-12-16T18:57:00Z 2009-12-16T18:57:00Z I really think there's an interesting algorithmic question hiding here. If you could just rephrase it normally and explain exactly what you're interested in, with an example, you can still save it http://stackoverflow.com/questions/1914341/why-there-are-not-any-real-lightweight-threads-for-python/1914362#1914362 Comment by eliben on Why there are not any real lightweight threads for python? eliben 2009-12-16T17:15:19Z 2009-12-16T17:15:19Z nosklo: it may be more accurate to say that the GIL makes single-threaded CPython faster. modifications that removed it managed to make multi-threaded code of parallel algorithms run faster than the equivalent single-threaded implementations, but the speed of single-threaded code was considerably reduced http://stackoverflow.com/questions/1898900/question-about-passing-a-variable-created-in-a-function/1898915#1898915 Comment by eliben on Question about passing a variable created in a function eliben 2009-12-14T15:48:10Z 2009-12-14T15:48:10Z @SiegeX: you're right, I'm fixing the call to fun2 http://stackoverflow.com/questions/1898900/question-about-passing-a-variable-created-in-a-function/1898915#1898915 Comment by eliben on Question about passing a variable created in a function eliben 2009-12-14T04:55:16Z 2009-12-14T04:55:16Z @tomkaith13: for more on double pointers: <a href="http://stackoverflow.com/questions/758673/uses-for-multiple-levels-of-pointer-dereferences" rel="nofollow" title="uses for multiple levels of pointer dereferences">stackoverflow.com/questions/758673/&hellip;</a>, and also <a href="http://stackoverflow.com/questions/897366/how-do-pointer-to-pointers-work-in-c" rel="nofollow" title="how do pointer to pointers work in c">stackoverflow.com/questions/897366/&hellip;</a> http://stackoverflow.com/questions/1898900/question-about-passing-a-variable-created-in-a-function/1898915#1898915 Comment by eliben on Question about passing a variable created in a function eliben 2009-12-14T04:52:27Z 2009-12-14T04:52:27Z @tomkaith13: double pointers are used when <i>the pointer</i> has to be modified, not its contents. One case is when you want a function to create a new pointer to something, and you pass your own pointer as an argument to it. http://stackoverflow.com/questions/1898924/how-we-build-private-cloud-computing-in-my-organization Comment by eliben on How we build private cloud computing in my organization eliben 2009-12-14T04:33:10Z 2009-12-14T04:33:10Z I think <a href="http://serverfault.com/" rel="nofollow">serverfault.com</a> is a more appropriate place for this question http://stackoverflow.com/questions/1898847/improving-strcmp-function Comment by eliben on Improving strcmp function eliben 2009-12-14T04:12:14Z 2009-12-14T04:12:14Z Sandeep: I figure you have only a couple of minutes left to fix your question before it gets closed. http://stackoverflow.com/questions/1892527/static-allocation-of-huge-amounts-of-memory-inside-the-main-function/1892533#1892533 Comment by eliben on Static allocation of huge amounts of memory inside the main function eliben 2009-12-12T13:39:11Z 2009-12-12T13:39:11Z @Pascal: only some... recursion makes it indeterministic - you never know before runtime how deep it goes http://stackoverflow.com/questions/1892602/cpu-serial-number Comment by eliben on cpu serial number eliben 2009-12-12T07:09:44Z 2009-12-12T07:09:44Z duplicate <a href="http://stackoverflow.com/questions/90462/cpu-serial-number" rel="nofollow" title="cpu serial number">stackoverflow.com/questions/90462/&hellip;</a> http://stackoverflow.com/questions/1851794/is-an-entire-processs-virtual-address-space-split-into-pages Comment by eliben on Is an entire process’s virtual address space split into pages eliben 2009-12-05T10:43:37Z 2009-12-05T10:43:37Z technically, those are segments and not pages. the size of segments isn't limited to 4K http://stackoverflow.com/questions/1845038/whats-the-difference-between-system-in-c-and-perl/1845150#1845150 Comment by eliben on What's the difference between system() in C and Perl? eliben 2009-12-04T06:46:18Z 2009-12-04T06:46:18Z @Sachin: linked to the sources http://stackoverflow.com/questions/1844705/programmatically-pass-unknown-number-of-parameters-in-python/1845205#1845205 Comment by eliben on Programmatically pass unknown number of parameters in Python eliben 2009-12-04T06:43:44Z 2009-12-04T06:43:44Z Chris I'm not timing it. I've just inserted it inside the function to show in the simplest way what the length and type of args is. It's just for debugging http://stackoverflow.com/questions/1845040/which-users-so-about-me-section-has-impressed-you-most Comment by eliben on Which user's SO "About Me" section has impressed you most? eliben 2009-12-04T05:31:25Z 2009-12-04T05:31:25Z Please move it to meta.stackoverflow.com http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841762#1841762 Comment by eliben on How to remove punctuation from a String in C eliben 2009-12-03T18:20:52Z 2009-12-03T18:20:52Z SO... you snooze - you lose, survival of the fit^H^Hastest. :-) http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841775#1841775 Comment by eliben on How to remove punctuation from a String in C eliben 2009-12-03T18:12:19Z 2009-12-03T18:12:19Z Don't forget to add that '\0' in the end !!