Andrew Keeton

2,233
Reputation
199 views

Registered User

Name Andrew Keeton
Member for 9 months
Seen 38 mins ago
Website
Location Pittsburgh, PA
Age 21
I'm a third year student of Computer Science at Carnegie Mellon University and I'm looking for a job this coming summer!
1h
awarded  Mortarboard
Dec
3
comment Invalid Token when using Octal numbers.
Think of the possibilities for magic constants... no longer being constrained to 0xdeadbeef, etc. :o
Nov
22
comment what does abstract mean in this context?
Also, don't be confused that Stack Overflow highlights abstract as if it were a keyword. The system that SO uses has to accommodate multiple programming languages, and in many abstract is a keyword. But not in Python.
Nov
22
revised what does abstract mean in this context?
Fixed indentation a bit
Nov
22
comment what does abstract mean in this context?
This makes me a sad (programming) panda.
Nov
19
comment RegEx match open tags except XHTML self-contained tags
@John Rasch Oy! You got your Unicode in my ASCII!
Nov
19
comment RegEx match open tags except XHTML self-contained tags
@Bill In all its glory: imgur.com/gOPS2.png
Nov
1
awarded  Self-Learner
Nov
1
accepted How can I use Microsoft Word’s spelling/grammar checker programmatically?
Oct
30
revised How can I use Microsoft Word’s spelling/grammar checker programmatically?
added 145 characters in body; edited tags
Oct
30
comment char *a, *b; what type is (b-a) and how do I printf it?
+1 For C standard quirks like a pointer difference not fitting inside of a ptrdiff_t (I can also think of much nastier words than "quirks").
Oct
30
revised How can I use Microsoft Word’s spelling/grammar checker programmatically?
deleted 6 characters in body
Oct
30
answered How can I use Microsoft Word’s spelling/grammar checker programmatically?
Oct
29
revised How can I use Microsoft Word’s spelling/grammar checker programmatically?
added 266 characters in body
Oct
29
asked How can I use Microsoft Word’s spelling/grammar checker programmatically?
Oct
28
comment complexity help..O(n^2), 0(nlog) etc
If you randomize the pivots, the expected number of comparisons done in Quicksort is at most 2n*ln(n). See cs.cmu.edu/~odonnell/prob/lecture7.pdf.
Oct
28
comment Why do we need to typecast what malloc returns?
This is the typical response, but I don't completely agree. Sure, if you have a braindead compiler it might let you get away without including stdlib.h, but there are some cases where you can let the compiler check your work. See my comment on stackoverflow.com/questions/1322884/…
Oct
12
revised Have you ever been the victim of a bug in a programming language or technology?
added 191 characters in body; edited tags
Oct
12
comment Have you ever been the victim of a bug in a programming language or technology?
Good point, fixed.
Oct
12
asked Have you ever been the victim of a bug in a programming language or technology?
Oct
6
awarded  Tumbleweed
Oct
1
comment gets() does not work
+1 for warning about gets. So dangerous that the C standard actually deprecated it. (They could stand to deprecate a few more, however...)
Sep
29
asked Signature inside of a structure
Sep
25
comment for line in open(filename)
I think you mean f instead of filename in "filename would be closed..."
Sep
19
revised How to understand complicated function declarations?
added 7 characters in body; edited tags
Sep
16
revised What is a good data structure to represent an undirected graph?
added 53 characters in body
Sep
16
revised What is a good data structure to represent an undirected graph?
deleted 1 characters in body
Sep
16
comment What is a good data structure to represent an undirected graph?
I feel like an ass for not looking at your links; I just assumed they were the standard adjacency list vs matrix stuff. Even though they're not exactly what I was looking for, they were still helpful.
Sep
15
comment What is a good data structure to represent an undirected graph?
I'm sorry but I voted down your answer so it wouldn't get auto-accepted. Not that it isn't helpful, it's just that it I don't think it (or the other answers) deserve to be accepted yet. If you go ahead and edit it I will retract my -1.
Sep
15
revised Garbage collection vs. non garbage collection programming languages
added 313 characters in body; added 49 characters in body; deleted 48 characters in body
Sep
15
answered Garbage collection vs. non garbage collection programming languages
Sep
14
revised Can/Why using char * instead of const char * in return type cause crashes?
added 152 characters in body
Sep
14
revised Can/Why using char * instead of const char * in return type cause crashes?
added 18 characters in body; added 209 characters in body
Sep
14
answered Can/Why using char * instead of const char * in return type cause crashes?
Sep
13
revised Can learning C or C++ be dangerous to my computer?
deleted 1 characters in body
Sep
13
comment Getting Started in C
+1 for -Wall. I would also add -Wextra and -std=c99 to the mix.
Sep
12
revised What is a good data structure to represent an undirected graph?
added 1901 characters in body; edited tags
Sep
11
comment Are do-while-false loops common?
+1 goto gets a bad rap, but in this case it just makes sense.
Sep
11
comment Getting the the keyword arguments actually passed to a Python method
+1 I've learned so many neat things about Python from SO.
Sep
10
comment C: Effective Macro Usage
@Christoph True, see stackoverflow.com/questions/1296843/… for more.
Sep
10
answered C: Effective Macro Usage
Sep
10
answered Problem with mips assembly
Sep
9
revised Which one will be faster
edited body
Sep
9
revised objective c NSString comparision
edited tags
Sep
8
revised What is a good data structure to represent an undirected graph?
deleted 13 characters in body
Sep
8
revised What is a good data structure to represent an undirected graph?
added 5 characters in body
Sep
8
comment problem with getchar() in C
Sorry to be harsh about fflush(stdin), but it's one of those things that really seems like it should work until it causes a nasty bug that you can't track down.
Sep
8
comment problem with getchar() in C
See my answer or the accepted answer in stackoverflow.com/questions/1384073/…. It comes down to a) using fgets to read the entire line then parse it using sscanf or b) putting in a second getchar to "eat" the newline.
Sep
8
comment problem with getchar() in C
See stackoverflow.com/questions/1384073/….
Sep
8
comment problem with getchar() in C
fflush(stdin) is undefined behavior. Don't do it.