User Dom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:08:00Z http://stackoverflow.com/feeds/user/18737 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/877468/elastic-load-balancing-in-ec2 3 Elastic Load Balancing in EC2 Dom 2009-05-18T12:21:20Z 2009-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-3 0 Setting default values across multiple children in a multi model form (Rails 2.3 ) Dom 2009-09-16T18:57:06Z 2009-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-app 0 Rails 2.3 Scoping Users across different clients / instances in multi-tennant app Dom 2009-10-12T07:36:53Z 2009-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-issue 0 Rails 2.3 nested attributes issue Dom 2009-09-25T09:11:29Z 2009-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 =&gt; 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 &lt; ActiveRecord::Base belongs_to :user has_many :event_contacts accepts_nested_attributes_for :event_contacts has_many :contacts, :through =&gt; :event_contacts accepts_nested_attributes_for :contacts class EventContact &lt; ActiveRecord::Base belongs_to :event belongs_to :contact accepts_nested_attributes_for :contact class Contact &lt; ActiveRecord::Base belongs_to :user has_many :event _contacts has_many :events, :through =&gt; :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 =&gt; @contact.id || 0 } = c.hidden_field :user_id, :value =&gt; @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#1495050 0 Answer by Dom for Rails 2.3 nested attributes issue Dom 2009-09-29T21:28:36Z 2009-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#1476390 0 Answer by Dom for Validating date formats in rails Dom 2009-09-25T09:39:02Z 2009-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-on 0 Automating Amazon EBS snapshots anyone have a good script or solution for this on linux Dom 2009-08-24T07:53:43Z 2009-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-validation 0 Rails 2.3 select loses value when post fails validation Dom 2009-09-17T14:53:45Z 2009-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 =&gt; @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-master 1 why does Git send whole repository each time push origin master Dom 2009-09-04T20:31:51Z 2009-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-rails 2 Any thoughts on Multi-tenant versus Multi-database apps in Rails Dom 2009-09-05T08:08:20Z 2009-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-rspec 0 Testing Liquid templates in rails using Rspec Dom 2009-09-04T16:08:05Z 2009-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#1382749 0 Answer by Dom for why does Git send whole repository each time push origin master Dom 2009-09-05T07:55:01Z 2009-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-plugins 1 Rails Plugins Dom 2009-09-03T21:40:06Z 2009-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-plugins 1 Rails App Notification Plugins Dom 2009-09-03T12:07:01Z 2009-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-cloudfront 0 Hosting Static sites via EC2 ELB and Cloudfront Dom 2009-08-23T13:10:12Z 2009-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-users 1 s3 cloudfront listing all contents in bucket to anonymous users Dom 2009-08-25T15:20:34Z 2009-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-cluster 1 Blocking IP addresses Load Balanced Cluster [closed] Dom 2009-04-01T06:25:48Z 2009-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-managment 5 Any thoughts on RightScale and Scalr for dynamic Ec2 instance managment Dom 2008-12-14T14:51:34Z 2009-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-flex 3 Rails and Flex Dom 2008-09-25T19:24:46Z 2008-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-rails 4 User Monitoring in Rails Dom 2008-09-23T09:59:49Z 2008-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-rails 2 Silverlight and Rails Dom 2008-09-29T13:57:21Z 2008-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#101058 0 Answer by Dom for Customising the generic Rails error message Dom 2008-09-19T10:52:44Z 2008-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-cloudfront Comment by Dom on Hosting Static sites via EC2 ELB and Cloudfront Dom 2009-11-11T17:39:23Z 2009-11-11T17:39:23Z and 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#1485125 Comment by Dom on Elastic Load Balancing in EC2 Dom 2009-09-28T06:33:36Z 2009-09-28T06:33:36Z Hi Jeff What do you mean by stickyness. ? http://stackoverflow.com/questions/1476269/rails-2-3-nested-attributes-issue/1476902#1476902 Comment by Dom on Rails 2.3 nested attributes issue Dom 2009-09-25T22:05:55Z 2009-09-25T22:05:55Z want to store more information in the join model which doesn't fit into either the event or contact model http://stackoverflow.com/questions/1476269/rails-2-3-nested-attributes-issue/1476902#1476902 Comment by Dom on Rails 2.3 nested attributes issue Dom 2009-09-25T15:21:24Z 2009-09-25T15:21:24Z yes, 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-issue Comment by Dom on Rails 2.3 nested attributes issue Dom 2009-09-25T15:20:30Z 2009-09-25T15:20:30Z Hi have added model and view code to outline what I'm doing http://stackoverflow.com/questions/1434841/setting-default-values-across-multiple-children-in-a-multi-model-form-rails-2-3/1435848#1435848 Comment by Dom on Setting default values across multiple children in a multi model form (Rails 2.3 ) Dom 2009-09-17T13:24:29Z 2009-09-17T13:24:29Z Hi 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#1385896 Comment by Dom on Any thoughts on Multi-tenant versus Multi-database apps in Rails Dom 2009-09-15T13:48:55Z 2009-09-15T13:48:55Z Our 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#1384483 Comment by Dom on Any thoughts on Multi-tenant versus Multi-database apps in Rails Dom 2009-09-15T13:44:27Z 2009-09-15T13:44:27Z we 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 approach http://stackoverflow.com/questions/1382763/any-thoughts-on-multi-tenant-versus-multi-database-apps-in-rails/1382784#1382784 Comment by Dom on Any thoughts on Multi-tenant versus Multi-database apps in Rails Dom 2009-09-05T11:57:28Z 2009-09-05T11:57:28Z thanks steve.. you don't sound too enamoured.. Any benefits of doing this in your opinion? http://stackoverflow.com/questions/1376117/rails-plugins/1376925#1376925 Comment by Dom on Rails Plugins Dom 2009-09-04T08:03:59Z 2009-09-04T08:03:59Z Thanks 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-plugins Comment by Dom on Rails App Notification Plugins Dom 2009-09-03T14:39:47Z 2009-09-03T14:39:47Z Have searched the plugin directory here .. <a href="http://agilewebdevelopment.com/" rel="nofollow">agilewebdevelopment.com</a>... no luck http://stackoverflow.com/questions/1328984/s3-cloudfront-listing-all-contents-in-bucket-to-anonymous-users/1330190#1330190 Comment by Dom on s3 cloudfront listing all contents in bucket to anonymous users Dom 2009-08-26T10:01:01Z 2009-08-26T10:01:01Z thanks Adam. will look into this. http://stackoverflow.com/questions/1318523/hosting-static-sites-via-ec2-elb-and-cloudfront/1333435#1333435 Comment by Dom on Hosting Static sites via EC2 ELB and Cloudfront Dom 2009-08-26T09:57:26Z 2009-08-26T09:57:26Z Hi 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-cloudfront Comment by Dom on Hosting Static sites via EC2 ELB and Cloudfront Dom 2009-08-23T17:11:28Z 2009-08-23T17:11:28Z I guess the question is better put as .. &quot;is it possible to distribute traffic via ELB to Cloudfront instead of to EC2 instances ?&quot;