User Rory Fitzpatrick - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T05:24:16Zhttp://stackoverflow.com/feeds/user/270http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150653/java-obfuscation-proguard-yguard-other3Java obfuscation - ProGuard/yGuard/other?Rory Fitzpatrick2008-09-29T21:03:07Z2009-12-05T20:03:27Z
<p>This is along similar lines as these recent questions:</p>
<p><a href="http://stackoverflow.com/questions/93290/best-java-obfuscation-application-for-size-reduction">http://stackoverflow.com/questions/93290/best-java-obfuscation-application-for-size-reduction</a>
<a href="http://stackoverflow.com/questions/149937/creating-non-reverse-engineerable-java-programs">http://stackoverflow.com/questions/149937/creating-non-reverse-engineerable-java-programs</a></p>
<p>However, one ends up recommending yGuard and the other ProGuard but neither mention both. I wonder if we could get a comparison of each one and hear peoples experiences from both sides of the fence. Looking at this <a href="http://proguard.sourceforge.net/alternatives.html" rel="nofollow">comparison chart</a> on the ProGuard website its clearly angled towards ProGuard. But what about real-world experience of each - which one produces smaller output? which one is harder to decompile from? what Java versions are supported by each?</p>
<p>Personally I'm particularly interested from a J2ME point of view but please don't limit the discussion to that.</p>
http://stackoverflow.com/questions/1819808/attributes-add-onclick-event-in-c-code-behind/1820217#18202170Answer by Rory Fitzpatrick for Attributes.Add Onclick Event in c# code behindRory Fitzpatrick2009-11-30T14:42:22Z2009-11-30T14:42:22Z<p>To expand on <a href="http://stackoverflow.com/questions/1819808/attributes-add-onclick-event-in-c-code-behind/1820140#1820140">Michel's</a> answer, you're event adding should be correct but you need to set the id selector differently as ASP.NET changes the id that gets sent to the client:</p>
<pre><code>txtbxHowMany.Attributes.Add("onclick", string.Format("document.getElementById('{0}').innerText='';", tbxProdAC.ClientID));
</code></pre>
http://stackoverflow.com/questions/1716246/jquery-give-element-same-width-as-previous-sibling/1716264#17162641Answer by Rory Fitzpatrick for [jQuery] give element same width as previous siblingRory Fitzpatrick2009-11-11T16:17:21Z2009-11-11T16:17:21Z<pre><code>$('.list').each(function() {
var width = $(this).prev().width();
$(this).width(width);
}):
</code></pre>
http://stackoverflow.com/questions/1681134/detecting-redirect-in-iactionfilter-onactionexecuted-reliably0Detecting redirect in IActionFilter.OnActionExecuted reliablyRory Fitzpatrick2009-11-05T15:05:00Z2009-11-05T23:28:44Z
<p>I have an <code>IActionFilter</code> that does something in <code>OnActionExecuted</code>, however I don't want to perform this action when the controller result performs a redirect.</p>
<p>My initial thought was to check the type of the <code>ActionResult</code> as either <code>RedirectResult</code> or <code>RedirectToRouteResult</code>, but this isn't reliable as any type of result can perform a redirect (indeed I have two custom ones that do).</p>
<p>Is there another way I can detect when this happens or is it impossible since you won't know about the redirect until the action executes (which is too late to do what I want)?</p>
<p>Perhaps just checking for <code>ViewResult</code> and <code>PartialViewResult</code> would be more reliable.</p>
http://stackoverflow.com/questions/1672879/can-you-use-the-after-pseudo-element-to-add-html/1672937#16729370Answer by Rory Fitzpatrick for Can you use the :after pseudo element to add html?Rory Fitzpatrick2009-11-04T10:31:35Z2009-11-04T10:31:35Z<p>See this questiosn: <a href="http://stackoverflow.com/questions/190396/adding-html-entities-using-css-content">Adding HTML entities using CSS content</a></p>
<p>Although based on other answers it sounds like even that won't work...</p>
http://stackoverflow.com/questions/1589763/asp-net-mvc-2-preview-2-and-spark/1672903#16729030Answer by Rory Fitzpatrick for asp.net mvc 2 preview 2 and SparkRory Fitzpatrick2009-11-04T10:26:20Z2009-11-04T10:26:20Z<p>Spark looks for a constraint or default value key "area" in a route to determine the view location. MVC 2 area support does not add this by default, you have to do it when declaring your area:</p>
<pre><code>public class AdminRoutes : AreaRegistration
{
public override string AreaName
{
get { return "admin"; }
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"admin_default",
"Admin/{controller}/{action}/{id}",
new { controller = "Dashboard", action = "Index", id = "", area = "admin" },
new [] { "MyProject.Areas.Admin.Controllers" });
}
}
</code></pre>
<p>Note the <code>area = "admin"</code> inside the defaults object.</p>
http://stackoverflow.com/questions/19011/best-practice-for-storing-large-amounts-of-data-with-j2me2Best practice for storing large amounts of data with J2MERory Fitzpatrick2008-08-20T22:42:04Z2009-11-02T09:55:39Z
<p>I am developing a J2ME application that has a large amount of data to store on the device (in the region of 1MB but variable). I can't rely on the file system so I'm stuck the Record Management System (RMS), which allows multiple record stores but each have a limited size. My initial target platform, Blackberry, limits each to 64KB.</p>
<p>I'm wondering if anyone else has had to tackle the problem of storing a large amount of data in the RMS and how they managed it? I'm thinking of having to calculate record sizes and split one data set accross multiple stores if its too large, but that adds a lot of complexity to keep it intact.</p>
<p>There is lots of different types of data being stored but only one set in particular will exceed the 64KB limit.</p>
http://stackoverflow.com/questions/1583347/j2me-lcdui-can-i-manipulate-my-gui-in-a-worker-thread/1583426#15834261Answer by Rory Fitzpatrick for J2ME lcdui: Can I manipulate my GUI in a worker thread?Rory Fitzpatrick2009-10-17T22:50:05Z2009-10-17T22:50:05Z<p>LCDUI is a bit of a funny one, what you can and can't do often depends on the implementation. I've written apps for BlackBerry that don't have a problem with accessing UI objects from a background thread (except the usual threading problems that you create yourself), but I'm pretty sure some other platforms will forbid this.</p>
<p>If you're concerned about this, or it's causing you issues, you might want to look at using <code>javax.microedition.lcdui.Display.callSerially(Runnable)</code>. This executes the given <code>Runnable</code> object in the UI thread (if there is such a thing in LCDUI) and serializes it with other UI events and paint operations. You can read more about it in the <a href="http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/lcdui/Display.html#callSerially%28java.lang.Runnable%29" rel="nofollow">J2ME API docs</a>.</p>
http://stackoverflow.com/questions/1583373/switching-from-tables-to-divs-with-css/1583396#15833962Answer by Rory Fitzpatrick for Switching from tables to divs with CSSRory Fitzpatrick2009-10-17T22:37:21Z2009-10-17T22:37:21Z<p>Sorry to be blunt, but you're going about this the wrong way. The question isn't one of 'tables vs divs' it's one of 'tables vs web-standards'. It's very tempting when you start out with CSS to wrap everything in a <code><div></code> and be done with it, when really the point is to use the correct HTML element to represent the data it contains, and use CSS to style it.</p>
<p>With that in mind, what is the actual content of the page? Is it a list of data? A series of paragraphs? Maybe it is actually tabular data, in which case a table is the right choice? Once you've determined that, and wrote the appropriate HTML, then you can start on the CSS. Sometimes you may have to add extra HTML elements to achieve the style you need, that's okay as long as you've already hashed out the structure and thought long and hard about such elements.</p>
http://stackoverflow.com/questions/1583363/how-to-unit-test-private-methods-in-bdd-tdd/1583383#15833831Answer by Rory Fitzpatrick for How to unit test private methods in BDD / TDD?Rory Fitzpatrick2009-10-17T22:30:36Z2009-10-17T22:30:36Z<p>You should only be testing the external API of your classes, i.e. the public methods. If your tests aren't hitting code in the private methods then either you need to write more tests or refactor the class.</p>
<p>The whole point of testing an API, especially one that will be distributed to third parties, is that you can change the internal structure of the class as much as you want, as long as you don't break the external contract of it's public methods.</p>
<p>As you've identified, this is where BDD comes into play over 'traditional' TDD using mock classes, where every method call has to be set-up in advance for the test. I'm not an expert on either of these, hopefully someone else can answer that one better than I can.</p>
http://stackoverflow.com/questions/1580456/how-to-point-to-css-default-class-using-the-class-attribute/1580512#15805123Answer by Rory Fitzpatrick for How to point to CSS default class using the class attributeRory Fitzpatrick2009-10-16T21:24:39Z2009-10-16T21:24:39Z<p>An empty class attribute is only invalid under XHTML 1.1. Using a DOCTYPE of XHTML 1.0, HTML 4.01 and HTML 5 is will validate fine.</p>
<p>I wouldn't get too hung up on validation, it's very useful but isn't the be-all and end-all of web development. The only instance where I absolutely make sure my HTML 100% validates is during the very initial HTML and CSS build, since at that stage invalid markup can cause havock with CSS. Once I start adding server-side and Javascript interactions I'm not overly concerned with it.</p>
<p>Of course, you shouldn't just blatently ignore it, but as long as you know what the validation errors are, understand them, and have made a concsious decision not to fix them, I think that's okay.</p>
http://stackoverflow.com/questions/1577631/rails-form-with-multiple-nested-models-causes-issues-with-radio-groups1Rails form with multiple nested models causes issues with radio groupsRory Fitzpatrick2009-10-16T11:54:54Z2009-10-16T17:47:56Z
<p>I'm having a problem with nested model forms that contain radio buttons, when I have multiple models all the radio buttons are treated as being in the same group.</p>
<p>My model contains a has_many relationship like this:</p>
<pre><code>class Order < ActiveRecord::Base
has_many :order_items
accepts_nested_attributes_for :order_items
end
Class OrderItem < ActiveRecord::Base
belongs_to :order
end
</code></pre>
<p>I then have a partial that creates the <code>OrderItem</code> model form using</p>
<pre><code><% fields_for "order[order_items_attributes][]", order_item do |f| %>
</code></pre>
<p>And contained within this form is a group of radio buttons created inside a for loop with</p>
<pre><code>radio_button_tag "order[order_items_attributes][][colour_id]", "#{colour.id}"
</code></pre>
<p>This works fine when there is only one child, however as soon as I insert multiple children all the radio buttons belong to the same group as they all have the same attribute <code>name="order[order_items_attributes][][colour_id]"</code>. This is all on a new model form so I can't use array indexes (<code>name="order[order_items_attributes][0][colour_id]"</code>) as Rails gives the error <code>expected Hash (got Array) for param 'order_items_attributes'</code> <em>I was wrong about that last part, error was because I was mixing indexed and non-indexed name attributes. Adding index values was the key to solving this.</em></p>
<p>Here is the contents of the <code>params[:order]</code> hash when only one nested model is present:</p>
<pre><code>{"order_items_attributes"=>
[{"size"=>"Small",
"colour_id"=>"4"],
"first_name"=>"sdf",
"last_name"=>"sdf",
"email"=>"sdfg@sgf.com"}
</code></pre>
<p>And when two nested models are present:</p>
<pre><code>{"order_items_attributes"=>
[{"size"=>"Small",
"colour_id"=>"4"},
{"size"=>"Small"}],
"first_name"=>"sdf",
"last_name"=>"sdf",
"email"=>"sdfg@sgf.com"}
</code></pre>
<p>As you can see only the first <code>order_item</code> has it's colour_id attribute. This occurs regardless of which model the selected radio button belonged to (which makes sense).</p>
<p><strong>How can I render the radio buttons such that it creates a separate group for each child model?</strong></p>
http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-when-javascript-is-disabled/1577707#15777072Answer by Rory Fitzpatrick for How to hide parts of HTML when JavaScript is disabled?Rory Fitzpatrick2009-10-16T12:14:48Z2009-10-16T12:14:48Z<p>If the content only makes sense when Javascript is enabled, then it should be inserted by the Javascript directly rather than being rendered. This could either be done by simply having HTML templates as strings within your Javascript, or using Ajax if the HTML is more complex.</p>
<p>As mentioned by <a href="http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-from-users-without-javascript/1577655#1577655">Reinis I.</a> this is the idea of <a href="http://en.wikipedia.org/wiki/Progressive%5Fenhancement" rel="nofollow">Progressive Enhancement</a>.</p>
<p>Regarding the CSS techniques of using a class name on the body tag, I would advise doing this the other way round and adding a '<code>js-enabled</code>' class to the body tag with Javascript that would alter the page CSS. This fits in with my above comment about keeping all initial HTML 'non-Javascript friendly'.</p>
http://stackoverflow.com/questions/1575642/placing-a-small-arrow-over-a-letter-with-css/1575650#15756502Answer by Rory Fitzpatrick for Placing a small arrow over a letter with cssRory Fitzpatrick2009-10-15T23:22:27Z2009-10-15T23:22:27Z<p>What you're specifically proposing would have to be done with Javascript, however you could do it with CSS if you used a background image for the arrow.</p>
<p>Something like:</p>
<pre><code>span.vector {
background: url(arrow.png) no-repeat top;
}
</code></pre>
http://stackoverflow.com/questions/1574961/how-much-faster-is-it-to-use-inline-base64-images-for-a-web-site-than-just-linkin/1575148#15751481Answer by Rory Fitzpatrick for How much faster is it to use inline/base64 images for a web site than just linking to the hard file?Rory Fitzpatrick2009-10-15T21:19:32Z2009-10-15T21:19:32Z<blockquote>
<p>How much faster is it</p>
</blockquote>
<p>Define 'faster'. Do you mean HTTP performance (see below) or rendering performance?</p>
<blockquote>
<p>You no longer gain the benefit of caching</p>
</blockquote>
<p>Actually, if you're doing this in a CSS file it will still be cached. Of course, any changes to the CSS will invalidate the cache.</p>
<p>In some situations this could be used as a huge performance boost over many HTTP connections. I say some situations because you can likely take advantage of techniques like image sprites for most stuff, but it's always good to have another tool in your arsenal!</p>
http://stackoverflow.com/questions/354547/print-ruby-object-members2Print Ruby object membersRory Fitzpatrick2008-12-09T22:55:24Z2009-10-06T23:54:29Z
<p>When I'm running a simple Ruby script, whats the easiest way to dump an object's fields to the console? I'm looking for something similar to PHP's <code>print_r()</code> that will work with arrays as well.</p>
http://stackoverflow.com/questions/1431658/naming-conventions-for-rails-migrations1Naming conventions for Rails migrationsRory Fitzpatrick2009-09-16T08:22:45Z2009-09-16T10:18:40Z
<p>Is there a best practice naming convention for Rails migrations, particularly when editing a model?</p>
<p>e.g. if I'm adding a column <code>bar</code> to the <code>Foo</code> model, should I name it <code>edit_foo</code> or <code>add_bar_to_foo</code></p>
<p>I'm assuming if I'm editing mutliple models then I should create multiple migrations, but what if I'm making multiple modifications to a single model, do I name it <code>add_bar_remove_x_edit_y_to_foo</code>?</p>
http://stackoverflow.com/questions/1356633/multiple-one-to-many-associations-in-one-model0Multiple one-to-many associations in one modelRory Fitzpatrick2009-08-31T09:28:00Z2009-09-10T11:30:36Z
<p>Given two model classes, <code>Foo</code> and <code>Bar</code>, I want Foo to have 3 references to separate instances of Bar using 3 different property names, with the foreign key on the Foo table. Bar will be managed separately and can belong to many instances of Foo. This somewhat explains it, obviously has_one is the wrong association to use (I think?):</p>
<pre><code>Foo
has_one :prop_a, :class_name => "Bar"
has_one :prop_b, :class_name => "Bar"
has_one :prop_c, :class_name => "Bar"
Bar
</code></pre>
<p>There are 3 potential types of Bar, denoted by a <code>bar_type</code> string field, each reference on Foo corresponds to one of these. e.g. <code>Foo.prop_a</code> references an instance of Bar with <code>bar_type</code> = 'type_a'. How do I create this type of association in Rails?</p>
http://stackoverflow.com/questions/1321834/styling-all-anchor-tags-within-a-td-element/1321847#1321847-1Answer by Rory Fitzpatrick for Styling All Anchor Tags Within A <td> ElementRory Fitzpatrick2009-08-24T11:28:18Z2009-08-24T11:28:18Z<pre><code>.leftMemberCol a
{
color:#E3E3CA;
}
</code></pre>
<p>This targets all <code><a></code> elements that are descendents of <code>.leftMemberCol</code></p>
http://stackoverflow.com/questions/1319532/which-attribute-of-a-div-tag-should-reference-the-css/1319546#13195460Answer by Rory Fitzpatrick for Which attribute of a <div> tag should reference the CSS?Rory Fitzpatrick2009-08-23T20:59:09Z2009-08-23T20:59:09Z<p>To refer to an element's ID you use the <code>#</code> selector, to refer to it's class name you use the <code>.</code> selector.</p>
<p>So in your example you would use</p>
<pre><code>#repair_complete {
display:none;
}
</code></pre>
<p>or</p>
<pre><code>.hidden {
display:none;
}
</code></pre>
http://stackoverflow.com/questions/1164213/how-to-stop-event-bubbling-on-checkbox-click0How to stop event bubbling on checkbox clickRory Fitzpatrick2009-07-22T09:55:38Z2009-07-22T10:12:44Z
<p>I have a checkbox that I want to perform some Ajax action on the click event, however the checkbox is also inside a container with it's own click behaviour that I don't want to run when the checkbox is clicked. This sample illustrates what I want to do:</p>
<pre><code><html lang="en">
<head>
<title>Test</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#container').addClass('hidden');
$('#header').click(function() {
if($('#container').hasClass('hidden')) {
$('#container').removeClass('hidden');
} else {
$('#container').addClass('hidden');
}
});
$('#header input[type=checkbox]').click(function(event) {
// Do something
});
});
</script>
<style type="text/css">
#container.hidden #body {
display:none;
}
</style>
</head>
<body>
<div id="container">
<div id="header">
<h1>Title</h1>
<input type="checkbox" name="test" />
</div>
<div id="body">
<p>Some content</p>
</div>
</div>
</body>
</html>
</code></pre>
<p>However, I can't figure out how to stop the event bubbling without causing the default click behaviour (checkbox becoming checked/unchecked) to not run.</p>
<p>Both of the following stop the event bubbling but also don't change the checkbox state:</p>
<pre><code>event.preventDefault();
return false;
</code></pre>
http://stackoverflow.com/questions/1149566/generate-graphs-for-website/1149582#11495820Answer by Rory Fitzpatrick for generate graphs for website?Rory Fitzpatrick2009-07-19T09:56:53Z2009-07-19T09:56:53Z<p>The Flash-based charts by <a href="http://amcharts.com/" rel="nofollow">amCharts</a> are pretty nice, you'd have to write your own server-side .NET code to initialise them or use the WPF version with Silverlight.</p>
<p>I've also used <a href="http://www.dundas.com/" rel="nofollow">Dundas</a> charts before which although I didn't particularly like they can do most things you'd ever need from a graph.</p>
http://stackoverflow.com/questions/1097459/is-it-impossible-to-separate-javascript-from-html/1097671#10976712Answer by Rory Fitzpatrick for Is it impossible to separate javascript from HTML?Rory Fitzpatrick2009-07-08T12:09:10Z2009-07-08T12:09:10Z<p>I've had to do something similar before and also wasn't happy with parsing the value out the ID attribute. The best thing I can suggest is that you use another attribute for the value you need, like the <code>rel</code> attribute:</p>
<pre><code><input type='text' id='title_33' class='title' rel='33' />
</code></pre>
<p>Or depending on how religious you are about validation, just use a custom attribute:</p>
<pre><code><input type='text' id='title_33' class='title' myval='33' />
</code></pre>
http://stackoverflow.com/questions/1093065/capture-right-click-on-html-div/1093097#10930971Answer by Rory Fitzpatrick for Capture Right Click on HTML DIVRory Fitzpatrick2009-07-07T15:42:07Z2009-07-07T15:42:07Z<p>Take a look at this: <a href="http://www.quirksmode.org/js/events%5Fproperties.html" rel="nofollow">Javascript - event properties</a>. Value for right mouse button is <code>2</code>, although also note that it recommends using <code>mousedown</code> or <code>mouseup</code> events rather than click.</p>
<p>Here is a sample from the page showing right click detection:</p>
<pre><code>function doSomething(e) {
var rightclick;
if (!e) var e = window.event;
if (e.which) rightclick = (e.which == 3);
else if (e.button) rightclick = (e.button == 2);
alert('Rightclick: ' + rightclick); // true or false
}
</code></pre>
http://stackoverflow.com/questions/1084329/asp-net-mvc-return-redirect-and-viewdata/1084499#10844995Answer by Rory Fitzpatrick for ASP.NET MVC: return Redirect and ViewDataRory Fitzpatrick2009-07-05T17:42:25Z2009-07-05T17:42:25Z<p>You probably want to use the <code>TempData</code> property, this will be persisted across to the next HTTP request.</p>
http://stackoverflow.com/questions/1084469/how-do-i-get-around-the-ie-css-percentage-rounding-problem/1084479#10844791Answer by Rory Fitzpatrick for How do I get around the IE CSS percentage rounding problem?Rory Fitzpatrick2009-07-05T17:33:00Z2009-07-05T17:33:00Z<p>In a situation like this, I would tend to get round the problem using an IE-only stylesheet that fudges the values until they work. In this case, just set the widths to 33%, it won't be perfect but then that's just the nature of the web.</p>
http://stackoverflow.com/questions/1084463/design-a-gui-for-a-j2me-app/1084474#10844741Answer by Rory Fitzpatrick for Design a GUI for a J2ME appRory Fitzpatrick2009-07-05T17:30:54Z2009-07-05T17:30:54Z<p>Your question is a bit vague to give a specific aswer, but you might want to check out <a href="https://lwuit.dev.java.net/" rel="nofollow">LWUIT</a> or <a href="http://www.j2mepolish.org/cms/" rel="nofollow">Polish</a>, you can develop both with either Eclipse or Netbeans.</p>
<p>As far as designing GUIs go, neither IDE will help from a visual perspective. J2ME UI development is all done in code, beyond creating any initial graphics in a proper graphics editor you don't get to see your output until you test.</p>
<p>Read up on the <a href="http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/lcdui/package-summary.html" rel="nofollow">LCDUI package documentation</a> which explains how the UI classes work and the differences between the 'High-level' and 'low-level' APIs.</p>
http://stackoverflow.com/questions/1084396/how-do-i-set-up-my-environment-to-debug-on-a-blackberry-device/1084461#10844610Answer by Rory Fitzpatrick for How do I set up my environment to debug on a Blackberry device?Rory Fitzpatrick2009-07-05T17:22:25Z2009-07-05T17:22:25Z<p>This is something we struggled with a lot at my old company. I don't think it's possible to do with Eclipse, you have to use the BB JDE, creating the necessary project files against the same code base. I could be wrong on that one as we weren't using the RIM Eclipse plugin, just building it all with Ant.</p>
<p>Personally I never managed to get passed "debugger attaching..." on the device, although I believe a colleague got it to connect but found it too slow to be usable (if you think how slow the emulator can be sometimes...). I know our ant build file had a target for building a version specifically for the JDE profiler, although that was only against the emulator.</p>
<p>In the end we resorted to using our own function debugging code that manually logged entries, exits, parameters and run times, sending the result to a special server.</p>
<p>Sorry if that doesn't help much, but that was our experience.</p>
http://stackoverflow.com/questions/1082059/which-php-frameworks-are-used-by-corporations/1082085#10820856Answer by Rory Fitzpatrick for Which PHP frameworks are used by corporations?Rory Fitzpatrick2009-07-04T12:06:55Z2009-07-04T12:06:55Z<blockquote>
<p>Is this common when dealing with PHP?</p>
</blockquote>
<p>In my experience, unfortunately it is. This is of course a gross generalization, but people who tend to learn PHP as their first programming language don't learn the essentials of maintainable software development and often don't really know how to write good code. I think this is a failing of the PHP community, where historically most learning resources don't emphasize good practices (probably because the authors didn't know any better!). You can of course write good code with PHP, as long as you understand underlying programming principles.</p>
<p>Companies will often start out with a hap-hazzard code base of PHP scripts that get re-used and gradually extended from project to project (often without source control!). The companies that know what they're doing and take it seriously will evolve this into some kind of in-house framework, or I have often found they'll move onto something without the historical crapness of PHP, like Django or Ruby on Rails.</p>
<p>If you're just starting out, there are several decent MVC frameworks that will form a good base for all your developers to learn and use. In no particular order:</p>
<ul>
<li><a href="http://cakephp.org/" rel="nofollow">CakePHP</a> </li>
<li><a href="http://codeigniter.com/" rel="nofollow">CodeIgniter</a></li>
<li><a href="http://framework.zend.com/" rel="nofollow">Zend Framework</a></li>
</ul>
<p>There are of course others as well.</p>
<p>That said, as always it depends on the project. Sometimes a framework either won't make sense or will be overkill, othertimes you're better off using a pre-built product (like a CMS) and building extensions to it.</p>
http://stackoverflow.com/questions/1076988/how-can-i-prevent-the-user-from-navigating-back-to-a-previous-page/1077050#10770500Answer by Rory Fitzpatrick for How can I prevent the user from navigating back to a previous page?Rory Fitzpatrick2009-07-02T22:46:08Z2009-07-02T22:46:08Z<p>There is no JavaScript solution, it would have to be implemented server side.</p>
http://stackoverflow.com/questions/1886837/array-under-another-array-in-javascript/1886856#1886856Comment by Rory Fitzpatrick on Array under another array in javascript.Rory Fitzpatrick2009-12-11T15:48:33Z2009-12-11T15:48:33Zvar a = [];
a.push({username: "foo", album: "3"})http://stackoverflow.com/questions/606607/mapping-collection-of-strings-with-nhibernate/610772#610772Comment by Rory Fitzpatrick on Mapping collection of strings with NHibernateRory Fitzpatrick2009-12-11T12:53:58Z2009-12-11T12:53:58ZCame across this again recently, here is the FluentNHibernate mapping I used based on your XML mapping:
mapping.HasMany(x => x.Synonyms).AsBag().Element("ChapterCode", m => m.Type<string>());http://stackoverflow.com/questions/1867012/how-can-i-convert-an-image-to-byte-array-in-j2meComment by Rory Fitzpatrick on How can I convert an Image to byte array in J2ME?Rory Fitzpatrick2009-12-08T13:38:59Z2009-12-08T13:38:59ZYou need to show some code about the thumbnail conversion. What type of object are you left with? What J2ME/3rd party API are you using?http://stackoverflow.com/questions/1681134/detecting-redirect-in-iactionfilter-onactionexecuted-reliablyComment by Rory Fitzpatrick on Detecting redirect in IActionFilter.OnActionExecuted reliablyRory Fitzpatrick2009-11-06T10:31:43Z2009-11-06T10:31:43ZIn this case I can safely ignore those types, I'm only interested in when a view is being rendered (which I've only really just realised, so it somewhat renders my question a mute point...)http://stackoverflow.com/questions/1681134/detecting-redirect-in-iactionfilter-onactionexecuted-reliably/1684306#1684306Comment by Rory Fitzpatrick on Detecting redirect in IActionFilter.OnActionExecuted reliablyRory Fitzpatrick2009-11-06T10:29:49Z2009-11-06T10:29:49ZAuthorizeAttribute executes before the controller is invoked, I have custom ActionResults that are being returned by my controller action. How can I change the result when ActionResult::ExecuteResult is called?http://stackoverflow.com/questions/1681134/detecting-redirect-in-iactionfilter-onactionexecuted-reliably/1681619#1681619Comment by Rory Fitzpatrick on Detecting redirect in IActionFilter.OnActionExecuted reliablyRory Fitzpatrick2009-11-05T17:17:48Z2009-11-05T17:17:48ZMy solution at the minute is to check is the result is of type ViewResultBase, which covers ViewResult and PartialViewResult. I can't yet think of any other result that I might want to cover, other than something I'd add myself.http://stackoverflow.com/questions/1673958/javascript-can-i-perform-a-getxmlhttprequestobject-to-another-domainComment by Rory Fitzpatrick on JavaScript - can I perform a getXmlHttpRequestObject to another domain?Rory Fitzpatrick2009-11-04T14:11:03Z2009-11-04T14:11:03ZAre you in control of the resource you're requesting on exampleB.com?http://stackoverflow.com/questions/1625656/how-to-add-rounded-borders-on-a-ahover-in-ul-li-list/1627859#1627859Comment by Rory Fitzpatrick on How to add rounded borders on a a:hover in ul li list?Rory Fitzpatrick2009-10-26T23:32:37Z2009-10-26T23:32:37ZDD_roundies (<a href="http://www.dillerdesign.com/experiment/DD_roundies/" rel="nofollow">dillerdesign.com/experiment/DD_roundies/…</a>) is excellent for adding border-radius to IE.http://stackoverflow.com/questions/1625656/how-to-add-rounded-borders-on-a-ahover-in-ul-li-list/1625993#1625993Comment by Rory Fitzpatrick on How to add rounded borders on a a:hover in ul li list?Rory Fitzpatrick2009-10-26T23:31:29Z2009-10-26T23:31:29ZThat uses a lot of extra, non-semantic markup. I wouldn't recommend it.http://stackoverflow.com/questions/1581489/how-to-design-resolution-independent-css-elements/1581543#1581543Comment by Rory Fitzpatrick on How to design resolution independent CSS elements ?Rory Fitzpatrick2009-10-25T23:59:53Z2009-10-25T23:59:53ZIn the past I've used <a href="http://www.thecounter.com/stats/" rel="nofollow">thecounter.com/stats</a> but looking at them now it looks a bit suspect, seems to be including Chrome as Safari... Me thinks I'll have to go hunting for better source.http://stackoverflow.com/questions/1586360/why-are-js-scripts-usually-place-in-the-header-of-a-document/1586381#1586381Comment by Rory Fitzpatrick on Why are JS scripts usually place in the header of a document?Rory Fitzpatrick2009-10-19T00:57:37Z2009-10-19T00:57:37Z$(document).ready != window.onload, it uses the DOMready event which is fired when the page DOM has been built, onload is generally when the page has rendered (atleast in IE, FF etc. work differently). See jQuery docs on the ready event for more.http://stackoverflow.com/questions/1581489/how-to-design-resolution-independent-css-elements/1581543#1581543Comment by Rory Fitzpatrick on How to design resolution independent CSS elements ?Rory Fitzpatrick2009-10-18T04:29:51Z2009-10-18T04:29:51ZPlease don't use W3Schools as a reference for web stats, their audience is technically minded and not typical of the general web population.http://stackoverflow.com/questions/1582463/table-vs-div-yet-againComment by Rory Fitzpatrick on <table> vs <div> (yet again)Rory Fitzpatrick2009-10-18T04:24:12Z2009-10-18T04:24:12ZIf you're asking the question '<table> vs <div>?' you're doing it wrong. It should be 'meaningless tag-soup vs sematic web-standards'. If you can't get what you want then it's time to face facts and admit that you don't know enough CSS, so either learn more or give it to someone who does.http://stackoverflow.com/questions/1583373/switching-from-tables-to-divs-with-css/1583396#1583396Comment by Rory Fitzpatrick on Switching from tables to divs with CSSRory Fitzpatrick2009-10-18T02:59:25Z2009-10-18T02:59:25ZThen we're into the idea of Progressive Enhancement. Look at the CSS3 property 'border-radius' and it's webkit/mozilla cousins, using those techniques you can target standards compliant browsers today without hacks and still support other browsers albeit with a degraded visual experience. Once those browsers catch up they should start experiencing the same effects.http://stackoverflow.com/questions/1583373/switching-from-tables-to-divs-with-css/1583396#1583396Comment by Rory Fitzpatrick on Switching from tables to divs with CSSRory Fitzpatrick2009-10-17T23:04:30Z2009-10-17T23:04:30ZIn that case I would consider using a repeating image (i.e. wide enough to fit most resolutions but 1px high) and set that as the background to the container div.