Adam Rosenfield

40,457
Reputation
2731 views

Registered User

Name Adam Rosenfield
Member for 1 year
Seen 10 hours ago
Website
Location US
Age 23
Game programmer from Cambridge, MA. Currently employed at Demiurge Studios.
12h
comment Laplace Transform
Belongs on mathoverflow.net
14h
comment Name of C/C++ stdlib naming convention?
Pre-ansi compilers only considered the first 6 characters of a symbol to be salient in order to be compatible with Fortran, IIRC, so the symbols strlen, strlenxyz, and strlenohmygodwhathaveidone all referred to the same thing. So, for compatibility with pre-ANSI compilers, the ANSI C standard made sure the first 6 characters of all standard library symbols were unique among each other.
1d
answered How to call erase with a reverse iterator
1d
answered Which most common extensions are there (or used) to ANSI C?
1d
comment How to make this sed script faster?
Please give the entire command line you're using. Plain sed -f reads from stdin and writes to stdout, which is obviously not what you're doing.
1d
comment How to make this sed script faster?
How are you invoking sed? Is the file definitely on your local disk and not, say, on an NFS mount?
1d
comment Display socket options
You can also try fuser(1) linux.die.net/man/1/fuser or netstat(8) linux.die.net/man/8/netstat , but if lsof doesn't work and they don't work, you might be out of luck on your system.
2d
awarded  Nice Answer
2d
answered Display socket options
2d
revised What may cause losing object at the other end of a pointer in c++?
formatting
2d
accepted obj-c linear interpolation between two numbers
2d
answered obj-c linear interpolation between two numbers
Nov
30
answered C++ static virtual members?
Nov
30
comment How to create a super-huge file with pure c or linux-shell or dos-commands?
Even if it didn't, it's fairly easy to use a pair of fseek(HUGE) and fwrite(a byte) to achieve the same thing.
Nov
30
comment gcc/g++: error when compiling large file
I know the Markdown JavaScript starts taxing my CPU as I'm typing after a few KB; I imagine 40 MB would give me a spinning rainbow of death.
Nov
30
comment gcc/g++: error when compiling large file
You should have kept the PNG data in source files, not headers. Header files should just have extern const char img_data[]; extern const size_t img_data_size; and the source files should have char img_data[] = {...}; const size_t img_data_size = sizeof(img_data); It's much easier for the compiler to handle, and files using the image data don't need to be recompiled when the images change.
Nov
30
answered gcc/g++: error when compiling large file
Nov
29
accepted printing ip addresses using gdb
Nov
29
answered printing ip addresses using gdb
Nov
29
revised I am new to threads, What does this compile error mean?
added 19 characters in body
Nov
28
answered Why doesn’t the following (perfectly valid) C code show the contents of a file in Objective-C?
Nov
28
comment Why doesn’t the following (perfectly valid) C code show the contents of a file in Objective-C?
Your first two points are valid, but the cast to int is perfectly fine. For variadic functions like printf, the extra arguments undergo promotion, whereby `char`s are promoted to ints implicitly (among other promotions). Casting it to int just makes the promotion explicit instead of implicit. It's better to remove it, but it will still function perfectly fine with the cast.
Nov
28
comment If condition issue in shell
Important note: if $m is the empty string, this will evaluate to a syntax error. To prevent that, a common idiom is to test if [ "x$m" = x- ].
Nov
28
answered string array in java
Nov
28
accepted unique elements - struct array
Nov
28
answered unique elements - struct array
Nov
28
accepted integer automatically converting to double but not float
Nov
28
answered On Win32, how to detect whether a Left Shift or Right ALT is pressed using Perl, Python, or Ruby (or C)?
Nov
28
comment struct - sorting a c-string with qsort
Nitpick: you're not being const-correct here, as you're casting away the constness. It should be mystruct *ia = *(mystruct * const *)a etc., although no harm is done in this case.
Nov
27
revised Hide stderr output in unit tests
added 465 characters in body; added 24 characters in body
Nov
27
answered Hide stderr output in unit tests
Nov
27
revised Is the following C++ casting correct?
code formatting
Nov
27
comment Line-breaking Expression in Python
Also works list/dictionary definitions with brackets and braces respectively.
Nov
27
comment Will Python 3 Fail?
How about printf("3\n"), or even puts("3")?
Nov
27
comment Why isn’t my virtual function working?
Did you override the Clone() method? You declared it pure virtual in the base class, which would make the derived class also abstract if you failed to override it, which it looks like you did.
Nov
27
comment Why linux is called monolithic kernel
Windows is most definitely a monolithic kernel.
Nov
26
comment What Easter Eggs have you placed in code?
blogs.msdn.com/oldnewthing/archive/…
Nov
26
comment What Easter Eggs have you placed in code?
@Zee JollyRoger: moviequotes.com/fullquote.cgi?qnum=69064/…
Nov
25
answered which is better, using a nullable or a boolean return+out parameter
Nov
25
comment C: Initialize module variable
See also stackoverflow.com/questions/1787875/…
Nov
24
answered Do all Hash-based datastructures in java use the ‘bucket’ concept?
Nov
24
accepted Is there a g++ equivalent to Visual Studio’s __declspec(novtable)?
Nov
24
accepted Question on extern specifier in C
Nov
24
answered Question on extern specifier in C
Nov
24
answered Is there a g++ equivalent to Visual Studio’s __declspec(novtable)?
Nov
24
answered Use ImageMagick to place an image inside a larger canvas
Nov
24
answered Why doesn’t this division work in python?
Nov
23
accepted typedef _W64 unsigned int UINT_PTR, *PUINT_PTR;
Nov
23
answered typedef _W64 unsigned int UINT_PTR, *PUINT_PTR;
Nov
23
revised Why do I get the same result with rand() every time I compile and run?
fixing seeding function name