Mike Stone

10,437
Reputation
458 views

Registered User

Name Mike Stone
Member for 1 year
Seen 2 days ago
Website
Location Sunnyvale, CA
Age 27

I am a programmer by hobby and by profession. At work, I (currently) mostly work with Java and web technologies, but I enjoy playing with other languages as well. Ruby is my favorite language to use, and so I try to work with it whenever I find the opportunity (and it makes sense).

My operating system of choice is Linux (specifically Ubuntu), and my editor of choice is Emacs (I was converted by a combination of my current coworkers and articles from Steve Yegge).

Nov
27
awarded  Popular Question
Nov
22
awarded  Popular Question
Nov
14
awarded  Popular Question
Nov
10
comment Increment a sequence twice in DB2
schema.sequence was intended to be a placeholder for a sequence I need to pull from. dual was intended to be a generic table indicating that I don't care what table I am selecting from, and it actually has meaning in other databases: en.wikipedia.org/wiki/DUAL_table
Nov
10
comment Is it just me or are interfaces overused?
I was not intending we never use an interface again, just simply saying we should think about it first. It is easy to extract interfaces later (Eclipse provides a refactoring action named exactly that). Just consider YAGNI, and add that interface at the time you discover it will be useful for a particular situation. That's my main point.
Nov
2
accepted Server centered vs. client centered architecture
Oct
28
comment Ruby and Ubuntu’s Notify-OSD
Thanks! Though, I'm pretty sure the command line tool just routes to the new notification engine in jaunty. I wish it were that simple!
Oct
11
awarded  Nice Answer
Sep
23
awarded  Popular Question
Sep
21
awarded  Popular Question
Sep
11
asked Ruby and Ubuntu’s Notify-OSD
Aug
30
accepted Large Data Sets
Aug
24
accepted DBUnit dataset generation
Aug
24
accepted How to restart Rails from within Rails?
Aug
24
comment How can I get the binding from method_missing?
Not quite the solution I want, but I think this is the best you can do, so I'm accepting. For the record, I wanted access to a variable defined in a Rails template engine to set up a method missing to access that variable and invoke methods on the variable (to turn "var.method" into just "method" so it is more like a DSL). I don't want such a complex solution for this, so I ended up just patching the plugin... which I was trying to avoid in the first place. Oh well! Thanks for the ideas! :-)
Aug
24
comment How can I get the binding from method_missing?
Appreciate the ideas, unfortunately I don't actually have access to the method I need the binding for... it's defined in a library that I wanted to avoid having a personal patch for, so I can't really shift things around so I have access to the variable. Upvoted for the effort though! :-)
Aug
24
accepted Adding an instance variable to a class in Ruby
Aug
21
comment How can I get the binding from method_missing?
dang, unfortunately I don't have a block in the situation I am in... I hope you are somehow wrong, but I don't think you are :-(
Aug
21
asked How can I get the binding from method_missing?
Aug
3
awarded  Yearling
Jul
21
awarded  Enlightened
Jul
21
awarded  Nice Answer
Jul
8
awarded  Disciplined
Jun
23
comment Monkey-patching Vs. S.O.L.I.D. principles?
Frankly, I disagree. The ability to add functionality to where it logically belongs makes very much sense to me. foo.delay(5000, args); is significantly more readable to me than a regular setTimeout. It is precisely the kind of monkeypatching that makes code MORE READABLE rather than unintuitive and surprising like bad monkeypatching can do. It is powerful, and possible to abuse, but it can help make code more understandable too. For the record, I don't use mootools, but that's a cool use of monkeypatching.
Jun
23
comment Monkey-patching Vs. S.O.L.I.D. principles?
I think this sums up your post well: "With great power comes great responsibility." Frankly, I love monkeypatching, but I tend to avoid overriding existing methods (though I will consider it if it really is the best option), for exactly the reasons you illustrate.
Jun
17
awarded  Nice Answer
Jun
9
awarded  Notable Question
Jun
6
awarded  Good Answer