74,039 reputation
9121195
bio website john.kugelman.name
location Virginia
age 30
visits member for 4 years, 4 months
seen 2 hours ago
stats profile views 3,255

2h
comment How could get useful clues from strange kernel panic without correct call trace?
Are you modifying kernel code or developing a kernel module? If so please give us some context for how this is programming-related.
1d
answered Check for individual words in a string
1d
revised Separate digits in var not char
added 9 characters in body
1d
revised How do I make a function return a pointer to a new string in C?
added 5 characters in body
1d
answered Replacing dumb quotes for smart quotes with preg_replace
1d
comment Replacing dumb quotes for smart quotes with preg_replace
SmartyPants is a free web publishing tool that translates plain ASCII punctuation characters into “smart” typographic punctuation HTML entities.
Jun
14
answered How to compare multidimensional array keys
Jun
14
awarded  Enlightened
Jun
14
awarded  Nice Answer
Jun
14
answered Regex Matching - Content within brackets
Jun
14
comment How do I change the order in which grep looks at files/prints results?
@pandubear Yes, exactly. Couldn't have said it better.
Jun
14
answered How do I change the order in which grep looks at files/prints results?
Jun
14
revised Bit shifting repeating pattern
added 311 characters in body
Jun
14
answered Bit shifting repeating pattern
Jun
13
answered Shared Environment File
Jun
13
awarded  Nice Answer
Jun
13
answered I'm trying to perform the transitive reduction of directed graph in Python
Jun
12
answered Shell Script for counting down passed argument
Jun
12
revised Shell Script for counting down passed argument
deleted 140 characters in body
Jun
11
comment How do I fix a “syntax error near unexpected token `('”?
@gdw2 How did you enable extglob? Makefiles don't use the shell options from the parent shell, they run a new shell for every line. You need to configure the shell options within the Makefile. $ shopt -s extglob; make won't work.