Chris Lutz

12,351
Reputation
1252 views

Registered User

Name Chris Lutz
Member for 10 months
Seen 2 days ago
Website
Location North Carolina, USA
Age 20
I'm a "hobbyist" programmer who knows Perl and C, works with PHP, and has dabbled in assembly, Python, C++ and Ruby. I also enjoy esoteric languages like brainf*ck. I plan on learning more Python, and then try something hard like Lisp or Forth or Erlang. And eventually Prolog.
2d
comment C library function to do sort
You might also use sizeof(x) / sizeof(x[0]) in case your array size ever changes. You might also abstract that away into a macro, and you might change the declaration to x[] = so that the size can change without breaking your code. And for the final pedantry, you should never use an int to index arrays - that's what size_t is invented for.
2d
comment Question on extern specifier in C
The problem is the same: You have two global variables with external linkage with the same name, and you need to use both of them. And the answer is, in C, you can't. In C++ you can with namespaces, but then they don't really have the same name, so why not just give them new names and not have to bother with the hassle in the first place?
2d
answered Question on extern specifier in C
2d
comment Question on extern specifier in C
That is, assuming there should only be one variable. I think the OP wants two global variables with the same name, which is rather silly, and I assume a theoretical simplification of a more complex flawed design.
2d
comment printf((char *) i); runtime error? (i as integer)
For the record, instead of doing if((i % 3 == 0) && (i % 5 == 0)) you could just do if(i % 15 == 0).
2d
comment Why are Perl source filters bad and when is it OK to use them?
What about the macro #define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0]))? Does that degrade your ability to understand what the code is doing just by looking at it?
2d
comment Why are Perl source filters bad and when is it OK to use them?
According to $ perl -MO=Deparse -e '@result = (dothis $foo, $bar)' it parses as @result = ($foo->dothis, $bar); Talk about ambiguity. If we predeclare sub dothis with no prototype or a prototype of ($$) or (@) it parses as @result = dothis($foo, $bar). It only parses as @result = (dothis($foo), $bar) if we declare it with a prototype of ($).
Nov
23
comment regular expression matching everything except a given regular expression
If you have a regex that matches everything you don't want, and doesn't match everything you want, why not just use not?
Nov
20
comment Code Golf: Running Water
Woah! Look at all those spaces! And those ' ' character literals! And all those local variables! I'm not sure how many of those variable declarations you can stuff into globals, but at the very least, you can #define c char to shorten all of those declarations, and change character literals to the raw numbers. #define w while could help if you didn't have a variable named w already. Also, why do you have avariable (w1) with a two-character name? I would golf it a little myself, but I have finals to do.
Nov
19
comment Code Golf: Running Water
Your last example has incorrect output. The landscape changes! Earthquake!
Nov
19
comment Most inappropriate function or variable names you have encountered?
Now the question is, did their efforts to get better grades work, Mr. Hotness?
Nov
19
comment Shorten Python imports?
Actaully, the OP has a nice picture of himself. Why did I say he/she?
Nov
19
comment Shorten Python imports?
+1 for myproject to myhorror, but I think the OP was just saying myproject.folder_in_myproject.specific_file_in_my_project.function_I_want rather than actually having a file.py file he/she was importing.
Nov
19
comment Python func_dict used to memoize; other useful tricks?
_memo isn't a local variable - it's an optional parameter. If you observe the function def t(n, o=[]): o.append(n); return o you'll see that t(1), t(2), t(3) returns [1], [1, 2], [1, 2, 3]. This is because the assignment of optional parameters is done once, at the function's definition, and because [] is a list (and is mutable). If you don't want this to happen, you'd have to do def t(n, o=None): if o == None: o = []; o.append(n); return o which would produce the expected [1], [2], [3] output in the above test. However, this unintuitive behavior can be utilized for memoization.
Nov
19
comment Whats wrong with this program?
My $0.02: You could make a global variable, static int initialized = 0; and in Initialize() check if(initialized) return; and add initialized = 1; at the end. Alternatively (or additionally), we could add if(!initialized) { Initialize(); initialized = 1; } to Convert(). Basically, the setup may lose a tiny amount of speed, but we never have to call Initialize() separately - it'll be called for us if we forget to. Of course, this is a bit un-C-like, but it's still nice.
Nov
19
comment Regular expressions performance: Boost vs. Perl
Technically, PCRE has some slight differences from Perl's regexes, but they're edge cases. I would bet Perl's regexes are slightly faster but I doubt it matters.
Nov
19
comment Regular expressions performance: Boost vs. Perl
Also, there are two Perl versions that occur in the "Interesting Alternatives" section that are faster than anything else.
Nov
19
comment Regular expressions performance: Boost vs. Perl
You can also link to libperl and use Perl's regular expressions without having the overhead of the full Perl interpreter. The API may not be designed for it, but it's certainly possible.
Nov
19
comment Regular expressions performance: Boost vs. Perl
I seriously doubt that regex benchmark is accurate. I've never seen Python's regex engine outperform Perl's.
Nov
19
comment Regular expressions performance: Boost vs. Perl
PCRE is probably going to be very good for you. However, if you really need to, you can also link to Perl itself, and gain access to it's regex internals. No guarantees on the usability of the API though.
Nov
18
comment How do I find which elements in one array aren’t in another?
@Ether - Because microoptimization is fun, my becnhmarks show that as being slightly faster than map. Clever and efficient.
Nov
18
comment What are function pointers used for, and how would I use them?
@Joy - In the switch() statement.
Nov
18
comment Why does Perl’s autovivification work in this case?
What's happening is it's autivivifying a variable called %foo (because that's what happens when you use a string as a reference). Add print Dumper(\%foo) to the end of your code to see the dangerous results.
Nov
18
answered How do I find which elements in one array aren’t in another?
Nov
18
comment How to check if structs are initialised or not
+1 for extreme cleverness.
Nov
18
accepted How to check if structs are initialised or not
Nov
18
revised How to check if structs are initialised or not
Technicalities
Nov
18
comment How to check if structs are initialised or not
@caf - I was just made aware of that point. I've checked and, though I thought the wording was just "calloc sets stuff to zero" it does specify "all bits zero" which means that, yes, I do believe this super-edge-case is valid.
Nov
18
comment How to check if structs are initialised or not
@sgm - That's tricky. I know void *p = 0; is identical to a null pointer by the standard, but I don't know about calloc() because it says "all-bits zero" rather than just "assigned to zero."
Nov
18
revised How to check if structs are initialised or not
Whoops! So THAT'S how dict is defined...
Nov
18
comment How to check if structs are initialised or not
@sgm - How is it wrong?
Nov
18
comment How to check if structs are initialised or not
+1 for John Wayne here.
Nov
18
comment How to check if structs are initialised or not
@nubela - I just wrote a lot of things as an answer. I hope they help.
Nov
18
answered How to check if structs are initialised or not
Nov
18
comment How to check if structs are initialised or not
-1 for missing null vs. NULL
Nov
18
comment How to check if structs are initialised or not
Use NULL instead of null. null isn't part of C.
Nov
18
answered What are function pointers used for, and how would I use them?
Nov
18
awarded  Nice Question
Nov
17
awarded  c
Nov
17
answered How to return the index of ascii char in C
Nov
16
answered sorting function in python.
Nov
15
answered Remove elements by index in haskell
Nov
12
answered uint8_t vs unsigned char
Nov
12
revised multiple ‘++’ working in variables, and pointers.
Whew.
Nov
12
revised perl subroutine call
Formatting
Nov
11
answered Removing macro in legacy code
Nov
11
answered Insertion Sort Code Challenge
Nov
5
awarded  Nice Answer
Nov
5
answered What is this syntax?
Nov
5
answered What am I missing in the following program?