69,265 reputation
75386
bio website buckybits.blogspot.com
location NY and NJ, United States
age 44
visits member for 2 years, 8 months
seen 1 hour ago
stats profile views 9,542

Java/Ruby/Groovy generalist with background in web development, dynamic (and less enjoyable) languages, and embedded systems.

"Microconsulting" available: extremely short-term, rapid turnaround, "solve your immediate problem"-style assistance for a variety of problem types. davelnewton at gmail dot com for details, quotes, etc.

Bucky Bits (general dev blog)
Code.averse (code elegance; nascent)
@dave_newton
Amazon Wish List


4h
comment How can i use taglib in JSP page
mvnrepository.com/artifact/jstl/jstl/1.2
4h
comment Ruby “end” statement problems
@GurvSwerve When confronted with code you don't understand, study it: work it through, line by line if necessary, use puts, pry, a debugger, etc to work it out.
8h
comment accidently deleted R.java by using clean by ecclipse how do i regenerate R.java back
It should rebuild when you rebuild the project.
12h
revised Send a parameter for every result
added 258 characters in body
1d
revised rails alternative to enum and view integration
edited tags
1d
comment Can a ruby object call super on a “grandparent”?
Do you have a more concrete example that illustrates why you're trying to do what you're trying to do?
1d
comment Stack Level Too Deep Error In Rails
Explicit rendering isn't really necessary, and is actively discouraged in the Layouts and Rendering Guide when convention is sufficient.
1d
comment Send a parameter for every result
By including it as a parameter in the link? By defining two action methods and having each set the value? There are several options.
1d
comment Send a parameter for every result
@dalal I commented on your edit; your thinking about request processing is backwards.
1d
comment Send a parameter for every result
The edit doesn't make any sense, your results go to a JSP, not an action. If you want to enter your action with a specific value then you need to send it as a parameter in the request, not link values to results, which happen after action execution.
1d
revised Send a parameter for every result
deleted 29 characters in body
1d
answered Send a parameter for every result
1d
revised Send a parameter for every result
added 45 characters in body; edited tags; edited title
1d
comment Getting error: “non static method cannot be referenced from a static context” while calling function from main
@ChrisChambers Of course a non-static main method is a main method--it's just not one that can be used as the class's entry point. Neither of you seem to know what the word "inherent" means. Being precise is important, particularly when dealing with new programmers.
1d
comment Getting error: “non static method cannot be referenced from a static context” while calling function from main
Great effort on finding the dupes, everyone.
1d
comment Getting error: “non static method cannot be referenced from a static context” while calling function from main
It's not "inherently" static, it's declared static.
1d
comment Getting error: “non static method cannot be referenced from a static context” while calling function from main
But it's not, because you're trying to call an instance method from your static function. Either create an instance, or make the method static.
1d
comment How can I extract part of a string that is in quotes
This is precisely the answer; why the downvote?
1d
revised How can I extract part of a string that is in quotes
edited title
1d
revised Is multiple inheritance possible in javascript?
added 140 characters in body