Re: [rails-oceania] Helping Junior Rubists Find Work

2013-05-03 Thread Adam Boas
Hi Ashley, I think the problem you are identifying is not a problem with the Ruby community. Rather it is a problem with small - medium sized companies that leverage IT. That happens to be the space in which Ruby (on Rails) is getting a lot of traction at the moment. What you are identifying i

Re: [rails-oceania] ActiveRecord model versioning

2013-05-03 Thread Paul Annesley
On 04/05/2013, at 11:51 AM, Gareth Townsend wrote: > Paul, > > Thomas' suggestion is where I would be looking. Not sure how the ancestry gem > works, but I've done something similar before where we had a separate table > that tracked the changes made to a model. That way if we ever wanted to

Re: [rails-oceania] ActiveRecord model versioning

2013-05-03 Thread Gareth Townsend
Paul, Thomas' suggestion is where I would be looking. Not sure how the ancestry gem works, but I've done something similar before where we had a separate table that tracked the changes made to a model. That way if we ever wanted to see what state the model was in at a particular point in time w

Re: [rails-oceania] Helping Junior Rubists Find Work

2013-05-03 Thread Michael Pearson
I think I mis-read Ashley's original email: he's referring to juniors with ability, but not Ruby experience, and I'm thinking of juniors who have learned Ruby and done interesting things with it in their spare time. I also think that JavaScript-related stuff (both server and client side) has fully

Re: [rails-oceania] Helping Junior Rubists Find Work

2013-05-03 Thread Ben Taylor
I definitely agree with Steven. I was lucky enough to discover Ruby + Rails via a friend and ended up doing freelance and contract work while I was at Uni, but many other students aren't in the same boat. Either they never find out about the community (does Ruby AU do outreach to universities?)

Re: [rails-oceania] [JOB] Contract/Perm Ruby Dev Roles - Melbourne Based

2013-05-03 Thread Mike Bailey
Joke's aside, I do agree with avoiding gender targeted language to refer to the group. On Fri, May 3, 2013 at 5:51 PM, Mike Bailey wrote: > The capitalisation suggests Brent may have been targeting people named > Guy. :-) > > Do computers turn us into pedants or do our predilections simply make

Re: [rails-oceania] [JOB] Contract/Perm Ruby Dev Roles - Melbourne Based

2013-05-03 Thread Ben Schwarz
Comments on job threads are often better handled off-list (privately) Locking this thread. -- You received this message because you are subscribed to the Google Groups "Ruby or Rails Oceania" group. To unsubscribe from this group and stop receiving emails from it, send an email to rails-ocean

Re: [rails-oceania] [JOB] Contract/Perm Ruby Dev Roles - Melbourne Based

2013-05-03 Thread Ben Taylor
Daniel, while you may be technically correct it's really not useful to point out. At various points in the past people have attempted to patch the masculine version of pronouns to be gender non-specific (see: http://en.wikipedia.org/wiki/Gender-neutral_pronoun). This has been widely unsuccessf

Re: [rails-oceania] [JOB] Contract/Perm Ruby Dev Roles - Melbourne Based

2013-05-03 Thread Mike Bailey
The capitalisation suggests Brent may have been targeting people named Guy. :-) Do computers turn us into pedants or do our predilections simply make them less annoying? - Mike On Fri, May 3, 2013 at 2:49 PM, Alex "Skud" Bayley wrote: > On 3/05/13 9:17 AM, Brent Thomson wrote: > > Hi Guys,***

Re: [rails-oceania] Helping Junior Rubists Find Work

2013-05-03 Thread Steven Farlie
My anecdotal experience (as a volunteer coach/organiser in OpenTechSchool) is that the talent base for junior programmers is incredibly broad but it is there. There are people with programming knowledge but not domain knowledge (e.g. Python but not web), or domain knowledge without the platform (we

Re: [rails-oceania] ActiveRecord model versioning

2013-05-03 Thread Thomas Egret
Hi Paul, Alternatively, if your data are very sensible you can avoid updating them and add a new record each time and keep track of each state of your objects. With the ancestry gem, it wouldn't probably be too hard to do it however I haven't done it myself :). 2013/5/3 Paul Annesley > Thanks