Cristian Ciupitu

1,045
reputation
134 views

Registered User

name Cristian Ciupitu
member for 1 year
seen 2 days ago
website
location Bucharest, Romania
age 27
There are 10 types of people: those who understand binary, and those who don't.
Dec
10
accepted how to use matplotlib in django?
Dec
9
awarded  Organizer
Dec
9
revised how to use matplotlib in django?
edited tags
Dec
9
comment Parental control or outbound firewall?
Shouldn't this question be moved to Super User?
Dec
9
revised how to use matplotlib in django?
Added links to matplotlib documentation
Dec
9
revised how to use matplotlib in django?
improved formatting
Dec
9
answered how to use matplotlib in django?
Dec
1
comment Finding sorted sub-sequences in a permutation
Sounds like homework to me.
Nov
26
comment shell script purpose of x in “x$VARIABLE”
@soulmerge: links please
Nov
26
answered shell script purpose of x in “x$VARIABLE”
Nov
25
comment XML Schema validation tool?
+1 for the xmllint program.
Nov
22
comment Which configuration properties are new in Firefox 3.6?
Isn't this question more appropriate for superuser?
Nov
20
revised What GNU/Linux command-line tool would I use for performing a search and replace on a file?
link to answer, not to profile
Nov
18
comment How to read line (from a file) and then append + print in python?
It would be useful if you would also include the actual output of this code.
Nov
17
awarded  Nice Answer
Nov
12
answered What software for your own personal use did you write?
Nov
10
revised CMS which is not a portal system
explain acronym
Nov
9
revised Recursion using C language
improved formatting
Nov
9
comment Fastest way to convert ‘(-1,0)’ into tuple(-1, 0)?
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.
Nov
8
revised Recursion using C language
mention that there are other issues too
Nov
8
comment Recursion using C language
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 perror function could be used, for example like this: perror("failed to open file"). On BSD compatible system including Linux (gcc -D_BSD_SOURCE), you can also use void err(int eval, const char *fmt, ...); from err.h.
Nov
8
revised Recursion using C language
clarified answer
Nov
8
revised Recursion using C language
added comments to the program + mention ctype.h; deleted 5 characters in body
Nov
8
answered Recursion using C language
Nov
8
comment Recursion using C language
fgets(input,100,fp) -> fgets(input,sizeof(input),fp)
Nov
6
comment SQL, remove appearances of a comma at end of the line.
What database server are you using?
Nov
6
comment python popen working directory argument
He's using subprocess.Popen 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 os.chdir documentation would have been nice.
Nov
5
awarded  Autobiographer
Nov
2
comment mysql - storing comma seperated string more efficiently
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).
Oct
31
comment What’s the best way(error proof / foolproof) to parse a file using python with following format?
If the input file is invalid and starts with value=data your program will crash because current has not been initialized. As the old saying goes, "Garbage In, Garbage out". Anyway +1 from me.
Oct
15
revised paste without temporary files in Unix
minor edit regarding Bash process substitution
Oct
15
revised paste without temporary files in Unix
mention bash
Oct
15
answered paste without temporary files in Unix
Sep
30
comment How to define a class in Python
@Oscar Reyes: no. If a default value is provided for them, those parameters are optional.
Sep
27
comment Is it possible to implement a Python for range loop without an iterator variable?
I understand now. The difference comes from the GC overhead, not from the "algorithm". By the way, I run a quick timeit benchmark and the speedup was ~1.42x.
Sep
26
comment Is it possible to implement a Python for range loop without an iterator variable?
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)?
Sep
17
awarded  Yearling
Sep
14
comment Advice to improve concentration in noisy office?
@Don: I think that he doesn't like both situations. I know I don't.
Sep
14
comment linux gedit: I always get “GConf Error: failed to contact configuration server …”
I think that this belongs to Super User or Server Fault.
Sep
14
revised Python __init__ setattr on arguments?
improved formatting
Sep
14
answered Python __init__ setattr on arguments?
Sep
13
comment What variable name do you use for file descriptors?
This is a bit unpythonic. PEP 8 recommends using lower_case_with_underscores.
Sep
13
comment Getting Started in C
Wikipedia has an example Makefile good for a simple program - en.wikipedia.org/wiki/Makefile#Example_makefile/….
Sep
13
comment Getting Started in C
For large projects the flags are specified in a Makefile so you don't have to repeat a dozen steps each time you want to compile. You simply run `make' and that's it. When your programs will grow large enough that they can be split in libraries, I would suggest you to learn a bit about Makefile. Btw, another popular build tool is SCons.
Sep
13
answered Multiple Tuple to Two-Pair Tuple in Python?
Sep
13
comment pythonic way to convert variable to list
Calling iter(input) and ignoring its result isn't a waste of resources? Wouldn't be better if you would only check the existence of the __iter__ attribute?
Sep
13
revised What exactly is the textual representation of Binary data?
added GNU od man page
Sep
13
answered What exactly is the textual representation of Binary data?
Sep
12
answered Why use **kwargs in python? What are some real world advantages over using named arguments?
Sep
12
comment Git for beginners: The definitive practical guide
On Fedora: yum install git. For the GUI run yum install git-gui.