User Dom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T03:08:00Zhttp://stackoverflow.com/feeds/user/18737http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/877468/elastic-load-balancing-in-ec23Elastic Load Balancing in EC2Dom2009-05-18T12:21:20Z2009-11-12T18:53:13Z
<p>Hi </p>
<p>Its been on the cards for a while, but now that Amazon have released Elastic Load balancing what are your thoughts on deploying this solution for a high-traffic web app.</p>
<p>Should we replace HAProxy or consider ELB as a complimentary service in front of HAProxy</p>
<p>Appreciate any comments or suggestions</p>
<p>Thanks</p>
<p>Dom</p>
http://stackoverflow.com/questions/1434841/setting-default-values-across-multiple-children-in-a-multi-model-form-rails-2-30Setting default values across multiple children in a multi model form (Rails 2.3 )Dom2009-09-16T18:57:06Z2009-10-30T23:39:51Z
<p>Am trying to simplify the create / edit view for a multi-model controller. </p>
<p>User can dymically add / remove child input fields from the form. (Have followed Eloy's complex form example)</p>
<p>I want to limit the user's ability to set certain attributes across multilpe children.. </p>
<p>Suppose I have a child attribute with and I want the user to only input the date once.. eg the date will be the same across all children..</p>
<p>I would like present a single date entry box and then multiple Adults | Seniors boxes depending on the number of children the user wants to submit.</p>
<p>using accepts_nested_attributes_for my form is showing multiple date boxes..</p>
<p>(Since I want to retain the ability to do this as an admin I don't want to move the date attribute to the parent.)</p>
<p>How should I go about adapting the form without having to extend the controller logic too much?</p>
http://stackoverflow.com/questions/1553213/rails-2-3-scoping-users-across-different-clients-instances-in-multi-tennant-app0Rails 2.3 Scoping Users across different clients / instances in multi-tennant appDom2009-10-12T07:36:53Z2009-10-12T07:43:02Z
<p>Are there any best practices / plugins for scoping users across different clients. </p>
<p>Currently we are validating the uniqueness of the email address on the assumption that these will be unique throughout the system</p>
<p>How would you recommend that we extend this approach to allow us to scope the uniqueness to a specific client-id... </p>
<p>Dom</p>
http://stackoverflow.com/questions/1476269/rails-2-3-nested-attributes-issue0Rails 2.3 nested attributes issueDom2009-09-25T09:11:29Z2009-09-29T21:28:36Z
<p>I'm running into to a issue with a nested form which I'm sure should be easily solved, yet I can't find a way around it</p>
<p>Basically I have the following relationship</p>
<pre><code>event has_many :contacts => through :event_contacts
</code></pre>
<p>the nested form works perfectly as long as I'm creating new contacts each time. </p>
<p>If I include a drop down to allow selection of an existing contact within the nested form, an event is created, however the contact_id is nil in the event_contacts table.</p>
<p>No contact is created, since I post an 'id' field for the nested contact.. (ie .new_record? returns false.)</p>
<p>So how do I update the event_contacts table to ensure that the 'selected' contacts is properly associated?</p>
<p>See snipbits below...</p>
<p><strong>Models</strong></p>
<pre><code>class Event < ActiveRecord::Base
belongs_to :user
has_many :event_contacts
accepts_nested_attributes_for :event_contacts
has_many :contacts, :through => :event_contacts
accepts_nested_attributes_for :contacts
class EventContact < ActiveRecord::Base
belongs_to :event
belongs_to :contact
accepts_nested_attributes_for :contact
class Contact < ActiveRecord::Base
belongs_to :user
has_many :event _contacts
has_many :events, :through => :event_contacts
</code></pre>
<p><strong>View</strong></p>
<pre><code>- fields_for(@event) do |f|
- f.fields_for :event_contacts do |rc|
- rc.fields_for :contact do |c|
= c.collection_select :id, Contact.all, :id, :name, { :selected => @contact.id || 0 }
= c.hidden_field :user_id, :value => @current_user.id
= c.text_field :first_name
= c.text_field :email
</code></pre>
http://stackoverflow.com/questions/1476269/rails-2-3-nested-attributes-issue/1495050#14950500Answer by Dom for Rails 2.3 nested attributes issueDom2009-09-29T21:28:36Z2009-09-29T21:28:36Z<p>Not quite the answer I was looking for .. but have hacked my way aroung this using a post save method in the parent controller (event) and checking through the child objects to inspect if the contact was new or existing.. </p>
<p>I then update the intemediary table event_contacts manually...</p>
<p>Not the most elegant solution but it works and allows me to move on... </p>
<p>Still would appreciate any guidance as to how to do this the rails way.. </p>
http://stackoverflow.com/questions/1325506/validating-date-formats-in-rails/1476390#14763900Answer by Dom for Validating date formats in railsDom2009-09-25T09:39:02Z2009-09-25T09:39:02Z<p>Found an excellent gem / plugin for all your date / time validations. </p>
<p><strong>validates_timeliness</strong></p>
<p><a href="http://github.com/adzap/validates%5Ftimeliness/issues" rel="nofollow">http://github.com/adzap/validates_timeliness/issues</a></p>
http://stackoverflow.com/questions/1320994/automating-amazon-ebs-snapshots-anyone-have-a-good-script-or-solution-for-this-on0Automating Amazon EBS snapshots anyone have a good script or solution for this on linuxDom2009-08-24T07:53:43Z2009-09-25T02:23:30Z
<p>Hi </p>
<p>I'd expect this to be fairly routine, but cannot find a simple approach for creating an managing EBS snapshots automatically.</p>
<p>Was hoping there'd be a shceduler in the AWS console.. alas not yet.</p>
<p>Would appreciate any suggestions as to how best to do this on from Ubuntu. </p>
<p>Thanks</p>
<p>Dom</p>
http://stackoverflow.com/questions/1439385/rails-2-3-select-loses-value-when-post-fails-validation0Rails 2.3 select loses value when post fails validationDom2009-09-17T14:53:45Z2009-09-17T18:22:11Z
<p>I have a simple form where I set the default value of a select list as follows</p>
<pre><code>f.select :post, (1..5).to_a, {:value => @author.posts }
</code></pre>
<p>if validation fails on the create action this list is always reset to 1.</p>
<p>In the create method after testing validation if I set </p>
<pre><code>@author.posts = 5
</code></pre>
<p>then it will set the list to 5. However it does not set the list based on what was submitted.</p>
<p>Have tried to set </p>
<pre><code>@author.posts = params[:post]
</code></pre>
<p>however it defaults to 1, using debugger have verified that params[:post] has the value selected (eg 5).</p>
<p>Is there some pointer stuff going on I'm missing? Any suggestions?</p>
http://stackoverflow.com/questions/1381403/why-does-git-send-whole-repository-each-time-push-origin-master1why does Git send whole repository each time push origin master Dom2009-09-04T20:31:51Z2009-09-16T01:13:45Z
<p>I commit a few changes locally and then push to github using 'git push origin master'. It always pushes the complete code base (judging by the amount of data transferred).</p>
<p>I must be missing something simple.. should only push up the changed files..?</p>
http://stackoverflow.com/questions/1382763/any-thoughts-on-multi-tenant-versus-multi-database-apps-in-rails2Any thoughts on Multi-tenant versus Multi-database apps in RailsDom2009-09-05T08:08:20Z2009-09-15T07:58:21Z
<p>Our app currently spawns a new database for each client. We're starting to wonder whether we should consider refactoring this to a multi-tenant system. </p>
<p>What benefits / trade-offs should we be considering? What are the best practices for implementing a multi-tenant app in Rails?</p>
http://stackoverflow.com/questions/1380177/testing-liquid-templates-in-rails-using-rspec0Testing Liquid templates in rails using RspecDom2009-09-04T16:08:05Z2009-09-09T14:57:07Z
<p>looking to use rspec to test liquid templates. Anyone tried this? Is it possible.</p>
<p>Specifically our app allows users to submit a set of templates and I'd like to be able to write integration tests to validate these templates.</p>
<p>Alternative solutions/approaches welcome..</p>
http://stackoverflow.com/questions/1381403/why-does-git-send-whole-repository-each-time-push-origin-master/1382749#13827490Answer by Dom for why does Git send whole repository each time push origin master Dom2009-09-05T07:55:01Z2009-09-05T07:55:01Z<p>this might be a trivial answer, but I think the mistake I've been making is to "git add ." befor commiting changes. </p>
<p>if I "git add filename" and then commit when I "git push origin master" only this file is transfered to github.</p>
http://stackoverflow.com/questions/1376117/rails-plugins1Rails Plugins Dom2009-09-03T21:40:06Z2009-09-04T02:20:36Z
<p>Is it possible to include view code in a plugin, such that an app using the plugin can simply call reference the view code like it might reference one of its own partials.</p>
<p>Am I off track here or are there good examples of plugins which do this..</p>
http://stackoverflow.com/questions/1373018/rails-app-notification-plugins1Rails App Notification Plugins Dom2009-09-03T12:07:01Z2009-09-03T16:23:46Z
<p>Hi </p>
<p>Can anyone recommend some rails plugins that would allow me to register various notification against models that could be linked to a set of templates to format emails (and possibly other).</p>
<p>Ideally the plugin could be referenced in one line from each model and the notification format could be passes from some construct such as user preference etc..</p>
<p>Appreciate your help</p>
<p>Dom </p>
http://stackoverflow.com/questions/1318523/hosting-static-sites-via-ec2-elb-and-cloudfront0Hosting Static sites via EC2 ELB and CloudfrontDom2009-08-23T13:10:12Z2009-08-26T09:25:07Z
<p>Hi</p>
<p>Looking to host multiple static web sites by pointing DNS to an Elastic Load Balancer and serving the content via Cloudfront. </p>
<p>Is this a plausible approach? Are there any gotchas we should look out for. How should we configure DNS for each site?</p>
<p>Appreciate any thoughts on this</p>
<p>Dom</p>
http://stackoverflow.com/questions/1328984/s3-cloudfront-listing-all-contents-in-bucket-to-anonymous-users1s3 cloudfront listing all contents in bucket to anonymous usersDom2009-08-25T15:20:34Z2009-08-25T18:42:05Z
<p>Hi </p>
<p>Anonymous Users can browse to our public distributions or s3 folders and view a list (xml) of all files.</p>
<p>We have set read permissions. Can anyone recommend how to prevent users from viewing the list of files in the bucket, while still allowing them to access and download individual files</p>
<p>Thanks</p>
<p>Dom</p>
http://stackoverflow.com/questions/704299/blocking-ip-addresses-load-balanced-cluster1Blocking IP addresses Load Balanced Cluster [closed]Dom2009-04-01T06:25:48Z2009-04-01T06:25:48Z
<p>Hi </p>
<p>We're using HAproxy as a front end load balancer / proxy and are looking for solutions to block random IP addresses from jamming the cluster.</p>
<p>Is anyone familiar with a conf for HAProxy that can block requests if they exceed a certain threshold from a single IP within a defined period of time. Or can anyone suggest a software solution which could be placed in front of HAProxy to handle this kind of blocking.</p>
<p>Thanks</p>
<p>Dom--</p>
http://stackoverflow.com/questions/366612/any-thoughts-on-rightscale-and-scalr-for-dynamic-ec2-instance-managment5Any thoughts on RightScale and Scalr for dynamic Ec2 instance managmentDom2008-12-14T14:51:34Z2009-01-18T23:52:16Z
<p>Hi </p>
<p>Am looking for a cost effective tool for managing an web app on Ec2. Rightscale seems to the big dog and charges for it. Scalr looks like a more cost effective solution but hard to find out any real customer experiences..</p>
<p>The key aspects I'm looking for is a load balancer (http and https) and a way to automatically bring online additional web servers capacity as load increases as well as terminate the instances when load falls off.</p>
<p>From what I can tell, lots of people are rolling their own stuff here. We're trying to release an app and don't really want to have to fight too many heavy sys admin battles. Given the importance of performance etc I'd be grateful to hear advise and experiences from the field on this.</p>
<p>Thanks</p>
<p>Dom</p>
http://stackoverflow.com/questions/135427/rails-and-flex3Rails and FlexDom2008-09-25T19:24:46Z2008-10-21T13:57:21Z
<p>Hi</p>
<p>Any thoughts on using Flex to build an RIA for administering a complex rails app.</p>
<p>We are starting to find it difficult using ajax to keep our admin section intuitive and easy for users to work with.</p>
<p>Would welcome any advise or suggestions you all may have</p>
<p>Thanks</p>
<p>Dom</p>
http://stackoverflow.com/questions/120149/user-monitoring-in-rails4User Monitoring in RailsDom2008-09-23T09:59:49Z2008-10-01T16:46:31Z
<p>Hi</p>
<p>We have an app with an extensive admin section. We got a little trigger happy with features (as you do) and are looking for some quick and easy way to monitor "who uses what". </p>
<p>Ideally a simple gem that will allow us to track controller/actions on a per user basis to build up a picture of the features that are used and those that are not. </p>
<p>Anything out there that you'd recommend.. </p>
<p>Thanks</p>
<p>Dom</p>
http://stackoverflow.com/questions/148752/silverlight-and-rails2Silverlight and RailsDom2008-09-29T13:57:21Z2008-09-29T18:16:51Z
<p>Hi</p>
<p>Hopefully this will not spark a religious war...</p>
<p>We have a web based app in RoR based on an earlier version we build in .net 2.0. So we currently have both .net and RoR skills in house. </p>
<p>We want to add a RIA app that interfaces with the rails web app. This should be capable of running offine, with some (perhaps relational) persistence. Considering our inhouse experience we leaning toward leveraging the sliverlight framework over the likes of Flex etc.</p>
<p>Would appreciate any thoughts you might have.</p>
<p>Thanks</p>
<p>Dominic </p>
http://stackoverflow.com/questions/101012/customising-the-generic-rails-error-message/101058#1010580Answer by Dom for Customising the generic Rails error messageDom2008-09-19T10:52:44Z2008-09-19T10:52:44Z<p>Hi </p>
<p>Thanks for the reply. </p>
<p>Can you elaborate on what you would replace the 'public/500.html' message with.</p>
<p>Dom</p>
http://stackoverflow.com/questions/1318523/hosting-static-sites-via-ec2-elb-and-cloudfrontComment by Dom on Hosting Static sites via EC2 ELB and CloudfrontDom2009-11-11T17:39:23Z2009-11-11T17:39:23Zand ideal solution, however as far as I can tell the issue is a DNS one. YOu can create an alias for cloud front, but I don't think you can assign an a-record since the IP address will change..http://stackoverflow.com/questions/877468/elastic-load-balancing-in-ec2/1485125#1485125Comment by Dom on Elastic Load Balancing in EC2Dom2009-09-28T06:33:36Z2009-09-28T06:33:36ZHi Jeff
What do you mean by stickyness. ?
http://stackoverflow.com/questions/1476269/rails-2-3-nested-attributes-issue/1476902#1476902Comment by Dom on Rails 2.3 nested attributes issueDom2009-09-25T22:05:55Z2009-09-25T22:05:55Zwant to store more information in the join model which doesn't fit into either the event or contact modelhttp://stackoverflow.com/questions/1476269/rails-2-3-nested-attributes-issue/1476902#1476902Comment by Dom on Rails 2.3 nested attributes issueDom2009-09-25T15:21:24Z2009-09-25T15:21:24Zyes, have include this in the parent model (event) and the join model also (event_contact)http://stackoverflow.com/questions/1476269/rails-2-3-nested-attributes-issueComment by Dom on Rails 2.3 nested attributes issueDom2009-09-25T15:20:30Z2009-09-25T15:20:30ZHi have added model and view code to outline what I'm doinghttp://stackoverflow.com/questions/1434841/setting-default-values-across-multiple-children-in-a-multi-model-form-rails-2-3/1435848#1435848Comment by Dom on Setting default values across multiple children in a multi model form (Rails 2.3 )Dom2009-09-17T13:24:29Z2009-09-17T13:24:29ZHi Jared, thanks for your suggestion. Followed your approach of using a virtual attribute on the parent model. Only needed to override the save method to set the values to the children..http://stackoverflow.com/questions/1382763/any-thoughts-on-multi-tenant-versus-multi-database-apps-in-rails/1385896#1385896Comment by Dom on Any thoughts on Multi-tenant versus Multi-database apps in RailsDom2009-09-15T13:48:55Z2009-09-15T13:48:55ZOur app works much as you have outlined above. We have consistently had problems with migrating databases and have found that our development can drift into different inconsistent schemas, which results in a lot of effort in trying to merge when we want to deploy. The main attractions to refactoring our app as a multi-tennant system is that we don't have to worry about lots of database ergo less migration logic, we can scale our app based on a single database, and we can build a cleaner set of admin tools..http://stackoverflow.com/questions/1382763/any-thoughts-on-multi-tenant-versus-multi-database-apps-in-rails/1384483#1384483Comment by Dom on Any thoughts on Multi-tenant versus Multi-database apps in RailsDom2009-09-15T13:44:27Z2009-09-15T13:44:27Zwe considered this, however in a load balanced web server configuration we would have run into problems using sqllite across different web servers, so have opted for a 2-tier approachhttp://stackoverflow.com/questions/1382763/any-thoughts-on-multi-tenant-versus-multi-database-apps-in-rails/1382784#1382784Comment by Dom on Any thoughts on Multi-tenant versus Multi-database apps in RailsDom2009-09-05T11:57:28Z2009-09-05T11:57:28Zthanks steve.. you don't sound too enamoured.. Any benefits of doing this in your opinion?http://stackoverflow.com/questions/1376117/rails-plugins/1376925#1376925Comment by Dom on Rails Plugins Dom2009-09-04T08:03:59Z2009-09-04T08:03:59ZThanks Radar, so rails engines looks like the way to go.. its relatively new so are there any gotchas to look out for.. Can I package all the static assets (css, images etc) with the rails engine?http://stackoverflow.com/questions/1373018/rails-app-notification-pluginsComment by Dom on Rails App Notification Plugins Dom2009-09-03T14:39:47Z2009-09-03T14:39:47ZHave searched the plugin directory here .. <a href="http://agilewebdevelopment.com/" rel="nofollow">agilewebdevelopment.com</a>... no luckhttp://stackoverflow.com/questions/1328984/s3-cloudfront-listing-all-contents-in-bucket-to-anonymous-users/1330190#1330190Comment by Dom on s3 cloudfront listing all contents in bucket to anonymous usersDom2009-08-26T10:01:01Z2009-08-26T10:01:01Zthanks Adam. will look into this.http://stackoverflow.com/questions/1318523/hosting-static-sites-via-ec2-elb-and-cloudfront/1333435#1333435Comment by Dom on Hosting Static sites via EC2 ELB and CloudfrontDom2009-08-26T09:57:26Z2009-08-26T09:57:26ZHi Chad
From what I've gathered from the ELB documentation it will only work with EC2 instances. Therefore we'll have to have at least one instance linked to the ELB.
My goal was to try to offload all the content serving to cloudfront by reverse proxying cloudfront via ELB. But alas this does not look possible
Am now investigating using HAproxy or plain old Apache as a solution
Thanks for your comment
http://stackoverflow.com/questions/1318523/hosting-static-sites-via-ec2-elb-and-cloudfrontComment by Dom on Hosting Static sites via EC2 ELB and CloudfrontDom2009-08-23T17:11:28Z2009-08-23T17:11:28ZI guess the question is better put as ..
"is it possible to distribute traffic via ELB to Cloudfront instead of to EC2 instances ?"