Nick

2,541
Reputation
404 views

Registered User

Name Nick
Member for 1 year
Seen yesterday
Website
Location US
Age 36
I build physics based games and release them at physle.com. I have lots of vinyl and am sometimes convinced to play it at parties and bars. I have a day job at a performing arts center which will not be named so as to protect its reputation from my snark.
Nov
19
accepted What am I doing that’s unnecessary? (iPhone, OpenGL ES)
Nov
18
answered Is if(obj && obj != nil) correct and necessary?
Nov
18
comment What are function pointers used for, and how would I use them?
stackoverflow.com/questions/840501/…
Nov
18
comment What are function pointers used for, and how would I use them?
using function pointers in iterators is perfectly valid there is an example here: stackoverflow.com/questions/840501/…
Nov
12
awarded  Popular Question
Nov
9
answered Broad-phase collision detection methods?
Nov
6
revised Suggestions for a fast two way encrypt?
added 290 characters in body; edited body
Nov
6
comment Suggestions for a fast two way encrypt?
On of the environments will be ColdFusion which does not have built in support for XOR although this is about right. Quick and simple.
Nov
6
comment Suggestions for a fast two way encrypt?
I don't need a public key. The requirement is to encrypt ids in a database as they pass between machines. Both machines will have the salt.
Nov
6
asked Suggestions for a fast two way encrypt?
Nov
4
answered Coldfusion - XML formatting a string returned from API call
Oct
30
answered How should I save and load user configuration files for a game in C++?
Oct
29
comment Given an angle and length, how do I calculate the coordinates
This question was about trig not macros vs. inline functions. I was simply pointing out that degree to radian conversion is trivial.
Oct
28
answered Web development: Should I learn PHP?
Oct
28
accepted Given an angle and length, how do I calculate the coordinates
Oct
28
revised Given an angle and length, how do I calculate the coordinates
added 158 characters in body
Oct
28
answered Given an angle and length, how do I calculate the coordinates
Oct
23
awarded  Yearling
Oct
22
answered Is bool a native C type?
Oct
20
comment Using Subversion in Xcode
I think there are times when having a visual client is worthwhile but xcode just does not give you any real gains over the CLI. In fact I haven't really found any great GUI clients for svn on the mac (I'd love to be proven wrong).
Oct
20
answered What method is best for coldfusion 8 trigger background page?
Oct
20
answered Sending mass email campaign via ASP.NET
Oct
20
comment How can I upload files asynchronously with JQuery?
I cant decide whether to give this a +1 or -1
Oct
20
answered What bit shifting techniques should I be using?
Oct
13
comment Respond to only the first WM_KEYDOWN notification?
I used: if ((lParam & (1 << 30)) == 0)... although if (lParam & 0x40000000) worked as well if I remember correctly. My choice was based on readability (1 << 30) makes more sense to me than 0x40000000
Sep
22
comment NSMenu with IBAction method for clicking the menu header?
I could not end up getting this to work and noticed the following note in the docs: "Special Considerations - Do not modify the structure of the menu or the menu items during this method."
Sep
14
revised TCL vs Lua - scripting a mmo server
http://www.lua.org/about.html "Please do not write it as "LUA", which is both ugly and confusing.."
Sep
10
comment NSMenu with IBAction method for clicking the menu header?
More complicated than I had hoped for but I'm going to give it a shot.
Sep
10
comment NSMenu with IBAction method for clicking the menu header?
The application wraps a state machine and I want to setState:NSOnState/NSOffState by querying the machine before displaying the menu
Sep
9
asked NSMenu with IBAction method for clicking the menu header?
Sep
4
awarded  Necromancer
Sep
3
comment Why are regular expressions considered so controversial?
Yeah email the address spec is a nasty mess stackoverflow.com/questions/611775/…
Sep
1
comment Respond to only the first WM_KEYDOWN notification?
Yep this works too - thanks
Sep
1
comment Respond to only the first WM_KEYDOWN notification?
This worked - thank you. My bit fiddling-fu is a little shaky. What exactly is 0x40000000?
Sep
1
asked Respond to only the first WM_KEYDOWN notification?
Aug
18
comment Loop or sort for layered draw?
A lot of good answers here. They are all correct in their own way so picking one is hard.
Aug
17
comment Loop or sort for layered draw?
Thanks for the big O break down. This is exactly what I was looking for. In most cases the objects will heavily outnumber the layers which is why I was considering the double loop.
Aug
17
comment Loop or sort for layered draw?
That's a good alternative and makes a lot of sense. It would require creating new collections if the number of layers need to grow but this is likely cheaper than the double loop or the sort.
Aug
17
asked Loop or sort for layered draw?
Aug
6
answered How can I remove all my changes in my SVN working directory
Aug
4
answered How can I create a secure Lua sandbox?
Jul
31
answered Any favourite Niche book?
Jul
28
awarded  Peer Pressure
Jul
16
answered Looking for a good hash table implementation in C
Jul
16
answered What is the best way to represent the levels in a 2D side-scroller?
Jul
14
answered From PC to Mac - Good or bad move for my programming career?
Jul
14
comment source code of c/c++ functions
Many functions in K&R are shown in a simplified form but this may be better if they are being used for examples.
Jul
13
revised Lua bindings to C++ and garbage collection.
edited body; edited title
Jul
13
awarded  Good Answer
Jul
10
comment Is the endianness of format params guaranteed in RIFF WAV files?
Very thorough answer - thanks!