Jon Ericson

6,918
reputation
792 views

Registered User

name Jon Ericson
member for 1 year
seen Oct 7 at 20:28
website
location Pasadena, California
age 36
I'm enjoying asking actual questions that I get at work and then answering them here. Does that seem unusual?
Dec
8
accepted What do these Makefile constructs mean?
Dec
6
awarded  Mortarboard
Dec
2
awarded  Popular Question
Nov
16
awarded  Popular Question
Nov
2
awarded  Nice Question
Oct
20
awarded  Popular Question
Sep
4
accepted How to avoid short-lifespan enterprise applications?
Aug
17
awarded  Notable Question
Aug
16
awarded  Yearling
Jul
31
awarded  Nice Answer
Jul
31
awarded  Nice Answer
Jul
31
awarded  Populist
Jul
17
awarded  Popular Question
Jul
15
accepted Why do you hate sequences on Oracle?
Jul
8
awarded  Disciplined
Jul
7
awarded  Nice Answer
Jul
1
comment two regex patterns, can they be one?
In addition, you can tell what format it was later by looking at $1 (at least in Perl). I'd never thought of that device.
Jul
1
comment How do you implement a dispatch table in your language of choice?
Thanks! I think I understand it now.
Jun
30
comment How do you implement a dispatch table in your language of choice?
As I'm (mostly) C# illiterate, would you mind adding an example how to use this? I'm guess you a) instantiate a DispatchTable variable, b) call its AddAction method for each action you want to implement, and c) call its Dispatch method when you want to lookup an action. But I'm in the dark about what the syntax would be for these steps.
Jun
30
comment How do you implement a dispatch table in your language of choice?
@Brad Gilbert: I added an example of playing RPS to my Lua answer. I find a dispatch table an elegant solution to the problem actually. But the real fun would be to create a function that generates the dispatch table.
Jun
30
revised How do you implement a dispatch table in your language of choice?
multidimensional dispatch table