Tyler McHenry

6,817
reputation
360 views

Registered User

name Tyler McHenry
member for 1 year
seen Dec 18 at 20:11
website
location Torrance, CA
age 25
Professional software engineer working on embedded systems for commercial aircraft.
Dec
6
awarded  Mortarboard
Nov
21
awarded  Yearling
Oct
13
awarded  Nice Answer
Oct
1
accepted How to ignore arrow keys in C reading from stdin?
Sep
23
accepted C++ template, linking error
Sep
8
answered Should const functionality be expanded?
Sep
8
revised Can someone please explain the difference between Big-O and Little-O Notation?
clarify, make parallel statements; added 21 characters in body
Sep
8
awarded  
Sep
4
answered 501 Sorry, but I won’t connect to ports < 1024
Sep
4
revised The simpliest question about OpenMP
edited tags
Sep
4
revised null pointer when getting function pointer using boost::function::target
code formatting
Sep
4
answered Is extern “C” only required on the function declaration?
Sep
4
comment Once I determine a var exist in PHP do I need to keep checking it in that page?
If what was set to zero? If you set $myCheck = 0 then $myCheck is false (javascript follows the C rule that 0 is false and non-zero is true). If auto_id is "0", then $myCheck will still be false since the value of the boolean expression assigned to $myCheck is false.
Sep
4
revised What ASP.NET MVC project files should be kept in a repository?
edited tags; edited title
Sep
4
answered Once I determine a var exist in PHP do I need to keep checking it in that page?
Sep
4
revised Why am I losing object references on the postback?
loosing -> losing
Sep
4
answered c++ template syntax error
Sep
3
comment SQL “specified data type is not valid” error
Please choose question titles that describe what your question is generally about. "Newbie question" could be pretty much anything.
Sep
3
revised SQL “specified data type is not valid” error
improve title
Sep
3
comment Array index limit in C
In particular I am suggesting that his program is crashing not because he asked for too much RAM but because he inadvertently passed a negative number as the argument to calloc.
Sep
3
comment Array index limit in C
Read my answer. I did not say "The system is able to allocate blocks of any size representable in a size_t". I said "size_t can represent any size block that the system is able to allocate." These are quite different statements.
Sep
3
answered Array index limit in C
Sep
3
awarded  Enlightened
Sep
3
accepted C++ Style: Prefixing virtual keyword to overridden methods
Sep
3
comment Worst UI You’ve Ever Used
As much as Outlook/Exchange is not exactly my cup of tea, I was thrilled beyond belief when we switched to it from Notes. In fact, I think I would have preferred the sweet release of death to continuing to use Notes.
Sep
3
comment Expected primary-expression before ‘,’ token in strsafe.h
In C, NULL is usually defined as (void*)0, though it is a straight 0 in C++.
Sep
3
comment C-Strings in C++
IMO, strtok is quite useful and a lot less painful than hand-coding everything when it comes to parsing strings using only the C standard library. But yes, you do have to beware of its gotchas including the string modification and its non-reentrancy (although POSIX provides a re-entrant version called strtok_r)
Sep
3
comment Add all natural numbers that are multiples of 3 and 5 : What is the bug in the following code.
It doesn't, unwind is wrong about that. Your checks are sufficient to prevent adding the same number multiple times (although your loop design is unorthodox and a little confusing at first read).
Sep
3
accepted Add all natural numbers that are multiples of 3 and 5 : What is the bug in the following code.
Sep
3
answered Add all natural numbers that are multiples of 3 and 5 : What is the bug in the following code.
Sep
3
answered How are array and pointer types handled internally in C compilers? ( int *a; vs. int a[]; )
Sep
3
comment Is C++ showing its age as programmers try to use it in ways it was never designed to be used?
That thing is an object from boost::spirit, which is a way to write a parser in C++. It uses (abuses?) operator overloading and templates to approximate the ability to write directly in EBNF syntax, which is why you end up with such ridiculous types (although of course you never write that kind of stuff out directly).
Sep
3
awarded  Nice Answer
Sep
3
accepted Whats the difference between “abc” and {”abc”} in C?
Sep
3
comment “Minus” operation on two files using Linux commands
I'd say this is easily the simplest of the answers that have been given so far.
Sep
3
comment “Minus” operation on two files using Linux commands
But still... I'm not an expert on join but from reading the man page, join A B will give you all the lines in both A and B, not the lines in A but not B, which is what you asked about. From what I can tell the join-based answer to your original question would be something like: join -t \n -v 1 A B | join -t \n -v 1 - C | join -t \n -v 1 - D
Sep
3
comment “Minus” operation on two files using Linux commands
Doesn't that do pretty much the opposite of what you want? That would give you lines that exist in all four files. Plus, it doesn't work if any of your lines have spaces in them.
Sep
3
comment C++ Style: Prefixing virtual keyword to overridden methods
Unfortunately there is no rationale included in the spec. It just says it is "legal but redundant (has empty semantics)". Would be interesting to hear, though, if there is any record of what the rationale was.
Sep
3
comment Allocation memory for display
Yes but what does the display class mean? This really smells like a "plz send teh codez" question.
Sep
3
revised “Minus” operation on two files using Linux commands
edited body
Sep
3
answered “Minus” operation on two files using Linux commands
Sep
3
comment Allocation memory for display
This question is unanswerable. Based on the comments, clearly you don't intend to allocate for the parameters dispClass, xRes, and yRes (let alone that they're not pointers-to-pointers). The only way to answer this question is to write the complete code that creates the display object, and we don't have nearly enough information for that.
Sep
3
answered C++ Style: Prefixing virtual keyword to overridden methods
Sep
3
comment java: is else necessary after if else if statements?
See, now this is what's wrong with the accept rate display. He accepted an answer that was unrelated to his problem...
Sep
3
revised Whats the difference between “abc” and {”abc”} in C?
added 904 characters in body; added 100 characters in body; added 25 characters in body
Sep
3
answered Whats the difference between “abc” and {”abc”} in C?
Sep
3
comment java: is else necessary after if else if statements?
This is a pretty darn good guess at what the problem is. Now if only the OP would actually show some code...
Sep
3
answered C-Strings in C++
Sep
3
answered java: is else necessary after if else if statements?
Sep
3
answered Naming Conventions: What to name a method that returns a boolean?