User krusty.ar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T09:50:00Zhttp://stackoverflow.com/feeds/user/43981http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1027364/task-planning-data-object-structure0Task planning data/object structurekrusty.ar2009-06-22T13:59:36Z2009-06-22T19:02:52Z
<p>I need to create a database structure for managing a gantt style system of tasks and resources, there are some custom needs and the technology involved doesn't play well with others, so I'm thinking of doing it from scratch. My needs are simple:</p>
<ul>
<li>Tasks, prioritized</li>
<li>Resources (just people)</li>
<li>Calendars (mostly being able to handle non-working days)</li>
</ul>
<p>I've checked the ms proyect data structure but it's way to complex for my needs, and haven't been able to find anything simpler that's more or less documented.</p>
<p>The most important use case is taking an unassigned task and drop it into the worklist of a resource, making all the dates adjustments in the surrounding tasks.</p>
<p>There's no need to plot a graph for the moment.</p>
<p>Is there some standard way of doing this that I'm missing?</p>
http://stackoverflow.com/questions/900171/need-alternative-to-filters-observers-for-ruby-on-rails-project/900198#9001980Answer by krusty.ar for Need alternative to filters/observers for Ruby on Rails projectkrusty.ar2009-05-22T22:07:05Z2009-05-22T22:07:05Z<p>When saving your Hit model, update a redundant column in your Page model that stores a running total of hits, this costs you 2 extra queries, so maybe each hit takes twice as long to process, but you can decide if you need to send the email with a simple if.</p>
<p>Your original solution isn't bad either.</p>
http://stackoverflow.com/questions/895799/what-is-a-good-method-to-bypass-authentication-and-or-authorization-in-developmen/895899#8958990Answer by krusty.ar for What is a good method to bypass authentication and/or authorization in development mode?krusty.ar2009-05-22T00:11:30Z2009-05-22T00:11:30Z<p>On development add a script to the environment that mocks the real authentication framework, or redefine the basic functionality (such as an #is_logged_in method) to always return ture, that way you just change the part that's different between environments anyway.</p>
http://stackoverflow.com/questions/895747/how-can-rubys-attraccessor-produce-class-variables-or-class-instance-variables/895752#8957524Answer by krusty.ar for How can Ruby's attr_accessor produce class variables or class instance variables instead of instance variables?krusty.ar2009-05-21T23:18:29Z2009-05-21T23:45:52Z<p>Like this:</p>
<pre><code>class TYourClass
class << self
attr_accessor :class_instance_variable
end
end
</code></pre>
<p>You can look at this as opening the metaclass of the class (of which the class itself is an instance) and adding an attribute to it.</p>
<p>attr_accessor is a method of class Class, it add's two methods to the class, one which reads the instance variable, and other that set's it. Here's a possible implementation:</p>
<pre><code>class Class
def my_attr_accessor(name)
define_method name do
instance_variable_get "@#{name}"
end
define_method "#{name}=" do |new_val|
instance_variable_set "@#{name}" new_val
end
end
end
</code></pre>
<p>Completely untested class atribute accessor:</p>
<pre><code>class Class
def class_attr_accessor(name)
define_method name do
class_variable_get "@@#{name}"
end
define_method "#{name}=" do |new_val|
class_variable_set "@@#{name}" new_val
end
end
end
</code></pre>
http://stackoverflow.com/questions/866462/grouping-data-by-year-return-0-for-no-results/866542#8665420Answer by krusty.ar for Grouping Data by Year -- Return 0 for no resultskrusty.ar2009-05-15T00:31:22Z2009-05-15T00:31:22Z<p>One correct way of doing this would be having a years table, doing a outer join to it, and grouping by the year column in that table, something like this (not tested)</p>
<pre><code>SELECT MAX( s.con_grade ) AS max, YEAR( u.sent_date ) AS year
FROM pdb_usersectionmap u
LEFT JOIN pdb_sections s ON u.section_id = s.id
RIGHT JOIN years y ON year = y.year_id
WHERE u.user_id =21
AND y.year_id > 2004
GROUP BY y.year_id
ORDER BY u.sent_date ASC
</code></pre>
<p>The years table of course could be generated on the fly or by a "distinct" subquery to another table.</p>
http://stackoverflow.com/questions/866097/report-decent-printing-in-the-web/866285#8662851Answer by krusty.ar for Report decent printing in the web.krusty.ar2009-05-14T22:54:38Z2009-05-14T22:54:38Z<p>Support from different browsers is surely lacking, but css has a media type called print, to use it, just define a section in your css file or tag like this:</p>
<pre><code>@media print{
/* normal style declarations
but you probably want to hide menus
and other navigation, also use black on white, etc.
*/
}
@media screen{
/* your current stylesheet */
}
</code></pre>
<p><a href="http://www.alistapart.com/articles/goingtoprint/" rel="nofollow">This List Apart article</a> covers the basics.</p>
<p>And <a href="http://www.w3.org/TR/CSS2/media.html#media-types" rel="nofollow">here's an entry point</a> to the wc3 specification.</p>
http://stackoverflow.com/questions/854591/how-to-check-for-nulls-in-a-deep-lambda-expression/854879#8548791Answer by krusty.ar for How to check for nulls in a deep lambda expression?krusty.ar2009-05-12T21:07:04Z2009-05-12T21:07:04Z<p>I'm not skilled in c#, but maybe there's some way to implement the "andand" pattern from ruby that solves exactly this problem without polluting the implementation.</p>
<p>The concept is also known as the Maybe Monad in Haskell.</p>
<p>The title of <a href="http://incrediblejourneysintotheknown.blogspot.com/2008/12/maybe-monad-in-c.html" rel="nofollow">this</a> article seems promising.</p>
http://stackoverflow.com/questions/854809/good-comments-on-changesets-in-sourcecontrol/854835#8548351Answer by krusty.ar for Good comments on changesets in sourcecontrolkrusty.ar2009-05-12T20:56:28Z2009-05-12T20:56:28Z<p>If the change has an associated ticket somewhere or a bug, in that case the number and title (with a link) should be enough.</p>
<p>Otherwise just state what change did you implement. Regular commenting guidelines apply, you can check some popular project log to see good examples.</p>
http://stackoverflow.com/questions/837750/refresh-dropdown-in-parent-when-user-closes-popu-window/837760#8377601Answer by krusty.ar for Refresh dropdown in parent, when user closes popu windowkrusty.ar2009-05-08T00:51:06Z2009-05-08T00:51:06Z<p>You can access the original window with opener using javascript, including calls to any function defined in that window.</p>
<p>For instance:</p>
<pre><code>window.opener.addValue(newValue);
</code></pre>
<p>Should do what you want.</p>
http://stackoverflow.com/questions/832009/multiple-css-selectors/832029#8320294Answer by krusty.ar for multiple CSS selectorskrusty.ar2009-05-06T22:08:39Z2009-05-08T00:11:33Z<p>You are doing it right, but the order of the selectors is wrong, you need to put the element first, then the class, and then the id</p>
<pre><code>div.myclass#myid { /*rules*/ }
</code></pre>
<p>IMPORTANT EDIT:</p>
<pre><code>div#myid.myclass { /*rules*/ }
</code></pre>
<p>Also works.</p>
http://stackoverflow.com/questions/443152/whats-the-best-strategy-for-get-setting-metadata-on-ruby-methods-at-runtime/443784#4437842Answer by krusty.ar for What's the best strategy for get/setting metadata on Ruby methods at runtime?krusty.ar2009-01-14T16:57:36Z2009-04-29T18:03:47Z<p>Just a little beautyfication:</p>
<pre><code>class RayGun
cattr_accessor :metadata
def self.register_method(name, hsh, &block)
define_method(name, block)
metadata[name] = hsh
end
register_method( 'stun!',
:lights => 'red',
:confirmation => 'true',
:sound => 'zowowo',
) do
# code goes here
end
# etc.
end
</code></pre>
<p>You do lose easy access to the original closure, but probably don't need it.</p>
<p>To answer the question, it doesn't look bad, you could do something a little more convetional but probably good enough:</p>
<pre><code>class RayGun
cattr_accessor :metadata
@metadata[:stun!] = {:lights => 'red',
:confirmation => 'true',
:sound => 'zowowo'}
def stun!
# ...
end
# etc.
end
</code></pre>
<p>In the original example register_method is public, if you planned to use it that way then the second option becomes less usefull because it doesn't ensure consistency.</p>
http://stackoverflow.com/questions/569287/can-ruby-split-strings/569336#56933610Answer by krusty.ar for Can Ruby Split Strings?krusty.ar2009-02-20T11:58:33Z2009-02-20T11:58:33Z<p>The coolest thing is that the first result in that google query has the answer</p>
http://stackoverflow.com/questions/562922/how-to-identify-users-which-are-connected-to-a-windows-server-via-remote-desktop/563070#5630700Answer by krusty.ar for How to identify users which are connected to a windows server via remote desktopkrusty.ar2009-02-18T22:08:51Z2009-02-18T22:08:51Z<p>I'm not sure if I understand you, but there are a set of <a href="http://www.robvanderwoude.com/termserv.php#QWinSta" rel="nofollow">command line tools to deal with terminal server sessions</a>, and there's also a <a href="http://msdn.microsoft.com/en-us/library/aa383459(VS.85).aspx" rel="nofollow">Windows API</a> to do the same if you need to do this from a program.</p>
http://stackoverflow.com/questions/560977/a-way-to-always-shift-the-number-keys/560988#5609884Answer by krusty.ar for A way to always shift the number keys?krusty.ar2009-02-18T13:08:58Z2009-02-18T13:08:58Z<p>There's a <a href="http://www.microsoft.com/globaldev/tools/msklc.mspx" rel="nofollow">Layout Creator</a> from MS, maybe that can help you.</p>
http://stackoverflow.com/questions/543709/generate-ruby-classes-from-xsd/546748#5467481Answer by krusty.ar for Generate Ruby Classes from XSDkrusty.ar2009-02-13T17:00:27Z2009-02-13T17:00:27Z<p>Maye you can steal some ideas from <a href="http://blog.behindlogic.com/2009/01/quickbooks-rubygem-meta-meta-ruby.html" rel="nofollow">this</a> article about converting QuickBooks schemas to ruby classes.</p>
http://stackoverflow.com/questions/546670/what-is-the-difference-between-class-oriented-and-object-oriented-programming/546713#5467130Answer by krusty.ar for What is the difference between class oriented and object oriented programming ?krusty.ar2009-02-13T16:51:44Z2009-02-13T16:51:44Z<p>Pobably you mean class-oriented as oposed to <a href="http://en.wikipedia.org/wiki/Prototype-based_programming" rel="nofollow">prototype-oriented</a> programming, they are both object oriented, but in prototype based programming you don't have classes, you just clone objects and add methods to them.</p>
<p>Some prorotype based programming languajes are <a href="http://en.wikipedia.org/wiki/Self_programming_language" rel="nofollow">Self</a> and <a href="http://en.wikipedia.org/wiki/Javascript" rel="nofollow">JavaScript</a></p>
http://stackoverflow.com/questions/542787/using-print-instead-of-sprintf-with-s-and-and-multiple-string-substitution-arg/542806#5428063Answer by krusty.ar for Using print instead of sprintf with %s and % and multiple string substitution argumentskrusty.ar2009-02-12T19:09:24Z2009-02-12T19:09:24Z<p>I don't actually understand what you want to do, but: </p>
<pre><code>irb(main):001:0> x = "x %s"
=> "x %s"
irb(main):002:0> y = "y %s"
=> "y %s"
irb(main):003:0> z = "z"
=> "z"
irb(main):004:0> print x % y % z
x y z=> nil
</code></pre>
<p>and: </p>
<pre><code>irb(main):006:0> x = "x %s %s"
=> "x %s %s"
irb(main):007:0> y = "y"
=> "y"
irb(main):008:0> z = "z"
=> "z"
irb(main):009:0> x % [y,z]
=> "x y z"
</code></pre>
http://stackoverflow.com/questions/540873/is-it-necessary-to-unit-test-activerecord-validations/540909#5409098Answer by krusty.ar for Is it necessary to unit test ActiveRecord validations?krusty.ar2009-02-12T11:27:17Z2009-02-12T11:27:17Z<p>Validations per se should be trustable, but you may want to check if the validation is present.</p>
<p>Put in other words, a good way to test something is as if it were a black box, abstracting the tests from the implementation, so for instance you may have a test that checks that a person model can't be saved without a name, but don't care about how the Person class performs that validation.</p>
http://stackoverflow.com/questions/511538/modified-preorder-tree-traversal-determining-the-top-when-no-parent-is-specif/534858#5348580Answer by krusty.ar for Modified preorder tree traversal - determining the "top" when no parent is specifiedkrusty.ar2009-02-10T23:58:27Z2009-02-10T23:58:27Z<p>Another very efficient way of storing that kind of data is using <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">Nested Sets</a>, it allows many common operations with just one query, and eliminates the need for recursion of other schemes.</p>
http://stackoverflow.com/questions/534191/calling-a-method-on-initial-state-with-aasm/534332#5343321Answer by krusty.ar for Calling a method on initial state with AASMkrusty.ar2009-02-10T21:40:36Z2009-02-10T21:40:36Z<p>How about using the initialize method?, it's not as self-documenting but should work.</p>
http://stackoverflow.com/questions/533856/how-to-return-the-latest-row-written-for-the-day/533876#5338760Answer by krusty.ar for How to return the latest row written for the day?krusty.ar2009-02-10T19:48:43Z2009-02-10T19:48:43Z<p>Would this work in SqlServer2005? </p>
<pre><code>SELECT FoodId, Data, CreatedTime WHERE CreatedTime=max(CreatedTime) GROUP BY FoodId, day(CreatedTime)
</code></pre>
http://stackoverflow.com/questions/532790/dependency-graph-for-rails-partials/533259#5332591Answer by krusty.ar for Dependency graph for Rails partialskrusty.ar2009-02-10T17:10:05Z2009-02-10T17:10:05Z<p>Should be relatively simple to do reading all views and partials and creating a directed graph on the fly, the only thing you need to be carefull about is loops.</p>
http://stackoverflow.com/questions/533126/documents-for-a-project/533168#5331681Answer by krusty.ar for Documents for a project?krusty.ar2009-02-10T16:50:21Z2009-02-10T16:50:21Z<p>From the project point of view, the most important documents are those that normally include the word Plan, such as the Proyect Plan, Configuration Management Plan, Quality Plan, etc.</p>
<p>What you are describing is common in process improvements, and normally responds to two major causes, one is that the system really is overeaching and getting in the way of real work being done, and the other is actually answered in your question, is not that the documents are only done for the sake of audits, and your focus should not just be how usefull is the doc for other developers, but for the project or the company as a whole.</p>
<p>One usually looks at things from it's own perspective, sometimes it's necessary to look at the general picture.</p>
http://stackoverflow.com/questions/517545/jruby-vs-yarv-performance-notable-difference/522973#5229730Answer by krusty.ar for JRuby vs YARV performance ---notable difference?krusty.ar2009-02-07T02:14:10Z2009-02-07T02:14:10Z<p><a href="http://antoniocangiano.com/2008/12/09/the-great-ruby-shootout-december-2008/" rel="nofollow">The Great Ruby Shootout</a> is more or less the aothoritative source for this kind of context-less comparison.</p>
http://stackoverflow.com/questions/520426/efficient-solution-for-a-special-assignment-problem/520445#520445-1Answer by krusty.ar for Efficient solution for a special assignment problemkrusty.ar2009-02-06T14:22:30Z2009-02-06T14:22:30Z<p>Nahively I would go for a genetic aproach, given that genomes are easy to generate, mutate and cross-breed. but there may be an optimal non-combinatory solution.</p>
http://stackoverflow.com/questions/512314/scripting-language-with-the-cleanest-neatest-syntax/512524#5125240Answer by krusty.ar for Scripting language with the cleanest/neatest syntaxkrusty.ar2009-02-04T17:53:23Z2009-02-04T17:53:23Z<p>Must... not... post... <a href="http://en.wikipedia.org/wiki/Whitespace_(programming_language)" rel="nofollow">WhiteSpace</a></p>
http://stackoverflow.com/questions/509729/whats-the-best-way-to-learn-more-advanced-ruby-oop-constructs/512419#5124192Answer by krusty.ar for What's the best way to learn more advanced Ruby OOP constructs?krusty.ar2009-02-04T17:27:42Z2009-02-04T17:27:42Z<p>I found <a href="http://www.pragprog.com/screencasts/v-dtrubyom/the-ruby-object-model-and-metaprogramming" rel="nofollow">these</a> screencasts by Dave Thomas to be great for that, besides, it has pragmatic in the title so you can't miss :D</p>
http://stackoverflow.com/questions/507665/single-image-file-to-store-all-the-little-images-on-a-page/507678#5076783Answer by krusty.ar for Single image file to store all the little images on a pagekrusty.ar2009-02-03T15:54:11Z2009-02-03T16:01:27Z<p>It's called <a href="http://www.alistapart.com/articles/sprites/" rel="nofollow">css sprites</a>.</p>
<p>I's basically an old trick used in games programming where you load a single bitmap containing all the "states" of some item you need to draw, the advantage is that this way the image get's preloaded and there's no delay when you need to actually use it, in the case of css, it's normally implemented by using the image as background to the element, and applying different offsets and bounds on :hover, :active and "normal" classes.</p>
<p>There's more info in the <a href="http://blog.stackoverflow.com/2009/01/updated-wmd-editor/" rel="nofollow">stackoverflow Blog</a></p>
<p>Here's a nice generator: <a href="http://www.csssprites.com/" rel="nofollow">http://www.csssprites.com/</a></p>
http://stackoverflow.com/questions/507092/what-do-you-use-to-edit-and-develop-classic-asp/507096#5070964Answer by krusty.ar for What do you use to edit and develop Classic ASPkrusty.ar2009-02-03T13:43:28Z2009-02-03T13:43:28Z<p>In 2000 (the only time I used it) I used Dreamweaver (I think it was version 4).</p>
http://stackoverflow.com/questions/465421/how-do-i-take-the-output-of-one-program-and-use-it-as-the-input-of-another/465468#4654682Answer by krusty.ar for How do I take the output of one program and use it as the input of another?krusty.ar2009-01-21T14:12:50Z2009-01-21T17:28:38Z<p>First of all check this out:
[Unix piping][1]</p>
<p>It works on windows or unix but it's slighly dufferent, first the programs:</p>
<p>question.rb:</p>
<pre><code>puts "This is the question"
</code></pre>
<p>answer.rb:</p>
<pre><code>question = gets
#calculate answer
puts "This is the answer"
</code></pre>
<p>Then the command line: </p>
<p>In unix:</p>
<pre><code>question.rb | answer.rb
</code></pre>
<p>In windows:</p>
<pre><code>ruby question.rb | ruby answer.rb
</code></pre>
<p>Output:</p>
<pre><code>This is the question
This is the answer
</code></pre>
http://stackoverflow.com/questions/1027364/task-planning-data-object-structure/1028867#1028867Comment by krusty.ar on Task planning data/object structurekrusty.ar2009-06-22T20:13:24Z2009-06-22T20:13:24ZThis is actually my starting point, initially I don't even need task dependecies so an order is enough. What I was hoping for was a model that supported some of the common operations (reorder the worklist, delete a task, insert a task in the middle of the list, etc.) without relying so much on code to implement the bussiness rules.http://stackoverflow.com/questions/921640/ruby-experts-can-you-help-suggest-with-improving-this-line-of-ruby-code/921654#921654Comment by krusty.ar on Ruby experts: can you help/suggest with improving this line of ruby code?krusty.ar2009-05-28T16:52:37Z2009-05-28T16:52:37Zs.gsub!('"','').to_f.roundhttp://stackoverflow.com/questions/914814/in-ruby-how-can-i-initialize-instance-variables-in-new-objects-of-core-classes-c/915261#915261Comment by krusty.ar on In Ruby, how can I initialize instance variables in new objects of core classes created from literalskrusty.ar2009-05-27T15:47:58Z2009-05-27T15:47:58Z+1, but this wont work if you invoke instance_variable_get before using the accessor, it's interesting that you can't rely on Object's #initialize.http://stackoverflow.com/questions/900171/need-alternative-to-filters-observers-for-ruby-on-rails-projectComment by krusty.ar on Need alternative to filters/observers for Ruby on Rails projectkrusty.ar2009-05-22T22:09:39Z2009-05-22T22:09:39ZI know! test the condition only when it's true, that way you save 99% of processing time. :Dhttp://stackoverflow.com/questions/897630/really-cheap-command-line-option-parsing-in-ruby/897644#897644Comment by krusty.ar on Really Cheap Command-Line Option Parsing in Rubykrusty.ar2009-05-22T13:27:01Z2009-05-22T13:27:01Z+1 but good luck dealing with incorrect syntaxhttp://stackoverflow.com/questions/895747/how-can-rubys-attraccessor-produce-class-variables-or-class-instance-variables/895752#895752Comment by krusty.ar on How can Ruby's attr_accessor produce class variables or class instance variables instead of instance variables?krusty.ar2009-05-21T23:36:57Z2009-05-21T23:36:57ZI'ts different, see answer againhttp://stackoverflow.com/questions/854591/how-to-check-for-nulls-in-a-deep-lambda-expression/854770#854770Comment by krusty.ar on How to check for nulls in a deep lambda expression?krusty.ar2009-05-12T21:32:05Z2009-05-12T21:32:05ZModifying the implementation to save some lines in the client code should fire all kinds of alarms.http://stackoverflow.com/questions/854591/how-to-check-for-nulls-in-a-deep-lambda-expression/854879#854879Comment by krusty.ar on How to check for nulls in a deep lambda expression?krusty.ar2009-05-12T21:26:47Z2009-05-12T21:26:47ZWow, completely missed it, I guess I was looking for the word "maybe"http://stackoverflow.com/questions/832009/multiple-css-selectors/832029#832029Comment by krusty.ar on multiple CSS selectorskrusty.ar2009-05-08T00:09:47Z2009-05-08T00:09:47Z@Bobby Jack, I misread your question, I can't find anywhere that this order is the only valid one, I just assumed it because I always use it and the op supposedly didn't work, but then I tested it and div#myid.myclass works perfectly.http://stackoverflow.com/questions/832009/multiple-css-selectors/832029#832029Comment by krusty.ar on multiple CSS selectorskrusty.ar2009-05-06T23:21:19Z2009-05-06T23:21:19ZSure.
<a href="http://www.w3.org/TR/CSS2/selector.html" rel="nofollow">w3.org/TR/CSS2/selector.html</a>
<a href="http://css.maxdesign.com.au/selectutorial/" rel="nofollow">css.maxdesign.com.au/selectutorial</a>
<a href="http://www.google.com/search?&q=css+selectors" rel="nofollow">google.com/search?&q=css+selectors</a>http://stackoverflow.com/questions/560977/a-way-to-always-shift-the-number-keysComment by krusty.ar on A way to always shift the number keys?krusty.ar2009-02-18T13:09:34Z2009-02-18T13:09:34ZKeyboard layout is very much programming related IMHOhttp://stackoverflow.com/questions/542787/using-print-instead-of-sprintf-with-s-and-and-multiple-string-substitution-argComment by krusty.ar on Using print instead of sprintf with %s and % and multiple string substitution argumentskrusty.ar2009-02-13T11:14:01Z2009-02-13T11:14:01ZYou seem to have a lot of restrictions for a simple print, maybeif you elaborate a little more on the real problem, yo might get some better help.http://stackoverflow.com/questions/509729/whats-the-best-way-to-learn-more-advanced-ruby-oop-constructs/512419#512419Comment by krusty.ar on What's the best way to learn more advanced Ruby OOP constructs?krusty.ar2009-02-11T11:43:26Z2009-02-11T11:43:26ZI don't undestand what you mean by "sending methods to other classes/controllers", but if you mean how to use extend and include, then the answer is yes.http://stackoverflow.com/questions/520426/efficient-solution-for-a-special-assignment-problem/520445#520445Comment by krusty.ar on Efficient solution for a special assignment problemkrusty.ar2009-02-06T14:43:07Z2009-02-06T14:43:07ZAgreed, but some problems (and it seems this one is NOT the case) are well known to be hard to solve using just mathematics, and in those cases a genetic algorithm surely classifies as simple.http://stackoverflow.com/questions/476356/could-proc-get-executed-without-using-call-method/476372#476372Comment by krusty.ar on Could proc get executed without using call method?krusty.ar2009-01-24T21:20:11Z2009-01-24T21:20:11ZIn standard ruby the proc does not get called. Putting a proc in an array is not the same as calling the :[] method.