User Tamer Salama - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T00:32:48Zhttp://stackoverflow.com/feeds/user/7693http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/176090/agile-web-graphic-design8Agile Web/Graphic DesignTamer Salama2008-10-06T20:36:08Z2009-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-use5Monday Morning Meetings - What format do you use?Tamer Salama2008-11-12T18:29:53Z2009-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-model0Multiple has_many_polymorphs in one modelTamer Salama2009-06-11T19:46:58Z2009-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 < ActiveRecord::Base; end
class Group < ActiveRecord::Base; end
class Note < ActiveRecord::Base
has_many_polymorphs :viewers, :through => :permissions, :from => [:users, :groups]
end
class Permission < ActiveRecord::Base
belongs_to :note
belongs_to :viewer, :polymorphic => true
end
Note.first.viewers << User.first # => [#<User id: 1, ....>]
Note.first.viewers << Group.first # => [#<User id: 1, ....>, #<Group ...>]
Note.first.viewers.first # => #<User ....>
Note.first.viewers.second # => #<Group ....>
</code></pre>
<p>Now, problems start to appear when I add the second relation</p>
<pre><code>class Note < ActiveRecord::Base
has_many_polymorphs :viewers, :through => :permissions, :from => [:users, :groups]
has_many_polymorphs :editors, :through => :permissions, :from => [:users, :groups]
end
class Permission < ActiveRecord::Base
belongs_to :note
belongs_to :viewer, :polymorphic => true
belongs_to :editor, :polymorphic => true
end
Note.first.viewers << User.first # => [#<User id: ....>]
# >>>>>>>>
Note.first.editors << 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 < Permission</code>, and <code>EditPermission < 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-administration2Presenting Deeply Nested Resources AdministrationTamer Salama2009-06-04T05:10:28Z2009-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><.. 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><.. 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> <.. 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#8509440Answer by Tamer Salama for How to load data in a Ruby on Rails Join Table ?Tamer Salama2009-05-12T02:41:58Z2009-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 => 'John'
role = Role.create :name => 'admin'
user.roles << role
</code></pre>
http://stackoverflow.com/questions/850825/google-analytics-alternative-for-a-rails-application/850922#8509225Answer by Tamer Salama for Google Analytics Alternative for a Rails ApplicationTamer Salama2009-05-12T02:36:10Z2009-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#8503190Answer by Tamer Salama for Problems with Netbeans re: Rails erb/rhtml intellisense?Tamer Salama2009-05-11T22:04:13Z2009-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#5172770Answer by Tamer Salama for Geolocation API on the iPhoneTamer Salama2009-02-05T18:38:23Z2009-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#4817031Answer by Tamer Salama for Is there a good tool to generate an image of the database schema used in a Rails app?Tamer Salama2009-01-26T22:47:38Z2009-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#2854711Answer by Tamer Salama for How to insert rows when using a many-to-many relationTamer Salama2008-11-12T21:38:20Z2008-11-12T21:38:20Z<p>If I understood correctly.</p>
<pre><code>item = Item.new(:name => "item")
item.transactions.build(:name => "transaction")
item.save!
</code></pre>
http://stackoverflow.com/questions/284861/monday-morning-meetings-what-format-do-you-use/285053#2850530Answer by Tamer Salama for Monday Morning Meetings - What format do you use?Tamer Salama2008-11-12T19:30:54Z2008-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#1675220Answer by Tamer Salama for non-DB attr_accessor attribute persistence in RailsTamer Salama2008-10-03T15:48:45Z2008-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#1658981Answer by Tamer Salama for Site-Mining toolsTamer Salama2008-10-03T06:28:33Z2008-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&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-process9Why adopt a software development process?Tamer Salama2008-10-03T05:46:42Z2008-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#1658800Answer by Tamer Salama for Site-Mining toolsTamer Salama2008-10-03T06:16:35Z2008-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#1242970Answer by Tamer Salama for Does anyone know of any cross platform GUI log viewers for Ruby On Rails?Tamer Salama2008-09-23T22:23:21Z2008-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#9465840Answer by Tamer Salama for What's your favorite "programmer" cartoon?Tamer Salama2008-09-18T17:24:46Z2008-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#983295Comment by Tamer Salama on Multiple has_many_polymorphs in one modelTamer Salama2009-06-12T16:33:34Z2009-06-12T16:33:34ZThanks 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/…</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_id</code> and <code>authorizable_type</code> to stored either <code>Note</code> or <code>Post</code> references.http://stackoverflow.com/questions/983225/multiple-hasmanypolymorphs-in-one-model/983295#983295Comment by Tamer Salama on Multiple has_many_polymorphs in one modelTamer Salama2009-06-11T20:21:55Z2009-06-11T20:21:55ZThe <code>has_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-modelComment by Tamer Salama on Multiple has_many_polymorphs in one modelTamer Salama2009-06-11T19:53:39Z2009-06-11T19:53:39ZThanks - added.http://stackoverflow.com/questions/284861/monday-morning-meetings-what-format-do-you-use/285084#285084Comment by Tamer Salama on Monday Morning Meetings - What format do you use?Tamer Salama2008-11-12T20:36:52Z2008-11-12T20:36:52Zgreat yoda idea.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84624#84624Comment by Tamer Salama on What's your favorite "programmer" cartoon?Tamer Salama2008-10-04T18:31:19Z2008-10-04T18:31:19ZDoes anyone know who's the author?http://stackoverflow.com/questions/165840/site-mining-tools/165898#165898Comment by Tamer Salama on Site-Mining toolsTamer Salama2008-10-03T15:26:07Z2008-10-03T15:26:07ZYoutube 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#165842Comment by Tamer Salama on Why adopt a software development process?Tamer Salama2008-10-03T06:00:04Z2008-10-03T06:00:04ZBut wouldn't a 'framework' be more relevant in such case?