User Mark A. Nicolosi - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T03:14:55Zhttp://stackoverflow.com/feeds/user/23260http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1671633/preventing-reflow-when-using-jquery-ui-size-effect0Preventing reflow when using jQuery UI "size" effectMark A. Nicolosi2009-11-04T04:09:29Z2009-11-13T04:22:18Z
<p>I have a list of images like this:</p>
<pre><code><ul class='blah'>
<li><img src='...' /></li>
<li><img src='...' /></li>
<li><img src='...' /></li>
<li><img src='...' /></li>
</ul>
</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><ul></code>) but it didn't really make any difference.</p>
http://stackoverflow.com/questions/1129383/non-trivial-desktop-apps-that-use-ruby3Non-trivial desktop apps that use Ruby?Mark A. Nicolosi2009-07-15T04:14:14Z2009-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-branch4Git: Move recent commit to a new branchMark A. Nicolosi2009-10-27T03:07:34Z2009-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-ie60Click event for div with two floated elements on IE6Mark A. Nicolosi2009-10-03T13:28:53Z2009-10-03T14:04:11Z
<p>I have a <code><div></code> with two floated elements inside of it. I'm using jQuery to attach a click event handler to this <code><div></code>. The handler only gets called when I click one of the two floated elements. The empty space inside of the <code><div></code> does not work.</p>
<p>Here's what the markup looks like:</p>
<pre><code><div class="wrapper">
<h4>Some lovely header text here</h4>
<img src="images/plus.png"/>
<div style="clear: both;"/>
</div>
</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#15122030Answer by Mark A. Nicolosi for What is the down migration for adding a polymorphic referenceMark A. Nicolosi2009-10-02T22:59:19Z2009-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#15073901Answer by Mark A. Nicolosi for jQuery UI tabs loading first as <ul> then as tabsMark A. Nicolosi2009-10-02T01:42:14Z2009-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#14754691Answer by Mark A. Nicolosi for Web page summary with RubyMark A. Nicolosi2009-09-25T04:41:01Z2009-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><p></code> element on the page. The description meta tag looks like this:</p>
<pre><code><meta name="description" content="Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser with XPath and CSS selector support." />
</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#14430321Answer by Mark A. Nicolosi for css positioning problem show different result in different browserMark A. Nicolosi2009-09-18T07:28:15Z2009-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><span></code>s with block elements inside them. <code><span></code>s are generally for inline content and sticking block elements (like <code><p></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#14420001Answer by Mark A. Nicolosi for fastest sortable javascript html tableMark A. Nicolosi2009-09-18T00:14:47Z2009-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#13555982Answer by Mark A. Nicolosi for Can I aim for TDD or BDD in my started project?Mark A. Nicolosi2009-08-31T02:43:36Z2009-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#13555630Answer by Mark A. Nicolosi for Which syntax and architecture of assembly is most useful to know?Mark A. Nicolosi2009-08-31T02:29:58Z2009-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#13552212Answer by Mark A. Nicolosi for How do I split a large file in unix repeatedly?Mark A. Nicolosi2009-08-30T23:37:00Z2009-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#12042092Answer by Mark A. Nicolosi for Learning Ruby on Rails with Pragmatic bookMark A. Nicolosi2009-07-30T02:57:04Z2009-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-application1How to structure a large Ruby application?Mark A. Nicolosi2009-07-15T00:29:11Z2009-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#11205221Answer by Mark A. Nicolosi for Downloading a variableMark A. Nicolosi2009-07-13T16:23:15Z2009-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#10802434Answer by Mark A. Nicolosi for Getting jQuery to recognise .change() in IEMark A. Nicolosi2009-07-03T17:25:46Z2009-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#10890841Answer by Mark A. Nicolosi for Jquery - Outline top element while hoveringMark A. Nicolosi2009-07-06T20:32:51Z2009-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#10883730Answer by Mark A. Nicolosi for What is the best way to manage duplicate code in static HTML websitesMark A. Nicolosi2009-07-06T17:57:53Z2009-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#10856232Answer by Mark A. Nicolosi for How to Debug Internal working of Rails ?Mark A. Nicolosi2009-07-06T06:08:04Z2009-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-1Answer by Mark A. Nicolosi for JQuery: Check whether an Element is Hidden from the userMark A. Nicolosi2009-07-06T05:57:10Z2009-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-string2Regular expression to match if all given words are in a stringMark A. Nicolosi2009-07-04T14:42:09Z2009-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#10815920Answer by Mark A. Nicolosi for Escaping double quotes in JavaScript onClick event handlerMark A. Nicolosi2009-07-04T05:41:10Z2009-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#10813494Answer by Mark A. Nicolosi for Ruby cross-platform way to write the EOF symbolMark A. Nicolosi2009-07-04T02:27:14Z2009-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 > 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#10722664Answer by Mark A. Nicolosi for Is it possible to style a select box?Mark A. Nicolosi2009-07-02T03:10:27Z2009-07-02T03:29:13Z<p>I've seen some jQuery plugins out there that convert <code><select></code>'s to <code><ol></code>'s and <code><option></code>'s to <code><li></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-ie60Download Javascript generated XML in IE6Mark A. Nicolosi2009-07-01T03:37:19Z2009-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><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript">
function clicked() {
var xml = "<data>Just for testing</data>";
document.open("text/xml", "replace");
document.write(xml);
}
</script>
</head>
<body>
<input type="button" value="Download" onclick="clicked();" />
</body>
</html>
</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#10569601Answer by Mark A. Nicolosi for Retrive Field properties in JQueryMark A. Nicolosi2009-06-29T07:19:40Z2009-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-mode6How do I insert a linebreak where the cursor is without entering into insert mode in Vim?Mark A. Nicolosi2008-10-26T02:09:44Z2009-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#4055716Answer by Mark A. Nicolosi for What is a cyclic data structure good for?Mark A. Nicolosi2009-01-01T22:21:42Z2009-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<Direction> WithTwoNeighbors
{
get {
yield return this;
yield return this.CounterClockwise;
yield return this.Clockwise;
}
}
}
...
public void TryToMove (Direction dir)
{
dir = dir.WithTwoNeighbors.Where (d => 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-accessor0View in Rails doesn't call overridden attribute accessorMark A. Nicolosi2009-05-23T00:38:53Z2009-05-23T02:39:19Z
<p>I have a model like this:</p>
<pre><code>class Transaction < ActiveRecord::Base
def amount
self[:amount].abs
end
def transaction_type
read_attribute(:amount) > 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><% form_for @transaction do |f| %>
<%= f.error_messages %>
<p>
<%= f.label 'Where?' %><br />
<%= f.text_field :target %>
</p>
<p>
<%= f.label 'What?' %><br />
<%= f.text_field :memo %>
</p>
<p>
<%= f.label 'How much?' %><br />
<%= f.text_field :amount %>
</p>
<p>
<%= f.radio_button :transaction_type, 'debit' %>
<%= f.label :transaction_type_debit, 'Debit' %>
<%= f.radio_button :transaction_type, 'credit' %>
<%= f.label :transaction_type_credit, 'Credit' %>
</p>
<p><%= f.submit "Submit" %></p>
<% end %>
</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-controller0Functional testing redirection in a Rails controllerMark A. Nicolosi2009-05-18T22:08:08Z2009-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#1725677Comment by Mark A. Nicolosi on Preventing reflow when using jQuery UI "size" effectMark A. Nicolosi2009-11-13T22:58:35Z2009-11-13T22:58:35ZI 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-effectComment by Mark A. Nicolosi on Preventing reflow when using jQuery UI "size" effectMark A. Nicolosi2009-11-13T22:57:36Z2009-11-13T22:57:36ZSeveral answers were helpful (your included). I've been busy and put off this "shiny" 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#1686220Comment by Mark A. Nicolosi on Preventing reflow when using jQuery UI "size" effectMark A. Nicolosi2009-11-06T17:39:07Z2009-11-06T17:39:07ZYeah, not any noticable difference for me. Thanks.http://stackoverflow.com/questions/1671633/preventing-reflow-when-using-jquery-ui-size-effect/1685996#1685996Comment by Mark A. Nicolosi on Preventing reflow when using jQuery UI "size" effectMark A. Nicolosi2009-11-06T17:34:12Z2009-11-06T17:34:12ZThat 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#1628584Comment by Mark A. Nicolosi on Git: Move recent commit to a new branchMark A. Nicolosi2009-10-27T03:29:43Z2009-10-27T03:29:43ZPerfect, thanks.http://stackoverflow.com/questions/1602132/how-to-dry-this-snippet-of-ruby-code/1602178#1602178Comment by Mark A. Nicolosi on How to DRY this snippet of Ruby code?Mark A. Nicolosi2009-10-21T17:05:09Z2009-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#1513763Comment by Mark A. Nicolosi on Click event for div with two floated elements on IE6Mark A. Nicolosi2009-10-03T14:02:32Z2009-10-03T14:02:32ZAwww. 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-ie6Comment by Mark A. Nicolosi on Click event for div with two floated elements on IE6Mark A. Nicolosi2009-10-03T14:00:39Z2009-10-03T14:00:39ZThe 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#1513763Comment by Mark A. Nicolosi on Click event for div with two floated elements on IE6Mark A. Nicolosi2009-10-03T13:46:39Z2009-10-03T13:46:39ZCool, 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#1512203Comment by Mark A. Nicolosi on What is the down migration for adding a polymorphic referenceMark A. Nicolosi2009-10-03T02:08:47Z2009-10-03T02:08:47ZOops, 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#1507390Comment by Mark A. Nicolosi on jQuery UI tabs loading first as <ul> then as tabsMark A. Nicolosi2009-10-02T02:12:47Z2009-10-02T02:12:47ZIf 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#1443032Comment by Mark A. Nicolosi on css positioning problem show different result in different browserMark A. Nicolosi2009-09-18T22:34:15Z2009-09-18T22:34:15ZI'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#1442000Comment by Mark A. Nicolosi on fastest sortable javascript html tableMark A. Nicolosi2009-09-18T00:23:37Z2009-09-18T00:23:37ZIf 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#1382281Comment by Mark A. Nicolosi on For personalized page, which word should be used -- "your" or "my"?Mark A. Nicolosi2009-09-05T02:26:37Z2009-09-05T02:26:37Z"My computer" is gone from Windows Vista and 7...http://stackoverflow.com/questions/1355194/how-do-i-split-a-large-file-in-unix-repeatedly/1355221#1355221Comment by Mark A. Nicolosi on How do I split a large file in unix repeatedly?Mark A. Nicolosi2009-08-30T23:43:33Z2009-08-30T23:43:33ZI think mine may give problems if the length is too large. Besides dd's well-tested.