137 reputation
7
bio website
location
age
visits member for 2 years, 6 months
seen 7 hours ago
stats profile views 15

May
1
awarded  Popular Question
Mar
29
accepted Codeigniter: How should I list categories in my sidebar? Should I query on every pageload, or is there an accepted way to cache this data?
Mar
10
asked Codeigniter: How should I list categories in my sidebar? Should I query on every pageload, or is there an accepted way to cache this data?
Jan
15
comment How do I get a URL structure with useful information in CodeIgniter?
This solution ended up working perfectly. Thanks so much for the effort! :D
Jan
15
accepted How do I get a URL structure with useful information in CodeIgniter?
Jan
15
asked How do I get a URL structure with useful information in CodeIgniter?
Jan
8
comment How can I output the body of a webpage if the response code is 500 using curl?
Here's an example of what I'm talking about: 66.249.75.242 - - [04/Jan/2013:10:29:06 -0600] "GET /blah/details/21585/this-is-a-url HTTP/1.1" 500 752 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +google.com/bot.html)";
Jan
8
comment How can I output the body of a webpage if the response code is 500 using curl?
Well according to the access logs, every 500 response contain ~750 bytes (whereas a successful response is a few thousand), which would lead me to believe that an actual error page, possibly containing useful information, is displayed to the user. I would think that the small size would indicate that some error is displayed.
Jan
8
comment How can I output the body of a webpage if the response code is 500 using curl?
Strangely, I can't find anything in the logs with regards to a 500 error in the past few days. I'm not sure if there's a configuration error or what, but something's goofy and I can't find any trace of the error. I do, however, see the 500 errors in the access log. Just nothing about it in the error log. It's very strange.
Jan
8
asked How can I output the body of a webpage if the response code is 500 using curl?
Sep
26
comment Get value from SimpleXMLElement Object
More than two years later and this still helps.
Sep
21
comment Having trouble sorting a linked list in java in different ways, depending on user input
Thanks! This is so obvious in hindsight, haha.
Sep
21
accepted Having trouble sorting a linked list in java in different ways, depending on user input
Sep
21
asked Having trouble sorting a linked list in java in different ways, depending on user input
Aug
27
accepted Proper way to use the same large array in multiple functions without being redundant?
Aug
27
comment Proper way to use the same large array in multiple functions without being redundant?
Thanks for such a thorough answer! When would using globals be appropriate? Like for mathematical constant or something else?
Aug
27
comment Proper way to use the same large array in multiple functions without being redundant?
Hmmmm... This seems like a good solution for most problems, but what if I had a small, procedural, single file? Like a cron job or something? Would you still recommend a separate class?
Aug
27
comment Proper way to use the same large array in multiple functions without being redundant?
Sorry, I accidentally hit enter above. Here's what I meant to say: Ah, but what if I wanted to perform different operations on the same array? Perhaps I'd like one function to get the state code from the state name, and another function to get the state name from the state code. Surely I could do both of these things with the same array, so wouldn't it be a bad idea to have the same array in to different places?
Aug
27
comment Proper way to use the same large array in multiple functions without being redundant?
Ah, but what if my array were like
Aug
27
asked Proper way to use the same large array in multiple functions without being redundant?