User Craig Walker - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T10:05:08Zhttp://stackoverflow.com/feeds/user/3488http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1794185/production-schema/1794456#17944560Answer by Craig Walker for production schemaCraig Walker2009-11-25T03:35:40Z2009-11-25T03:35:40Z<p>At my current gig, we use the term "Transactional" and/or OLTP (thanks S.Lott) for the databases/schemas that represent the "current" state of the business data. The "Analytical" and/or OLAP databases/schemas hold more historical data. Often we'll take a "snapshot" of the current data (writing out a new row to a new table, similar in design to the transactional table) and then date stamp it and/or assign it a "batch" ID. Then we can easily analyze how that data has changed over time. </p>
<p>For instance: you could see how & when the name of a Company has changed. In some circumstances, this is useful information. In others, you only want the current name. Splitting these two scenarios into different tables/databases means that you don't have to worry about always finding the "most recent" record in a historical table; all of that information has been moved out of the way. Another use is if you need to regenerate reports based on past data (if you want a "how did this data look back then?" view).</p>
<p>This isn't necessarily the "correct" definition... but it is a useful one.</p>
http://stackoverflow.com/questions/1793546/linq-to-sql-references-to-entities-in-other-datacontexts2LINQ-to-SQL References to Entities in other DataContextsCraig Walker2009-11-24T23:02:00Z2009-11-25T00:24:08Z
<p>In my database designs, I tend to have "clusters" of tables. These clusters will typically support one application or group of tightly-functionally-related applications. Often, these clusters also relate to each other through a relatively small number of foreign keys; this helps otherwise independent applications in the business integrate with each other. </p>
<p>So, for example: imagine I have applications "Foo", "Bar", and "Baz", with several tables for each of them. Here's a list of the tables and their foreign key references:</p>
<ul>
<li>FooTableOne</li>
<li>FooTableTwo -> FooTableOne</li>
<li>BarTableOne -> FooTableTwo</li>
<li>BarTableTwo -> BarTableone</li>
<li>BazTableOne</li>
<li>BazTableTwo -> FooTableTwo, BazTableOne</li>
</ul>
<p>Currently, I'm using LINQ-to-SQL to access these tables. I have a separate project for each clusters (Foo, Bar, and Baz), and each of these projects have a .dbml for all of the tables in the cluster. The idea here is that each (one or more) application that uses the cluster can import a shared library containing the LINQ classes that it needs.</p>
<p>This may or may not be a good idea; it looks like the <a href="http://stackoverflow.com/questions/1949/are-multiple-datacontext-classes-ever-appropriate">jury</a> <a href="http://stackoverflow.com/questions/431008/linq-to-sql-is-it-better-to-have-a-small-datacontext-for-each-page-or-a-global-o">is</a> <a href="http://stackoverflow.com/questions/1591822/linq-to-sql-multiple-data-context-in-same-transaction">still</a> <a href="http://stackoverflow.com/questions/337763/linq-to-sql-multiple-single-dbml-per-project">out</a>. What I'm really wondering is whether or not I can have the references between the clusters expressed by the classes in another cluster, even though they exist in a different context class. (And, more specifically, how to create this relationship in Visual Studio).</p>
<p>Going back to the example, I'd like to have:</p>
<ul>
<li>Project Foo
<ul>
<li>Foo.dbml</li>
<li>FooDataContext</li>
<li>FooTableOne
<ul>
<li>FooTableOne.FooTableTwos</li>
</ul></li>
<li>FooTableTwo
<ul>
<li>FooTableTwo.FooTableOne </li>
<li>FooTableTwo.BarTableOnes (this one isn't as important)</li>
<li>FooTableTwo.BazTableTwos (this one isn't as important)</li>
</ul></li>
</ul></li>
<li>Project Bar
<ul>
<li>Bar.dbml</li>
<li>BarDataContext</li>
<li>BarTableOne
<ul>
<li>BarTableOne.FooTableTwo</li>
<li>BarTableOne.BarTableTwos</li>
</ul></li>
<li>BarTableTwo
<ul>
<li>BarTableTwo.BarTableOne </li>
</ul></li>
</ul></li>
<li>Project Baz
<ul>
<li>Baz.dbml</li>
<li>BazDataContext</li>
<li>BazTableOne
<ul>
<li>BazTableOne.BazTableTwos</li>
</ul></li>
<li>BazTableTwo
<ul>
<li>BazTableTwo.FooTableTwo</li>
<li>BazTableTwo.BazTableOne</li>
</ul></li>
</ul></li>
</ul>
<p>Out of the gate, all of the references to out-of-context entities are simple IDs (ints), not objects, and the collections to out-of-context entities don't exist at all. I know I can add my own methods to these classes to do the appropriate lookups (given an instance of the context), but I'd like to get things a little more streamlined & consistent.</p>
<p>Note that, with this separation of contexts/clusters, I get modularity between applications. So, for example, the Baz application would only have to import the Baz and Foo contexts (since Baz depends on Foo), but not Bar. (This assumes that I don't have the collections of Bar entities in Foo, which is fine by me). This is a nice thing, but it's not critical: if LINQ/VS doesn't make this easy then I'll consider scrapping the modularity and going with one-big-context.</p>
http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git2Remotely Track the Current Branch in GitCraig Walker2009-11-23T04:47:30Z2009-11-23T14:11:14Z
<p>I'm moving my continuous testing to a dedicated server (autotest slows down my local laptop too much). What I'd like is for my testing server (which happens to be running CruiseControl.rb) to be continuously getting my latest (committed) changes via Git -- ideally, without any changes to my own workflow. I am the only developer working on this project.</p>
<p>Prior to getting the testing server, I had:</p>
<ul>
<li>My laptop as my main development system</li>
<li>Multiple branches in my local repository. </li>
<li>A local working copy, pointing to one of the branches. I switch between branches frequently (usually for new features).</li>
<li>A GitHub account, to which I frequently push local branches to mirrored remote branches. (This is mostly for use an offsite backup; I'm not sharing any code for my current project). I try to push to GitHub at least at the end of every workday, though I occasionally forget.</li>
</ul>
<p>I'd like to keep all of that intact. On top of that, I now have:</p>
<ul>
<li>The test server</li>
<li>...running CruiseControl.rb</li>
<li>A clone of my laptop repository on my test server. (Currently it's not cloning GitHub)</li>
<li>A local working copy on the test server, from which CC is building/testing.</li>
<li>This working copy points to one particular Git branch (of course)</li>
</ul>
<p>I've been trying to have my test server automatically get whatever branch I'm working on on my laptop working copy and build from that. (That would mimic autotest's continuous testing without eating up system resources).</p>
<p>Things I've tried without success:</p>
<ul>
<li>git checkout origin/HEAD: this gets the files fine but breaks CruiseControl because it doesn't like the "branchless" working copy.</li>
<li>git checkout --track -b a_branch origin/a_branch: this works fine for getting files, and CC likes it, but it sticks the testing server to a particular branch. When switching branches on the laptop I'll effectively stop testing my current work.</li>
<li>git checkout --track -b my_testing_branch origin/HEAD: this also gets buildable files, but it suffers from the same problem as the command above. Creating a branch from origin/HEAD only gets the HEAD for the "default" branch, so it's also sticky.</li>
</ul>
<p>Is there any way I can get a good remote continuous testing system (with or without git branches) that doesn't involve major changes to my workflow?</p>
http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781582#17815821Answer by Craig Walker for Remotely Track the Current Branch in GitCraig Walker2009-11-23T07:25:52Z2009-11-23T07:25:52Z<p>I've think got a pretty good solution by inverting the relationship between the two systems. Instead of having the test server pull from the laptop's repository, I could have the laptop push changes out to the server to be tested.</p>
<p>First I add a remote on the laptop's repo:</p>
<pre><code>git remote add testing <url of testing server>
</code></pre>
<p>Then, whenever I have code for testing, I do a push:</p>
<pre><code>git push -f testing HEAD:master
</code></pre>
<p>This will work from whatever branch I'm currently on. The -f ensures that I'll blow away whatever is already in that branch; I won't have to worry about any ancestry.</p>
<p>This won't actually put the latest code in a working copy, but CruiseControl's polling can solve that. I could also have a server-side hook that updates a working copy <em>and</em> runs the test suite (I wouldn't even need CC at that point).</p>
<p>I'll probably want to add a combined commit+push command to a script or alias; that will give me my one-command commit & test. If for some reason I want to do a commit without a test push (or vice versa), then I have those options too.</p>
http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781150#17811500Answer by Craig Walker for Remotely Track the Current Branch in GitCraig Walker2009-11-23T04:49:18Z2009-11-23T04:49:18Z<p>I've considered skipping past git and going to a shared folder/NFS/rsync solution, but that has one major problem: it's not triggered by / limited to commits, so I'll end up getting false-positive broken builds while I'm in the middle of typing something. </p>
http://stackoverflow.com/questions/1753920/how-do-i-write-a-generic-method-that-takes-different-types-as-parameters/1753978#17539783Answer by Craig Walker for How do I write a generic method that takes different types as parameters?Craig Walker2009-11-18T06:09:45Z2009-11-18T06:27:08Z<p>This method will give you what you want:</p>
<pre><code>public static void AddRange<A,B>(
this ICollection<A> collection,
IEnumerable<B> list)
where B: A
{
foreach (var item in list)
{
collection.Add(item);
}
}
</code></pre>
<p>A couple of notes:</p>
<ol>
<li>The only way that this can work is if you use a type for B that is derived from A. For example, Dog is a subclass of Animal, so AddRange will work. This is enforced by the "where B: A" clause. Without this, the ICollection.Add() call will fail due to an incompatible type for B being passed into the ICollection expecting an A.</li>
<li>There's not a lot of need to restrict the type of A to anything in the Animal type hierarchy; the extension method could be used anywhere you have one type deriving from another.</li>
<li>This isn't really a problem of the compiler not being able to infer the types. Even if you explicitly passed the types for A and B everywhere, you'll still get a compiler error.</li>
</ol>
http://stackoverflow.com/questions/1735657/is-it-possible-to-define-a-block-with-default-arguments-in-ruby3Is it possible to define a block with default arguments in Ruby?Craig Walker2009-11-14T21:23:19Z2009-11-14T21:36:29Z
<p><a href="http://stackoverflow.com/questions/451689/is-it-possible-to-define-a-block-with-optional-arguments-in-ruby">This question</a> deals with optional arguments passed to a Ruby block. I'm wondering if it's also possible to define arguments with default values, and what the syntax for that would be.</p>
<p>At first glance, it appears that the answer is "no":</p>
<pre><code>def call_it &block
block.call
end
call_it do |x = "foo"|
p "Called the block with value #{x}"
end
</code></pre>
<p>...results in:</p>
<pre><code>my_test.rb:5: syntax error, unexpected '=', expecting '|'
call_it do |x = "foo"|
^
my_test.rb:6: syntax error, unexpected tSTRING_BEG, expecting kDO or '{' or '('
p "Called the block with value #{x}"
^
my_test.rb:7: syntax error, unexpected kEND, expecting $end
end
^
</code></pre>
http://stackoverflow.com/questions/1735657/is-it-possible-to-define-a-block-with-default-arguments-in-ruby/1735688#17356886Answer by Craig Walker for Is it possible to define a block with default arguments in Ruby?Craig Walker2009-11-14T21:33:10Z2009-11-14T21:33:10Z<p>Poor-man's default block arguments:</p>
<pre><code>def call_it &block
block.call
end
call_it do |*args|
x = args[0] || "foo"
p "Called the block with value #{x}"
end
</code></pre>
http://stackoverflow.com/questions/1718043/consequences-of-implementing-toint-and-tostr-in-ruby2Consequences of implementing to_int and to_str in RubyCraig Walker2009-11-11T21:02:20Z2009-11-12T03:27:13Z
<p>I <a href="http://github.com/softcraft-development/sprint/blob/master/lib/sprint.rb" rel="nofollow">have a class</a> which exposes a string value and an int value (a command output and exit code respectively). In addition to exposing them through <code>to_s</code> and <code>to_i</code>, I'm also using <code>to_str</code> and <code>to_int</code>, like so:</p>
<pre><code>class Status
def to_s
@output
end
alias :to_str :to_s
def to_i
@status.exitstatus
end
alias :to_int :to_i
end
</code></pre>
<p>My idea behind this is to be able to use this object in as many situations as possible. having it coerceable to a string or int increases that usability. For instance, I can concatenate the object with a string:</p>
<pre><code>a_string = "Output was: " + results
</code></pre>
<p>(I wanted to use this as an example of int coercion, but Fixnum.+ doesn't like it, so it doesn't actually work:)</p>
<pre><code>an_int = 1 + results
</code></pre>
<p>Everything I've read so far has said that this is probably a "bad" thing to do. The common theme goes like this: "Use <code>to_s</code>/<code>to_i</code> when your object can be represented as a string/int, but <code>to_str</code>/<code>to_int</code> only if your object <em>is fundamentally</em> a string/int".</p>
<p>There's no question that my class is not "fundamentally" a string or an int. However
I have some problems with this rule:</p>
<ol>
<li>It makes my class less flexible/usable. For example: I couldn't use String.+ to concatenate the Status output with the other string if I didn't have Status.to_str.</li>
<li>It seems to violate the spirit of duck-typing. The user of an object (ie: a method that gets it as a parameter) shouldn't care what that object <em>is</em>, it should only care what it can <em>do</em>. (In this case, "do" means "can be represented as a string/int".)</li>
<li>The arguments for "is fundamentally a string/int" are pretty fuzzy to me. For example, you'll see that <code>Float.to_int</code> is mentioned a lot. The story goes that since a floating-point number always has an integer component, <code>to_int</code> is a valid method. However, I think this is spurious: a Float is <em>not</em> an integer (as it has a non-integer component) and so trying to equate their "typeness" doesn't make much sense. You can legitimately <em>convert</em> a Float to an integer (through truncation), but then I can say that I can <em>convert</em> my Status to an integer as well (by "truncating" all of the non-exit-code information).</li>
</ol>
<p>So, my question is: <em>is there any real (ie: practical) harm</em> in implementing <code>to_str</code> and <code>to_int</code>?</p>
<p><hr></p>
<p>Update: Jörg W Mittag gave an example that made me thing of something. To rephrase the question: is there really a need to have <code>to_str</code>/<code>to_int</code> when you already have <code>to_s</code>/<code>to_i</code>? (Besides the fact that particular methods are already expecting <code>to_str</code> over <code>to_s</code>)</p>
<p>For instance, in Jörg's Array.join example, the array members are converted via to_s while the separator is converted via to_str. But is this really necessary? If Array.join called separator.to_s instead, then you could successfully pass many more objects to it (ex: Integers, Symbols, etc) and gain that much more flexibility. Does Ruby benefit from having this separation?</p>
http://stackoverflow.com/questions/1661586/how-can-you-check-to-see-if-a-file-exists-on-the-remote-server-in-capistrano/1662277#16622770Answer by Craig Walker for How can you check to see if a file exists (on the remote server) in Capistrano?Craig Walker2009-11-02T16:28:02Z2009-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-libraries0Unit tests for 3rd-party librariesCraig Walker2009-10-31T23:58:05Z2009-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-urls0Rails Functional Test of Arbitrary or Custom URLsCraig Walker2009-11-01T03:15:45Z2009-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 => "photos", :action => "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 => 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#16563810Answer by Craig Walker for Rails Functional Test of Arbitrary or Custom URLsCraig Walker2009-11-01T04:23:51Z2009-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=>"/photos/1/style/original", :controller=>"photos"}
</code></pre>
<p>I wonder if I'm doing something wrong.</p>
http://stackoverflow.com/questions/1483025/using-a-rails-plugin0Using a Rails pluginCraig Walker2009-09-27T07:32:34Z2009-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#16396770Answer by Craig Walker for How do i apply a CSS id when the control is runat=server?Craig Walker2009-10-28T19:53:21Z2009-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) && !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><%@ Register TagPrefix="myhtml" Assembly="MyAssembly" Namespace="MyNamespace.MyHTML" %>
<myhtml:Div runat="server" ID="_variableName" HtmlID="html_id_value" />
</code></pre>
<p>This would result in:</p>
<pre><code><div id="html_id_value"></div>
</code></pre>
http://stackoverflow.com/questions/663124/what-is-the-sql-server-clr-integration-life-cycle1What is the SQL Server CLR Integration Life Cycle?Craig Walker2009-03-19T17:19:05Z2009-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-objects0Linq to Entities: Mixed graph of Entities, EntityKeys, Attached, and New ObjectsCraig Walker2009-10-27T03:32:19Z2009-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-css6Position An HTML Element Relative to its Container Using CSSCraig Walker2008-09-19T19:48:22Z2009-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-rails1Asset URLs without cache timestamps in RailsCraig Walker2009-10-18T01:17:09Z2009-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#15838570Answer by Craig Walker for Asset URLs without cache timestamps in RailsCraig Walker2009-10-18T02:52:03Z2009-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-ruby2Reading the first line of a file in RubyCraig Walker2009-09-29T01:28:45Z2009-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 & better way to do this, please let me know.)</p>
http://stackoverflow.com/questions/690151/getting-output-of-system-calls-in-ruby/1563625#15636252Answer by Craig Walker for Getting output of system() calls in rubyCraig Walker2009-10-14T00:06:15Z2009-10-14T00:06:15Z<p>I'd like to expand & 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-development0HAML throwing exception on Production but not DevelopmentCraig Walker2009-09-27T20:32:35Z2009-09-28T06:00:25Z
<p>I've written this HAML:</p>
<pre><code>%script{:src => "http://www.google.com/jsapi?key=mykey" :type => "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 => "http://www.google.com/jsapi?key=ABQIAAAAynKnt9hv30uxjfbUx9X4DBRU8FW8TmMUFf4GF0BysDPVLHB6-RQwlOJobSWKbilPiM4dB6xk_4JbgQ" :type => "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#12761111Answer by Craig Walker for Running a command in a new Mac OS X Terminal window.Craig Walker2009-08-14T04:59:33Z2009-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-sql0Pass Function value to Stored Procedure in MS SQLCraig Walker2009-08-06T19:09:54Z2009-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-functions1Error Handling in User Defined FunctionsCraig Walker2009-08-06T18:11:48Z2009-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-log4net4Eliminate Duplicate Logging in log4netCraig Walker2009-03-16T17:02:22Z2009-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><log4net>
<root>
<level value="WARN" />
<appender-ref ref="Console" />
<appender-ref ref="LogFile" />
</root>
<logger name="myprogram">
<level value="INFO" />
<appender-ref ref="Console" />
<appender-ref ref="LogFile" />
</logger>
<appender name="Console" type="log4net.Appender.ConsoleAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%message%newline" />
</layout>
<threshold value="INFO" />
</appender>
<appender name="LogFile" type="log4net.Appender.RollingFileAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="- %utcdate %level %logger %ndc %thread %message%newline" />
</layout>
<appendToFile value="false" />
<staticLogFileName value="true" />
<rollingStyle value="Once" />
<file value="mylogfile" />
<immediateFlush value="true" />
<threshold value="INFO" />
<lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
</appender>
</log4net>
</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#11503781Answer by Craig Walker for Database records added to top of table instead of bottom using LINQCraig Walker2009-07-19T17:27:59Z2009-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-strings1Ampersands in URLRewriter Query StringsCraig Walker2009-02-09T20:45:24Z2009-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 & 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-1Answer by Craig Walker for Persistence Object Naming ConventionCraig Walker2009-06-23T14:20:57Z2009-06-23T14:20:57Z<p>I believe "Entities" is a commonly used and traditional name.</p>
http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781442#1781442Comment by Craig Walker on Remotely Track the Current Branch in GitCraig Walker2009-11-23T18:27:47Z2009-11-23T18:27:47ZAs a matter of fact, there's is a "post-push" hook in the form of the --receive-pack parameter to git-pushhttp://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781442#1781442Comment by Craig Walker on Remotely Track the Current Branch in GitCraig Walker2009-11-23T18:26:41Z2009-11-23T18:26:41ZOriginally, I was going totally sans-push, and having the server pull from my laptop. Pat's suggestion with a post-commit hook could work if it fires off a message to the server (ex: an ssh remote command) that causes the server to start its pull. However, I'm leaning back towards the push route currently.http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781405#1781405Comment by Craig Walker on Remotely Track the Current Branch in GitCraig Walker2009-11-23T06:38:03Z2009-11-23T06:38:03ZI happened to be doing a lot of rebasing this weekend, so that is an issue. :-\http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git/1781185#1781185Comment by Craig Walker on Remotely Track the Current Branch in GitCraig Walker2009-11-23T06:06:05Z2009-11-23T06:06:05ZNot bad; it unfortunately requires an additional regular step to merge my current work into the testing branch, but so far it's the front runner. Thankshttp://stackoverflow.com/questions/225291/git-upload-pack-command-not-found-how-to-fix-this-correctly/225315#225315Comment by Craig Walker on git-upload-pack: command not found, how to fix this correctlyCraig Walker2009-11-21T22:13:53Z2009-11-21T22:13:53ZI had an additional problem; when I ssh'd into the remote machine and executed git-upload-pack, it found it find, but not when I was cloning. (ie: the PATH was different between the direct login and the remote execution). Setting the path in .bashrc, as described here, fixed the problem.http://stackoverflow.com/questions/1753920/how-do-i-write-a-generic-method-that-takes-different-types-as-parameters/1753925#1753925Comment by Craig Walker on How do I write a generic method that takes different types as parameters?Craig Walker2009-11-18T15:34:36Z2009-11-18T15:34:36ZThat's what "edit" is all about :-)http://stackoverflow.com/questions/1753920/how-do-i-write-a-generic-method-that-takes-different-types-as-parameters/1753925#1753925Comment by Craig Walker on How do I write a generic method that takes different types as parameters?Craig Walker2009-11-18T06:28:50Z2009-11-18T06:28:50ZThis won't work without a "where TB: TA" clause at the end of the method.http://stackoverflow.com/questions/1735657/is-it-possible-to-define-a-block-with-default-arguments-in-ruby/1735661#1735661Comment by Craig Walker on Is it possible to define a block with default arguments in Ruby?Craig Walker2009-11-14T21:29:31Z2009-11-14T21:29:31Z...and I'm on 1.8.7, which explains why it's not working for me. :-\http://stackoverflow.com/questions/1718043/consequences-of-implementing-toint-and-tostr-in-ruby/1719437#1719437Comment by Craig Walker on Consequences of implementing to_int and to_str in RubyCraig Walker2009-11-12T03:16:28Z2009-11-12T03:16:28ZAgreed on string interpolation being a better way in practice; I used string concat simply as an example of something that required to_str. (In fact, in real coding, I avoid concatenation simply because it <i>doesn't</i> work with arbitrary objects).http://stackoverflow.com/questions/1718043/consequences-of-implementing-toint-and-tostr-in-ruby/1718158#1718158Comment by Craig Walker on Consequences of implementing to_int and to_str in RubyCraig Walker2009-11-11T21:29:18Z2009-11-11T21:29:18ZI did that in the actual code (see the linked class), but omitted those methods for brevity in the example code I posted here.http://stackoverflow.com/questions/1349152/google-load-and-message-google-is-not-definedComment by Craig Walker on google.load - and message "google is not defined" Craig Walker2009-11-03T21:08:09Z2009-11-03T21:08:09ZI 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#1656381Comment by Craig Walker on Rails Functional Test of Arbitrary or Custom URLsCraig Walker2009-11-01T16:51:29Z2009-11-01T16:51:29ZYup, integration testing was the key.http://stackoverflow.com/questions/1656285/rails-functional-test-of-arbitrary-or-custom-urls/1656324#1656324Comment by Craig Walker on Rails Functional Test of Arbitrary or Custom URLsCraig Walker2009-11-01T04:33:17Z2009-11-01T04:33:17ZThat'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#1656318Comment by Craig Walker on Rails Functional Test of Arbitrary or Custom URLsCraig Walker2009-11-01T04:15:53Z2009-11-01T04:15:53ZI 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#1655988Comment by Craig Walker on Unit tests for 3rd-party librariesCraig Walker2009-11-01T00:07:39Z2009-11-01T00:07:39ZNot 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.