Rails Domain Patterns

Published on 22 May 2006 by in Ruby

0

sbecker has a great post with some of the most common domain relational patterns needed for Rails apps. Examples include CRM, e-commerce, roles-based access, mailing lists, surveys, content/blogs, and social networking.

Continue Reading

0

I stumbled across a great resource for using regular expressions to validate different types of data. Here is a subset of the list that I found most useful: EMAIL: ^[\w\-\+\&\*]+(?:\.[\w\-\+\&\*]+)*@(?:[\w-]+\.)+[a-zA-Z]{2,7}$ CREDIT CARD: ^((4\d{3})|(5[1-5]\d{2})|(6011))-?\d{4}-?\d{4}-?\d{4}|3[4,7]\d{13}$ MAC ADDRESS : ^([0-9a-fA-F][0-9a-fA-F]:){5}([0-9a-fA-F][0-9a-fA-F])$ IP ADDRESS : ^\b((25[0-5]|2[0-4]\d|[01]\d\d|\d?\d)\.){3}(25[0-5]|2[0-4]\d|[01]\d\d|\d?\d)\b$ REASONABLE DOMAIN NAME: ^([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,6}$ For Ruby, you can use String::match method to determine if [...]

Continue Reading

Welcome!

Published on 20 April 2006 by in Uncategorized

0

This blog is focused on the discussion of software solutions, including Java, Rails, software architecture, and leadership. If you prefer to be notified via email rather than using an RSS reader, you can subscribe to our email notification service.

Continue Reading