Category Archives: Devel

Development

[Swift] How to Pass By Reference via The Use of ‘inout’

  When defining a function the keyword ‘inout‘ is used in front of the variable name to denote an in-out parameter, which sets up the function as a kind of “pass-by-reference” function. Note, this is not real pass-by-reference as the variable … Continue reading

Posted in Devel | Leave a comment

Rails: Creating a local copy of the API Documentation

This is an excellent tip to know, for me at-least, as I get back into the mix of using Rails for Web Development. Recently, I just purchased Agile Web Development with Rails 2nd ed., and plan on reading the whole … Continue reading

Posted in Rails | 8 Comments