User Cristian Ciupitu - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:09:38Z http://stackoverflow.com/feeds/user/12892 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1805663/shell-script-purpose-of-x-in-xvariable/1805679#1805679 1 Answer by Cristian Ciupitu for shell script purpose of x in "x$VARIABLE" Cristian Ciupitu 2009-11-26T21:16:47Z 2009-11-26T21:16:47Z <p>If the variables are an empty string or uninitialized, <em>without</em> the <code>x</code> the <code>if</code> would look like this after the variable substitution:</p> <pre><code> if [ != ]; then </code></pre> <p>and thus it would fail because the operands are missing. <em>With</em> the <code>x</code>, the <code>if</code> looks like this:</p> <pre><code> if [ x != x]; then </code></pre> <p>which is syntactically valid.</p> http://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace/155956#155956 26 Answer by Cristian Ciupitu for What GNU/Linux command-line tool would I use for performing a search and replace on a file? Cristian Ciupitu 2008-10-01T02:08:34Z 2009-11-20T16:48:15Z <p><code>$ sed 's/a.*b/xyz/g;' old_file &gt; new_file</code></p> <p>GNU sed (which you probably have) is even more versatile:</p> <p><code>$ sed -r --in-place 's/a(.*)b/x\1y/g;' your_file</code></p> <p>Here is a brief explanation of those options:</p> <blockquote> <p><strong>-i[SUFFIX], --in-place[=SUFFIX]</strong> edit files in place (makes backup if extension supplied)</p> <p><strong>-r, --regexp-extended</strong> use extended regular expressions in the script.</p> </blockquote> <p>If you want to learn more about sed, <a href="http://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace/155944#155944">Cori</a> has suggested <a href="http://www.grymoire.com/Unix/Sed.html" rel="nofollow">this tutorial</a>.</p> http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/1719274#1719274 0 Answer by Cristian Ciupitu for What software for your own personal use did you write? Cristian Ciupitu 2009-11-12T01:26:15Z 2009-11-12T01:26:15Z <p>After seeing the <a href="http://en.wikipedia.org/wiki/Millennium%5F%28TV%5Fseries%29" rel="nofollow">Millenium TV series</a> I decided to write my own Y2K countdown timer. I wrote it in Pascal and it displayed the days left until 2000 at boot time.</p> http://stackoverflow.com/questions/110629/cms-which-is-not-a-portal-system/257472#257472 0 Answer by Cristian Ciupitu for CMS which is not a portal system Cristian Ciupitu 2008-11-02T22:17:11Z 2009-11-10T02:25:33Z <p><a href="http://www.nuxeo.org/" rel="nofollow">Nuxeo 5</a> might be what you are looking for. It's an open source platform for building <a href="http://en.wikipedia.org/wiki/Enterprise%5Fcontent%5Fmanagement" rel="nofollow">ECM</a> (Enterprise Content Management) applications, so you can write your own <em>rich client applications</em>.</p> http://stackoverflow.com/questions/1697777/recursion-using-c-language/1697840#1697840 3 Answer by Cristian Ciupitu for Recursion using C language Cristian Ciupitu 2009-11-08T20:30:54Z 2009-11-09T16:16:55Z <p>Your current function prints only <code>A</code> because at soon as it finds an uppercase letter (<code>A</code> in your case) it returns a 0.</p> <p>There are other issues too, so I would rewrite the function like this:</p> <pre><code>void recursive(const char* s) { if (s[0] == '\0') // stop condition: empty string return; if (isupper(s[0])) // main body printf("%c\n", s[0]); recursive(s+1); // recursion: advance to the next character } </code></pre> <p>Use it like this: <code>recursive(input)</code> and include <code>&lt;ctype.h&gt;</code> (for <code>isupper</code>).</p> http://stackoverflow.com/questions/1569730/paste-without-temporary-files-in-unix/1569782#1569782 1 Answer by Cristian Ciupitu for paste without temporary files in Unix Cristian Ciupitu 2009-10-15T00:58:31Z 2009-10-15T22:38:59Z <p>Use named pipes (FIFOs) like this:</p> <pre><code>mkfifo fA mkfifo fB progA &gt; fA &amp; progB &gt; fB &amp; paste fA fB rm fA fB </code></pre> <p>The <em>process substitution</em> for Bash does a similar thing transparently, so use this only if you're using a different shell.</p> http://stackoverflow.com/questions/1419470/python-init-setattr-on-arguments/1419520#1419520 2 Answer by Cristian Ciupitu for Python __init__ setattr on arguments? Cristian Ciupitu 2009-09-14T03:09:28Z 2009-09-14T11:01:02Z <p>Try <a href="http://docs.python.org/library/inspect.html#inspect.getargspec" rel="nofollow">inspect.getargspec</a>:</p> <pre><code>In [31]: inspect.getargspec(C.__init__) Out[31]: ArgSpec(args=['self', 'ivar1', 'ivar2', 'ivar3', 'optional'], varargs=None, keywords=None, defaults=(False,)) </code></pre> http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/1418667#1418667 0 Answer by Cristian Ciupitu for Multiple Tuple to Two-Pair Tuple in Python? Cristian Ciupitu 2009-09-13T19:46:00Z 2009-09-13T19:46:00Z <p>Using <a href="http://docs.python.org/library/itertools.html#itertools.groupby" rel="nofollow">itertools.groupby</a>:</p> <pre><code>import itertools def generate_keyfunc(n): """Returns a keyfunc that groups elements n by n""" i = itertools.count(0) def keyfunc(v): return i.next() / n return keyfunc t = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h') grouped_t = [tuple(g) for k, g in itertools.groupby(t, generate_keyfunc(2))] </code></pre> <p>I admit that this solution is a bit more complicated/long than other one liners, but it's more (memory) efficient. No partial or complete copies of the initial list/iterator are created.</p> http://stackoverflow.com/questions/1416689/what-exactly-is-the-textual-representation-of-binary-data/1416708#1416708 1 Answer by Cristian Ciupitu for What exactly is the textual representation of Binary data? Cristian Ciupitu 2009-09-13T02:43:52Z 2009-09-13T02:49:21Z <p>I suggest using the <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=od&amp;apropos=0&amp;sektion=0&amp;manpath=OpenBSD+Current&amp;arch=i386&amp;format=html" rel="nofollow">od</a> command on a Unix system. It's not a text editor, but it's still good for analyzing the content of the files. If most of the characters are printable, you could use <code>od -c file</code>.</p> <p>LE: <a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?od" rel="nofollow">GNU od(1) man page</a></p> http://stackoverflow.com/questions/1415812/why-use-kwargs-in-python-what-are-some-real-world-advantages-over-using-named/1415817#1415817 3 Answer by Cristian Ciupitu for Why use **kwargs in python? What are some real world advantages over using named arguments? Cristian Ciupitu 2009-09-12T18:45:42Z 2009-09-12T18:45:42Z <p><code>**kwargs</code> are good if you don't know in advance the name of the parameters. For example the <code>dict</code> constructor uses them to initialize the keys of the new dictionary. </p> <blockquote> <pre><code>dict(**kwargs) -&gt; new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2) </code></pre> </blockquote> <pre><code>In [3]: dict(one=1, two=2) Out[3]: {'one': 1, 'two': 2} </code></pre> http://stackoverflow.com/questions/1412979/please-explain-c-syntax-to-a-vb-er/1412987#1412987 7 Answer by Cristian Ciupitu for Please explain C# syntax to a vb-er Cristian Ciupitu 2009-09-11T20:01:38Z 2009-09-12T01:38:14Z <pre><code>If (operation = DropOperation.MoveToHere) Then Operation = DropOperation.MoveFromHere Else Operation = DropOperation.CopyFromHere End If </code></pre> http://stackoverflow.com/questions/1398780/downloading-file-using-ie-from-python/1398819#1398819 0 Answer by Cristian Ciupitu for Downloading file using IE from python. Cristian Ciupitu 2009-09-09T10:27:29Z 2009-09-09T10:27:29Z <p>If you can't control Internet Explorer using its COM interface, I suggest using the <a href="http://www.autoitscript.com/autoit3/" rel="nofollow">AutoIt</a> COM to control its GUI from Python.</p> http://stackoverflow.com/questions/1393242/call-a-function-from-a-running-process/1393346#1393346 3 Answer by Cristian Ciupitu for Call a function from a running process Cristian Ciupitu 2009-09-08T11:00:27Z 2009-09-08T11:05:43Z <p>Parent code:</p> <pre><code>import signal def my_callback(signal, frame): print "Signal %d received" % (signal,) signal.signal(signal.SIGUSR1, my_callback) # start child </code></pre> <p>Child code:</p> <pre><code>import os import signal signal.kill(os.getppid(), signal.SIGUSR1) </code></pre> <p>Be careful with this form of IPC because it has its issues, e.g.:</p> <blockquote> <p>In the original Unix systems, when a handler that was established using signal() was invoked by the delivery of a signal, the disposition of the signal would be reset to SIG_DFL, and the system did not block delivery of further instances of the signal. System V also provides these semantics for signal(). This was bad because the signal might be delivered again before the handler had a chance to reestablish itself. Furthermore, rapid deliveries of the same signal could result in recursive invocations of the handler.</p> </blockquote> <p>I recommend reading the whole <em>signal(2)</em> man page.</p> http://stackoverflow.com/questions/1372750/how-can-i-programmatically-get-the-image-on-this-page/1372795#1372795 0 Answer by Cristian Ciupitu for How can I programmatically get the image on this page? Cristian Ciupitu 2009-09-03T11:13:42Z 2009-09-03T16:59:57Z <p>What you are downloading is the whole HTML page and not the image. To download the image and other elements too, you'll need to use the <code>--page-requisites</code> (and possibly <code>--convert-links</code>) parameter(s). Unfortunately because <em>robots.txt</em> disallows access to URLs under <code>/cgi-bin/</code>, wget will not download the image which is located under <code>/cgi-bin/</code>. AFAIK there's no parameter to disable the robots protocol.</p> http://stackoverflow.com/questions/1296162/how-can-i-read-a-python-pickle-database-file-from-c/1296188#1296188 1 Answer by Cristian Ciupitu for How can I read a python pickle database/file from C? Cristian Ciupitu 2009-08-18T20:07:27Z 2009-08-18T20:07:27Z <p>You can embed a Python interpreter in a C program, but I think that the easiest solution is to write a Python script that converts "pickles" in another format, e.g. an SQLite database.</p> http://stackoverflow.com/questions/1116144/python-windows-directory-mtime-how-to-detect-package-directory-new-file/1116238#1116238 0 Answer by Cristian Ciupitu for python windows directory mtime: how to detect package directory new file? Cristian Ciupitu 2009-07-12T15:28:07Z 2009-07-12T15:28:07Z <p>Maybe this will help you <a href="http://tgolden.sc.sabren.com/python/win32_how_do_i/watch_directory_for_changes.html" rel="nofollow">http://tgolden.sc.sabren.com/python/win32_how_do_i/watch_directory_for_changes.html</a></p> http://stackoverflow.com/questions/701429/library-tool-for-drawing-ternary-triangle-plots 2 Library/tool for drawing ternary/triangle plots Cristian Ciupitu 2009-03-31T15:02:14Z 2009-03-31T15:18:28Z <p>I need to draw <a href="http://en.wikipedia.org/wiki/Ternary%5Fplot" rel="nofollow">ternary/triangle plots</a> representing mole fractions (<em>x</em>, <em>y</em>, <em>z</em>) of various substances/mixtures (<em>x</em> + <em>y</em> + <em>z</em> = 1). Each plot represents iso-valued substances, e.g. substances which have the same melting point. The plots need to be drawn on the same triangle with different colors/symbols and it would be nice if I could also connect the dots.</p> <p>I have looked at matplotlib, R and gnuplot, but they don't seem to be able to draw this kind of plot. The 3rd party <a href="http://cran.r-project.org/web/packages/ade4/" rel="nofollow">ade4</a> package for R seems to be able to draw it, but I'm not sure if I can draw multiple plots on the same triangle.</p> <p>I need something that runs under Linux or Windows. I'm open to any suggestions, including libraries for other languages, e.g. Perl, PHP, Ruby, C# and Java.</p> http://stackoverflow.com/questions/700905/how-to-design-multi-threaded-gui-network-application/701010#701010 1 Answer by Cristian Ciupitu for How to design multi-threaded GUI-network application? Cristian Ciupitu 2009-03-31T13:40:48Z 2009-03-31T13:40:48Z <p>I think that you could use a <a href="http://docs.python.org/library/queue.html" rel="nofollow">Queue</a> for passing messages between the GUI and the network threads.</p> <p>As for GUI and threads in general, you might find the <a href="http://www.oreillynet.com/onlamp/blog/2006/07/pygtk%5Fand%5Fthreading.html" rel="nofollow">PyGTK and Threading</a> article interesting.</p> http://stackoverflow.com/questions/52652/pretty-graphs-and-charts-in-python/469858#469858 0 Answer by Cristian Ciupitu for Pretty graphs and charts in Python Cristian Ciupitu 2009-01-22T16:34:04Z 2009-01-22T16:40:44Z <p><a href="http://plplot.sourceforge.net/" rel="nofollow">PLplot</a> is a cross-platform software package for creating scientific plots. They aren't very pretty (eye catching), but they look good enough. Have a look at <a href="http://plplot.sourceforge.net/examples.php" rel="nofollow">some examples</a> (both source code and pictures).</p> <p>The PLplot core library can be used to create standard x-y plots, semi-log plots, log-log plots, contour plots, 3D surface plots, mesh plots, bar charts and pie charts. It runs on Windows (2000, XP and Vista), Linux, Mac OS X, and other Unices.</p> http://stackoverflow.com/questions/91183/i-need-to-write-code-in-python-for-comparing-text-of-two-documents-uning-fingerpr/91238#91238 2 Answer by Cristian Ciupitu for i need to write code in python for comparing text of two documents uning fingerprint techniques Cristian Ciupitu 2008-09-18T09:39:06Z 2008-11-21T07:00:22Z <p>If you want <a href="http://en.wikipedia.org/wiki/Cryptographic_hash_function" rel="nofollow">message digests</a> (cryptographic hashes), use the <a href="http://docs.python.org/lib/module-hashlib.html" rel="nofollow">hashlib</a> library. Here's an example (<a href="http://ipython.scipy.org/" rel="nofollow">IPython</a> session):</p> <pre> In [1]: import hashlib In [2]: md = hashlib.sha256(open('/tmp/Calendar.xls', 'rb').read()) In [3]: md.hexdigest() Out[3]: '8517f1eae176f1a20de78d879f81f23de503cfd6b8e4be1d798fb2342934b187' </pre> http://stackoverflow.com/questions/263072/why-are-regular-expressions-such-a-complicated-cryptic-mess/263132#263132 14 Answer by Cristian Ciupitu for Why are regular expressions such a complicated, cryptic mess? Cristian Ciupitu 2008-11-04T19:37:16Z 2008-11-04T19:37:16Z <p>They are cryptic because they are a DSL (Domain Specific Language) and they need to convey a lot of information in a few characters. It wouldn't be practical to use a long notation, e.g.:</p> <blockquote> <p>match any char; match "a"; match any digit; endOfLine</p> </blockquote> <p>This kind of program would look strange and long compared to the notations used today.</p> http://stackoverflow.com/questions/250880/is-there-any-cms-better-than-wordpress-or-should-i-roll-my-own/257411#257411 1 Answer by Cristian Ciupitu for Is there any CMS better than WordPress or should I roll my own? Cristian Ciupitu 2008-11-02T21:31:44Z 2008-11-02T21:31:44Z <p>If you don't want a complicated CMS, but rather a blog (which is a simple CMS in a way) you could try the <a href="http://byteflow.su/" rel="nofollow">Byteflow blog engine</a>. It's written in Django - a Python based web framework.</p> http://stackoverflow.com/questions/137540/what-is-the-best-web-based-subversion-client/172087#172087 0 Answer by Cristian Ciupitu for What is the best web based Subversion client? Cristian Ciupitu 2008-10-05T14:49:24Z 2008-10-05T14:49:24Z <p><a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> has a web based repository browser, but you can not commit or change the repository in any other way with it.</p> <p>I think that the best solution would be to find a Java based client, e.g. <a href="http://www.syntevo.com/smartsvn/" rel="nofollow">SmartSVN</a>.</p> http://stackoverflow.com/questions/168730/how-do-i-loop-through-all-files-in-a-folder-using-python/168776#168776 1 Answer by Cristian Ciupitu for How do I loop through all files in a folder using Python? Cristian Ciupitu 2008-10-03T20:34:03Z 2008-10-03T20:34:03Z <p>If you want to find all the files, including the ones in subdirectories use <a href="http://www.python.org/doc/2.5.2/lib/os-file-dir.html#l2h-2725" rel="nofollow">os.walk</a>:</p> <pre> import os import os.path for root, dirs, files in os.walk('python/Lib/email'): for name in files: process_file(os.path.join(root, name) </pre> http://stackoverflow.com/questions/82256/how-do-i-use-sudo-to-redirect-output-to-a-location-i-dont-have-permission-to-wri/82278#82278 10 Answer by Cristian Ciupitu for How do I use sudo to redirect output to a location I don't have permission to write to? Cristian Ciupitu 2008-09-17T11:48:56Z 2008-09-23T19:33:26Z <p>Your command does not work because the redirection is performed by your shell which does not have the permission to write to <em>/root/test.out</em>. The redirection of the output <strong>is not</strong> performed by sudo.</p> <p>There are multiple solutions:</p> <ul> <li><p>Run a shell with sudo and give the command to it by using the <strong>-c</strong> option:</p> <blockquote> <p><code>sudo sh -c 'ls -hal /root/ &gt; /root/test.out'</code></p> </blockquote></li> <li><p>Create a script with your commands and run that script with sudo:</p> <blockquote> <p><code>#!/bin/sh</code></p> <p><code>ls -hal /root/ &gt; /root/test.out</code></p> </blockquote> <p>Run <code>sudo ls.sh</code></p></li> <li><p>Launch a shell with sudo and then run your commands:</p> <blockquote> <p><code>$ sudo -s</code></p> <p><code>% ls -hal /root/ &gt; /root/test.out</code></p> <p><code>% ^D</code></p> <p><code>$</code></p> </blockquote></li> <li><p>Use <strong>sudo tee</strong> (if you have to escape a lot when using the <strong>-c</strong> option):</p> <blockquote> <p><code>sudo ls -hal /root/ | sudo tee /root/test.out &gt; /dev/null</code></p> </blockquote> <p>The redirect to <em>/dev/null</em> is needed to stop tee from outputting to the screen. Just in case someone needs it: to append to the output file, use <strong>tee -a</strong> or <strong>tee --append</strong>.</p></li> </ul> <p>Thanks go to <a href="http://stackoverflow.com/users/14726/jd">Jd</a>, <a href="http://stackoverflow.com/users/15676/adam-j-forster">Adam J. Forster</a> and <a href="http://stackoverflow.com/users/6910/jonathan">Johnathan</a> for the second, third and fourth solutions.</p> http://stackoverflow.com/questions/120803/learning-freebsd/120945#120945 1 Answer by Cristian Ciupitu for Learning FreeBSD Cristian Ciupitu 2008-09-23T13:23:04Z 2008-09-23T13:29:31Z <p>You could start with <a href="http://www.pcbsd.org/" rel="nofollow">PC BSD</a> (an easy to use distro) to get a feeling of BSD and then move to more advanced stuff like setting up servers.</p> <p>As others have noted, configuring a service to do a couple of things isn't very hard, you just have to follow some steps (which any monkey could do), but if you want more, you'll need extra time. A competent sysadmin does not know only the <strong>how</strong>, but also the <strong>why</strong>. Grandma can click all day in Windows and even if Windows Server has a GUI for server administration, it doesn't mean she can configure IIS or the DHCP service. By the way, it would be a good thing if you could learn an (Unix) editor, preferably <strong>vi</strong>, since it's the standard on BSDs; emacs, joe, pico are nice too, but they aren't so popular.</p> <p>As for the time, it took about two days for me to configure a server. But I had previous Linux experience and the server didn't do anything fancy.</p> http://stackoverflow.com/questions/118463/what-is-the-performance-difference-of-pki-to-symmetric-encryption/118481#118481 1 Answer by Cristian Ciupitu for What is the performance difference of pki to symmetric encryption? Cristian Ciupitu 2008-09-23T00:48:38Z 2008-09-23T11:53:14Z <p>Have a look at the <a href="http://www.madboa.com/geek/openssl/#benchmark-speed" rel="nofollow">OpenSSL speed command</a>. </p> <p>Run "<code>openssl speed</code>" from the command line and look at the benchmark results.</p> http://stackoverflow.com/questions/115126/strategies-for-caching-on-the-web/115186#115186 0 Answer by Cristian Ciupitu for Strategies for Caching on the Web? Cristian Ciupitu 2008-09-22T14:35:09Z 2008-09-22T14:35:09Z <p>Yahoo for example <em>"versions"</em> their JavaScript, so your browser downloads <strong>code-1.2.3.js</strong> and when a new version appears they reference that version. By doing this they can make their Javascript code cacheable for a very-very long time.</p> <p>As for the general answer I think it depends on your data, on how often does it change. For example, images don't change very often, but html pages do. The "About us" page doesn't change too often, but the news section does.</p> http://stackoverflow.com/questions/98449/how-to-convert-an-address-to-a-lat-lon/98640#98640 0 Answer by Cristian Ciupitu for How to convert an address to a lat/lon? Cristian Ciupitu 2008-09-19T01:28:57Z 2008-09-19T01:28:57Z <p><a href="http://developer.yahoo.com/maps/rest/V1/geocode.html" rel="nofollow">Yahoo! Maps Web Services - Geocoding API</a></p> http://stackoverflow.com/questions/91263/pause-a-dos-console-gnu-makefile-if-an-error-occurs/91293#91293 0 Answer by Cristian Ciupitu for Pause a DOS Console/GNU Makefile if an error occurs Cristian Ciupitu 2008-09-18T09:50:07Z 2008-09-18T09:50:07Z <p>DOS batch solution: use <a href="http://home.att.net/~gobruen/progs/dos_batch/dos_batch.html#if" rel="nofollow">IF ERRORLEVEL</a> and <a href="http://home.att.net/~gobruen/progs/dos_batch/dos_batch.html#pause" rel="nofollow">PAUSE</a>. Also check out the sample code for <a href="http://home.att.net/~gobruen/progs/dos_batch/dos_batch.html#choice" rel="nofollow">CHOICE</a>.</p> http://stackoverflow.com/questions/1805663/shell-script-purpose-of-x-in-xvariable Comment by Cristian Ciupitu on shell script purpose of x in "x$VARIABLE" Cristian Ciupitu 2009-11-26T21:21:22Z 2009-11-26T21:21:22Z @soulmerge: links please http://stackoverflow.com/questions/124865/xml-schema-validation-tool/129401#129401 Comment by Cristian Ciupitu on XML Schema validation tool? Cristian Ciupitu 2009-11-25T16:34:03Z 2009-11-25T16:34:03Z +1 for the xmllint program. http://stackoverflow.com/questions/1777871/which-configuration-properties-are-new-in-firefox-3-6 Comment by Cristian Ciupitu on Which configuration properties are new in Firefox 3.6? Cristian Ciupitu 2009-11-22T07:01:17Z 2009-11-22T07:01:17Z Isn't this question more appropriate for superuser? http://stackoverflow.com/questions/1759193/how-to-read-line-from-a-file-and-then-append-print-in-python Comment by Cristian Ciupitu on How to read line (from a file) and then append + print in python? Cristian Ciupitu 2009-11-18T21:41:18Z 2009-11-18T21:41:18Z It would be useful if you would also include the actual output of this code. http://stackoverflow.com/questions/1618965/fastest-way-to-convert-1-0-into-tuple-1-0/1621586#1621586 Comment by Cristian Ciupitu on Fastest way to convert '(-1,0)' into tuple(-1, 0)? Cristian Ciupitu 2009-11-09T00:18:36Z 2009-11-09T00:18:36Z Your functions (especially the first one) seem to be the fastest of all functions presented here. In case anyone wonders, I'm using python-2.6-9.fc11.x86_64 on an Intel Core 2 Duo E6400. http://stackoverflow.com/questions/1697777/recursion-using-c-language Comment by Cristian Ciupitu on Recursion using C language Cristian Ciupitu 2009-11-08T22:52:08Z 2009-11-08T22:52:08Z Speaking of errors, it's possible to fail to open the file for other reasons too, e.g. insufficient permissions or an I/O error (broken disk). To make the program more explicit the <code>perror</code> function could be used, for example like this: <code>perror(&quot;failed to open file&quot;)</code>. On BSD compatible system including Linux (<code>gcc -D&#95;BSD&#95;SOURCE</code>), you can also use <code>void err(int eval, const char &#42;fmt, ...);</code> from <code>err.h</code>. http://stackoverflow.com/questions/1697777/recursion-using-c-language Comment by Cristian Ciupitu on Recursion using C language Cristian Ciupitu 2009-11-08T20:22:58Z 2009-11-08T20:22:58Z <code>fgets(input,100,fp)</code> -&gt; <code>fgets(input,sizeof(input),fp)</code> http://stackoverflow.com/questions/1687025/sql-remove-appearances-of-a-comma-at-end-of-the-line Comment by Cristian Ciupitu on SQL, remove appearances of a comma at end of the line. Cristian Ciupitu 2009-11-06T11:37:47Z 2009-11-06T11:37:47Z What database server are you using? http://stackoverflow.com/questions/1685157/python-popen-working-directory-argument/1685192#1685192 Comment by Cristian Ciupitu on python popen working directory argument Cristian Ciupitu 2009-11-06T03:24:27Z 2009-11-06T03:24:27Z He's using <code>subprocess.Popen</code> which includes a parameter for this, so your answer isn't quite elegant, but because it's correct you have +1 from me. Also, a link to the <code>os.chdir</code> documentation would have been nice. http://stackoverflow.com/questions/1660920/mysql-storing-comma-seperated-string-more-efficiently Comment by Cristian Ciupitu on mysql - storing comma seperated string more efficiently Cristian Ciupitu 2009-11-02T12:16:01Z 2009-11-02T12:16:01Z Why don't you use an extra table with user_id and region_id? It would contain something like this: (1,1), (1,2), (1,3)... (1,10), (5, 73), (5, 99), (9, 2000). http://stackoverflow.com/questions/493484/whats-the-best-wayerror-proof-foolproof-to-parse-a-file-using-python-with-fo/493546#493546 Comment by Cristian Ciupitu on What's the best way(error proof / foolproof) to parse a file using python with following format? Cristian Ciupitu 2009-10-31T16:12:42Z 2009-10-31T16:12:42Z If the input file is <i>invalid</i> and starts with <code>value=data</code> your program will crash because <code>current</code> has not been initialized. As the old saying goes, <i>&quot;Garbage In, Garbage out&quot;</i>. Anyway +1 from me. http://stackoverflow.com/questions/1495666/how-to-define-a-class-in-python/1495740#1495740 Comment by Cristian Ciupitu on How to define a class in Python Cristian Ciupitu 2009-09-30T02:15:39Z 2009-09-30T02:15:39Z @Oscar Reyes: no. If a default value is provided for them, those parameters are optional. http://stackoverflow.com/questions/818828/is-it-possible-to-implement-a-python-for-range-loop-without-an-iterator-variable/818888#818888 Comment by Cristian Ciupitu on Is it possible to implement a Python for range loop without an iterator variable? Cristian Ciupitu 2009-09-27T00:28:04Z 2009-09-27T00:28:04Z I understand now. The difference comes from the GC overhead, not from the &quot;algorithm&quot;. By the way, I run a quick <i>timeit</i> benchmark and the speedup was ~1.42x. http://stackoverflow.com/questions/818828/is-it-possible-to-implement-a-python-for-range-loop-without-an-iterator-variable/818888#818888 Comment by Cristian Ciupitu on Is it possible to implement a Python for range loop without an iterator variable? Cristian Ciupitu 2009-09-26T19:12:24Z 2009-09-26T19:12:24Z itertools.repeat uses a counter just like xrange, so I still don't understand how it can be faster than xrange. Does it really matter what value the iterator yields: if it's None or an int (the counter)? http://stackoverflow.com/questions/1422147/advice-to-improve-concentration-in-noisy-office Comment by Cristian Ciupitu on Advice to improve concentration in noisy office? Cristian Ciupitu 2009-09-14T15:25:09Z 2009-09-14T15:25:09Z @Don: I think that he doesn't like both situations. I know I don't.