Evan Teran

13,356
Reputation
695 views

Registered User

Name Evan Teran
Member for 1 year
Seen 34 mins ago
Website
Location Virginia, USA
Age 29
RIT graduate, currently living in VA working in the field of computer security research and development
2d
comment How to get value from 15th pin of 32bit port in ARM?
@Ron: good point, if the goal is to just do a boolean test then your suggestion could potentially compiler to slightly better code.
Nov
28
comment How to get value from 15th pin of 32bit port in ARM?
well that is something that is processor specific. One x86 you would use some assembly or compiler intrinsic to perform an in or out instruction to read and write I/O ports.
Nov
27
answered How to get value from 15th pin of 32bit port in ARM?
Nov
26
revised help with template mergesort function
added 39 characters in body
Nov
25
revised help with template mergesort function
added 187 characters in body
Nov
25
answered help with template mergesort function
Nov
25
revised help with template mergesort function
added 380 characters in body
Nov
24
answered Ideal data structure for mapping integers to integers?
Nov
13
revised Just Want to know what this error message really means!
added 236 characters in body
Nov
13
revised Iterating over string/strlen with umlauted characters
added 358 characters in body; deleted 316 characters in body; added 47 characters in body
Nov
13
comment Iterating over string/strlen with umlauted characters
well that code assumes that the string is multibyte (like utf-8). But also, look at the comment.. it says "do whatever with wc..." THAT is the multibyte character converted to a wchar_t.
Nov
13
comment Iterating over string/strlen with umlauted characters
whoops, fixed that for ya. That's what I get for posting without compiling.
Nov
13
revised Iterating over string/strlen with umlauted characters
added 264 characters in body; added 22 characters in body
Nov
13
answered Iterating over string/strlen with umlauted characters
Nov
13
comment C++ Array Sort Me
can we assume that howmany is set to 14?
Nov
13
revised C++ Array Sort Me
added 230 characters in body
Nov
13
comment Adding elements to a vector inside a c++ class not being stored
what exactly do you mean by "ClusterManager, it is no where to be seen". Are you seeing an issue at runtime, or is the debugger just having problems seeing that variable?
Nov
13
comment Adding elements to a vector inside a c++ class not being stored
you should know that this->x can just be written x the vast majority of the time.
Nov
12
awarded  Strunk & White
Nov
12
revised uint8_t vs unsigned char
edited body; edited title
Nov
10
revised Overloading *(iterator + n) and *(n + iterator) in a C++ iterator class?
deleted 23 characters in body
Nov
10
answered Overloading *(iterator + n) and *(n + iterator) in a C++ iterator class?
Nov
9
comment Is lock free multithreaded programming making anything easier?
do you have a link to this library you mentioned? I think some people here would be interested to see it.
Nov
9
revised What is #defined if a compiler is Cpp0x compliant?
edited body; edited body
Nov
9
comment Give me assignments on pointers.
@Ravi: you should try to be a little less vague. You should describe which aspects of pointers you find confusing.
Nov
9
answered Give me assignments on pointers.
Nov
8
comment how to print out each bit of a floating point number?
@tsubasa: you should know that your function could be written in one line: return a & 1<<loc; Doing something like if (buf == 0) return 0; else return 1; is silly, you could just return buf since it will be either 0 or 1.
Nov
8
comment Code Golf: Hourglass
@gnibbler: because it was the first post to also be shaped like an hourglass. That definitely gave it a few extra votes in the beginning.
Nov
7
comment Code Golf: Hourglass
I looked into that, and it actually wont. Because Currently I can write: C*l with no space, if C is a char* I will need to have a space! and write: C l so it will be a net loss.
Nov
7
revised Code Golf: Hourglass
deleted 12 characters in body
Nov
7
revised Code Golf: Hourglass
deleted 79 characters in body
Nov
7
comment Code Golf: Hourglass
one thing to note is that this isn't valid C, just C++. so the "C/C++" in the heading is misleading.
Nov
6
revised Code Golf: Hourglass
deleted 34 characters in body; deleted 28 characters in body
Nov
6
revised Code Golf: Hourglass
added 37 characters in body; deleted 26 characters in body
Nov
6
revised Code Golf: Hourglass
deleted 36 characters in body; edited body
Nov
6
revised Code Golf: Hourglass
deleted 44 characters in body; deleted 66 characters in body
Nov
6
revised Code Golf: Hourglass
added 755 characters in body
Nov
6
revised Code Golf: Hourglass
deleted 49 characters in body; deleted 2 characters in body; deleted 3 characters in body
Nov
6
revised Code Golf: Hourglass
deleted 15 characters in body; deleted 23 characters in body
Nov
6
revised Code Golf: Hourglass
deleted 106 characters in body; deleted 45 characters in body; deleted 15 characters in body
Nov
6
revised Code Golf: Hourglass
deleted 46 characters in body; deleted 2 characters in body; deleted 17 characters in body
Nov
6
answered Code Golf: Hourglass
Nov
3
comment How much memory does a constant take in C?
if it is both global and will never change, give the optimizer a helping hand and make it static const int a = 5;
Nov
2
awarded  Nice Answer
Nov
2
accepted How can get exact total space of a drive via c in linux?
Oct
31
comment Linux optimistic malloc: will new always throw when out of memory?
I would say that was clearly a 64-bit machine. Even if there was no way that he had that much mem available, the address space of the process is bigger than 1TB.
Oct
31
answered Linux optimistic malloc: will new always throw when out of memory?
Oct
31
comment Memory allocation in C
all good points, +1
Oct
31
accepted Cleaner pointer arithmetic syntax for manipulation with byte offsets
Oct
30
awarded  Nice Answer