User krusty.ar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T09:50:00Z http://stackoverflow.com/feeds/user/43981 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1027364/task-planning-data-object-structure 0 Task planning data/object structure krusty.ar 2009-06-22T13:59:36Z 2009-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#900198 0 Answer by krusty.ar for Need alternative to filters/observers for Ruby on Rails project krusty.ar 2009-05-22T22:07:05Z 2009-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#895899 0 Answer by krusty.ar for What is a good method to bypass authentication and/or authorization in development mode? krusty.ar 2009-05-22T00:11:30Z 2009-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#895752 4 Answer by krusty.ar for How can Ruby's attr_accessor produce class variables or class instance variables instead of instance variables? krusty.ar 2009-05-21T23:18:29Z 2009-05-21T23:45:52Z <p>Like this:</p> <pre><code>class TYourClass class &lt;&lt; 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#866542 0 Answer by krusty.ar for Grouping Data by Year -- Return 0 for no results krusty.ar 2009-05-15T00:31:22Z 2009-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 &gt; 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#866285 1 Answer by krusty.ar for Report decent printing in the web. krusty.ar 2009-05-14T22:54:38Z 2009-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#854879 1 Answer by krusty.ar for How to check for nulls in a deep lambda expression? krusty.ar 2009-05-12T21:07:04Z 2009-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#854835 1 Answer by krusty.ar for Good comments on changesets in sourcecontrol krusty.ar 2009-05-12T20:56:28Z 2009-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#837760 1 Answer by krusty.ar for Refresh dropdown in parent, when user closes popu window krusty.ar 2009-05-08T00:51:06Z 2009-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#832029 4 Answer by krusty.ar for multiple CSS selectors krusty.ar 2009-05-06T22:08:39Z 2009-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#443784 2 Answer by krusty.ar for What's the best strategy for get/setting metadata on Ruby methods at runtime? krusty.ar 2009-01-14T16:57:36Z 2009-04-29T18:03:47Z <p>Just a little beautyfication:</p> <pre><code>class RayGun cattr_accessor :metadata def self.register_method(name, hsh, &amp;block) define_method(name, block) metadata[name] = hsh end register_method( 'stun!', :lights =&gt; 'red', :confirmation =&gt; 'true', :sound =&gt; '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 =&gt; 'red', :confirmation =&gt; 'true', :sound =&gt; '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#569336 10 Answer by krusty.ar for Can Ruby Split Strings? krusty.ar 2009-02-20T11:58:33Z 2009-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#563070 0 Answer by krusty.ar for How to identify users which are connected to a windows server via remote desktop krusty.ar 2009-02-18T22:08:51Z 2009-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#560988 4 Answer by krusty.ar for A way to always shift the number keys? krusty.ar 2009-02-18T13:08:58Z 2009-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#546748 1 Answer by krusty.ar for Generate Ruby Classes from XSD krusty.ar 2009-02-13T17:00:27Z 2009-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#546713 0 Answer by krusty.ar for What is the difference between class oriented and object oriented programming ? krusty.ar 2009-02-13T16:51:44Z 2009-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#542806 3 Answer by krusty.ar for Using print instead of sprintf with %s and % and multiple string substitution arguments krusty.ar 2009-02-12T19:09:24Z 2009-02-12T19:09:24Z <p>I don't actually understand what you want to do, but: </p> <pre><code>irb(main):001:0&gt; x = "x %s" =&gt; "x %s" irb(main):002:0&gt; y = "y %s" =&gt; "y %s" irb(main):003:0&gt; z = "z" =&gt; "z" irb(main):004:0&gt; print x % y % z x y z=&gt; nil </code></pre> <p>and: </p> <pre><code>irb(main):006:0&gt; x = "x %s %s" =&gt; "x %s %s" irb(main):007:0&gt; y = "y" =&gt; "y" irb(main):008:0&gt; z = "z" =&gt; "z" irb(main):009:0&gt; x % [y,z] =&gt; "x y z" </code></pre> http://stackoverflow.com/questions/540873/is-it-necessary-to-unit-test-activerecord-validations/540909#540909 8 Answer by krusty.ar for Is it necessary to unit test ActiveRecord validations? krusty.ar 2009-02-12T11:27:17Z 2009-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#534858 0 Answer by krusty.ar for Modified preorder tree traversal - determining the "top" when no parent is specified krusty.ar 2009-02-10T23:58:27Z 2009-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#534332 1 Answer by krusty.ar for Calling a method on initial state with AASM krusty.ar 2009-02-10T21:40:36Z 2009-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#533876 0 Answer by krusty.ar for How to return the latest row written for the day? krusty.ar 2009-02-10T19:48:43Z 2009-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#533259 1 Answer by krusty.ar for Dependency graph for Rails partials krusty.ar 2009-02-10T17:10:05Z 2009-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#533168 1 Answer by krusty.ar for Documents for a project? krusty.ar 2009-02-10T16:50:21Z 2009-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#522973 0 Answer by krusty.ar for JRuby vs YARV performance ---notable difference? krusty.ar 2009-02-07T02:14:10Z 2009-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 -1 Answer by krusty.ar for Efficient solution for a special assignment problem krusty.ar 2009-02-06T14:22:30Z 2009-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#512524 0 Answer by krusty.ar for Scripting language with the cleanest/neatest syntax krusty.ar 2009-02-04T17:53:23Z 2009-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#512419 2 Answer by krusty.ar for What's the best way to learn more advanced Ruby OOP constructs? krusty.ar 2009-02-04T17:27:42Z 2009-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#507678 3 Answer by krusty.ar for Single image file to store all the little images on a page krusty.ar 2009-02-03T15:54:11Z 2009-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#507096 4 Answer by krusty.ar for What do you use to edit and develop Classic ASP krusty.ar 2009-02-03T13:43:28Z 2009-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#465468 2 Answer by krusty.ar for How do I take the output of one program and use it as the input of another? krusty.ar 2009-01-21T14:12:50Z 2009-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#1028867 Comment by krusty.ar on Task planning data/object structure krusty.ar 2009-06-22T20:13:24Z 2009-06-22T20:13:24Z This 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#921654 Comment by krusty.ar on Ruby experts: can you help/suggest with improving this line of ruby code? krusty.ar 2009-05-28T16:52:37Z 2009-05-28T16:52:37Z s.gsub!('&quot;','').to_f.round http://stackoverflow.com/questions/914814/in-ruby-how-can-i-initialize-instance-variables-in-new-objects-of-core-classes-c/915261#915261 Comment by krusty.ar on In Ruby, how can I initialize instance variables in new objects of core classes created from literals krusty.ar 2009-05-27T15:47:58Z 2009-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-project Comment by krusty.ar on Need alternative to filters/observers for Ruby on Rails project krusty.ar 2009-05-22T22:09:39Z 2009-05-22T22:09:39Z I know! test the condition only when it's true, that way you save 99% of processing time. :D http://stackoverflow.com/questions/897630/really-cheap-command-line-option-parsing-in-ruby/897644#897644 Comment by krusty.ar on Really Cheap Command-Line Option Parsing in Ruby krusty.ar 2009-05-22T13:27:01Z 2009-05-22T13:27:01Z +1 but good luck dealing with incorrect syntax http://stackoverflow.com/questions/895747/how-can-rubys-attraccessor-produce-class-variables-or-class-instance-variables/895752#895752 Comment by krusty.ar on How can Ruby's attr_accessor produce class variables or class instance variables instead of instance variables? krusty.ar 2009-05-21T23:36:57Z 2009-05-21T23:36:57Z I'ts different, see answer again http://stackoverflow.com/questions/854591/how-to-check-for-nulls-in-a-deep-lambda-expression/854770#854770 Comment by krusty.ar on How to check for nulls in a deep lambda expression? krusty.ar 2009-05-12T21:32:05Z 2009-05-12T21:32:05Z Modifying 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#854879 Comment by krusty.ar on How to check for nulls in a deep lambda expression? krusty.ar 2009-05-12T21:26:47Z 2009-05-12T21:26:47Z Wow, completely missed it, I guess I was looking for the word &quot;maybe&quot; http://stackoverflow.com/questions/832009/multiple-css-selectors/832029#832029 Comment by krusty.ar on multiple CSS selectors krusty.ar 2009-05-08T00:09:47Z 2009-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#832029 Comment by krusty.ar on multiple CSS selectors krusty.ar 2009-05-06T23:21:19Z 2009-05-06T23:21:19Z Sure. <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?&amp;q=css+selectors" rel="nofollow">google.com/search?&amp;q=css+selectors</a> http://stackoverflow.com/questions/560977/a-way-to-always-shift-the-number-keys Comment by krusty.ar on A way to always shift the number keys? krusty.ar 2009-02-18T13:09:34Z 2009-02-18T13:09:34Z Keyboard layout is very much programming related IMHO http://stackoverflow.com/questions/542787/using-print-instead-of-sprintf-with-s-and-and-multiple-string-substitution-arg Comment by krusty.ar on Using print instead of sprintf with %s and % and multiple string substitution arguments krusty.ar 2009-02-13T11:14:01Z 2009-02-13T11:14:01Z You 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#512419 Comment by krusty.ar on What's the best way to learn more advanced Ruby OOP constructs? krusty.ar 2009-02-11T11:43:26Z 2009-02-11T11:43:26Z I don't undestand what you mean by &quot;sending methods to other classes/controllers&quot;, 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#520445 Comment by krusty.ar on Efficient solution for a special assignment problem krusty.ar 2009-02-06T14:43:07Z 2009-02-06T14:43:07Z Agreed, 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#476372 Comment by krusty.ar on Could proc get executed without using call method? krusty.ar 2009-01-24T21:20:11Z 2009-01-24T21:20:11Z In standard ruby the proc does not get called. Putting a proc in an array is not the same as calling the :[] method.