[Rails] JOBS: Ruby on Rails - Direct hire Opportunity- McLean, VA
Our client is an established internet media company specializing in the creation and distribution of professional quality video content for web and broadcast distribution. They have multiple web-based products generating revenue, and are now seeking to add a skilled and versatile senior web developer to their team. This is a great opportunity to contribute to, and help define the direction of several B to B web-based media products, alongside a high-traffic, consumer-facing website. In this hands-on position, you will be responsible for the continued maintenance and improvement of existing products along with the development of new features and capabilities. You will work with all personnel key to the business, including management, vendors, designers, and developers. As a small enterprise, teamwork is vital to our success. They are looking for someone who has extensive experience developing web-based applications and has a passion for excellence and attention to detail. You will write software and work collaboratively with the existing team, and will contribute directly to defining the direction of our core products. Your input and advice will be sought on everything from user interface, through design and schedule, and into maintenance. *RESPONSIBILITIES: * You will be responsible for helping to define the direction of overall technology infrastructure, with emphasis on the continued maintenance and development of features for core products, including the public site. You will also help drive their corporate technology plan. As business grows, so will their need for performance, scalability, maintenance, and new feature development. You will be expected to research new technologies and techniques and make recommendations that will be critical to success. As their operation grows, your responsibilities will as well. * QUALIFICATIONS:* - Experience with JavaScript, specifically JQuery, Backbone, and Widget development - 5-6+ Years web development (HTML/CSS/Javascript) - Strong Experience with Ruby on Rails - Proven ability to take an idea from the drawing board to the website, and refine over several iterations - Experience working with version control - Ability to write clean and valid XHTML and CSS - A demonstrated passion for your field - Must be self-motivated and self-disciplined - Excellent written and verbal communication skills *What will make you stand out above all other candidates? * - Leadership experience of small teams - Advanced skills with CoffeeScript - Experience working with databases (especially w/MYSQL) - Experience with EngineYard and or EC2 a plus - Knowledge of various types of new media technologies, with particular emphasis on digital video, and/or video editing and production - Linux knowledge for deploy, backup and other general administration - Understanding of how to configure/optimize development environments locally and on remotely managed servers - Experience with networking technologies and protocols - Experience with Agile development methodologies - Experience with Flash Immediate Interview and Hire Salary up to 120K plus Full Benefits Send Resume ASAP to p...@realinterface.com for immediate consideration We will call you and get your resume in front of our client today. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscr...@googlegroups.com. To post to this group, send email to rubyonrails-talk@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/a769acfb-eafa-46b0-b210-fa51bc5ca8c0%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
[Rails] Re: 15min of mentorship asked
Hi there, I'm operating on a windows machine. However the kind of advice I'm looking for is not so technical in nature that I need advice how to get RoR running on my machine. With the help of AWDWR I already built the depot app on my machine. Now I'm looking for tips to get the most out of the language in 20 days. Regards, Pj -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
[Rails] 15min of mentorship asked
Dear RoR'ers, I would like to call in a bit of help from the more experienced members. The situation and question is very simple (as it always is ;)). For the next 20 days I have nothing on my hands except learning RoR, how can I boost my skills in this short amount of time? * which books should I read (can also be ones that are not directly related to RoR) * Should I find a mentor? Where to look? * Would it be wise to start by building a real-world project right-away? What kind? * The most important question: what did I forget to ask? In order for you to be able to give a decent answer I'll give you some more extra information on me, myself and I. Where do I start? * My programming background is in PHP (but let's not talk about that too much before I make you all sick :p) * suffice to know that I think I know the fundamental building blocks of an application (MVC, OOP, REST, ...) * I already read & marked the first half of Agile web development with Rails (4th edition -> so Rails 3) Where do I want arrive? * In the future I would like to build applications on which I: ** can be proud of ** Rely on enough to sell to SME's Why do I want to invest my time? * I'm already totally convinced of the framework idea. * There are many frameworks, why why RoR? ** I just love the idea of convention over configuration ** I have the impression that people who invested there time in RoR have a passion for their work, they are opinionized and professional. ** Who doesn't want to join that 'crew'? Kind regards, Pj -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
[Rails] actionwebservice broken in production environment
actionwebservice on rails 2.3.5 from github (http://github.com/ datanoise/actionwebservice) works in development mode but doesn't seem to be loading in production. Anyone else have this problem or a solution? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
[Rails] Re: Complex forms: only one level of “arra yness” is allowed?
Thanks Fred. Considering there is a bit of "wizardry" that needs to be done and that Rails doesn't include helpers to do this simply, does it mean it is not recommended to build such complex forms? I am not very experienced with Rails, but I love the fact it is very "clean" and I feel a bit cautious having to generate keys manually. PJ On Apr 15, 9:05 am, Frederick Cheung wrote: > On Apr 15, 1:07 am, PJ wrote: > > > > > "model_a[model_b_attributes][][model_c_attributes][][an_attribute]" > > > But it doesn't seem to work. I read > > herehttp://guides.rubyonrails.org/form_helpers.html > > that "only one level of “arrayness” is allowed" and that I should use > > hashes instead, but I am not quite sure I understand how to do it. > > > Do you have any idea? > > What that comment is saying is that you can replace an array eg > [a,b,c] with a hash eg {1 => a, 2=> b, 3=>c} > Generating those keys is up to your client side code, approaches > included using a number you increment or going for some unique thing > you generate on the spot (eg time in milliseconds concatenated with a > random number) so that you don't have to keep track of how many fields > and what not you have created clientside. > > Fred --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~--~~~~--~~--~--~---
[Rails] Complex forms: only one level of “arrayn ess” is allowed?
Hi all, I thought I was trying to do something rather simple, but it has caused me a lot of headaches. Here it is: - in my program: model_a has_many model_b. model_b has_many model_c. - in the user interface, I would like the user to be able to fill the information for one model_a, one or more associated model_bs (corresponding fields could be added with a set of links 'add/remove a model_b'), and for each model_b added, one or more model_c (with the same mechanism). Thanks to the great tutorial "Handle multiple models in one form", it's easy to handle the first step (any number of model_b per model_a), but I can't get the second step to work. The natural indexing should (I think) be: "model_a[model_b_attributes][][model_c_attributes][][an_attribute]" But it doesn't seem to work. I read here http://guides.rubyonrails.org/form_helpers.html that "only one level of “arrayness” is allowed" and that I should use hashes instead, but I am not quite sure I understand how to do it. Do you have any idea? Thanks a lot PJ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~--~~~~--~~--~--~---