cschol

3,096
reputation
300 views

Registered User

name cschol
member for 1 year
seen 3 hours ago
website
location Northern Colorado
age 31
At the beginning of my career I wrote software that just worked. Now I write software that doesn't fail.
13h
asked What is the purpose of this JavaScript?
Dec
10
awarded  Nice Question
Dec
6
comment writing a replacement for a function which takes a variable number of parameters (c programming)
Line 13 should be: int maxof(int n_args, ...) instead of int maxof(int n args, ...). The '_' seems to be missing in some places in the code. That's probably why is doesn't compile. Check all occurrences of 'n args' and make them 'n_args'.
Dec
1
awarded  Favorite Question
Nov
29
revised What next generation low level language is the best bet to migrate the code base ?
Corrected link to D (programming language)
Nov
21
comment Emacs: Disable line truncation in minibuffer only
That's exactly what I was looking for. Thanks! I kinda thought you would have a solution for this. ;)
Nov
21
asked Emacs: Disable line truncation in minibuffer only
Nov
20
answered How to get info: The Author/his Comments for the last subversion revision via command line?
Nov
19
comment String formatting expressions (Python)
+1 for dict-based approach. This can also be used with locals() and globals() to define the dict!
Nov
17
comment Python: reload component Y imported with ‘from X import Y’?
+1 for answer, rich, long comment and mentioning your employer's style guide. :)
Nov
16
revised For what reason do we have the lower_case_with_underscores naming convention?
Formatting
Nov
16
answered For what reason do we have the lower_case_with_underscores naming convention?
Nov
16
comment Python: reload component Y imported with ‘from X import Y’?
I see your point. Would you care to elaborate on any of the other good reasons why it is not a good idea?
Nov
16
revised Python: reload component Y imported with ‘from X import Y’?
Added clarification
Nov
16
asked Python: reload component Y imported with ‘from X import Y’?
Nov
15
comment Checking condition inside a loop
From the information provided. it is not clear what you are trying to do. Can you elaborate?
Nov
15
revised What does ‘y’ in the output stand for in C?
Edit for clarification after seeing code
Nov
15
revised What does ‘y’ in the output stand for in C?
Added edit
Nov
15
answered What does ‘y’ in the output stand for in C?
Nov
15
comment What does ‘y’ in the output stand for in C?
Can you post your code?
Nov
15
comment Python: data vs. text?
Thank you for the detailed update.
Nov
15
comment Linux Development C/C++/bash/python on windows-7.
FYI, latest python version in Cygwin is 2.5.2.
Nov
15
comment Python: data vs. text?
I understand why it is a good idea to do this, but I am still not clear as to how exactly. Unless a function explicitly expects a string of bytes, when do I use a string of bytes vs a string of characters? my_dict[b'mykey'] or my_dict[u'mykey']? When is it considered data, when is it considered text?
Nov
15
asked Python: data vs. text?
Nov
14
revised concept of class and object
Added clarification
Nov
14
comment concept of class and object
@cartoonfox, @Pete Kirkham: maybe, but do you really think that's what the op was after?
Nov
14
comment emacs C and C++
Emacs can be anything you want it to be. Even an IDE. What Emacs is really 'meant to be' is probably another more philosophical discussion.
Nov
14
answered concept of class and object
Nov
14
answered strlen() implementation in gcc
Nov
13
comment One Line ‘If’ or ‘For’…
+1 for List Comprehension
Nov
10
revised clear code for counting from 0 to 255 using 8-bit datatype
Added example code
Nov
10
answered clear code for counting from 0 to 255 using 8-bit datatype
Nov
10
comment How to capture a string into variable in a recursive function?
What exactly is the output of your code?
Nov
10
comment Source Control: How to Handle Different csproj
Ah...coding standards...everybody should have one. Even if only to constantly fight over its content. :)
Nov
10
comment Source Control: How to Handle Different csproj
Why do you have 5 csprojects? Can't you just agree on a format and use 1 csproject?
Nov
9
revised Replace characters in C#
Corrected spelling
Nov
9
comment can somebody explain me the python yield statement?
Great answer! One thing I noticed, in the paragraph "To master yield, [...] The function only returns the iterator object, this is bit tricky :-)" Shouldn't it say "The function only returns the GENERATOR object, ..."?
Nov
8
revised robust string reverse
Clarification, spelling
Nov
8
revised robust string reverse
Improved formatting
Nov
8
answered robust string reverse
Nov
8
answered viewing source of namespace resolver functions linux fedora
Nov
7
answered Why Interpreted Languages Are Slow?
Nov
7
answered Tools that automate merging of text files?
Oct
14
revised Fonts for use in embedded GUI
Added paragraph
Oct
14
comment Fonts for use in embedded GUI
ASCII only is fine.
Oct
14
asked Fonts for use in embedded GUI
Oct
13
awarded  Popular Question
Oct
9
awarded  Popular Question
Sep
13
comment C definition formatting question
Don't put two definitions on one line and there is also no problem.
Aug
27
comment Replace double backslash with single backslash in Emacs
Yes, evaluating in a buffer like scratch I could do the same thing with (while (search-forward "\\\\" nil t) (replace-match "\\" nil t)), while of course your solution is a lot easier, but I need to wrap it in a command somehow.