Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
development:start [20 years ago - 2006/01/24 21:43] aogaildevelopment:start [8 years ago - 2018/05/22 14:08] (current) aogail
Line 1: Line 1:
 ====== Development ====== ====== Development ======
 +
 +===== ChefConf 2018 =====
 +
 +  * [[Habitat Jumpstart]]
 +
 +===== Patterns =====
 +
 +  * [[http://en.wikipedia.org/wiki/Gang_of_Four_%28software%29|Gang of Four]]
  
 ===== Tips ===== ===== Tips =====
   * [[http://www.technicat.com/writing/programming.html|Seven Habits of Highly Effective Programmers]]   * [[http://www.technicat.com/writing/programming.html|Seven Habits of Highly Effective Programmers]]
 +  * [[Use clang trunk with xcode 4.3]]
  
 +==== C++ ====
 +
 +  * [[http://cpp.codenewbie.com/articles/c/rule-three|The Rule of Three]]
 +
 +==== Ruby ====
 +
 +  * [[ruby/start]]
 +  * [[http://blog.wolfman.com/articles/2006/09/04/using-ruby-svn-bindings-to-get-file-status|Ruby SVN bindings for file status]]
 +  * [[http://eigenclass.org/hiki.rb?ruby+plugins|Ruby plugins]]
 +  * [[ruby/bundled]]
 +  * [[ruby/embedded]]
  
 ===== Regular Expressions ===== ===== Regular Expressions =====
-  * [[http://www.regexlib.com/REDetails.aspx?regexp_id=688|Phone number regex]] + 
-{{{^(?:(?:[\+]?(?<CountryCode>[\d]{1,3}(?:]+|[\-.])))?[(]?(?<AreaCode>[\d]{3})[\-/)]?(?:[ ]+)?)?(?<Number>[a-zA-Z2-9][a-zA-Z0-9 \-.]{6,})(?:(?:[ ]+|[xX]|(i:ext[\.]?)){1,2}(?<Ext>[\d]{1,5}))?$}}}+US Phone Number
 + 
 +<code>/^1?[-. ]?([(]?\d\d\d[)]?[-. ]?)?\d\d\d[-. ]?\d\d\d\d\s*([eE]?[xX][tT]?\s*\d{1,4})?$/</code>