User Craig Walker - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T01:23:02Z http://stackoverflow.com/feeds/user/3488 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1661586/how-can-you-check-to-see-if-a-file-exists-on-the-remote-server-in-capistrano/1662277#1662277 0 Answer by Craig Walker for How can you check to see if a file exists (on the remote server) in Capistrano? Craig Walker 2009-11-02T16:28:02Z 2009-11-02T16:28:02Z <p>How about deferring to SFTP?</p> <p>(off-the-cuff code, not tested)</p> <pre><code>require 'net/sftp' Net::SFTP.start("server", "user") do |sftp| stfp.dir.glob("mypath", "myfile") do |entry| p "File exists at #{entry}" end end </code></pre> http://stackoverflow.com/questions/1655970/unit-tests-for-3rd-party-libraries 0 Unit tests for 3rd-party libraries Craig Walker 2009-10-31T23:58:05Z 2009-11-01T21:04:32Z <p>I'm working on my first real-world Rails project. So far, I'm mostly mashing up functionality from 3rd-party libraries. There's a lot of great ones out there, and that's great.</p> <p>I'm wondering about whether writing unit tests around these libraries is necessary/useful or not. For example, I just integrated <a href="http://github.com/norman/friendly%5Fid" rel="nofollow">friendly_id</a> around one of my models. Besides installing the gem and adding it as a project dependency, this extent of this integration amounted to:</p> <pre><code>has_friendly_id :name </code></pre> <p>It Just Worked, and I barely consider this to be "code I wrote". So what should I be writing by way of tests?</p> <p>There's two caveats to my question:</p> <ol> <li>I'm assuming that all of my 3rd-party libraries have appropriate tests of their own -- and so writing new unit tests directly against those libraries looks like repeating code. (If I had to use a poorly-tested library then I'd be less hesitant to write tests for it.) </li> <li>Under Defect-Driven-Testing, I'd definitely write a test the second I encounter a problem. If the test uncovered a bug in the library, then I'd probably submit the test to the maintainer. </li> </ol> <p>Outside of that though... is there much point to testing 3rd-party code?</p> http://stackoverflow.com/questions/1656285/rails-functional-test-of-arbitrary-or-custom-urls 0 Rails Functional Test of Arbitrary or Custom URLs Craig Walker 2009-11-01T03:15:45Z 2009-11-01T16:35:30Z <p>I have a RESTful resource in my Rails app called "Photo". I'm using <a href="http://www.thoughtbot.com/projects/paperclip" rel="nofollow">Paperclip</a> to serve different "styles" of my photos (for thumbnails and the like), and I'm using a custom route to RESTfully access those styles:</p> <pre><code>map.connect "photos/:id/style/*style", :controller =&gt; "photos", :action =&gt; "show" </code></pre> <p>That's working fine, but I want to write a test to make sure it stays that way. </p> <p>I already have a functional test to call the Photo controller's show action (generated by scaffold in fact):</p> <pre><code>test "should show photo" do get :show, :id =&gt; photos(:one).to_param assert_response :success end </code></pre> <p>That tests the execution of the action at the URL "/photo/1". Now I want to test the execution of the URL "/photo/1/style/foo". Unfortunately, I can't seem to get ActionController::TestCase to hit that URL; the get method always wants an action/id and won't accept a URL suffix.</p> <p>How do I go about testing a custom URL?</p> http://stackoverflow.com/questions/1656285/rails-functional-test-of-arbitrary-or-custom-urls/1656381#1656381 0 Answer by Craig Walker for Rails Functional Test of Arbitrary or Custom URLs Craig Walker 2009-11-01T04:23:51Z 2009-11-01T04:23:51Z <p>While checking on @fernyb's answer I found this snippet in <a href="http://api.rubyonrails.org/classes/ActionController/Routing.html" rel="nofollow">the same rdoc</a></p> <blockquote> <p>In tests you can simply pass the URL or named route to get or post. def send_to_jail get '/jail' assert_response :success assert_template "jail/front" end</p> </blockquote> <p>However, when I actually <em>try</em> that, I get an error message:</p> <pre><code>test "should get photo" do get "/photos/1/style/original" assert_equal( "image/jpeg", @response.content_type ) end ActionController::RoutingError: No route matches {:action=&gt;"/photos/1/style/original", :controller=&gt;"photos"} </code></pre> <p>I wonder if I'm doing something wrong.</p> http://stackoverflow.com/questions/1483025/using-a-rails-plugin 0 Using a Rails plugin Craig Walker 2009-09-27T07:32:34Z 2009-10-31T00:00:44Z <p>I want to use Peter Marklund's <a href="http://marklunds.com/articles/one/328" rel="nofollow">html test plugin</a> to automatically validate all of my HTML pages. I'm following his <a href="http://github.com/peter/html%5Ftest/tree/255803d268bda97a4861de6fcf48440c769722f0/README" rel="nofollow">README instructions</a> and have installed the plugin successfully. However, when I use his "assert_validates" method in a test, I get the following error message: </p> <pre><code>NameError: uninitialized constant Html::Test::Validator::RailsTidy </code></pre> <p>To me this looks like the plugin isn't being loaded (and thus the classes/methods aren't avilable). Is there something that I need to do (such as a "require", etc) in order to load/activate a plugin? I haven't done anything besides what I've described above. I get the feeling that there's something general I'm missing rather than something broken in the plugin itself. (If that's not the case, then I'll go to Peter for additional help.)</p> http://stackoverflow.com/questions/1639615/how-do-i-apply-a-css-id-when-the-control-is-runatserver/1639677#1639677 0 Answer by Craig Walker for How do i apply a CSS id when the control is runat=server? Craig Walker 2009-10-28T19:53:21Z 2009-10-28T19:58:49Z <p>I banged my head on this for some time. Eventually I gave up and made my own webform control that allowed me to set the ID as I wanted. Here's a copy/paste of my code:</p> <pre><code>public abstract class BetterHTMLControl : WebControl { private readonly HtmlTextWriterTag _tag; public BetterHTMLControl(HtmlTextWriterTag tag) { _tag = tag; } /** * ASP.NET code uses the ID as the control reference variable name. It then changes * the name to a generated (and ugly) field when rendering the control. */ public override String ID { get { /* * In the end, there can be only one "id" attribute for the element. * ID is set by ASP.NET and may possibly be set in the code afterwards. * HtmlID is typically set in the ASP.NET code, and may be set before or * after ID is set. * * If HtmlID is explicitly set, then we want its value to be used for the * rendered "id" attribute and all other callers of "ID". Thus, check HtmlID * for null; if it's not null, return it instead. */ String statedID; if (_htmlID == null) { statedID = base.ID; } else { statedID = HtmlID; } return statedID; } set { base.ID = value; } } /** * Helper property for within ASP.NET code (where ID is reserved for the reference * name). If HtmlID is set, it takes precedence over the regular ID. The ID * property is then used as the "id" attribute for the rendered element. */ private String _htmlID; public String HtmlID { get { return _htmlID; } set { _htmlID = value; } } private bool _suppressID; public Boolean SuppressID { get { return _suppressID; } set { _suppressID = value; } } private String _innerText; public String InnerText { get { return _innerText; } set { _innerText = value; } } protected override void Render(HtmlTextWriter writer) { if (Visible) { if (!String.IsNullOrEmpty(ID) &amp;&amp; !SuppressID) { Attributes["id"] = ID; } foreach (String attributeName in Attributes.Keys) { String value = Attributes[attributeName]; writer.AddAttribute(attributeName, value); } if (!String.IsNullOrEmpty(CssClass)) { writer.AddAttribute("class", CssClass); } writer.RenderBeginTag(_tag); if (InnerText != null) { writer.WriteEncodedText(InnerText); } else { RenderContents(writer); } writer.RenderEndTag(); } } } </code></pre> <p>I then subclassed this for each tag. It's not the most elegant solution (it's yet another library of HTML-generating classes) but it does give me the control I want.</p> <p>When I want to use a tag, I'll write the following:</p> <pre><code>&lt;%@ Register TagPrefix="myhtml" Assembly="MyAssembly" Namespace="MyNamespace.MyHTML" %&gt; &lt;myhtml:Div runat="server" ID="_variableName" HtmlID="html_id_value" /&gt; </code></pre> <p>This would result in:</p> <pre><code>&lt;div id="html_id_value"&gt;&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/663124/what-is-the-sql-server-clr-integration-life-cycle 1 What is the SQL Server CLR Integration Life Cycle? Craig Walker 2009-03-19T17:19:05Z 2009-10-28T19:04:17Z <p>How are CLR (.NET) objects managed in SQL Server? </p> <p>The entry point to any CLR code from SQL Server is a static method. Typically you'll only create objects that exist within the scope of that method. However, you could conceivably store references to objects in static members, letting them escape the method call scope. If SQL Server retains these objects in memory across multiple stored procedure/function calls, then they could be useful for caching applications -- although they'd be more dangerous too.</p> <p>How does SQL Server treat this? Does it even allow (non-method) static members? If so, how long does it retain them in memory? Does it garbage collect everything after every CLR call? How does it handle concurrency?</p> http://stackoverflow.com/questions/1628626/linq-to-entities-mixed-graph-of-entities-entitykeys-attached-and-new-objects 0 Linq to Entities: Mixed graph of Entities, EntityKeys, Attached, and New Objects Craig Walker 2009-10-27T03:32:19Z 2009-10-27T08:46:20Z <p>In my data model I have a fairly common division between my objects/tables/data:</p> <ul> <li>"Transactional" entities that represent the work that is being done by the system. These entities are created by the system and are only important in specific contexts. They are regularly created on the fly. (Aside: Is there a proper name for this type of entity?)</li> <li>"Data Dictionary" entities that represent common properties of the transactional entities. These are defined irregularly (mostly at the start of the project) and have a much more static lifecycle. They are typically created by me.</li> </ul> <p>So, for example, I might have a User (transactional) entity and a UserType (data dictionary) entity.</p> <p>I want to (hard)code references to instances of the Data Dictionary entities into my code. This gives me the ability to code business logic with an easy-to-understand language. (So, for example, I might have a UserType of "Plain" and a UserType of "Admin", and then a rule that says "allow access only if the User's UserType equals Admin").</p> <p>I'm using LINQ-to-Entities as my data access technology/ORM. To implement the Data Dictionary references, I'm storing EntityKeys. My understanding is that they're detached from the object context and so are suitable for this purpose. (As they don't contain entity state, I also don't have to worry about that state going stale.)</p> <p>However, this is giving me problems when I try to add a new transactional entity with a DD-EntityKey-reference. Continuing my example, I'm doing this:</p> <pre><code>UserEntities userEntities = new UserEntitites() User user = new User() user.UserType = new UserType() user.UserType.EntityKey = adminEntityKey userEntities.AddToUser(user) </code></pre> <p>...and this gives me the following error:</p> <blockquote> <p>System.InvalidOperationException : The object cannot be added to the ObjectStateManager because it already has an EntityKey. Use ObjectContext.Attach to attach an object that has an existing key.</p> </blockquote> <p>If I try to call userEntities.Attach(user) instead of AddToUser, I get this:</p> <blockquote> <p>System.InvalidOperationException : An object with a null EntityKey value cannot be attached to an object context.</p> </blockquote> <p>Both of these errors make sense, given the mixing of new and preexisting entities that I'm doing. What I'm not sure about is how to get around this issue. Is there some way I can have detached references to DD-entities and assign them to new attached objects without requiring me to load the entire DD-entity state?</p> http://stackoverflow.com/questions/104953/position-an-html-element-relative-to-its-container-using-css 6 Position An HTML Element Relative to its Container Using CSS Craig Walker 2008-09-19T19:48:22Z 2009-10-19T13:44:41Z <p>I'm trying to create a horizontal 100% stacked-bar graph using HTML and CSS. I'd like to create the bars using DIVs with background colors and percentage widths depending on the values I want to graph. I also want to have a grid lines to mark an arbitrary position along the graph.</p> <p>In my experimentation, I've already gotten the bars to stack horizontally by assigning the css property float: left. However, I'd like to avoid that, as it really seems to mess with the layout in confusing ways. Also, the grid lines don't seem to work very well when the bars are floated.</p> <p>I think that CSS positioning should be able to handle this, but I don't yet know how to do it. I want to be able to specify the position of several elements relative to the top-left corner of their container. I run into this sort of issue regularly (even outside of this particular graph project), so I'd like a method that's:</p> <ol> <li>Cross-browser (ideally without too many browser hacks)</li> <li>Runs in Quirks mode</li> <li>As clear/clean as possible, to facilitate customizations</li> <li>Done without Javascript if possible.</li> </ol> http://stackoverflow.com/questions/1583689/asset-urls-without-cache-timestamps-in-rails 1 Asset URLs without cache timestamps in Rails Craig Walker 2009-10-18T01:17:09Z 2009-10-18T13:41:21Z <p>I'm using a transparent PNG with the <a href="http://code.google.com/p/ie7-js/" rel="nofollow">Google IE fix</a> library. This fix only works on images urls that end in "-trans.png".</p> <p>Rails' timestamp-based caching is causing problems with this. When I use image_path() to generate the URL for the image, it appends the file's last-modified timestamp to the image's query string. Since the URL no longer ends in "-trans.png" (instead ending in "?" plus a long integer), Google's javascript fails to activate.</p> <p>I don't want to <a href="http://stackoverflow.com/questions/183017/removing-cache-busting-in-rails-production/185396#185396">disable asset caching entirely</a>; just on certain images. I also don't want to hardcode a relative URL to the root of the server. I want to use Rails to generate the URL correctly if the site is deployed to the server root or an (unknown) subdirectory. </p> <p>What options do I have?</p> http://stackoverflow.com/questions/1583689/asset-urls-without-cache-timestamps-in-rails/1583857#1583857 0 Answer by Craig Walker for Asset URLs without cache timestamps in Rails Craig Walker 2009-10-18T02:52:03Z 2009-10-18T02:52:03Z <p>I came up with a completely different way of solving this problem, using jQuery to replace the appropriate URLs:</p> <pre><code>jQuery(document).ready(function($) { $("img.logo").attr("src", "/images/logo-trans.png"); }); </code></pre> <p>The benefit of this is that I can make the cache-stripping IE-only using IE's conditional HTML comments.</p> http://stackoverflow.com/questions/1490138/reading-the-first-line-of-a-file-in-ruby 2 Reading the first line of a file in Ruby Craig Walker 2009-09-29T01:28:45Z 2009-10-14T04:58:43Z <p>I want to read <em>only</em> the first line of a file using Ruby in the fastest, simplest, most idiomatic way possible. What's the best approach?</p> <p>(Specifically: I want to read the git commit UUID out of the REVISION file in my latest Capistrano-deployed Rails directory, and then output that to my tag. This will let me see at an http-glance what version is deployed to my server. If there's an entirely different &amp; better way to do this, please let me know.)</p> http://stackoverflow.com/questions/690151/getting-output-of-system-calls-in-ruby/1563625#1563625 2 Answer by Craig Walker for Getting output of system() calls in ruby Craig Walker 2009-10-14T00:06:15Z 2009-10-14T00:06:15Z <p>I'd like to expand &amp; clarify chaos's answer a bit.</p> <p>If you surround your command with backticks, then you don't need to (explicitly) call system() at all. The backticks execute the command and return the output as a string. You can then assign the value to a variable like so:</p> <pre><code>output = `ls` p output </code></pre> http://stackoverflow.com/questions/1484406/haml-throwing-exception-on-production-but-not-development 0 HAML throwing exception on Production but not Development Craig Walker 2009-09-27T20:32:35Z 2009-09-28T06:00:25Z <p>I've written this HAML:</p> <pre><code>%script{:src =&gt; "http://www.google.com/jsapi?key=mykey" :type =&gt; "text/javascript"} </code></pre> <p>Note the missing comma between :src and :type.</p> <p>On my Production server (Dreamhost/Linux), I get the following logged exception when I try to view the page:</p> <pre><code>ActionView::TemplateError (compile error /home/.kuce/sugarthrill_stage/site/releases/20090927200712/app/views/layouts/standard.haml:6: syntax error, unexpected ':', expecting ')' haml_temp = _hamlout.push_script(haml_temp, false, false, false, false, false);_hamlout.open_tag("script", false, true, false, false, {}, false, false, nil, nil, :src =&gt; "http://www.google.com/jsapi?key=ABQIAAAAynKnt9hv30uxjfbUx9X4DBRU8FW8TmMUFf4GF0BysDPVLHB6-RQwlOJobSWKbilPiM4dB6xk_4JbgQ" :type =&gt; "text/javascript"); </code></pre> <p>However, I don't see this error on my Development server (Local OS X, WeBRICK); I see the (correctly-rendered) page.</p> <p>This is a bit disturbing. Is there any reason that this compilation error would be suppressed on development?</p> http://stackoverflow.com/questions/989349/running-a-command-in-a-new-mac-os-x-terminal-window/1276111#1276111 1 Answer by Craig Walker for Running a command in a new Mac OS X Terminal window. Craig Walker 2009-08-14T04:59:33Z 2009-08-14T04:59:33Z <p>I found <a href="http://www.entropy.ch/blog/Mac+OS+X/?permalink=Terminal%5Ftricks%5F8220%5Fterm%5F8221%5Fand%5F8220%5Fclone%5F8221.html" rel="nofollow">this shell script</a> with Google and it works like a charm.</p> http://stackoverflow.com/questions/1240778/pass-function-value-to-stored-procedure-in-ms-sql 0 Pass Function value to Stored Procedure in MS SQL Craig Walker 2009-08-06T19:09:54Z 2009-08-06T19:12:34Z <p>I have a Function called dbo.GetFoo(). I also have a unit-testing Stored Procedure called AssertEqual (which takes @TargetValue sql_variant, @ExpectedValue sql_variant, and @Message varchar)</p> <p>I want to call GetFoo() and check to see if it's returning the right value 'X'. My T-SQL statement is:</p> <pre><code>exec AssertEqual dbo.GetObjectType(), 'S', 'Check If S' </code></pre> <p>I get this message:</p> <pre><code>Msg 102, Level 15, State 1, Line 1 Incorrect syntax near '.'. </code></pre> <p>It appears to be choking on the "dbo." part (I can pass it a literal string and it works fine). </p> <p>Is there any way around this, other than declaring a variable for the targeted value?</p> <p>Alternately: is there a better way to do unit testing for SQL?</p> http://stackoverflow.com/questions/1240541/error-handling-in-user-defined-functions 1 Error Handling in User Defined Functions Craig Walker 2009-08-06T18:11:48Z 2009-08-06T18:32:25Z <p>I want to write a non-CLR user-defined function in SQL Server 2005. This function takes an input string and returns an output string. If the input string is invalid, then I want to indicate an error to the caller.</p> <p>My first thought was to use RAISERROR to raise an exception. However, SQL Server does not allow this inside a UDF (though you can raise exceptions in CLR-based UDFs, go figure). </p> <p>My last resort would be to return a NULL (or some other error-indicator value) from the function if the input value is in error. However, I don't like this option, as it:</p> <ol> <li>Doesn't provide any useful information to the caller</li> <li>Doesn't allow me to return a NULL in response to valid input (since it's used as an error code).</li> </ol> <p>Is there any caller-friendly way to halt a function on an error in SQL Server?</p> http://stackoverflow.com/questions/651277/eliminate-duplicate-logging-in-log4net 4 Eliminate Duplicate Logging in log4net Craig Walker 2009-03-16T17:02:22Z 2009-07-29T16:21:01Z <p>I have a program that makes many log4net calls to the "myprogram" loggers. It also calls other code that makes log4net calls to other loggers. I want to capture all logs higher than INFO for "myprogram" and all logs higher than WARN for everything else. This way, I get the work-in-progress messages specific to the task I'm working on, but am still notified of potentially bad things happening in the supporting code. I want this sent to both Console and a log file.</p> <p>I have the following log4net config:</p> <pre><code>&lt;log4net&gt; &lt;root&gt; &lt;level value="WARN" /&gt; &lt;appender-ref ref="Console" /&gt; &lt;appender-ref ref="LogFile" /&gt; &lt;/root&gt; &lt;logger name="myprogram"&gt; &lt;level value="INFO" /&gt; &lt;appender-ref ref="Console" /&gt; &lt;appender-ref ref="LogFile" /&gt; &lt;/logger&gt; &lt;appender name="Console" type="log4net.Appender.ConsoleAppender"&gt; &lt;layout type="log4net.Layout.PatternLayout"&gt; &lt;conversionPattern value="%message%newline" /&gt; &lt;/layout&gt; &lt;threshold value="INFO" /&gt; &lt;/appender&gt; &lt;appender name="LogFile" type="log4net.Appender.RollingFileAppender"&gt; &lt;layout type="log4net.Layout.PatternLayout"&gt; &lt;conversionPattern value="- %utcdate %level %logger %ndc %thread %message%newline" /&gt; &lt;/layout&gt; &lt;appendToFile value="false" /&gt; &lt;staticLogFileName value="true" /&gt; &lt;rollingStyle value="Once" /&gt; &lt;file value="mylogfile" /&gt; &lt;immediateFlush value="true" /&gt; &lt;threshold value="INFO" /&gt; &lt;lockingModel type="log4net.Appender.FileAppender+MinimalLock" /&gt; &lt;/appender&gt; &lt;/log4net&gt; </code></pre> <p>This makes perfect sense to me: log >WARN for everything and >INFO for the specific "myprogram" logger.</p> <p>The problem is that I'm getting INFO messages logged <strong>twice</strong> on both Console and LogFile. This only happens if I have both the and elements filled though; if I remove either one, then the remaining one works as I expect. </p> <p>I could understand if I was getting double-logging of WARN entries (since myprogram matches both "root" and "myprogram"), but it's happening at INFO even though ROOT is (presumably) set to WARN. </p> <p>Am I doing something wrong here, or is this a log4net bug/ambiguity?</p> http://stackoverflow.com/questions/1150353/database-records-added-to-top-of-table-instead-of-bottom-using-linq/1150378#1150378 1 Answer by Craig Walker for Database records added to top of table instead of bottom using LINQ Craig Walker 2009-07-19T17:27:59Z 2009-07-19T17:27:59Z <p>One of the central tenants of DB theory is that data is stored unsorted. The idea is that there's many ways that people might want to sort the data down the road, so applying a particular sort order to the raw storage is wasteful. It's just an accident / implementation detail that DBMSs display unsorted data in the order that it was inserted (and I've seen cases where that's not always true as well). </p> <p>If you want a particular order to your data, you should apply that desire explicitly using order by clauses (and potentially indexes). </p> http://stackoverflow.com/questions/529857/ampersands-in-urlrewriter-query-strings 1 Ampersands in URLRewriter Query Strings Craig Walker 2009-02-09T20:45:24Z 2009-06-29T22:32:16Z <p>I have a query string parameter value that contains an ampersand. For example, a valid value for the parameter may be:</p> <pre><code>a &amp; b </code></pre> <p>When I generate the URL that contains the parameter, I'm using System.Web.HTTPUtility.UrlEncode() to make each element URL-friendly. It's (correctly) giving me a URL like:</p> <p><a href="http://example.com/foo?bar=a+%26b" rel="nofollow">http://example.com/foo?bar=a+%26b</a></p> <p>The problem is that ASP.NET's Request object is interpreting the (encoded) ampersand as a Query String parameter delimiter, and is thus splitting my value into 2 parts (the first has "bar" as the parameter name; the second has a null name).</p> <p>It appears that ASP.NET is URL-decoding the URL first and then using that when parsing the query string.</p> <p>What's the best way to work around this?</p> <p><hr /></p> <p><strong>UPDATE</strong>: The problem hinges on <a href="http://urlrewriter.net/" rel="nofollow">URLRewriter</a> (a third-party plugin) and not ASP.NET itself. I've changed the title to reflect this, but I'll leave the rest of the question text as-is until I find out more about the problem.</p> http://stackoverflow.com/questions/1032832/persistence-object-naming-convention/1032857#1032857 -1 Answer by Craig Walker for Persistence Object Naming Convention Craig Walker 2009-06-23T14:20:57Z 2009-06-23T14:20:57Z <p>I believe "Entities" is a commonly used and traditional name.</p> http://stackoverflow.com/questions/57104/rails-binary-stream-support 5 Rails Binary Stream support Craig Walker 2008-09-11T17:08:27Z 2009-06-18T21:57:27Z <p>I'm going to be starting a project soon that requires support for large-ish binary files. I'd like to use Ruby on Rails for the webapp, but I'm concerned with the BLOB support. In my experience with other languages, frameworks, and databases, BLOBs are often overlooked and thus have poor, difficult, and/or buggy functionality.</p> <p>Does RoR spport BLOBs adequately? Are there any gotchas that creep up once you're already committed to Rails?</p> <p>BTW: I want to be using PostgreSQL and/or MySQL as the backend database. Obviously, BLOB support in the underlying database is important. For the moment, I want to avoid focusing on the DB's BLOB capabilities; I'm more interested in how Rails itself reacts. Ideally, Rails should be hiding the details of the database from me, and so I should be able to switch from one to the other. If this is <em>not</em> the case (ie: there's some problem with using Rails with a particular DB) then please do mention it. </p> <p>UPDATE: Also, I'm not just talking about ActiveRecord here. I'll need to handle binary files on the HTTP side (file upload effectively). That means getting access to the appropriate HTTP headers and streams via Rails. I've updated the question title and description to reflect this.</p> http://stackoverflow.com/questions/931146/what-do-you-tell-people-your-profession-is/931164#931164 5 Answer by Craig Walker for What do you tell people your profession is? Craig Walker 2009-05-31T03:06:50Z 2009-06-03T18:07:47Z <p>"Software Developer". In Canada, "Engineer" is a <a href="http://en.wikipedia.org/wiki/Controversies_over_the_term_Engineer#Canada" rel="nofollow">troublesome term</a> so I try to avoid calling myself that. I prefer "Developer" to "Programmer" as I do more than simply "program": I gather requirements, design, test, document, etc.</p> <p>Also, lately I've been billing myself as a "Technology Consultant", as I want to branch out beyond software creation into higher-level work.</p> http://stackoverflow.com/questions/873411/prevent-visual-studio-from-adding-default-references-and-usings-for-new-classes/894768#894768 2 Answer by Craig Walker for Prevent Visual Studio from adding default references and usings for new classes Craig Walker 2009-05-21T19:48:16Z 2009-05-21T19:48:16Z <p>Marc and Brian both have a good idea: create a new custom template that includes only the usings and references I want. With Export Template it's really simple to do so, and I'll be sure to do so for all sorts of specific items.</p> <p>For general-purpose new classes (ie: what you get from the "Add->Class..." menu item in VS), here's what I did to achieve my goal:</p> <ul> <li>Find the appropriate template Zip. On my system it was located at C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip</li> <li>Extract the zip file. This gives two files: Class.cs and Class.vstemplate</li> <li>Edit Class.cs to remove the undesired using statements. (I also changed the default class access modifier to "public" while I was here)</li> <li>Edit Class.vstemplate to remove the undesired <code>&lt;reference&gt;</code> elements.</li> <li>Rezip the files into the existing Class.zip archive</li> <li>Replace the cached template files with the updated versions. On my system, the files were located at C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplatesCache\CSharp\Code\1033\Class.zip (a directory containing the old Class.cs and Class.vstemplate). <ul> <li>I tried simply deleting this directory, expecting VS to rebuild the cache from the "original" source. This didn't work though; I got an error message saying that it couldn't find the files in the cache directory. Replacing the cached files worked well though.</li> </ul></li> <li>Restart Visual Studio</li> </ul> <p>Now, whenever I add a new class, I get exactly what I want.</p> http://stackoverflow.com/questions/873411/prevent-visual-studio-from-adding-default-references-and-usings-for-new-classes 2 Prevent Visual Studio from adding default references and usings for new classes Craig Walker 2009-05-16T21:59:18Z 2009-05-21T19:48:16Z <p>Whenever I add a new class to a Visual Studio (C#) project, I get the following usings automatically:</p> <ul> <li>using System;</li> <li>using System.Collections.Generic;</li> <li>using System.Linq;</li> <li>using System.Text;</li> </ul> <p>Additionally, the following DLL references are added if they weren't there already:</p> <ul> <li>System.Core</li> <li>System.Data</li> <li>System.Xml</li> </ul> <p>I'd like to prevent VS from doing this (except "using System" of course). Does any one know of a way to prevent this from happening?</p> http://stackoverflow.com/questions/894522/is-there-any-reason-to-worry-about-the-column-order-in-a-table/894540#894540 4 Answer by Craig Walker for Is there any reason to worry about the column order in a table? Craig Walker 2009-05-21T19:03:29Z 2009-05-21T19:03:29Z <p>Some badly-written applications might be dependent on column order / index instead of column name. They shouldn't be, but it does happen. Changing the order of the columns would break such applications.</p> http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins 6 Where do you put your CSS Margins? Craig Walker 2008-09-19T22:28:15Z 2009-04-25T10:12:24Z <p>When you want to add whitespace between HTML elements (using CSS), to which element do you attach it?</p> <p>I'm regularly in situations along these lines:</p> <pre><code>&lt;body&gt; &lt;h1&gt;This is the heading&lt;/h1&gt; &lt;p&gt;This is a paragraph&lt;/p&gt; &lt;h1&gt;Here's another heading&lt;/h1&gt; &lt;div&gt;This is a footer&lt;/div&gt; &lt;/body&gt; </code></pre> <p>Now, say I wanted 1em of space between each of these elements, but none above the first h1 or below the last div. To which elements would I attach it?</p> <p>Obviously, there's no real <strong>technical</strong> difference between this:</p> <pre><code>h1, p { margin-bottom: 1em; } </code></pre> <p>...and this...</p> <pre><code>div { margin-top: 1em; } p { margin-top: 1em; margin-bottom: 1em } </code></pre> <p>What I'm interested is secondary factors: </p> <ol> <li>Consistency</li> <li>Applicability to all situations</li> <li>Ease / Simplicity</li> <li>Ease of making changes</li> </ol> <p>For example: in this particular scenario, I'd say that the first solution is better than the second, as it's simpler; you're only attaching a margin-bottom to two elements in a single property definition. However, I'm looking for a more general-purpose solution. Every time I do CSS work, I get the feeling that there's a good rule of thumb to apply... but I'm not sure what it is. Does anyone have a good argument?</p> http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings 4 Regex to detect one of several strings Craig Walker 2009-03-10T20:57:38Z 2009-04-03T21:48:01Z <p>I've got a list of email addresses belonging to several domains. I'd like a regex that will match addresses belonging to three specific domains (for this example: foo, bar, &amp; baz)</p> <p>So these would match:</p> <ol> <li>a@foo</li> <li>a@bar</li> <li>b@baz</li> </ol> <p>This would not:</p> <ol> <li>a@fnord</li> </ol> <p>Ideally, these would not match either (though it's not critical for this particular problem):</p> <ol> <li>a@foobar</li> <li>b@foofoo</li> </ol> <p>Abstracting the problem a bit: I want to match a string that contains at least one of a given list of substrings.</p> http://stackoverflow.com/questions/688212/assembly-and-namespace-for-nunits-constraints-model 1 Assembly and Namespace for NUnit's Constraints Model Craig Walker 2009-03-27T01:42:34Z 2009-03-27T15:26:20Z <p>I want to use the new <a href="http://nunit.com/index.php?p=constraintModel&amp;r=2.4.8" rel="nofollow">Constraint-based model</a> in NUnit. In which assembly and namespace are the classes defined? (Specificially, I'm looking for the "Is" class and the IConstraint implementations discussed in the documentaton). They do not seem to be in NUnit.Framework.</p> <p>Also, I'm interested in v2.4.8, which as of this writing is the latest stable release.</p> http://stackoverflow.com/questions/688212/assembly-and-namespace-for-nunits-constraints-model/690216#690216 2 Answer by Craig Walker for Assembly and Namespace for NUnit's Constraints Model Craig Walker 2009-03-27T15:26:20Z 2009-03-27T15:26:20Z <p>The Is class is in NUnit.Frameworks.SyntaxHandlers in nunit.framework.dll.</p> http://stackoverflow.com/questions/1349152/google-load-and-message-google-is-not-defined Comment by Craig Walker on google.load - and message "google is not defined" Craig Walker 2009-11-03T21:08:09Z 2009-11-03T21:08:09Z I can't define google, but I know it when I see it. ;-) http://stackoverflow.com/questions/1656285/rails-functional-test-of-arbitrary-or-custom-urls/1656381#1656381 Comment by Craig Walker on Rails Functional Test of Arbitrary or Custom URLs Craig Walker 2009-11-01T16:51:29Z 2009-11-01T16:51:29Z Yup, integration testing was the key. http://stackoverflow.com/questions/1656285/rails-functional-test-of-arbitrary-or-custom-urls/1656324#1656324 Comment by Craig Walker on Rails Functional Test of Arbitrary or Custom URLs Craig Walker 2009-11-01T04:33:17Z 2009-11-01T04:33:17Z That's useful stuff, but it doesn't actually call the action; it just checks that the routing of the URLs will result in the particular action/params. (I'll edit my question to clarify what I'm looking for). http://stackoverflow.com/questions/1656285/rails-functional-test-of-arbitrary-or-custom-urls/1656318#1656318 Comment by Craig Walker on Rails Functional Test of Arbitrary or Custom URLs Craig Walker 2009-11-01T04:15:53Z 2009-11-01T04:15:53Z I had thought about that, but I was really hoping to avoid it. The actual use case is the URL being in a certain format; passing in the path segments as a parameter bypasses that check. http://stackoverflow.com/questions/1655970/unit-tests-for-3rd-party-libraries/1655988#1655988 Comment by Craig Walker on Unit tests for 3rd-party libraries Craig Walker 2009-11-01T00:07:39Z 2009-11-01T00:07:39Z Not bad advice, though probably not applicable to my particular project. Ruby doesn't have explicit interfaces, but swapping out a library would be fairly easy to do, as you just have to implement the called methods if you don't want to change the callers themselves. http://stackoverflow.com/questions/1639615/how-do-i-apply-a-css-id-when-the-control-is-runatserver/1639677#1639677 Comment by Craig Walker on How do i apply a CSS id when the control is runat=server? Craig Walker 2009-10-29T01:35:32Z 2009-10-29T01:35:32Z You should post this as an answer; it's good info http://stackoverflow.com/questions/1639615/how-do-i-apply-a-css-id-when-the-control-is-runatserver/1639643#1639643 Comment by Craig Walker on How do i apply a CSS id when the control is runat=server? Craig Walker 2009-10-28T19:54:49Z 2009-10-28T19:54:49Z I'm not the one that voted you down, but I think I know why someone did. If you set id=&quot;navleft&quot;, ASP.NET outputs a long and ugly ID attribute instead (see TStamper's answer). http://stackoverflow.com/questions/1639615/how-do-i-apply-a-css-id-when-the-control-is-runatserver/1639628#1639628 Comment by Craig Walker on How do i apply a CSS id when the control is runat=server? Craig Walker 2009-10-28T19:48:11Z 2009-10-28T19:48:11Z That's the class attribute, not the ID attribute. http://stackoverflow.com/questions/1604629/exclude-weekends-and-custom-days-i-e-holidays-from-date-calculations/1604656#1604656 Comment by Craig Walker on Exclude weekends and custom days (i.e. Holidays) from date calculations Craig Walker 2009-10-22T03:03:50Z 2009-10-22T03:03:50Z Or consider things like Ramadan, which varies from year to year and from place to place. It's also <i>decreed</i>, not caclulated (though the date of decree can be estimated by calculations). <a href="http://j.mp/GKzaM" rel="nofollow">j.mp/GKzaM</a> http://stackoverflow.com/questions/1604551/stateful-experience/1604569#1604569 Comment by Craig Walker on Stateful experience Craig Walker 2009-10-22T02:44:46Z 2009-10-22T02:44:46Z I can't upvote this answer enough http://stackoverflow.com/questions/1583689/asset-urls-without-cache-timestamps-in-rails/1583857#1583857 Comment by Craig Walker on Asset URLs without cache timestamps in Rails Craig Walker 2009-10-18T20:17:18Z 2009-10-18T20:17:18Z Yup, you're right there. http://stackoverflow.com/questions/1583689/asset-urls-without-cache-timestamps-in-rails/1583739#1583739 Comment by Craig Walker on Asset URLs without cache timestamps in Rails Craig Walker 2009-10-18T02:14:35Z 2009-10-18T02:14:35Z I was hoping to avoid having to strip off the query string, but this is the only answer so far. Thanks :-) http://stackoverflow.com/questions/1484406/haml-throwing-exception-on-production-but-not-development/1484954#1484954 Comment by Craig Walker on HAML throwing exception on Production but not Development Craig Walker 2009-09-29T04:02:00Z 2009-09-29T04:02:00Z That did it; thanks! http://stackoverflow.com/questions/1490138/reading-the-first-line-of-a-file-in-ruby/1490157#1490157 Comment by Craig Walker on Reading the first line of a file in Ruby Craig Walker 2009-09-29T03:33:13Z 2009-09-29T03:33:13Z I upvoted this one because I like the &quot;first&quot;ness of it. Unfortunately, my Rails host (DreamHost) is only on 1.8.5, so it isn't the &quot;correct&quot; one for me. :-\ http://stackoverflow.com/questions/1483025/using-a-rails-plugin/1483055#1483055 Comment by Craig Walker on Using a Rails plugin Craig Walker 2009-09-27T17:43:42Z 2009-09-27T17:43:42Z Yup, installing RailsTidy did it; thanks a bunch. I'm going to ping Peter to update his README