CommunityEngine is a free, open-source social network plugin for Ruby on Rails applications
CommunityEngine is a free, open-source social network plugin for Ruby on Rails applications. Drop it into your new or existing application, and you’ll... more »
0 commentsSave Tags: news, open source, ruby, web 2.0
You Don't Need Foreign Key Constraints In Rails
Jeff from Softies on Rails wants to know what you think about foreign keys, and whether they're needed in Rails. Sound off!
0 commentsSave Tags: database, opinion, ruby, trends
You Should Use Foreign Key Constraints in Rails
Rails is notorious for being "opinionated software", and this is one of those opinions that a lot of people happen to disagree with, and is one of... more »
0 commentsSave Tags: database, opinion, ruby, trends
RefactorMyCode
You submit your code, people refactor it!
3 commentsSave Tags: how-to, java, methodology, ruby
Fluent Builders
Combining the Builder pattern and fluent interfaces is pretty sexy, especially in a relatively noisy language like Java -- I like to call the... more »
0 commentsSave Tags: java, opinion, research
Rails and the Enterprise
Ask 100 enterprise developers (who are probably using Java or C#) if Rails is ready for the enterprise. My guess is that 75 will say no, 1 will say... more »
8 commentsSave Tags: java, opinion, ruby, tools
I heart surrogate keys
I wouldn't want a database that doesn't use surrogate keys.
0 commentsSave Tags: database, methodology, opinion, trends
A Forgotten Benefit of Unit Testing
There's a benefit that's frequently forgotten when people discuss unit testing -- encapsulation.
0 commentsSave Tags: java, methodology, opinion, trends
On Continuous Integration
Ideally a build would occur automatically whenever someone checks in code. If that's not feasible (because the build takes too long), there are some... more »
0 commentsSave Tags: methodology, opinion, standards, trends
Fat Models
Unlike the fashion world, we Rails geeks prefer fat models. When we see Kirstie Alley we say, “That’s what I’m talkin’ about.”
0 commentsSave Tags: java, opinion, ruby, trends
WTF? Sets aren't that hard
An article on The DailyWTF involves a few take-home coding exercises, including one in which the applicant is asked to write a Java program that... more »
0 commentsSave Tags: frameworks, java, opinion
From Java to Rails
This article discusses a Java veteran's early impressions of Ruby on Rails -- its strengths, weaknesses, and philosophical differences.
0 commentsSave Tags: java, methodology, ruby, trends
TDD is a Team Sport
I'm a huge advocate of Test-Driven Development (TDD). But why don't I practice it? And what can I do to change? The real problem isn't lack of skill,... more »
0 commentsSave Tags: java, methodology, opinion, trends
Dependency Injection and Testable Objects
This article introduces dependency injection from the perspective of how it enables you to write loosely coupled, highly testable code, without... more »
0 commentsSave Tags: .net, java
The Benefits of Small Methods
One of the most common refactorings is Extract Method. Basically, Extract Method involves moving a chunk of code from a larger method into a new... more »
0 commentsSave Tags: .net, eclipse, java, methodology