User Tamer Salama - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:32:48Z http://stackoverflow.com/feeds/user/7693 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/176090/agile-web-graphic-design 8 Agile Web/Graphic Design Tamer Salama 2008-10-06T20:36:08Z 2009-11-30T19:09:16Z <p>How do you incorporate web/graphic design tasks (template design, logo design, look-n-feel, etc...) into your agile process (XP/SCRUM)? How do you go about developer/designer pairing, designer stand-up meeting attendance?</p> <p>In the larger sense, <strong><em>can</em></strong> an agile process be applied to web/graphic design?</p> http://stackoverflow.com/questions/284861/monday-morning-meetings-what-format-do-you-use 5 Monday Morning Meetings - What format do you use? Tamer Salama 2008-11-12T18:29:53Z 2009-11-03T12:34:28Z <p>We're trying to improve the format of our Monday morning meetings (M3). The meeting is among all members of our company (20 persons) including developers, designers, administrative and the company's president.</p> <p>It starts with a round-table of 1 word check-in (social) and then transitions into business aspects.</p> <p>We tried a project-focused format where team-leads work off of a project list stating the updates and outstanding issues, but the team members felt disconnected. Then, we tried a stand-up-like format (previous week, this week, roadblocks), but team-leads felt they didn't get a good handle on all the projects.</p> <p>Any suggestions on M3 formats?</p> <p>And No. It can't be cancelled :)</p> http://stackoverflow.com/questions/983225/multiple-hasmanypolymorphs-in-one-model 0 Multiple has_many_polymorphs in one model Tamer Salama 2009-06-11T19:46:58Z 2009-06-27T14:26:20Z <p>I'm trying to define multiple polymorphic relations (<code>has_many_polymorphs plugin</code>) from a single parent to same children.</p> <p>Note has many viewers<br/> Note has many editors<br/> Viewers could be either Users or Groups<br/> Editors could be either Users or Groups<br/> Permission is the association model with <code>note_id</code>, <code>viewer_id</code>, <code>viewer_type</code>, <code>editor_id</code>, <code>editor_type</code> fields</p> <p>Everything works out as expect as long as I have only one has_many_polymorphs relation defined in Note model</p> <pre><code>class User &lt; ActiveRecord::Base; end class Group &lt; ActiveRecord::Base; end class Note &lt; ActiveRecord::Base has_many_polymorphs :viewers, :through =&gt; :permissions, :from =&gt; [:users, :groups] end class Permission &lt; ActiveRecord::Base belongs_to :note belongs_to :viewer, :polymorphic =&gt; true end Note.first.viewers &lt;&lt; User.first # =&gt; [#&lt;User id: 1, ....&gt;] Note.first.viewers &lt;&lt; Group.first # =&gt; [#&lt;User id: 1, ....&gt;, #&lt;Group ...&gt;] Note.first.viewers.first # =&gt; #&lt;User ....&gt; Note.first.viewers.second # =&gt; #&lt;Group ....&gt; </code></pre> <p>Now, problems start to appear when I add the second relation</p> <pre><code>class Note &lt; ActiveRecord::Base has_many_polymorphs :viewers, :through =&gt; :permissions, :from =&gt; [:users, :groups] has_many_polymorphs :editors, :through =&gt; :permissions, :from =&gt; [:users, :groups] end class Permission &lt; ActiveRecord::Base belongs_to :note belongs_to :viewer, :polymorphic =&gt; true belongs_to :editor, :polymorphic =&gt; true end Note.first.viewers &lt;&lt; User.first # =&gt; [#&lt;User id: ....&gt;] # &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Note.first.editors &lt;&lt; User.first NoMethodError: You have a nil object when you didn't expect it! The error occurred while evaluating nil.constantize ... vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/base.rb:18:in `instantiate' </code></pre> <p><hr /></p> <p>I've tried refining the definition of <code>has_many_polymorphs</code> but it didn't work. Not even with an STI model for <code>ViewPermission &lt; Permission</code>, and <code>EditPermission &lt; Permission</code>.</p> <p>Any thoughts / workarounds / issue pointers are appreciated.</p> <p>Rails 2.3.0</p> http://stackoverflow.com/questions/948692/presenting-deeply-nested-resources-administration 2 Presenting Deeply Nested Resources Administration Tamer Salama 2009-06-04T05:10:28Z 2009-06-04T22:28:26Z <p>Hello:</p> <p>I'd like to get some ideas on how to properly present deeply nested resources in CRUD operations.</p> <p>Let's say I have 4 levels of nested resources (resource 1, resource 2, resource 3, resource 4). I'd like to present the user with <em>easily navigatable</em>, <em>non-confusing</em> interface to allow them to navigate along the tree or to adjacent resources.</p> <p><hr /></p> <p><em>Idea 1 (Breadcrump w/ Links):</em></p> <p><strong>Resource 4 View:</strong></p> <p>Resource 1 > <a href="http://example.com" rel="nofollow">[resource]</a> - Resource 2 > <a href="http://example.com" rel="nofollow">[resource]</a> - Resource 3 > <a href="http://example.com" rel="nofollow">[resource]</a></p> <p>&lt;.. content of Resource 4 view (index/new/edit/show) ..></p> <p><hr /></p> <p><em>Idea 2 (Breadcrump w/ Drop Downs):</em></p> <p><strong>Resource 4 View:</strong></p> <p>Resource 1 > [<a href="http://example.com" rel="nofollow">resource</a> | <strong>V</strong>] - Resource 2 > [<a href="http://example.com" rel="nofollow">resource</a> | <strong>V</strong>] - Resource 3 > [<a href="http://example.com" rel="nofollow">resource</a> | <strong>V</strong>]</p> <p>&lt;.. content of Resource 4 view (index/new/edit/show) ..></p> <p><hr /></p> <p><em>Idea 3 (sidebar trees):</em></p> <p><strong>Resource 4 View:</strong></p> <p><strong>Resource 1</strong> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;.. content of Resource 4 view (index/new/edit/show) ..><br /> |__ Resource ..<br /> |__ Resource ..<br /> |__ <strong>Resource 2</strong><br /> .......|__ Resource ..<br /> .......|__ Resource..<br /> .......|__ <strong>Resource 3</strong>.</p> <p><hr /></p> <p>How would you do it? Do you have any examples?</p> http://stackoverflow.com/questions/849801/how-to-load-data-in-a-ruby-on-rails-join-table/850944#850944 0 Answer by Tamer Salama for How to load data in a Ruby on Rails Join Table ? Tamer Salama 2009-05-12T02:41:58Z 2009-05-12T02:41:58Z <p>That's provided that you have a model named RolesUser.</p> <p>If you have a habtm association, the model is probably not there.</p> <p>One way of loading roles could be;</p> <pre><code>user = User.create :name =&gt; 'John' role = Role.create :name =&gt; 'admin' user.roles &lt;&lt; role </code></pre> http://stackoverflow.com/questions/850825/google-analytics-alternative-for-a-rails-application/850922#850922 5 Answer by Tamer Salama for Google Analytics Alternative for a Rails Application Tamer Salama 2009-05-12T02:36:10Z 2009-05-12T02:36:10Z <p>I've recently used RailStat, with a decent set of features. Its structure is very good, easy enough to change and can be scoped by the subdomain.</p> <p><a href="http://www.railstat.com/" rel="nofollow">http://www.railstat.com/</a></p> http://stackoverflow.com/questions/850047/problems-with-netbeans-re-rails-erb-rhtml-intellisense/850319#850319 0 Answer by Tamer Salama for Problems with Netbeans re: Rails erb/rhtml intellisense? Tamer Salama 2009-05-11T22:04:13Z 2009-05-11T22:04:13Z <p>Also, you might want to explore using HAML. It's much easier on the hands.</p> http://stackoverflow.com/questions/221592/geolocation-api-on-the-iphone/517277#517277 0 Answer by Tamer Salama for Geolocation API on the iPhone Tamer Salama 2009-02-05T18:38:23Z 2009-02-05T18:38:23Z <p><a href="http://rhomobile.com/products/rhodes" rel="nofollow">Rhodes</a> is promising a "develop-once-run-everywhere" solution. Haven't tried them myself.</p> http://stackoverflow.com/questions/481618/is-there-a-good-tool-to-generate-an-image-of-the-database-schema-used-in-a-rails/481703#481703 1 Answer by Tamer Salama for Is there a good tool to generate an image of the database schema used in a Rails app? Tamer Salama 2009-01-26T22:47:38Z 2009-01-26T22:47:38Z <p>Railroad - <a href="http://railroad.rubyforge.org/" rel="nofollow">http://railroad.rubyforge.org/</a></p> http://stackoverflow.com/questions/285456/how-to-insert-rows-when-using-a-many-to-many-relation/285471#285471 1 Answer by Tamer Salama for How to insert rows when using a many-to-many relation Tamer Salama 2008-11-12T21:38:20Z 2008-11-12T21:38:20Z <p>If I understood correctly.</p> <pre><code>item = Item.new(:name =&gt; "item") item.transactions.build(:name =&gt; "transaction") item.save! </code></pre> http://stackoverflow.com/questions/284861/monday-morning-meetings-what-format-do-you-use/285053#285053 0 Answer by Tamer Salama for Monday Morning Meetings - What format do you use? Tamer Salama 2008-11-12T19:30:54Z 2008-11-12T19:30:54Z <p>Well, appreciating your feedback. I'll answer few questions that were raised in the discussions:</p> <blockquote> <p>Does everyone need to be there?</p> </blockquote> <p>Yes, it's more a company policy. It's not a progress/production meeting in the pure sense, but rather a business meeting.</p> <blockquote> <p>Am I right in guessing that your company grew quite recently from very small to it's current size?</p> </blockquote> <p>The company is not growing, and has been there for quite a few years. The meeting has always been held (with a few variations in the format).</p> <p>I personally think this type of meetings is good in getting all members together (business, tech, design), be it for the social aspect, for a company-wide direction, or for cross-domain knowledge. Do I think it's a waste of time? I think it depends (partly on the level of contribution), that's why I'm looking for a good format that would make everyone benefit and contribute.</p> http://stackoverflow.com/questions/167302/non-db-attraccessor-attribute-persistence-in-rails/167522#167522 0 Answer by Tamer Salama for non-DB attr_accessor attribute persistence in Rails Tamer Salama 2008-10-03T15:48:45Z 2008-10-03T15:48:45Z <p>This sounds like a strange pattern (having a rake task access model attributes).</p> <p>Perhaps you intend to have an application config or the like? If so, there are few plugins that handles such cases.</p> <p>Can you give an example for clarity?</p> http://stackoverflow.com/questions/165840/site-mining-tools/165898#165898 1 Answer by Tamer Salama for Site-Mining tools Tamer Salama 2008-10-03T06:28:33Z 2008-10-03T15:26:43Z <p>Another option would be using <a href="http://pipes.yahoo.com/pipes/" rel="nofollow">Yahoo! Pipes</a>. (<a href="http://www.jumpcut.com/fullscreen?id=F4396574585311DC87A2000423CF0184&amp;type=clip" rel="nofollow">demo</a>)</p> <p>You can build such system visually online using a combination of feed urls, filters, etc... Learning time is minimal compared to programming. [edited: tense]</p> http://stackoverflow.com/questions/165819/why-adopt-a-software-development-process 9 Why adopt a software development process? Tamer Salama 2008-10-03T05:46:42Z 2008-10-03T07:22:52Z <p>Agile (SCRUM, XP, FDD, ...), Waterfall, RUP, ... Why would a small company bother adopting one in the first place. Why not just hack-away each project to completion (with a usual team size of 1~2).</p> <p>I'm preparing a short presentation against the argument but would like to hear what everyone thinks.</p> http://stackoverflow.com/questions/165840/site-mining-tools/165880#165880 0 Answer by Tamer Salama for Site-Mining tools Tamer Salama 2008-10-03T06:16:35Z 2008-10-03T06:16:35Z <p>Human interaction tools might be useful in such case (no development cost, probably a more consistent outcome, and evolving requirements).</p> <p>Couple comes to mind:</p> <ul> <li><a href="https://requester.mturk.com/mturk/welcome" rel="nofollow">Mechanical Turk</a>.</li> <li><a href="http://www.timesvr.com/" rel="nofollow">Time Svr</a> (more expensive) - <a href="http://sidsavara.com/personal-productivity/can-virtual-assistants-make-you-more-productive-an-experiment" rel="nofollow">experiment/review</a>.</li> </ul> http://stackoverflow.com/questions/124275/does-anyone-know-of-any-cross-platform-gui-log-viewers-for-ruby-on-rails/124297#124297 0 Answer by Tamer Salama for Does anyone know of any cross platform GUI log viewers for Ruby On Rails? Tamer Salama 2008-09-23T22:23:21Z 2008-09-23T22:23:21Z <p>You might be able to use <a href="http://logging.apache.org/chainsaw/index.html" rel="nofollow">http://logging.apache.org/chainsaw/index.html</a> . Haven't used it in a long time but I think its log parser should be configurable</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/94658#94658 40 Answer by Tamer Salama for What's your favorite "programmer" cartoon? Tamer Salama 2008-09-18T17:24:46Z 2008-09-21T19:22:42Z <p>Bit old but still one of my favs:</p> <p><img src="http://www.ok-cancel.com/strips/okcancel20031003.gif"/></p> http://stackoverflow.com/questions/983225/multiple-hasmanypolymorphs-in-one-model/983295#983295 Comment by Tamer Salama on Multiple has_many_polymorphs in one model Tamer Salama 2009-06-12T16:33:34Z 2009-06-12T16:33:34Z Thanks Ryan - yes - I posted on github as an issue (<a href="http://github.com/fauna/has_many_polymorphs/issues/#issue/3" rel="nofollow">github.com/fauna/has_many_polymorphs/&hellip;</a>) I'm not sure if Double-sided relationships would work. My <i>understanding</i> they are intended for a polymorphic parent-relation. ie: instead of having only <code>Note</code> as a parent, I could also have say <code>Post</code> as a parent; which would make it a double-sided polymorphism. Note can have either User or Group viewer. Post can have User or Group viewer. The relationship table <code>Permission</code> would have to have <code>authorizable&#95;id</code> and <code>authorizable&#95;type</code> to stored either <code>Note</code> or <code>Post</code> references. http://stackoverflow.com/questions/983225/multiple-hasmanypolymorphs-in-one-model/983295#983295 Comment by Tamer Salama on Multiple has_many_polymorphs in one model Tamer Salama 2009-06-11T20:21:55Z 2009-06-11T20:21:55Z The <code>has&#95;many :permissions</code> is not required. The schema as outlined in the second paragraph is: integer :note_id integer :viewer_id string :viewer_type integer :editor_id string :editor_type http://stackoverflow.com/questions/983225/multiple-hasmanypolymorphs-in-one-model Comment by Tamer Salama on Multiple has_many_polymorphs in one model Tamer Salama 2009-06-11T19:53:39Z 2009-06-11T19:53:39Z Thanks - added. http://stackoverflow.com/questions/284861/monday-morning-meetings-what-format-do-you-use/285084#285084 Comment by Tamer Salama on Monday Morning Meetings - What format do you use? Tamer Salama 2008-11-12T20:36:52Z 2008-11-12T20:36:52Z great yoda idea. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84624#84624 Comment by Tamer Salama on What's your favorite "programmer" cartoon? Tamer Salama 2008-10-04T18:31:19Z 2008-10-04T18:31:19Z Does anyone know who's the author? http://stackoverflow.com/questions/165840/site-mining-tools/165898#165898 Comment by Tamer Salama on Site-Mining tools Tamer Salama 2008-10-03T15:26:07Z 2008-10-03T15:26:07Z Youtube is your friend Try this one - <a href="http://www.youtube.com/watch?v=d3h6ROs__II" rel="nofollow">youtube.com/watch?v=d3h6ROs__II</a> http://stackoverflow.com/questions/165819/why-adopt-a-software-development-process/165842#165842 Comment by Tamer Salama on Why adopt a software development process? Tamer Salama 2008-10-03T06:00:04Z 2008-10-03T06:00:04Z But wouldn't a 'framework' be more relevant in such case?