javaworks.wordpress.com
links | Java Works
https://javaworks.wordpress.com/notes
Is a very interesting topic and useflu in most projects, as more often then not we have code inherited from legacy. http:/ www.refactoring.com/. Is a good site with lots of resources and suggested Books and materials. 8211; Using Hibernate in JBOSS – A Guide. 8211; Hibernate Annotations – Reference Guide. 8211; Hibernate Reference Documentation. 8211; Hobernate Java Doc. 8211; http:/ www.technicalfacilitation.com/examscam/tf/get.php? CVS Plugin For Eclipse. 8211; Single Soln for E-Commerce Payments.
bobfried.net
Bob Fried
http://www.bobfried.net/index.html
CPanel on gemini (as of 07/04/2014). Billing System (Client Profile, Billing and Services, Reports, Tech Support, Account Services, Domains, Social and News. Add DNS entry (new domain). OCS Solutions Service Status. Version Control with Subversion - Manual. WDG HTML/XHTML Batch Validation. Website Optimization (page size etc.). W3C WCAG 1.0 Accessibility Guidelines. W3C WCAG 2.0 Accessibiliby Guidelines. Accessiblity Validation and other Page Analysis! W3C XHTML 1.0. W3C XHTML 2.0 Working Draft.
yarorb.wordpress.com
A handy enumerable to integer mapper creator | Yet Another Ruby on Rails Blog
https://yarorb.wordpress.com/2008/03/13/a-handy-enumerable-to-integer-mapper-creator
Yet Another Ruby on Rails Blog. Ruby, Rails, On… that stuff. A handy enumerable to integer mapper creator. March 13, 2008. Class EnumerableAttribute attr reader :values def initialize(*args) @values = Hash.new 0.upto(args.size-1) do i @values[args[i].to s] = i end @values.each do key, value EnumerableAttribute.class eval do define method key do value end end end end end. 183;Tags: database mapping. 2 Responses to “A handy enumerable to integer mapper creator”. March 15, 2008 at 3:45 pm. Hi Jean-Francois&...
yarorb.wordpress.com
Ruby on rails certifications | Yet Another Ruby on Rails Blog
https://yarorb.wordpress.com/2007/12/06/ruby-on-rails-certifications
Yet Another Ruby on Rails Blog. Ruby, Rails, On… that stuff. Ruby on rails certifications. December 6, 2007. There are none so far. Neither for only the Ruby language. Official certifications, I mean. The Java unofficial certification community JavaBlackBelt. And writing some questions for them. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out.
yarorb.wordpress.com
Procs ‘n’ blocks | Yet Another Ruby on Rails Blog
https://yarorb.wordpress.com/2008/05/01/procs-n-blocks
Yet Another Ruby on Rails Blog. Ruby, Rails, On… that stuff. Procs ‘n’ blocks. May 1, 2008. A block in Ruby is an expression delimited by braces that has, to try to put it simple, no life by itself. Thus if we write:. Irb(main):001:0 { x x*x} SyntaxError: compile error. Notice that a proc is executed by using the reserved word call. That means that we have to use it instead of yield when we are passing a proc rather than a block to a method:. Leave a Reply Cancel reply. Enter your comment here. You are c...
yarorb.wordpress.com
Underscore and classify | Yet Another Ruby on Rails Blog
https://yarorb.wordpress.com/2008/05/06/underscore-and-classify
Yet Another Ruby on Rails Blog. Ruby, Rails, On… that stuff. May 6, 2008. These are two Rails helpers that could be very useful when injecting new instance methods in a class. Converts from a class name to a underscore attribute. MyClassName'.underscore = my class name. Inverse method from underscore. Cool articles.classify = CoolArticles comment.classify = Comment. Both, combined with singularize and pluralize, allows us to handle parent/child methods in a very handy way. For example:.