User Mark A. Nicolosi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:14:55Z http://stackoverflow.com/feeds/user/23260 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1671633/preventing-reflow-when-using-jquery-ui-size-effect 0 Preventing reflow when using jQuery UI "size" effect Mark A. Nicolosi 2009-11-04T04:09:29Z 2009-11-13T04:22:18Z <p>I have a list of images like this:</p> <pre><code>&lt;ul class='blah'&gt; &lt;li&gt;&lt;img src='...' /&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='...' /&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='...' /&gt;&lt;/li&gt; &lt;li&gt;&lt;img src='...' /&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>And I have it styled to display as a horizontal list without bullet points. Kinda of like what you see on GitHub for followers (see <a href="http://github.com/chrislloyd" rel="nofollow">http://github.com/chrislloyd</a>). I'm using jQuery and jQuery UI to make these images bigger when the user hovers their mouse over it. Here's the code I've got so far:</p> <pre><code>$(".blah img").hover( function() { $(this).effect("size", { to: { width: 64, height: 64 }, origin: ['top','center'], scale: 'content' }); }, function() { $(this).effect("size", { to: { width: 32, height: 32 }, scale: 'content' }); }); </code></pre> <p>This works well while it is animating, but once an image reaches its maximum size the other images reflow (move out of the way). Any ideas how to do this without reflowing anything?</p> <p>I tried variations of 'position: absolute;', 'position: relative', etc. on the images and the container (the <code>&lt;ul&gt;</code>) but it didn't really make any difference.</p> http://stackoverflow.com/questions/1129383/non-trivial-desktop-apps-that-use-ruby 3 Non-trivial desktop apps that use Ruby? Mark A. Nicolosi 2009-07-15T04:14:14Z 2009-11-08T00:41:01Z <p>I'm about to start a project developing a Ruby desktop application. I expect to to be fairly big and I want to learn techniques for dividing code among modules and other techniques for managing complexity. Most large apps I've looked at are Rails apps, but these aren't very helpful, because most of the work is done by Rails itself.</p> <p>What source code would you recommend I take a look at? I'm not interested in libraries or Rails apps, because I get how they do things. CLI apps are OK, but I'm mostly interested in GUI apps (I'm using Gtk+, but I can learn just as much from apps using other GUI toolkits).</p> http://stackoverflow.com/questions/1628563/git-move-recent-commit-to-a-new-branch 4 Git: Move recent commit to a new branch Mark A. Nicolosi 2009-10-27T03:07:34Z 2009-10-27T03:15:15Z <p>I'd like to move the last several commits I've made to master to a new branch and take master back to before those commits were made. Unfortunately, my Git-fu isn't strong enough yet, any help?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1513750/click-event-for-div-with-two-floated-elements-on-ie6 0 Click event for div with two floated elements on IE6 Mark A. Nicolosi 2009-10-03T13:28:53Z 2009-10-03T14:04:11Z <p>I have a <code>&lt;div&gt;</code> with two floated elements inside of it. I'm using jQuery to attach a click event handler to this <code>&lt;div&gt;</code>. The handler only gets called when I click one of the two floated elements. The empty space inside of the <code>&lt;div&gt;</code> does not work.</p> <p>Here's what the markup looks like:</p> <pre><code>&lt;div class="wrapper"&gt; &lt;h4&gt;Some lovely header text here&lt;/h4&gt; &lt;img src="images/plus.png"/&gt; &lt;div style="clear: both;"/&gt; &lt;/div&gt; </code></pre> <p>Here's my Javascript (I'm using some other events, too):</p> <pre><code>// Expand scenarios when clicked on scenario_header.live("click", function() { $(this).toggleClass("expanded"); $("+ div", this).slideToggle(); }); // Toggle hover class when hovering scenario_header.live("mouseover", function() { $(this).toggleClass("hover"); }); scenario_header.live("mouseout", function() { $(this).toggleClass("hover"); }); </code></pre> <p>This works perfectly in Firefox. Any ideas?</p> http://stackoverflow.com/questions/1512175/what-is-the-down-migration-for-adding-a-polymorphic-reference/1512203#1512203 0 Answer by Mark A. Nicolosi for What is the down migration for adding a polymorphic reference Mark A. Nicolosi 2009-10-02T22:59:19Z 2009-10-03T02:07:59Z <p>What's wrong with this?</p> <pre><code>def self.down remove_column :addresses, :addressable end </code></pre> http://stackoverflow.com/questions/1507378/jquery-ui-tabs-loading-first-as-ul-then-as-tabs/1507390#1507390 1 Answer by Mark A. Nicolosi for jQuery UI tabs loading first as <ul> then as tabs Mark A. Nicolosi 2009-10-02T01:42:14Z 2009-10-02T01:42:14Z <p>This is normal, but it shouldn't take a few seconds. How much are you doing in your jQuery ready (AKA <code>$()</code>) function before you call <code>$("#whatever").tabs()</code>? Try moving that method call to the top of your ready function.</p> http://stackoverflow.com/questions/1475387/web-page-summary-with-ruby/1475469#1475469 1 Answer by Mark A. Nicolosi for Web page summary with Ruby Mark A. Nicolosi 2009-09-25T04:41:01Z 2009-09-25T04:41:01Z <p>You could you just scrape the web page for either description meta tag or if that's not available the first few sentences from the first <code>&lt;p&gt;</code> element on the page. The description meta tag looks like this:</p> <pre><code>&lt;meta name="description" content="Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser with XPath and CSS selector support." /&gt; </code></pre> <p>There's several Ruby libraries for parsing HTML. I hear that <a href="http://tenderlovemaking.com/2008/10/30/nokogiri-is-released/" rel="nofollow">Nokogiri</a> is good for this sort of stuff, but I have no experience with it personally.</p> http://stackoverflow.com/questions/1442940/css-positioning-problem-show-different-result-in-different-browser/1443032#1443032 1 Answer by Mark A. Nicolosi for css positioning problem show different result in different browser Mark A. Nicolosi 2009-09-18T07:28:15Z 2009-09-18T07:41:27Z <p>Your markup is seriously jacked up. Use Firebug on Firefox to look at it. Here's a couple things I noticed:</p> <ol> <li><p>You have your elements for your subscribe link inside the form above it. This is not apart of your newsletter form, so shouldn't be contained inside that form.</p></li> <li><p>Your using a lot of <code>&lt;span&gt;</code>s with block elements inside them. <code>&lt;span&gt;</code>s are generally for inline content and sticking block elements (like <code>&lt;p&gt;</code>) inside could give weird results.</p></li> <li><p>Check your stylesheets where your setting the left padding for ".newsletter p" this is affecting your subscription link.</p></li> <li><p>Try to avoid specifying styles inline (using the style attribute).</p></li> <li><p>Stop using postion:relative everywhere. Instead using padding and margins for layout your sidebar.</p></li> </ol> <p>Generally to center something, you can do this:</p> <pre><code>.centered_thing { margin: 0 auto; text-align: center; } </code></pre> <p>Edit: The marquee thing is terrible. Read about what happened to the <a href="http://en.wikipedia.org/wiki/Marquee%5Ftag" rel="nofollow">HTML marquee tag</a>. There's many good reasons to avoid it or Javascript knockoffs.</p> http://stackoverflow.com/questions/1441982/fastest-sortable-javascript-html-table/1442000#1442000 1 Answer by Mark A. Nicolosi for fastest sortable javascript html table Mark A. Nicolosi 2009-09-18T00:14:47Z 2009-09-18T00:14:47Z <p>If this is for a web app and you have a lot of data, it may make more sense to do the sorting server-side using SQL or whatever ORM you're using.</p> http://stackoverflow.com/questions/1355572/can-i-aim-for-tdd-or-bdd-in-my-started-project/1355598#1355598 2 Answer by Mark A. Nicolosi for Can I aim for TDD or BDD in my started project? Mark A. Nicolosi 2009-08-31T02:43:36Z 2009-08-31T21:39:57Z <p>This is what stubs are for. Basically you create a <a href="http://www.martinfowler.com/bliki/TestDouble.html" rel="nofollow">Test Double</a> that stands in for objects that access expensive services (like in your case) or do other things. This allows you to isolate the object while testing and have faster running tests.</p> <p>It's not only for speeding things up. Say you're writing some middleware code to do transactions through Paypal. You probably don't want to actually use the Paypal service while running tests, which can be expensive (literally).</p> <p><a href="http://mocha.rubyforge.org/" rel="nofollow">Mocha</a> is good for this sort of thing. Or just create an object that acts like your web service object acts like (since this is Ruby if it walks like a duck...).</p> http://stackoverflow.com/questions/1355524/which-syntax-and-architecture-of-assembly-is-most-useful-to-know/1355563#1355563 0 Answer by Mark A. Nicolosi for Which syntax and architecture of assembly is most useful to know? Mark A. Nicolosi 2009-08-31T02:29:58Z 2009-08-31T02:29:58Z <p>I remember reading an introductory book on x86 assembly by (I think) Peter Norton. The book walks a beginner through the process of creating a full screen hard disk editor for MS-DOS. This is the best way to learn, because you get the full experience of the low-level hardware that goes into the x86 architecture and can apply that knowledge to other CPUs as well. Less useful is the knowledge of DOS interrupts, but still interesting.</p> http://stackoverflow.com/questions/1355194/how-do-i-split-a-large-file-in-unix-repeatedly/1355221#1355221 2 Answer by Mark A. Nicolosi for How do I split a large file in unix repeatedly? Mark A. Nicolosi 2009-08-30T23:37:00Z 2009-08-30T23:37:00Z <p>Duh! bcat's answer is way better than mine, but since I wrote some code I figured I'd go ahead and post it.</p> <pre><code>input = ARGV[0] length = ARGV[1].to_i offset = ARGV[2].to_i File.open "#{input}-#{offset}-#{length}", 'w' do |file| file.write(File.read input, length, offset) end </code></pre> <p>Use it like this:</p> <p>$ ruby test.rb input_file length offset</p> http://stackoverflow.com/questions/1204189/learning-ruby-on-rails-with-pragmatic-book/1204209#1204209 2 Answer by Mark A. Nicolosi for Learning Ruby on Rails with Pragmatic book Mark A. Nicolosi 2009-07-30T02:57:04Z 2009-07-30T02:57:04Z <p>The HTML/CSS should be easy to pick up, but if you're having trouble following the Ruby code, I'd suggest you start with a Ruby off-Rails book. The <a href="http://www.pragprog.com/titles/ruby/programming-ruby" rel="nofollow">Pickaxe</a> book comes to mind. You can find the 1st edition online. Also <a href="http://rads.stackoverflow.com/amzn/click/0672328844" rel="nofollow">the Ruby Way</a> helped me to "get" the Ruby way of doing things.</p> http://stackoverflow.com/questions/1128792/how-to-structure-a-large-ruby-application 1 How to structure a large Ruby application? Mark A. Nicolosi 2009-07-15T00:29:11Z 2009-07-15T22:39:27Z <p>I'm considering writing a (large) desktop application in Ruby (actually a game, think something like Angband or Nethack using Gtk+ for the GUI). I'm coming from a C#/.NET background, so I'm a little at a lost for how to structure things.</p> <p>In C#, I'd create many namespaces, like Application.Core, Application.Gui, etc). Parts of the application that didn't need the Gui wouldn't reference it with a using statement. From what I understand, in Ruby, the require statement basically does a textual insert that avoids duplicated code. What I'm concerned about, through the use of require statements, every file/class will have access everything else, because the ordering of the require statements.</p> <p>I've read some ruby code that uses modules as namespaces. How does that work and how does it help?</p> <p>Not sure what I'm getting at here... Does anyone have any good pointers on how to structure a large Ruby application? How about some non-trivial (and non-Rails) apps that use Ruby?</p> http://stackoverflow.com/questions/1120509/downloading-a-variable/1120522#1120522 1 Answer by Mark A. Nicolosi for Downloading a variable Mark A. Nicolosi 2009-07-13T16:23:15Z 2009-07-13T16:23:15Z <p>See the accepted answer to my question <a href="http://stackoverflow.com/questions/1067162/download-javascript-generated-xml-in-ie6">here</a>. This is only possible in IE browsers.</p> http://stackoverflow.com/questions/208471/getting-jquery-to-recognise-change-in-ie/1080243#1080243 4 Answer by Mark A. Nicolosi for Getting jQuery to recognise .change() in IE Mark A. Nicolosi 2009-07-03T17:25:46Z 2009-07-10T01:09:57Z <p>The problem with using the <code>click</code> event instead of <code>change</code> is you get the event if the same radio box is selected (i.e. hasn't actually changed). This can be filtered out if you check that the new value is different than the old. I find this a little annoying.</p> <p>If you use the <code>change</code> event, you may notice that it will recognize the change after you click on any other element in IE. If you call <code>blur()</code> in the <code>click</code> event, it'll cause the <code>change</code> event to fire (only if the radio boxes actually have a changed).</p> <p>Here's how I'm doing it:</p> <pre><code>// This is the hack for IE if ($.browser.msie) { $("#viewByOrg").click(function() { this.blur(); this.focus(); }); } $("#viewByOrg").change(function() { // Do stuff here }); </code></pre> <p>Now you can use the change event like normal.</p> <p>Edit: Added a call to focus() to prevent accessibility issues (see Bobby's comment below).</p> http://stackoverflow.com/questions/1089063/jquery-outline-top-element-while-hovering/1089084#1089084 1 Answer by Mark A. Nicolosi for Jquery - Outline top element while hovering Mark A. Nicolosi 2009-07-06T20:32:51Z 2009-07-06T20:32:51Z <p>Instead of specifying all the styles in your code why not use CSS and jQuery's addClass, removeClass, and toggleClass functions? This should clean up your code quite a bit and put the presentation where it belongs - in the style sheets.</p> http://stackoverflow.com/questions/1088198/what-is-the-best-way-to-manage-duplicate-code-in-static-html-websites/1088373#1088373 0 Answer by Mark A. Nicolosi for What is the best way to manage duplicate code in static HTML websites Mark A. Nicolosi 2009-07-06T17:57:53Z 2009-07-06T17:57:53Z <p>I've used <a href="http://webby.rubyforge.org/tutorial/" rel="nofollow">Webby</a> for this in the past and was very satisfied with how easy it made things and reduced duplication.</p> http://stackoverflow.com/questions/1085613/how-to-debug-internal-working-of-rails/1085623#1085623 2 Answer by Mark A. Nicolosi for How to Debug Internal working of Rails ? Mark A. Nicolosi 2009-07-06T06:08:04Z 2009-07-06T06:08:04Z <p>I'd say the best way is to read the code and use a debugger like <a href="http://rubyforge.org/projects/ruby-debug/" rel="nofollow">ruby-debug</a>. Checkout this <a href="http://ireneros.com/ruby-debug-to-the-rescue" rel="nofollow">tutorial on ruby-debug</a>. One last resource: Jamis Buck has a pretty nice series on his blog about <a href="http://weblog.jamisbuck.org/under-the-hood" rel="nofollow">Rails under the hood</a>.</p> http://stackoverflow.com/questions/1085457/jquery-check-whether-an-element-is-hidden-from-the-user/1085601#1085601 -1 Answer by Mark A. Nicolosi for JQuery: Check whether an Element is Hidden from the user Mark A. Nicolosi 2009-07-06T05:57:10Z 2009-07-06T05:57:10Z <p>This works for me:</p> <p>$("#VersionSelectField").css("display") == "none";</p> http://stackoverflow.com/questions/1082323/regular-expression-to-match-if-all-given-words-are-in-a-string 2 Regular expression to match if all given words are in a string Mark A. Nicolosi 2009-07-04T14:42:09Z 2009-07-05T13:40:58Z <p>Say I have a query like this: "one two three", if I replace with spaces with | (pipe character) I can match a string if it contains one or more of those words. This is like a logical OR.</p> <p>Is there something similar that does a logical AND. It should match regardless of word ordering as long as all the words are present in the string.</p> <p>Unfortunately I'm away from my Mastering Regular Expressions book :(</p> <p><strong>Edit:</strong> I'm using Javascript and the query can contain any amount of words.</p> http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081592#1081592 0 Answer by Mark A. Nicolosi for Escaping double quotes in JavaScript onClick event handler Mark A. Nicolosi 2009-07-04T05:41:10Z 2009-07-04T05:43:34Z <p>You may also want to try two backslashes <code>(\\")</code> to escape the escape character.</p> http://stackoverflow.com/questions/1081327/ruby-cross-platform-way-to-write-the-eof-symbol/1081349#1081349 4 Answer by Mark A. Nicolosi for Ruby cross-platform way to write the EOF symbol Mark A. Nicolosi 2009-07-04T02:27:14Z 2009-07-04T03:03:37Z <p>EOF is not a character, it's a state. Terminals use control characters to represent this state (C-d). There's no such thing is "reading a EOF <em>character</em>" and same thing for writing one. If you're writing to a file, just close it when you're done. See this <a href="http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/248837" rel="nofollow">mailing list post</a>:</p> <blockquote> <p>It sounds like you are thinking of EOF as an in-band but special character value that marks the end of file. It is better to think of it as an out-of-band sentinel value. In C, EOF is usually -1 and the associated API specifies integer return values so that EOF is guaranteed to never be confused with a valid in-band value.</p> </blockquote> <p>Here's some more proof (do this on Unix):</p> <pre><code>$ cat &gt; file hello^V^Dworld ^D $ cat file helloworld </code></pre> <p>Typing ^V^D inserts a control-D character literally into the file. After typing world and enter, the ^D closes the pipe. The file ends up being 12 bytes long 10 letters, two more for the ^D and the newline. The final ^D does not end up in the file. It's just used by the terminal/shell to close the pipe.</p> http://stackoverflow.com/questions/1072239/is-it-possible-to-style-a-select-box/1072266#1072266 4 Answer by Mark A. Nicolosi for Is it possible to style a select box? Mark A. Nicolosi 2009-07-02T03:10:27Z 2009-07-02T03:29:13Z <p>I've seen some jQuery plugins out there that convert <code>&lt;select&gt;</code>'s to <code>&lt;ol&gt;</code>'s and <code>&lt;option&gt;</code>'s to <code>&lt;li&gt;</code>'s, so that you can style it with CSS. Couldn't be too hard to roll your own.</p> <p>Here's one: <a href="http://www.brainfault.com/2008/02/10/new-release-of-jquery-selectbox-replacement/" rel="nofollow">http://www.brainfault.com/2008/02/10/new-release-of-jquery-selectbox-replacement/</a></p> <p>Use it like this:</p> <pre><code>$('#myselectbox').selectbox(); </code></pre> <p>Style it like this:</p> <pre><code>div.selectbox-wrapper ul { list-style-type:none; margin:0px; padding:0px; } div.selectbox-wrapper ul li.selected { background-color: #EAF2FB; } div.selectbox-wrapper ul li.current { background-color: #CDD8E4; } div.selectbox-wrapper ul li { list-style-type:none; display:block; margin:0; padding:2px; cursor:pointer; } </code></pre> http://stackoverflow.com/questions/1067162/download-javascript-generated-xml-in-ie6 0 Download Javascript generated XML in IE6 Mark A. Nicolosi 2009-07-01T03:37:19Z 2009-07-01T04:08:01Z <p>I'd like to use Javascript to make IE6 download a file. It'll be created on the fly using Javascript. This file doesn't exist on a webserver. Here's a small example:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head&gt; &lt;script type="text/javascript"&gt; function clicked() { var xml = "&lt;data&gt;Just for testing&lt;/data&gt;"; document.open("text/xml", "replace"); document.write(xml); } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;input type="button" value="Download" onclick="clicked();" /&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Instead of loading the xml in the browser window, I want it to cause IE6 to prompt the user where to download the data to so that it can be saved without them having to use File -> Save as. Any ideas?</p> http://stackoverflow.com/questions/1056895/retrive-field-properties-in-jquery/1056960#1056960 1 Answer by Mark A. Nicolosi for Retrive Field properties in JQuery Mark A. Nicolosi 2009-06-29T07:19:40Z 2009-06-29T07:19:40Z <p>In addition to sandersa answer to perform an action when the button is clicked you'd do something like this:</p> <pre><code>$("#saveForm").click(function() { // Borrowing code from sandersa's answer alert($('#2 label').next()[0].tagName); }); </code></pre> http://stackoverflow.com/questions/237383/how-do-i-insert-a-linebreak-where-the-cursor-is-without-entering-into-insert-mode 6 How do I insert a linebreak where the cursor is without entering into insert mode in Vim? Mark A. Nicolosi 2008-10-26T02:09:44Z 2009-06-02T21:24:30Z <p>Is possible to insert a linebreak where the cursor is in Vim without entering into insert mode? Here's an example ([x] means cursor is on x):</p> <pre><code>if (some_condition) {[ ]return; } </code></pre> <p>Occasionally, I might want to enter some more code. So I'd press 'i' to get into insert mode, press enter to insert the linebreak and then delete the extra space. Next, I'd enter normal mode and position the cursor before the closing brace and then do the same thing to get it on its own line.</p> <p>I've been doing this a while, but there's surely a better way to do it?</p> http://stackoverflow.com/questions/405540/what-is-a-cyclic-data-structure-good-for/405571#405571 6 Answer by Mark A. Nicolosi for What is a cyclic data structure good for? Mark A. Nicolosi 2009-01-01T22:21:42Z 2009-05-27T21:37:07Z <p>I recently created a cyclic data structure to represent the eight cardinal and ordinal directions. Its useful for each direction to know its neighbors. For instance, Direction.North knows that Direction.NorthEast and Direction.NorthWest are its neighbors. </p> <p>This is cyclic because each neighor knows its neighbors until it goes full swing around (the "->" represents clockwise):</p> <p>North -> NorthEast -> East -> SouthEast -> South -> SouthWest -> West -> NorthWest -> North -> ...</p> <p>Notice we came back to North.</p> <p>That allows me to do stuff like this (in C#):</p> <pre><code>public class Direction { ... public IEnumerable&lt;Direction&gt; WithTwoNeighbors { get { yield return this; yield return this.CounterClockwise; yield return this.Clockwise; } } } ... public void TryToMove (Direction dir) { dir = dir.WithTwoNeighbors.Where (d =&gt; CanMove (d)).First () Move (dir); } </code></pre> <p>This turned out to be quite handy and made a lot of things much less complicated. Here's the <a href="http://pastebin.com/m78113b9b" rel="nofollow">full class</a>.</p> http://stackoverflow.com/questions/900543/view-in-rails-doesnt-call-overridden-attribute-accessor 0 View in Rails doesn't call overridden attribute accessor Mark A. Nicolosi 2009-05-23T00:38:53Z 2009-05-23T02:39:19Z <p>I have a model like this:</p> <pre><code>class Transaction &lt; ActiveRecord::Base def amount self[:amount].abs end def transaction_type read_attribute(:amount) &gt; 0 ? :credit : :debit end def transaction_type=(type) if type == :credit || type == 'credit' self[:amount] = amount.abs elsif type == :debit || type == 'debit' self[:amount] = amount.abs * -1 else raise ArgumentError.new 'Type must be credit or debit' end end end </code></pre> <p>Because I want my amount column to always be a positive number when rendered. The problem is apparently the view doesn't ever call this method:</p> <pre><code>&lt;% form_for @transaction do |f| %&gt; &lt;%= f.error_messages %&gt; &lt;p&gt; &lt;%= f.label 'Where?' %&gt;&lt;br /&gt; &lt;%= f.text_field :target %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label 'What?' %&gt;&lt;br /&gt; &lt;%= f.text_field :memo %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label 'How much?' %&gt;&lt;br /&gt; &lt;%= f.text_field :amount %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.radio_button :transaction_type, 'debit' %&gt; &lt;%= f.label :transaction_type_debit, 'Debit' %&gt; &lt;%= f.radio_button :transaction_type, 'credit' %&gt; &lt;%= f.label :transaction_type_credit, 'Credit' %&gt; &lt;/p&gt; &lt;p&gt;&lt;%= f.submit "Submit" %&gt;&lt;/p&gt; &lt;% end %&gt; </code></pre> <p>Am I doing something wrong? Or is there a better way to do this?</p> <p><strong>Edit:</strong> Added my transaction_type accessor methods, that better explains why I am not storing amount in the DB as only a positive number.</p> http://stackoverflow.com/questions/880067/functional-testing-redirection-in-a-rails-controller 0 Functional testing redirection in a Rails controller Mark A. Nicolosi 2009-05-18T22:08:08Z 2009-05-18T23:12:07Z <p>I'm trying to make it so when a model is created via created action it redirects to its show action. That part works fine, but I can't get my functional test to behave. These tests have been modified from what the scaffold provides.</p> <pre><code> def setup @thing = Factory(:thing) assert(@thing.id, "Virtual fixture not valid.") end def test_create_valid Thing.any_instance.stubs(:valid?).returns(true) post :create assert_redirected_to @thing end </code></pre> <p>I'm using factory_girl in setup. When I run my tests I get this:</p> <blockquote> <p>Expected response to be a redirect to <a href="http://test.host/thing/2" rel="nofollow">http://test.host/thing/2</a> but was a redirect to <a href="http://test.host/thing/3" rel="nofollow">http://test.host/thing/3</a>.</p> </blockquote> <p>I've done something very similar with my update action in this controller and the test looks the same, but it works. I'm a little confused as to what's going on.</p> <p><strong>Edit</strong>: Maximiliano points out below that this is probably because this creates a new record in the database, so it redirects to that one. How can I find the new record just created with the create post request?</p> http://stackoverflow.com/questions/1671633/preventing-reflow-when-using-jquery-ui-size-effect/1725677#1725677 Comment by Mark A. Nicolosi on Preventing reflow when using jQuery UI "size" effect Mark A. Nicolosi 2009-11-13T22:58:35Z 2009-11-13T22:58:35Z I actually like the effect where they all animate a few tenths of a second apart. http://stackoverflow.com/questions/1671633/preventing-reflow-when-using-jquery-ui-size-effect Comment by Mark A. Nicolosi on Preventing reflow when using jQuery UI "size" effect Mark A. Nicolosi 2009-11-13T22:57:36Z 2009-11-13T22:57:36Z Several answers were helpful (your included). I've been busy and put off this &quot;shiny&quot; feature, but these answers will definitely help when I include it. Thanks everybody! http://stackoverflow.com/questions/1671633/preventing-reflow-when-using-jquery-ui-size-effect/1686220#1686220 Comment by Mark A. Nicolosi on Preventing reflow when using jQuery UI "size" effect Mark A. Nicolosi 2009-11-06T17:39:07Z 2009-11-06T17:39:07Z Yeah, not any noticable difference for me. Thanks. http://stackoverflow.com/questions/1671633/preventing-reflow-when-using-jquery-ui-size-effect/1685996#1685996 Comment by Mark A. Nicolosi on Preventing reflow when using jQuery UI "size" effect Mark A. Nicolosi 2009-11-06T17:34:12Z 2009-11-06T17:34:12Z That example is awesome, I wish I could find something like it when I googled for about an hour. I'll play with that when I get home. Thanks! http://stackoverflow.com/questions/1628563/git-move-recent-commit-to-a-new-branch/1628584#1628584 Comment by Mark A. Nicolosi on Git: Move recent commit to a new branch Mark A. Nicolosi 2009-10-27T03:29:43Z 2009-10-27T03:29:43Z Perfect, thanks. http://stackoverflow.com/questions/1602132/how-to-dry-this-snippet-of-ruby-code/1602178#1602178 Comment by Mark A. Nicolosi on How to DRY this snippet of Ruby code? Mark A. Nicolosi 2009-10-21T17:05:09Z 2009-10-21T17:05:09Z +1, yours is much better than mine. http://stackoverflow.com/questions/1513750/click-event-for-div-with-two-floated-elements-on-ie6/1513763#1513763 Comment by Mark A. Nicolosi on Click event for div with two floated elements on IE6 Mark A. Nicolosi 2009-10-03T14:02:32Z 2009-10-03T14:02:32Z Awww. Now I get it. Without setting <code>display</code> back to <code>block</code> it no longer looks right in Firefox. Thanks Ionut! http://stackoverflow.com/questions/1513750/click-event-for-div-with-two-floated-elements-on-ie6 Comment by Mark A. Nicolosi on Click event for div with two floated elements on IE6 Mark A. Nicolosi 2009-10-03T14:00:39Z 2009-10-03T14:00:39Z The CSS is a little messy (I'm using a lot of classes). Ionut G. Stan already solved my problem below, but not all of his CSS is necessary (in my case). http://stackoverflow.com/questions/1513750/click-event-for-div-with-two-floated-elements-on-ie6/1513763#1513763 Comment by Mark A. Nicolosi on Click event for div with two floated elements on IE6 Mark A. Nicolosi 2009-10-03T13:46:39Z 2009-10-03T13:46:39Z Cool, although only setting <code>display: inline-block;</code> was enough. I'll accept your answer if you fix it (I don't feel right accepting it if it's a little wrong). Up-vote in either case :) http://stackoverflow.com/questions/1512175/what-is-the-down-migration-for-adding-a-polymorphic-reference/1512203#1512203 Comment by Mark A. Nicolosi on What is the down migration for adding a polymorphic reference Mark A. Nicolosi 2009-10-03T02:08:47Z 2009-10-03T02:08:47Z Oops, you're totally right. I should have checked the docs first, instead of going by memory. http://stackoverflow.com/questions/1507378/jquery-ui-tabs-loading-first-as-ul-then-as-tabs/1507390#1507390 Comment by Mark A. Nicolosi on jQuery UI tabs loading first as <ul> then as tabs Mark A. Nicolosi 2009-10-02T02:12:47Z 2009-10-02T02:12:47Z If it bothers you, you can do what James Skidmore suggests and hide it, but you'll still have to deal with it suddenly appearing. http://stackoverflow.com/questions/1442940/css-positioning-problem-show-different-result-in-different-browser/1443032#1443032 Comment by Mark A. Nicolosi on css positioning problem show different result in different browser Mark A. Nicolosi 2009-09-18T22:34:15Z 2009-09-18T22:34:15Z I'm not so sure many people would agree that it looks professional, but to each his own ;) http://stackoverflow.com/questions/1441982/fastest-sortable-javascript-html-table/1442000#1442000 Comment by Mark A. Nicolosi on fastest sortable javascript html table Mark A. Nicolosi 2009-09-18T00:23:37Z 2009-09-18T00:23:37Z If there's a lot of data, ajax could very well be faster than doing it all in javascript. http://stackoverflow.com/questions/1382019/for-personalized-page-which-word-should-be-used-your-or-my/1382281#1382281 Comment by Mark A. Nicolosi on For personalized page, which word should be used -- "your" or "my"? Mark A. Nicolosi 2009-09-05T02:26:37Z 2009-09-05T02:26:37Z &quot;My computer&quot; is gone from Windows Vista and 7... http://stackoverflow.com/questions/1355194/how-do-i-split-a-large-file-in-unix-repeatedly/1355221#1355221 Comment by Mark A. Nicolosi on How do I split a large file in unix repeatedly? Mark A. Nicolosi 2009-08-30T23:43:33Z 2009-08-30T23:43:33Z I think mine may give problems if the length is too large. Besides dd's well-tested.