User fooledbyprimes - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:20:23Zhttp://stackoverflow.com/feeds/user/20714http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/167716/what-is-the-difference-between-couchdb-and-lotus-notes9What is the difference between CouchDB and Lotus Notes?fooledbyprimes2008-10-03T16:22:24Z2009-10-30T07:15:01Z
<p>I was looking into the possibility of using CouchDB. I heard that it was similar to Lotus Notes which everyone loves to hate. Is this true?</p>
http://stackoverflow.com/questions/667408/how-can-i-detect-if-an-html-page-element-exists-by-using-ror-rjs-template-code1How can I detect if an html page element exists by using RoR RJS Template code?fooledbyprimes2009-03-20T18:38:07Z2009-05-23T23:34:12Z
<p>I tried several ways but all are failing.</p>
http://stackoverflow.com/questions/645237/as-a-programmer-what-single-discovery-has-given-you-the-greatest-boost-in-product/645252#6452522Answer by fooledbyprimes for As a programmer what single discovery has given you the greatest boost in productivity?fooledbyprimes2009-03-14T03:01:21Z2009-03-14T03:01:21Z<p>My answer: the promise of dual monitors boosting performance while programming/debugging was a lie.</p>
<p>I now prefer 1 monitor. With two monitors you always have too many things distracting you and also you get stressed due to awkward head and eye movements.</p>
<p>I'll never go back to 2 monitors.</p>
<p>(I also use EMACS so I keep my fingers on the QWERTY row much more than ever before... why stop the flow of typing??)</p>
http://stackoverflow.com/questions/641287/can-i-interact-with-rails-models-within-a-capistrano-task2Can I interact with Rails models within a Capistrano task? fooledbyprimes2009-03-13T02:44:17Z2009-03-13T02:50:40Z
<p>I often used Rake tasks that are dependent upon the Rails environment task having loaded. I then interact with Rails Models within the Rake tasks. Can I do this in Capistrano?</p>
http://stackoverflow.com/questions/179911/where-can-i-get-the-missing-figures-from-the-freely-available-classic-programmi0Where can I get the missing figures from the freely available, classic "Programming Ruby" e-book?fooledbyprimes2008-10-07T19:13:10Z2009-03-08T18:01:43Z
<p>I am studying the content of "Programming Ruby- The Pragmatic Programmer's Guide" but the HTML version does not include the Figures.</p>
<p>Are the figures available anywhere online?</p>
http://stackoverflow.com/questions/617511/how-deep-how-many-tables-away-can-my-hasmany-through-association-path-be1How deep (how many tables away) can my [has_many :through] association "path" be? fooledbyprimes2009-03-06T02:10:07Z2009-03-06T02:45:58Z
<p>The following db design example is given in the Agile Rails book to teach the has_many :through code...</p>
<p>[Article]----<[Readings]>----[User]</p>
<p>This is all quite easy to understand at first. However, I have a situation where the following db design might be used:</p>
<p>[Genre]-----<[Article]-----<[Readings]>-----[User] </p>
<p>Now here is my question:</p>
<p>Can I use the has_many :through association so that I can code something like the following:</p>
<p>artistic_minded _users = art.users</p>
<p>If this can be done then how do you setup the has_many association?? </p>
http://stackoverflow.com/questions/611189/how-do-i-code-a-rake-task-that-runs-the-rails-dbmigrate-task1How do I code a rake task that runs the Rails db:migrate task?fooledbyprimes2009-03-04T15:53:45Z2009-03-05T21:11:32Z
<p>I would like to run db:migrate VERSION=0 and then db:migrate inside of my own rake task. I am confused about how to do this. Do I need a special require statement? My rake task will reside in the lib/tasks directory of a Rails app. Thanks.</p>
http://stackoverflow.com/questions/611215/why-does-initation-of-rake-dbmigrate-run-syntax-check-on-rake-tasks-in-the-lib1Why does initation of [rake db:migrate] run syntax check on rake tasks in the lib/tasks directory?fooledbyprimes2009-03-04T16:00:56Z2009-03-04T22:47:39Z
<p>I have a rake task file for a RubyOnRails app which resides in the lib/tasks directory. Running [rake db:migrate VERSION=0] seems to force the compiler to check syntax in the lib/tasks files. If there is a file with bad syntax then [rake db:migrate] does not run. Why? So what if I have a bad file in lib/tasks. What is happening here? Thanks.</p>
http://stackoverflow.com/questions/164714/how-can-i-use-c-style-enumerations-in-ruby6How can I use C# style enumerations in Ruby?fooledbyprimes2008-10-02T21:36:45Z2009-02-25T17:33:39Z
<p>I just want to know the best way to emulate a C# style enumeration in Ruby.</p>
http://stackoverflow.com/questions/187003/are-there-any-json-or-yaml-based-time-sheet-or-work-log-related-formats-for0Are there any JSON (or YAML) based "time sheet" or "work log" related formats for recording time spent on tasks?fooledbyprimes2008-10-09T12:20:11Z2008-12-04T16:01:19Z
<p>I just need a simple JSON or YAML (or other) text based format for recording the time I spend on tasks. I prefer to do as much work as possible in my text editor (e text editor) so it is more natural to me to stay in the editor and not switch back and forth to programs like Excel (plus this way I retain portable and "open" data). The idea is that if I record all my tasks in JSON or YAML format then I could easily use IRB (interactive Ruby) or some other interactive programming session to create a work log report for myself. Also I could use this to generate reports for my clients pretty easily at the end of some particular time period. </p>
<p>It would nice if the format already exists and that the format has some mechanism for coping with the following problem: some data that I record should be for "internal use only" whereas other data could be safe for "external" use. In other words, one problem I would like to avoid is the trouble of sifting back through text work logs in order to filter items that should not be forward to the client.</p>
<p>Q: Why JSON or YAML???<br />
A: JSON or YAML seems to have a cleaner syntax than creating something with XML. Remember I am the one who has to type the log so I am not interested in typing a bunch of extra closing tags.</p>
http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language10Can Ruby really be used as a functional language?fooledbyprimes2008-10-17T18:31:47Z2008-10-18T01:12:20Z
<p>Can Ruby really be used as a functional language? What are some good tutorials to teach this facet of the language? Note: I really want to use and stick with Ruby as my primary language so I am not interested at this point in being converted to YAFL (yet another functional language). I am really interested in how well Ruby's functional facets perform against the standard functional language baseline. Thanks.</p>
http://stackoverflow.com/questions/200530/to-which-kind-of-problem-is-functional-programming-well-suited/213300#2133001Answer by fooledbyprimes for To which kind of problem is functional programming well suited?fooledbyprimes2008-10-17T18:29:22Z2008-10-17T18:29:22Z<p>Data Structures. Example: Compare the imperative implementation of a Fibonacci Heap (often used as a priority queue) with the functional implementation. Often the functional code will be less than 100 lines of code whereas the imperative implementation can be many more lines of code.</p>
http://stackoverflow.com/questions/208998/does-ruby-best-practice-shun-statement-modifiers-after-for-example-a-long-code3Does Ruby best practice shun statement modifiers after, for example, a long code block that is passed to an iterator?fooledbyprimes2008-10-16T15:20:13Z2008-10-16T17:01:41Z
<p>something.each do |x|</p>
<p>#lots of stuff</p>
<p>end if some_condition</p>
http://stackoverflow.com/questions/208998/does-ruby-best-practice-shun-statement-modifiers-after-for-example-a-long-code/209210#209210-1Answer by fooledbyprimes for Does Ruby best practice shun statement modifiers after, for example, a long code block that is passed to an iterator?fooledbyprimes2008-10-16T16:01:50Z2008-10-16T16:01:50Z<p>I think the above example is perfectly fine in certain cases where it exists inside of several nested blocks. If the above code is 4 levels deep then you have eliminated another level. Therefore, in certain cases, the above style can actually increase readability. Note we are assuming that there are no more than 20 statements within the block.</p>
http://stackoverflow.com/questions/179915/asp-net-mvc-orm/179919#179919-2Answer by fooledbyprimes for ASP.NET MVC + ORMfooledbyprimes2008-10-07T19:17:34Z2008-10-07T19:17:34Z<p>Use linq to sql first.</p>
http://stackoverflow.com/questions/117401/is-it-possible-to-embed-cockburn-style-textual-uml-use-case-content-in-the-code-b5Is it possible to embed Cockburn style textual UML Use Case content in the code base to improve code readability?fooledbyprimes2008-09-22T20:27:14Z2008-09-27T02:28:54Z
<h2>experimenting with Cockburn use cases in code</h2>
<p>I was writing some complicated UI code. I decided to employ Cockburn use cases with fish,kite,and sea levels (discussed by Martin Fowler in his book 'UML Distilled'). I wrapped Cockburn use cases in static C# objects so that I could test logical conditions against static constants which represented steps in a UI workflow. The idea was that you could read the code and know what it was doing because the wrapped objects and their public contants gave you ENGLISH use cases via namespaces.</p>
<p>Also, I was going to use reflection to pump out error messages that included the described use cases. The idea is that the stack trace could include some UI use case steps IN ENGLISH.... It turned out to be a fun way to achieve a mini,psuedo light-weight Domain Language but without having to write a DSL compiler. So my question is whether or not this is a good way to do this? Has anyone out there ever done something similar? </p>
<p><hr /></p>
<p><em>c# example snippets follow</em></p>
<p>Assume we have some aspx page which has 3 user controls (with lots of clickable stuff). User must click on stuff in one particular user control (possibly making some kind of selection) and then the UI must visually cue the user that the selection was successful. Now, while that item is selected, the user must browse through a gridview to find an item within one of the other user controls and then select something. This sounds like an easy thing to manage but the code can get ugly. </p>
<p>In my case, the user controls all sent event messages which were captured by the main page. This way, the page acted like a central processor of UI events and could keep track of what happens when the user is clicking around. </p>
<p>So, in the main aspx page, we capture the first user control's event.</p>
<pre><code>using MyCompany.MyApp.Web.UseCases;
protected void MyFirstUserControl_SomeUIWorkflowRequestCommingIn(object sender, EventArgs e)
{
// some code here to respond and make "state" changes or whatever
//
// blah blah blah
// finally we have this (how did we know to call fish level method?? because we knew when we wrote the code to send the event in the user control)
UpdateUserInterfaceOnFishLevelUseCaseGoalSuccess(FishLevel.SomeNamedUIWorkflow.SelectedItemForPurchase)
}
protected void UpdateUserInterfaceOnFishLevelGoalSuccess(FishLevel.SomeNamedUIWorkflow goal)
{
switch (goal)
{
case FishLevel.SomeNamedUIWorkflow.NewMasterItemSelected:
//call some UI related methods here including methods for the other user controls if necessary....
break;
case FishLevel.SomeNamedUIWorkFlow.DrillDownOnDetails:
//call some UI related methods here including methods for the other user controls if necessary....
break;
case FishLevel.SomeNamedUIWorkFlow.CancelMultiSelect:
//call some UI related methods here including methods for the other user controls if necessary....
break;
// more cases...
}
}
}
//also we have
protected void UpdateUserInterfaceOnSeaLevelGoalSuccess(SeaLevel.SomeNamedUIWorkflow goal)
{
switch (goal)
{
case SeaLevel.CheckOutWorkflow.ChangedCreditCard:
// do stuff
// more cases...
}
}
}
</code></pre>
<p>So, in the MyCompany.MyApp.Web.UseCases namespace we might have code like this:</p>
<pre><code>class SeaLevel...
class FishLevel...
class KiteLevel...
</code></pre>
<p>The workflow use cases embedded in the classes could be inner classes or static methods or enumerations or whatever gives you the cleanest namespace. I can't remember what I did originally but you get the picture.</p>
http://stackoverflow.com/questions/131659/what-are-some-non-standard-ways-to-use-namespaces-3What are some non-standard ways to use namespaces?fooledbyprimes2008-09-25T05:54:02Z2008-09-25T09:25:04Z
<p>I am interested in unprecedented, cool, and esoteric ways to use namespaces. I know that many advanced developers "hack" namespaces by, for example, using them as references to string constants. In the string constants example, the idea is to implement DRY (DRY = Do Not Repeat Yourself) and you can keep all your strings in one file.</p>
<p>note: I am looking for answers related to "common" languages such as C#, Ruby, Java, etc. </p>
http://stackoverflow.com/questions/122883/interfaces-why-cant-i-seem-to-grasp-them/123019#1230190Answer by fooledbyprimes for Interfaces: Why cant I seem to grasp them?fooledbyprimes2008-09-23T18:55:51Z2008-09-25T05:43:35Z<p>Here is a db related example I often use. Let us say you have an object and a container object like an list. Let us assume that sometime you might want to store the objects in a particular sequence. Assume that the sequence is not related to the position in the array but instead that the objects are a subset of a larger set of objects and the sequence position is related to the database sql filtering. </p>
<p>To keep track of your customized sequence positions you could make your object implement a custom interface. The custom interface could mediate the organizational effort required to maintain such sequences. </p>
<p>For example, the sequence you are interested in has nothing to do with primary keys in the records. With the object implementing the interface you could say myObject.next() or myObject.prev().</p>
http://stackoverflow.com/questions/104638/do-you-still-use-uml-how-what-for/131582#1315820Answer by fooledbyprimes for Do you still use UML? How? What for?fooledbyprimes2008-09-25T05:17:16Z2008-09-25T05:38:26Z<p>I've decided I like the Cockburn style usecases as described by Fowler in his book entitled "UML Distilled." I like them enough that I devised an experimental way to embed them directly into C# namespaces. </p>
<p>By doing this I could encode business or UI logic in terms of the use cases' English language content for free without having to write any kind of domain specific language. The most immediate benefit was that I improved the code readability (albiet in a very new and esoteric kind of way). It is still an experimental approach. However, I believe it could be useful.</p>
<p><a href="http://stackoverflow.com/questions/117401/is-it-possible-to-embed-cockburn-style-textual-uml-use-case-content-in-the-code">Here</a> is the link to a question I posted while trying to find other ways to do what I did.</p>
http://stackoverflow.com/questions/33643/diagramming-software-for-a-developer-designer/131588#1315880Answer by fooledbyprimes for Diagramming Software for a Developer/Designerfooledbyprimes2008-09-25T05:21:08Z2008-09-25T05:21:08Z<p>I prefer Inkscape for one particular reason: I keeps my diagrams simple. This way I spend more time writing code.</p>
http://stackoverflow.com/questions/18803/is-uml-practical/131532#1315320Answer by fooledbyprimes for Is UML practical?fooledbyprimes2008-09-25T04:52:27Z2008-09-25T04:52:27Z<p>I believe there may be a way to utilize Cockburn style UML fish,kite, and sea-level use cases as described by Fowler in his book "UML Distilled." My idea was to employ Cockburn use cases as an aid for code readability. </p>
<p>So I did an experiment and there is a post here about it with the Tag "UML" or "FOWLER." It was a simple idea for c#. Find a way to embed Cockburn use cases into the namespaces of programming constructs (such as the class and inner class namespaces or by making use of the namespaces for enumerations). I believe this could be a viable and simple technique but still have questions and need others to check it out. It could be good for simple programs that need a kind of pseudo-Domain Specific Language which can exist right in the midst of the c# code without any language extensions. </p>
<p>Please check out the post if you are interested. Go <a href="http://stackoverflow.com/questions/117401/is-it-possible-to-embed-cockburn-style-textual-uml-use-case-content-in-the-code">here</a>.</p>
http://stackoverflow.com/questions/22088/why-do-the-others-think-you-can-fix-their-computer/131500#1315000Answer by fooledbyprimes for Why do 'the others' think you can fix their computer?fooledbyprimes2008-09-25T04:37:45Z2008-09-25T04:37:45Z<p>SELECT myUDF_toInterpret_NumCounts(COUNT(*)) as 'answer' FROM FIXES_BY_PROGRAMMER</p>
<h2>answer</h2>
<p>'because we have done it before, we do it now, and we will do it again'</p>
http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118986#1189861Answer by fooledbyprimes for What is the strangest/weirdest program you've ever made?fooledbyprimes2008-09-23T03:42:24Z2008-09-23T03:42:24Z<p>The shortest SQL code which does a word wrap on "Hello World" is what I wrote and here it is:</p>
<p>select 'World' as Hello</p>
http://stackoverflow.com/questions/667408/how-can-i-detect-if-an-html-page-element-exists-by-using-ror-rjs-template-code/667527#667527Comment by fooledbyprimes on How can I detect if an html page element exists by using RoR RJS Template code?fooledbyprimes2009-03-20T19:21:26Z2009-03-20T19:21:26ZUhmm... have you tried it??? What happens if the element is not there? What you described is a way to select the element ... I am looking for a way to detect existence. The documentation online is not very clear. http://stackoverflow.com/questions/611215/why-does-initation-of-rake-dbmigrate-run-syntax-check-on-rake-tasks-in-the-lib/611222#611222Comment by fooledbyprimes on Why does initation of [rake db:migrate] run syntax check on rake tasks in the lib/tasks directory?fooledbyprimes2009-03-06T00:23:12Z2009-03-06T00:23:12ZSo are you saying that when I run the rake utility that comes with rails that it is a version of rake that has been tweeked to provide rails related conventions? http://stackoverflow.com/questions/611189/how-do-i-code-a-rake-task-that-runs-the-rails-dbmigrate-task/616641#616641Comment by fooledbyprimes on How do I code a rake task that runs the Rails db:migrate task?fooledbyprimes2009-03-06T00:18:28Z2009-03-06T00:18:28ZOkay I like this. It works. This must surely mean that the :environment task loads all the rails rake namespaces. http://stackoverflow.com/questions/611189/how-do-i-code-a-rake-task-that-runs-the-rails-dbmigrate-task/611234#611234Comment by fooledbyprimes on How do I code a rake task that runs the Rails db:migrate task?fooledbyprimes2009-03-04T16:27:17Z2009-03-04T16:27:17ZActually Pesto's answer didn't work.http://stackoverflow.com/questions/611189/how-do-i-code-a-rake-task-that-runs-the-rails-dbmigrate-task/611230#611230Comment by fooledbyprimes on How do I code a rake task that runs the Rails db:migrate task?fooledbyprimes2009-03-04T16:12:28Z2009-03-04T16:12:28ZI tried this inside of my custom rake task (residing in lib/tasks) but it failed. ("rake aborted Don't know how to build task db:migrate VERSION=0")http://stackoverflow.com/questions/611189/how-do-i-code-a-rake-task-that-runs-the-rails-dbmigrate-task/611234#611234Comment by fooledbyprimes on How do I code a rake task that runs the Rails db:migrate task?fooledbyprimes2009-03-04T16:09:11Z2009-03-04T16:09:11ZThis is interesting but it does not really explain how to run a pre-built rails task inside of a newly created custom rake task.http://stackoverflow.com/questions/611215/why-does-initation-of-rake-dbmigrate-run-syntax-check-on-rake-tasks-in-the-lib/611222#611222Comment by fooledbyprimes on Why does initation of [rake db:migrate] run syntax check on rake tasks in the lib/tasks directory?fooledbyprimes2009-03-04T16:07:06Z2009-03-04T16:07:06ZHow do you know this? Is there some documentation that talks about this?http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/214330#214330Comment by fooledbyprimes on Can Ruby really be used as a functional language?fooledbyprimes2008-10-20T02:46:49Z2008-10-20T02:46:49ZDoesn't "c" have recursion? I would not call "c" a functional language therefore recursion alone does not define a language to be "functional."http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/214330#214330Comment by fooledbyprimes on Can Ruby really be used as a functional language?fooledbyprimes2008-10-18T02:03:55Z2008-10-18T02:03:55ZYour example would be better if actually had a condition to branch out of the recursion. No machine can use recursion indefinitely.http://stackoverflow.com/questions/208998/does-ruby-best-practice-shun-statement-modifiers-after-for-example-a-long-code/209386#209386Comment by fooledbyprimes on Does Ruby best practice shun statement modifiers after, for example, a long code block that is passed to an iterator?fooledbyprimes2008-10-16T21:42:39Z2008-10-16T21:42:39ZBut I do believe the private should understand that he is ready Ruby. Well if he makes the mistake then the Sergeant is there to teach him.http://stackoverflow.com/questions/208998/does-ruby-best-practice-shun-statement-modifiers-after-for-example-a-long-code/209210#209210Comment by fooledbyprimes on Does Ruby best practice shun statement modifiers after, for example, a long code block that is passed to an iterator?fooledbyprimes2008-10-16T21:41:29Z2008-10-16T21:41:29ZObviously. It was just an example. 4 levels deep is obviously too deep, perhaps. However, what about 3? What about 2? All I am saying is you can eliminate one level with the construct.http://stackoverflow.com/questions/208998/does-ruby-best-practice-shun-statement-modifiers-after-for-example-a-long-code/209012#209012Comment by fooledbyprimes on Does Ruby best practice shun statement modifiers after, for example, a long code block that is passed to an iterator?fooledbyprimes2008-10-16T15:37:24Z2008-10-16T15:37:24Zwhat if the "if" condition is on the next line immediately after the "end" keyword and there is a blank line immediately after the "if" condition? In such a case it might be clear(er).http://stackoverflow.com/questions/187003/are-there-any-json-or-yaml-based-time-sheet-or-work-log-related-formats-for/187039#187039Comment by fooledbyprimes on Are there any JSON (or YAML) based "time sheet" or "work log" related formats for recording time spent on tasks?fooledbyprimes2008-10-09T15:07:53Z2008-10-09T15:07:53Zbecause JSON or YAML is cleaner therefore faster for me to typehttp://stackoverflow.com/questions/179911/where-can-i-get-the-missing-figures-from-the-freely-available-classic-programmi/179917#179917Comment by fooledbyprimes on Where can I get the missing figures from the freely available, classic "Programming Ruby" e-book?fooledbyprimes2008-10-08T13:13:24Z2008-10-08T13:13:24ZFine... ! you win. I'll go buy the new book. :(http://stackoverflow.com/questions/179911/where-can-i-get-the-missing-figures-from-the-freely-available-classic-programmi/179917#179917Comment by fooledbyprimes on Where can I get the missing figures from the freely available, classic "Programming Ruby" e-book?fooledbyprimes2008-10-07T19:23:59Z2008-10-07T19:23:59ZSurely someone out there has a copy of the figures posted on some website...