Mark Santesson
|
Registered User
|
I have worked in the games industry (graphics, performance, level editors, special effects, physics), on seismic exploration processing (beowulf-life clusters), and in the financial industry (C++, Python, linux process management).
I'm particularly interested in performance optimization (temporal and spatial), and fractals.
|
|
Oct 28 |
revised |
What is the point of clog? edited tags |
|
Oct 23 |
comment |
Why does stdlib.h’s abs() family of functions return a signed value? My point is, your only downside is if you are at INT_MIN, and that would be really rare. My sentence beginning with "Personally," hints at the "type" explanation provided by caf. The main thrust of my answer was to try to convince people that they hadn't lost much. |
|
Oct 23 |
revised |
What is a smart pointer and when should I use one? deleted 2 characters in body |
|
Oct 23 |
revised |
What is a smart pointer and when should I use one? deleted 21 characters in body |
|
Oct 23 |
answered | Why does stdlib.h’s abs() family of functions return a signed value? |
|
Oct 21 |
awarded | ● Enlightened |
|
Oct 8 |
awarded | ● Popular Question |
|
Sep 6 |
awarded | ● Yearling |
|
Aug 8 |
accepted | I’m stuck in trying to grep anything just after `name=` |
|
Aug 8 |
revised |
I’m stuck in trying to grep anything just after `name=` Fixed mistaken quotations |
|
Aug 8 |
comment |
I’m stuck in trying to grep anything just after `name=` Most likely a very suitable solution, but the asker asked about grep... and it doesn't match only spaces and alphanumerics. |
|
Aug 8 |
comment |
I’m stuck in trying to grep anything just after `name=` I was worried about that, too, so I tried it on my Windows PC, and that is why I had to use the -P parameter. It probably supports it in the other flavors (maybe not -G), but I didn't know the proper escaping for the elements. I'm using grep 2.5.1. |
|
Aug 8 |
revised |
I’m stuck in trying to grep anything just after `name=` added 552 characters in body |
|
Aug 8 |
answered | I’m stuck in trying to grep anything just after `name=` |
|
Aug 5 |
revised |
Static Pointer to Dynamically allocated array. added 12 characters in body |
|
Aug 5 |
answered | Static Pointer to Dynamically allocated array. |
|
Aug 2 |
awarded | ● Autobiographer |
|
Jul 30 |
comment |
How to dump the symbols in a .a file A similarly useful program is "strings", which prints everything in a binary that looks like a null terminated string. |
|
Jul 19 |
revised |
Is there a tool that enables me to insert one line of code into all functions and methods in a C++-source file? added 22 characters in body |
|
Jul 19 |
answered | Is there a tool that enables me to insert one line of code into all functions and methods in a C++-source file? |
|
Jul 11 |
comment |
Where can I learn the basics of game physics and the math behind it? I'd recommend Eberly's "3D Game Engine Design". That focusses a bit more on the collision detection rather than restitution, though. |
|
Jul 11 |
comment |
Where can I learn the basics of game physics and the math behind it? I found my statics and dynamics textbooks very useful when programming a physics engine. Conservation of momentum (linear and angular) and conservation of energy are the basic equations that will produce the whole system. |
|
Jul 8 |
awarded | ● Populist |
|
Jul 4 |
comment |
How to check the length of an input? (C++) linux.die.net/man/3/snprintf |
|
Jul 3 |
revised |
How to check the length of an input? (C++) added 117 characters in body |
|
Jul 3 |
answered | How to check the length of an input? (C++) |
|
Jul 3 |
comment |
How to check the length of an input? (C++) Why can't you check the len of the string? "len=strlen(lvlinput);" You probably want to do something like: snprintf(param_str, 20, "levelplayer.exe %03d", atoi(lvlinput);" |
|
Jul 3 |
revised |
C Program to search n-th smallest element in array without sorting? Included better algo for sorting top m entries |
|
Jul 1 |
awarded | ● Good Answer |
|
Jun 28 |
revised |
C Program to search n-th smallest element in array without sorting? nicer to read |
|
Jun 28 |
revised |
C Program to search n-th smallest element in array without sorting? added 105 characters in body |
|
Jun 28 |
answered | C Program to search n-th smallest element in array without sorting? |
|
Jun 25 |
awarded | ● Nice Answer |
|
Jun 21 |
revised |
Advice on how to approach The Art of Computer Programming? made some sections clearer |
|
Jun 21 |
revised |
What have you used Regular Expressions for? added 1 characters in body |
|
Jun 21 |
revised |
C++ Accessing the Heap deleted 1 characters in body |
|
Jun 21 |
revised |
Advice on how to approach The Art of Computer Programming? edited body |
|
Jun 20 |
comment |
Advice on how to approach The Art of Computer Programming? @Neil - I agree entirely. Too much math for my taste, but that is what makes it so perfect. Math is the universal truth, and Knuth is as close as programming gets to it. Aw, let's face it: if you're trying to get your qsort to work, understanding the universal truths behind algorithm Q is probably not going to get you there. |
|
Jun 20 |
revised |
Advice on how to approach The Art of Computer Programming? Included page number of heap sort |
|
Jun 20 |
answered | Advice on how to approach The Art of Computer Programming? |
|
Jun 20 |
revised |
Never produce to an unknown pathway, in software too? [Toyota principle] added halo anecdote |
|
Jun 20 |
revised |
What is a smart pointer and when should I use one? made a few things clearer |
|
Jun 12 |
comment |
find & replace part of text What about "perl -ple 's/search regex/replace string/"? Grep has absolutely no replace functionality, only searching. Sed is the usual answer. |
|
Jun 12 |
comment |
What is a data structure that has O(1) for append, prepend, and retrieve element at any location? It should be noted that adding to a deque is only amortized O(1) time... any individual add operation can be O(n) if a resize is necessary. |
|
Jun 11 |
awarded | ● Nice Answer |
