Michael Shimmins

less info
10,892 reputation
11850
bio website lexim.com.au
location Melbourne, Australia
age
visits member for 3 years, 2 months
seen 14 hours ago
stats profile views 554

Web developer (mostly Rails and formerly ASP.NET) and entrepreneur. Founder and CEO of Lexim - cloud based eLearning software.


May
10
awarded  Nice Question
Apr
27
awarded  Nice Answer
Apr
19
awarded  asp.net-mvc
Mar
30
awarded  Notable Question
Mar
29
awarded  Notable Question
Mar
8
awarded  Nice Answer
Feb
25
awarded  Yearling
Feb
24
comment Only enable action when model has certain attribute set
Additionally you can limit the methods this filter applies to using the only or except options on the filter: before_filter :check_attribute, :only => :show
Feb
20
awarded  Nice Answer
Feb
20
awarded  Popular Question
Feb
18
comment Embedded hasMany attribute access gives “TypeError: Cannot call method 'hasOwnProperty' of undefined”
Thank you! This solved the exact issue I was facing.
Jan
24
comment Will UUID as primary key in PostgreSQL give bad index performance?
@Noach if you're still after an answer on how to use UUID have a look at the postgres_ext gem (or Rails 4).
Jan
22
comment How do I clear stuck/stale Resque workers?
This should be the accepted answer - the exact solution to the question as asked.
Jan
21
awarded  Notable Question
Jan
20
comment Understanding the relationship between controllers and routes in Ember
Yeah we've just updated our router to the new style - agree completely, the changes in pre3 to the router make this whole discussion a bit moot, it is much clearer now.
Jan
19
comment Understanding the relationship between controllers and routes in Ember
Thanks - I have a solid appreciation of the responsibilities of models in an MVC patterns, the issue with ember is that it introduces the concept of the router, which from my perspective seems to encapsulate a lot of the behaviour I'd have expected to find in controllers. The separation of concerns between controllers and routes is starting to become clearer though as I move through the process.
Jan
19
comment Re-initialize ActiveRecord after rails startup
Thanks - but we're not running passenger
Jan
19
comment Re-initialize ActiveRecord after rails startup
Also just because they technically can edit a yml file, that doesn't mean we want to force them to. That isn't the user experience we want to create for our customers. Obviously for our Saas offering we handle all of that, and no they can't edit the database configuration.
Jan
19
comment Re-initialize ActiveRecord after rails startup
Your assumptions are not correct. Our users need not load the schema or seed the database - this is handled by our setup program. Please don't assume that just because this is a rails app that our end users are typical rails developers. They are business consumers who purchase shrink wrapped software, and expect a certain experience.
Jan
19
comment Re-initialize ActiveRecord after rails startup
Reasons added - appreciate it might not be the "standard" use of a rails application, but that doesn't make it a terrible idea off the cuff. A lot of installed applications function this way.