User thenduks - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T00:02:48Z http://stackoverflow.com/feeds/user/210 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1864521/how-to-serialize-an-multiple-dimensional-array-to-string-and-the-reverse/1864532#1864532 1 Answer by thenduks for How to serialize an multiple dimensional array to string and the reverse? thenduks 2009-12-08T04:14:36Z 2009-12-08T04:14:36Z <p>It's not clear what you're looking for, if you just want the array represented as a string then you can call <code>toString</code>, which most types in javascript have defined:</p> <pre><code>&gt;&gt;&gt; [1,2,3].toString() "1,2,3" </code></pre> http://stackoverflow.com/questions/1863415/where-should-i-place-my-own-module-within-rails-application/1863435#1863435 1 Answer by thenduks for Where should I place my own "module" within rails application? thenduks 2009-12-07T22:42:07Z 2009-12-08T04:13:04Z <p>I'll often put stuff in <code>lib</code>, it turns out that anything under lib is in the load path and doesn't need to be <code>require</code>d at all.</p> <p><em>edit:</em> After Steve's comment, removed the bit about having to require the files. Also, removed a couple requires from some of my code :P</p> http://stackoverflow.com/questions/1863399/mongodb-is-it-possible-to-make-a-case-insensitive-query/1863452#1863452 2 Answer by thenduks for MongoDB: Is it possible to make a case-insensitive query? thenduks 2009-12-07T22:46:04Z 2009-12-07T22:46:04Z <p>You could use a <a href="http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-RegularExpressions" rel="nofollow">regex</a>.</p> <p>In your example that would be:</p> <pre><code>db.stuff.find( { foo: /bar/i } ); </code></pre> <p>I must say, though, maybe you could just downcase (or upcase) the value on the way in rather than incuring the extra cost everytime you find it. Obviously this wont work for people's names and such, but maybe use-cases like tags.</p> http://stackoverflow.com/questions/1856946/ruby-1-9-gem-is-there-but-it-says-its-not/1856951#1856951 1 Answer by thenduks for ruby 1.9 -- Gem is there but it says its not? thenduks 2009-12-06T23:06:46Z 2009-12-06T23:06:46Z <p>It's saying the <code>git</code> gem/library/file isn't found:</p> <pre><code>no such file to load -- git </code></pre> http://stackoverflow.com/questions/1852833/what-is-the-proper-way-to-handle-types-in-rails/1852845#1852845 0 Answer by thenduks for What is the proper way to handle "types" in Rails? thenduks 2009-12-05T17:39:34Z 2009-12-05T17:39:34Z <p>A car has only 1 color, so you would say a <code>Car</code> instance <code>belongs_to</code> its <code>Color</code>. Still, your second idea of just storing the color as a number and having those colors defined as constants somewhere is probably more sensible... as long as you dont need to add/remove/edit colors within the app (in other words, 'live').</p> http://stackoverflow.com/questions/1837440/hands-free-mice-for-programmers/1849125#1849125 1 Answer by thenduks for Hands-free mice for programmers? thenduks 2009-12-04T19:28:00Z 2009-12-04T22:40:00Z <p>Just lose the mouse entirely. Obviously the primary use is for web browsing (there are ways to minimize that need too, like <a href="http://www.vimperator.org/" rel="nofollow">vimperator</a>) but for the majority of actual coding you can just forget the mouse is there entirely and probably <em>gain</em> productivity.</p> http://stackoverflow.com/questions/1844161/git-status-a-bit-confusing/1844177#1844177 8 Answer by thenduks for Git status a bit confusing thenduks 2009-12-04T00:54:48Z 2009-12-04T00:54:48Z <p>Git has the concept of a working directory <em>and</em> a staging area (the index). If you add a new file it gets added to the index. If you later edit that file it is only changed in your working copy. You need to add it to the index the same way you would a file that already existed.</p> <p>So, in short, only things in the index get commited. <code>commit -a</code> will work here, or just add the file again when you've edited it like usual.</p> http://stackoverflow.com/questions/1842018/erlang-multiple-behaviors-defined-in-the-same-module/1842123#1842123 4 Answer by thenduks for Erlang: multiple behaviors defined in the same module? thenduks 2009-12-03T18:58:32Z 2009-12-03T18:58:32Z <p>As long as the callbacks defined in the behavior don't conflict with a callback of another behavior (say you defined your own behavior, for example) then there's nothing wrong with doing this other than potentially more confusing code. Obviously you can curb that with some well placed comments and laying the code out sensibly in the file.</p> http://stackoverflow.com/questions/1841289/how-do-you-communicate-to-teams-outside-of-your-city/1841303#1841303 3 Answer by thenduks for How do you communicate to teams outside of your city? thenduks 2009-12-03T16:56:50Z 2009-12-03T16:56:50Z <p>Developers will be comfortable in an IRC channel. Alternatively you could use something like <a href="http://campfirenow.com/" rel="nofollow">Campfire</a>.</p> http://stackoverflow.com/questions/1828010/apply-css-to-jquery-dialog-buttons/1828076#1828076 0 Answer by thenduks for Apply CSS to jQuery Dialog Buttons thenduks 2009-12-01T18:46:06Z 2009-12-01T18:46:06Z <p>Why not just inspect the generated markup, note the class on the button of choice and style it yourself?</p> http://stackoverflow.com/questions/109440/best-git-repository-hosting-for-commercial-project/1817068#1817068 1 Answer by thenduks for Best git repository hosting for commercial project? thenduks 2009-11-29T22:55:28Z 2009-11-29T22:55:28Z <p>In my experience GitHub and the other repo hosting providers go down <em>way</em> too often to be useful in a day-to-day development cycle. It obviously can be used to supplement your own hosting, though, as a backup and a nice commit/code browser/wiki/etc. Definitely don't rely on it as your origin. Your developers will go mad.</p> http://stackoverflow.com/questions/1816264/why-do-i-get-an-error-when-i-try-to-access-a-public-function-of-a-class-actions/1816301#1816301 4 Answer by thenduks for Why do I get an error when I try to access a public function of a class? (Actionscript 3) thenduks 2009-11-29T18:27:26Z 2009-11-29T18:27:26Z <p>Your problem lies here:</p> <pre><code>Collision.hurtCollision(this); </code></pre> <p><code>hurtCollision</code> isn't a class method, it's an instance method. If you want <code>Collision</code> to be more like a utility class (as opposed to having to create instances to use the methods) then you probably want to do <code>public static function ...</code> instead of just <code>public function</code>.</p> <p>Read up on class methods for more.</p> <p>Reading your code more closely you've designed it in such a way that the constructor takes a parameter that you use in the methods. This will either need to be rethought (pass that thing into the methods themselves, maybe?) or you can just go the instance route:</p> <pre><code>new Collision( e ).hurtCollision( this ); </code></pre> <p>... You might want to keep the instance around longer than just for the one call if you use it a lot, of course.</p> http://stackoverflow.com/questions/1816246/fillrect-performance/1816285#1816285 0 Answer by thenduks for fillRect, performance? thenduks 2009-11-29T18:22:03Z 2009-11-29T18:22:03Z <p>Is there some reason you can't just put a permanent black object behind your Canvas (or whatever you're drawing on) and then do <code>this.graphics.clear()</code> before doing your sprite drawing?</p> <p>That's what I'd suggest. Let the component with the sprites being drawn on it be transparent and just reset it every time.</p> http://stackoverflow.com/questions/1816025/strip-part-of-a-filename-with-jquery-js/1816046#1816046 0 Answer by thenduks for strip part of a filename with jquery/js thenduks 2009-11-29T16:57:40Z 2009-11-29T17:50:11Z <p>How about a regex instead?</p> <pre><code>var id = $(this).attr('src').replace( /(-\d+)?\.jpg/, '' ); </code></pre> http://stackoverflow.com/questions/1816030/rails-specifing-params-without-value-to-linkto/1816050#1816050 1 Answer by thenduks for Rails: Specifing params without value to link_to thenduks 2009-11-29T17:00:00Z 2009-11-29T17:00:00Z <p>The last example you have:</p> <pre><code>link_to articles_path(:most_popular =&gt; true) # /articles?most_popular=true </code></pre> <p>Is the correct way. Otherwise you could just construct the link by hand:</p> <pre><code>&lt;a href="&lt;%= articles_path %&gt;?most_popular"&gt;articles&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/1815969/yui-get-utility-to-parse-json-response/1815988#1815988 0 Answer by thenduks for YUI "Get" utility to parse JSON response? thenduks 2009-11-29T16:33:09Z 2009-11-29T16:33:09Z <p>Normally in this case the easiest thing to do is to return javascript that calls a callback with the json. For example:</p> <pre><code>function xdCallback( json ) { // here I can do whatever I need with json, maybe SomeModule.heresTheJson( json ); // or globalVar.json = json; // etc } </code></pre> <p>And so on your server side you return not just JSON but instead something like:</p> <pre><code>xdCallback( { json: 'goes', here: true } ); </code></pre> <p>...execute the 'script' when you get it via your ajax call and you're set.</p> http://stackoverflow.com/questions/1814807/highlighting-disabled-in-browser/1814812#1814812 1 Answer by thenduks for highlighting disabled in browser thenduks 2009-11-29T06:16:28Z 2009-11-29T06:16:28Z <p>Very difficult to do this cross-browser. I usually just assume that IE users are used to stuff looking a little off/wont notice the highlight/etc. I use this snippet which uses jQuery but should be adaptable to pretty much any library:</p> <pre><code>$.fn.disableSelection = function() { return $(this).each( function( index, el ) { if( typeof el.style.MozUserSelect != 'undefined' ) { el.style.MozUserSelect = 'none'; } else { el.onmousedown = function() { return false; } } el.style.cursor = 'pointer'; } ); } </code></pre> http://stackoverflow.com/questions/1813905/if-you-dont-code-for-fun-you-cant-be-a-good-programmer/1814167#1814167 2 Answer by thenduks for If you don't code for fun, you can't be a good programmer? thenduks 2009-11-28T23:48:29Z 2009-11-28T23:48:29Z <p>It's not about how much code you write in your spare time, it's about passion. It just happens that if you have passion for software then you probably will find time for it outside of your day-job just like any other interest or hobby.</p> <p>Being interested and passionate about <em>anything</em> will make you better at it.</p> http://stackoverflow.com/questions/1772143/using-sinatra-and-mongodb-whats-the-recommended-way-to-keep-alive-the-mongod/1811630#1811630 1 Answer by thenduks for Using Sinatra and MongoDB - what's the recommended way to "keep alive" the mongodb connection between http requests? thenduks 2009-11-28T05:04:18Z 2009-11-28T05:04:18Z <p>The newest version of the <a href="http://github.com/mongodb/mongo-ruby-driver" rel="nofollow">ruby mongodb driver</a> includes connection pooling. You could set up your pool in your <code>configure</code> block in your sinatra app and Bob's your uncle.</p> http://stackoverflow.com/questions/1794267/user-generated-database-entries-in-rails/1794279#1794279 1 Answer by thenduks for User-generated database entries in rails thenduks 2009-11-25T02:25:24Z 2009-11-25T02:25:24Z <p>This is a very broad question. Have you tried some of the Rails tutorials? The main Ruby on Rails website has recently put up a bunch of new <a href="http://guides.rubyonrails.org/" rel="nofollow">guides</a> that you might want to start with.</p> http://stackoverflow.com/questions/1792075/another-jquery-not-selector-question/1792105#1792105 0 Answer by thenduks for Another jquery :not selector question.... thenduks 2009-11-24T18:48:41Z 2009-11-24T18:48:41Z <p>How about:</p> <pre><code>var el = $j('#submenu li.current_page_ancestor.current_page_parent a:first'); if( el.text().match( /^\+/ ) ) { el.prepend( '+' ); } </code></pre> http://stackoverflow.com/questions/1777210/get-id-of-the-element-i-hover-over-with-jquery/1777236#1777236 1 Answer by thenduks for Get ID of the element I hover over with jQuery? thenduks 2009-11-22T00:02:36Z 2009-11-22T03:52:08Z <pre><code>$('.tags').hover( function() { console.log( 'hovering on' , $(this).attr('id') ); }, function() {} ); </code></pre> <p>Second empty function is for mouse out, you'll probably want to do something on that event as well.</p> http://stackoverflow.com/questions/1774315/vim-settings-for-erlang/1774319#1774319 0 Answer by thenduks for Vim settings for Erlang thenduks 2009-11-21T02:31:35Z 2009-11-21T02:31:35Z <p>How about <a href="http://github.com/pangloss/vim-erlang/raw/a5b881eb1ed5ab32a0a51a473170d41b86698ecd/syntax/erlang.vim" rel="nofollow">this</a>. It's part of a <a href="http://github.com/pangloss/vim-erlang" rel="nofollow">bigger package</a> that would probably be useful, too.</p> http://stackoverflow.com/questions/1774309/error-id-attribute-is-not-allowed-on-the-root-tag-of-a-component/1774317#1774317 0 Answer by thenduks for Error: Id attribute is not allowed on the root tag of a component. thenduks 2009-11-21T02:30:21Z 2009-11-21T02:30:21Z <p>If you're defining this in a file as a subclass of <code>Button</code> then you can't set the <code>id</code> here. Put the id in the place you use this new component. For example, if this new component will be an <code>AwesomeButton</code>, you could use it like so:</p> <pre><code>&lt;mycompnamespace:AwesomeButton id="testingId" /&gt; </code></pre> http://stackoverflow.com/questions/1763206/does-the-browser-store-the-calculated-coordinates-of-a-div-in-accessible-variable/1763225#1763225 1 Answer by thenduks for Does the Browser store the calculated coordinates of a div in accessible variables? thenduks 2009-11-19T13:17:17Z 2009-11-19T13:17:17Z <p>It does indeed. Unfortunately it's pretty difficult to get that information out reliably due to browser inconsistencies and general ugliness of raw DOM access.</p> <p>I suggest <a href="http://jquery.com" rel="nofollow">jQuery</a>, where you might have code like:</p> <pre><code>$('#some_div').offset().top </code></pre> <p>Which will give you the <code>y</code> position of the div from the top left of the document.</p> http://stackoverflow.com/questions/1762950/my-jquery-code-is-working-but-is-it-very-crappy-from-a-programmers-point-of-vie/1762973#1762973 3 Answer by thenduks for My jQuery code is working, but is it very crappy from a programmer's point of view? thenduks 2009-11-19T12:31:44Z 2009-11-19T12:31:44Z <p>The code is fine. You could make some minor improvements:</p> <ul> <li>Don't use <code>$(this)</code> all over the place. Assign it to something early and use that so you don't re-extend the element over and over.</li> <li><code>$(this).attr('style', "margin-bottom: " + img_margin + "px;");</code> can be rewritten as <code>someEl.css('margin-bottom', img_margin + 'px');</code></li> </ul> http://stackoverflow.com/questions/1248535/how-can-i-git-clone-git-foo-git-again/1762953#1762953 0 Answer by thenduks for how can i git clone git://foo.git AGAIN? thenduks 2009-11-19T12:28:33Z 2009-11-19T12:28:33Z <p>If you <em>really</em> screw it up:</p> <pre><code>git clean -df git reset --hard HEAD </code></pre> http://stackoverflow.com/questions/1760660/stop-table-inheritance/1760669#1760669 0 Answer by thenduks for stop Table Inheritance thenduks 2009-11-19T03:22:31Z 2009-11-19T12:25:16Z <p>I'd give the first table an id and put that id in your selectors (like <code>.tab table#mytable</code>).</p> <p><em>Update</em>:</p> <pre><code>&lt;table id="outer"&gt; &lt;tr&gt; &lt;td&gt; &lt;table id="inner"&gt; &lt;tr&gt; &lt;td&gt;Content here&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; ... elsewhere table#outer tr td { background: blue; padding: 10px; border: 5px solid #0000AF; } table#inner tr td { background: red; padding: 3px; border: 5px solid #AF0000; } </code></pre> <p>Simply put id's on both tables and any time you write a css rule put the id of the table into the selector. This way you can easily override the styles on the outer table.</p> <p>The reason this is so verbose is because in IE you can't use selectors like <code>table#outer &gt; tr &gt; td</code> to scope to only direct children of <code>#outer</code>. Yes, this is very annoying.</p> <p>The real key here is (I agree with btelles 100% here): <em>don't use a table inside a table just for positioning</em>.</p> http://stackoverflow.com/questions/1758284/what-is-p-in-ruby/1758291#1758291 3 Answer by thenduks for What is "p" in Ruby? thenduks 2009-11-18T19:05:05Z 2009-11-18T19:22:15Z <p>Why not try it?</p> <pre><code>&gt;&gt; [1,2,3].each { |d| p d } 1 2 3 </code></pre> http://stackoverflow.com/questions/1756677/styling-forms-ruby-on-rails-2-easy-question/1756720#1756720 4 Answer by thenduks for Styling Forms Ruby on Rails 2 - Easy Question thenduks 2009-11-18T15:19:18Z 2009-11-18T16:03:25Z <p>The most appropriate way would likely be just giving them different classes and styling them via usual css methods.</p> <p>Eg.</p> <pre><code>&lt;%= text_field( :title, :class =&gt; "something" ) %&gt; </code></pre> http://stackoverflow.com/questions/1871013/updating-the-table-using-recordset/1871070#1871070 Comment by thenduks on updating the table using recordset. thenduks 2009-12-09T02:06:25Z 2009-12-09T02:06:25Z What? Ignoring the terrible formatting, this is completely unhelpful... the search returns no results! :( http://stackoverflow.com/questions/1863415/where-should-i-place-my-own-module-within-rails-application/1863435#1863435 Comment by thenduks on Where should I place my own "module" within rails application? thenduks 2009-12-08T04:10:40Z 2009-12-08T04:10:40Z That I did not know. Thanks. http://stackoverflow.com/questions/1861861/why-does-git-show-dev-null-in-status-after-interactive-add-of-renamed-file Comment by thenduks on Why does git show "dev/null" in status after interactive add of renamed file? thenduks 2009-12-07T18:52:21Z 2009-12-07T18:52:21Z @Dan, why? <code>git mv</code> is the 'proper' way to change a file's name. To delete a file you use <code>git rm</code> and to move one you use <code>git mv</code>, don't just move the file yourself and expect git to read your thoughts :) http://stackoverflow.com/questions/1697165/ruby-includes-returns-false-and-nil Comment by thenduks on Ruby includes returns false and nil thenduks 2009-12-02T19:30:49Z 2009-12-02T19:30:49Z Hi there, just noticed you didn't accept my answer. Was I not clear enough? Do you need more clarification? http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job/1820856#1820856 Comment by thenduks on How to help a struggling newbie do a better job? thenduks 2009-12-01T12:37:09Z 2009-12-01T12:37:09Z Skip Code Complete and go with Pragmatic Programmer. Same good advice, much more concise package. You have have months for him to digest a book like CC, he needs to starting doing his job acceptably <i>yesterday</i> :) http://stackoverflow.com/questions/109440/best-git-repository-hosting-for-commercial-project/1817068#1817068 Comment by thenduks on Best git repository hosting for commercial project? thenduks 2009-11-30T00:02:22Z 2009-11-30T00:02:22Z It definitely does affect development if github goes down and it's your origin. <code>git push</code> and just about everything else will fail. If there's more than a couple developers on your team this will quickly turn into a nightmare of merging. Not the end of the world but a significant waste of time. Best to just have a box in your office that you push to that has a post-receive that pushes it up to github. That way if github is down all is still well in the office. http://stackoverflow.com/questions/1816264/why-do-i-get-an-error-when-i-try-to-access-a-public-function-of-a-class-actions/1816301#1816301 Comment by thenduks on Why do I get an error when I try to access a public function of a class? (Actionscript 3) thenduks 2009-11-29T20:02:19Z 2009-11-29T20:02:19Z Oh I see, you mean the internal properties, <code>private var BLAH</code>, etc... Just make those static too! http://stackoverflow.com/questions/1816264/why-do-i-get-an-error-when-i-try-to-access-a-public-function-of-a-class-actions/1816301#1816301 Comment by thenduks on Why do I get an error when I try to access a public function of a class? (Actionscript 3) thenduks 2009-11-29T20:01:30Z 2009-11-29T20:01:30Z Yea, well, you aren't ever calling the constructor so there's no way for the instance variables to get set (your properties). Like I said in the second paragraph you should be able to just pass what you're currently passing to your constructor to the methods directly. There are other ways but they get complex, best to buy an AS3 book or something to cover all the bases in that case. http://stackoverflow.com/questions/1816264/why-do-i-get-an-error-when-i-try-to-access-a-public-function-of-a-class-actions Comment by thenduks on Why do I get an error when I try to access a public function of a class? (Actionscript 3) thenduks 2009-11-29T18:27:44Z 2009-11-29T18:27:44Z If you indent all of your code 4 spaces it will be formatted correctly, fyi. http://stackoverflow.com/questions/1816025/strip-part-of-a-filename-with-jquery-js/1816046#1816046 Comment by thenduks on strip part of a filename with jquery/js thenduks 2009-11-29T17:51:31Z 2009-11-29T17:51:31Z Err, that's a '\' before the . in .jpg. Also if your filename is .jpeg of course this wont work so you could do: jpe?g http://stackoverflow.com/questions/1816025/strip-part-of-a-filename-with-jquery-js/1816046#1816046 Comment by thenduks on strip part of a filename with jquery/js thenduks 2009-11-29T17:50:02Z 2009-11-29T17:50:02Z Can you be more specific? It works for me. I should have put a <code>&#96; before the </code>.<code> in </code>.jpg`, maybe that will help. http://stackoverflow.com/questions/1816025/strip-part-of-a-filename-with-jquery-js/1816041#1816041 Comment by thenduks on strip part of a filename with jquery/js thenduks 2009-11-29T16:59:04Z 2009-11-29T16:59:04Z Hopefully there's no other dashes allowed in the filename :) http://stackoverflow.com/questions/1815978/help-with-multidimensional-arrays-in-ruby Comment by thenduks on Help with multidimensional arrays in Ruby thenduks 2009-11-29T16:37:54Z 2009-11-29T16:37:54Z And the type errors are...? http://stackoverflow.com/questions/1815983/rails-relationship-breaking Comment by thenduks on Rails Relationship Breaking thenduks 2009-11-29T16:35:51Z 2009-11-29T16:35:51Z Can you paste the code (or the psuedo-code version at least) of the code where you 'process' an order and all that? Basically we need to see the controller method that seems to break the relationship. http://stackoverflow.com/questions/1813905/if-you-dont-code-for-fun-you-cant-be-a-good-programmer/1814115#1814115 Comment by thenduks on If you don't code for fun, you can't be a good programmer? thenduks 2009-11-28T23:49:42Z 2009-11-28T23:49:42Z Huh? They are mutually exclusive? Says who?