User Stewart Johnson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T13:19:18Zhttp://stackoverflow.com/feeds/user/6408http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1671270/how-to-conditional-highlight-fields-in-a-microsoft-reporting-services-rdl-report0How to conditional highlight fields in a Microsoft Reporting Services RDL report?Stewart Johnson2009-11-04T01:50:00Z2009-11-04T06:51:08Z
<p>I've got an RDL report that is a roster -- it's a grid:</p>
<ul>
<li>each row represents a day</li>
<li>each column represents a task</li>
<li>each cell contains the name of the person doing that task on that day. </li>
</ul>
<p>I'm serving the reports off a MS Reporting Server.</p>
<p>I'd like to be able to highlight the cells that contain the name of the person viewing the report. So I really have two questions in one:</p>
<ul>
<li>Is it possible to get the name of the person from the environment variables sent with their request to the report server? More generally, how can I see the list of environment variables that are sent?</li>
</ul>
<p>If I can't get their name automatically, I could supply a report parameter that allows them to enter their name manually.</p>
<p>The second question is then:</p>
<ul>
<li>Assuming I've got a name in a string, how do I conditionally format the cells in the report that have that string in them?</li>
</ul>
<p>Thanks!</p>
http://stackoverflow.com/questions/236481/why-do-software-engineers-hate-writing-documentation19Why do software engineers hate writing documentation?Stewart Johnson2008-10-25T14:31:03Z2009-10-02T01:53:12Z
<p>I ask because I quite enjoy it! I'm talking about <strong>design documentation and implentation notes (NOT user manuals)</strong>, which are non-existent in most of the codebases I've been handed. I can understand why a developer wouldn't want to write requirements (that's the analyst's job) or the user documentation (that's a technical writer's job) but I don't get why developers hate writing design docs.</p>
<p>I don't think I would feel as if I'd finished the job if I only wrote the code and walked away -- mainly because when I've been introduced to code-only situations I've seen how hard it is to figure out what's been done and what the software does. I would hate for people to suffer the same situation when inheriting my code.</p>
<p>What makes you loath writing supporting documentation for your code?</p>
http://stackoverflow.com/questions/352821/whats-a-possible-justification-for-not-wrapping-long-argument-lists-stylecop-s2What's a possible justification for not wrapping long argument lists? (StyleCop SA1115)Stewart Johnson2008-12-09T14:05:45Z2009-08-24T21:44:09Z
<p>I'm stuck in a battle between ReSharper and StyleCop, and I'd like to let ReSharper win, but I want to hear the arguments in favour of StyleCop before I do that.</p>
<p>When I'm writing long argument lists ReSharper sensibly chops the parameter list and restarts it on the next line. I find that much more readable.</p>
<p>When I run StyleCop over the code it wants me to leave those lines really long. I don't like that, so I want to ignore that StyleCop rule (SA1115). I can't think of a good reason why SC would want those long lines in the first place -- is it just a case of "we've always done it this way"?</p>
http://stackoverflow.com/questions/1129008/does-authorization-in-web-config-check-sub-groups-as-well1Does authorization in web.config check sub-groups as well?Stewart Johnson2009-07-15T01:54:16Z2009-08-14T18:46:18Z
<p>If I put something like this in my ASP.NET web application's web.config:</p>
<pre><code> <authorization>
<allow roles="MyUsers" />
<deny users="*" />
</authorization>
</code></pre>
<p>and then have an ActiveDirectory group <code>SpecialGroup</code> that is inside <code>MyUsers</code>, will a member of SpecialGroup be allowed to access my application?</p>
http://stackoverflow.com/questions/1258036/rails-how-to-restful-query-models-through-associations2Rails: how to RESTful query models through associations?Stewart Johnson2009-08-11T01:18:34Z2009-08-11T13:54:12Z
<p>I'm not getting REST with Ruby on Rails, and I'm hoping someone here can set me straight.</p>
<p>Imagine that I'm building a site that keeps track of Widgets and the Users that own those Widgets. So I'd have a UsersController and a WidgetsController, and I could get a list of Widgets or Users with the index actions:</p>
<pre><code>GET /users
GET /widgets
</code></pre>
<p>and I could get a specific User or Widget with the show actions:</p>
<pre><code>GET /users/id
GET /widgets/id
</code></pre>
<p>That much I understand. </p>
<p>Where I'm getting confused is what RESTful request would I use to retrieve a list of Widgets belonging to a specific User? Is that a request sent to the UsersController or the WidgetsController? Which of the 7 RESTful actions does it use? </p>
<p>Is one of those situations where I'd create a custom action? I was under the impression that custom actions are supposed to be rare, but this seems like a pretty common use case.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null6How do I return my records grouped by NULL and NOT NULL?Stewart Johnson2008-10-27T10:48:48Z2009-08-10T09:51:18Z
<p>I have a table that has a <code>processed_timestamp</code> column -- if a record has been processed then that field contains the datetime it was processed, otherwise it is null.</p>
<p>I want to write a query that returns two rows:</p>
<pre><code>NULL xx -- count of records with null timestamps
NOT NULL yy -- count of records with non-null timestamps
</code></pre>
<p>Is that possible?</p>
<p><strong>Update:</strong> The table is quite large, so efficiency is important. I could just run two queries to calculate each total separately, but I want to avoid hitting the table twice if I can avoid it.</p>
http://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files3NUnit [TearDown] fails -- what process is accessing my files?Stewart Johnson2008-12-17T13:46:55Z2009-07-02T09:04:25Z
<p>Hi All -</p>
<p><strong>Final Edit:</strong> I found a solution to the problem (at the bottom of the question).</p>
<p>I've got an Nunit problem that's causing me grief. <strong>Edit:</strong> actually it looks more like a SQLite problem, but I'm not 100% certain yet.</p>
<p>My TestFixture has a setup that generates a random filename that's used as a SQLite database in each of my tests.</p>
<pre><code>[Setup]
public void Setup()
{
// "filename" is a private field in my TestFixture class
filename = ...; // generate random filename
}
</code></pre>
<p>Each of my tests use this construct in each method that accesses the database:</p>
<pre><code>[Test]
public void TestMethod()
{
using (var connection = Connect())
{
// do database activity using connection
// I've tried including this line but it doesn't help
// and is strictly unnecessary:
connection.Close();
}
}
private DbConnection Connect()
{
var connection = DbProviderFactories.GetFactory("System.Data.SQLite").CreateConnection();
connection.ConnectionString = "Data Source=" + filename;
connection.Open();
return connection;
}
</code></pre>
<p>So that one helper method <code>Connect()</code> is used by all the methods. I'm assuming that the <code>using() { }</code> construct is calling <code>Dispose()</code> on the connection at the end of <code>TestMethod()</code> and freeing up the connection to the SQLite database file.</p>
<p>The problem I have is in my [TearDown] method:</p>
<pre><code> [TearDown]
public void Cleanup()
{
File.Delete(filename); // throws an IOException!
}
</code></pre>
<p>With every test I get an exception:</p>
<pre><code>System.IO.IOException: The process cannot access the file 'testdatabase2008-12-17_1030-04.614065.sqlite' because it is being used by another process.
</code></pre>
<p>All of the tests fail when they get to the [TearDown], so I end up with a directory full of temporary databse files (one per test, each with a different name) and a whole bunch of failed tests.</p>
<p>What process is accessing the file? I don't get how a second process could be accessing the file. The <code>connection</code> has completely gone out of scope and been Dispose()d by the time I'm trying to delete the file, so it can't be something SQLite related. Can it?</p>
<p>Note that I get the same result if I run all the tests or just a single test.</p>
<p><strong>Update:</strong> So I tried Dispose()ing of my DbCommand objects as well, since I wasn't doing that (I assumed that every other ADO.NET provider that Dispose()ing the DbConnection also Dispose()s any commands on that connection.) So now they look like:</p>
<pre><code>[Test]
public void TestMethod()
{
using (var connection = Connect())
{
using (var command = connection.CreateCommand())
{
// do database activity using connection
}
}
}
</code></pre>
<p>It didn't make any difference -- the File.Delete() line still throws an IOException. :-(</p>
<p>If I remove that one line in [TearDown] then all my tests pass, but I'm left with a whole bunch of temporary database files.</p>
<p><strong>Another Update:</strong>
This works just fine:</p>
<pre><code>var filename = "testfile.sqlite";
using (var connection = BbProviderFactories.GetFactory("System.Data.SQLite").CreateConnection())
{
connection.ConnectionString = "Data Source=" + filename;
connection.Open();
var createCommand = connection.CreateCommand();
createCommand.CommandText =
"CREATE TABLE foo (id integer not null primary key autoincrement, bar text not null);";
createCommand.ExecuteNonQuery();
var insertCommand = connection.CreateCommand();
insertCommand.CommandText = "INSERT INTO foo (bar) VALUES (@bar)";
insertCommand.Parameters.Add(insertCommand.CreateParameter());
insertCommand.Parameters[0].ParameterName = "@bar";
insertCommand.Parameters[0].Value = "quux";
insertCommand.ExecuteNonQuery();
}
File.Delete(filename);
</code></pre>
<p>I don't understand!</p>
<p><strong>Update:</strong> Solution found:</p>
<pre><code> [TearDown]
public void Cleanup()
{
GC.Collect();
File.Delete(filename);
}
</code></pre>
<p>I ran the unit tests through the debugger, and when the <code>[TearDown]</code> method starts there are definitely no references to the SQLite DbConnection around any more. Forcing a GC must clean them up though. There must be a bug in SQLite.</p>
http://stackoverflow.com/questions/696723/how-do-i-guarantee-data-is-the-same-after-upgrading-sql-server1How do I guarantee data is the same after upgrading SQL Server?Stewart Johnson2009-03-30T10:42:34Z2009-05-06T02:22:50Z
<p>I have to upgrade a database from SQL Server 7 and SQL Server 2000 to SQL Server 2008. Additionally I have to be able to prove in a court of law that the data pre-migration is exactly the same post-migration.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/794081/how-to-avoid-building-a-walled-garden5How to avoid building a walled garden?Stewart Johnson2009-04-27T15:34:56Z2009-04-27T15:46:41Z
<p>Some friends and I have had an idea for a website and have started working on it. It will rely on people contributing to a shared knowledgebase, and people will also be able to create personal profiles with reasonable amounts of data. We intend people should be able to leverage their content on other sites (e.g.: flickr, youtube) when building their profile on our site.</p>
<p>It occurred to us that we want to be good internet citizens, and make our website accessible and useful for people regardless of whether they have an account or not. We also want to make sure that any data people contribute to our site is not 'locked in' and is available to other sites appropriately.</p>
<p>Are there any specific practices we should follow, and similarly ones we should avoid?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/110313/how-to-make-sure-my-git-repo-code-is-safe7How to make sure my git repo code is safe?Stewart Johnson2008-09-21T05:25:29Z2009-03-30T15:35:06Z
<p>If our organisation were to switch from a central-server VCS like subversion to a distributed VCS like git, how do I make sure that all my code is safe from hardware failure?</p>
<p>With a central-server VCS I just need to backup the repository every day. If we were using a DVCS then there'd be loads of code branches on all the developer machines, and if that hardware were to fail (or a dev were to lose his laptop or have it stolen) then we wouldn't have any backups.</p>
<p>Note that I don't consider it a good option to "make the developers push branches to a server" -- that's <a href="http://www.mattblodgett.com/2008/02/matt-blodgett-first-law-of-software.html" rel="nofollow">tedious</a> and the developers will end up not doing it.</p>
<p>Is there a common way around this problem?</p>
<p><strong>Some clarification:</strong></p>
<p>With a natively-central-server VCS then <em>everything</em> has to be on the central server except the developer's most recent changes. So, for example, if a developer decides to branch to do a bugfix, that branch is on the central server and available for backup immediately.</p>
<p>If we're using a DVCS then the developer can do a local branch (and in fact many local branches). None of those branches are on the central server and available for backup until the developer thinks, "oh yeah, I should push that to the central server".</p>
<p>So the difference I'm seeing (correct me if I'm wrong!): Half-implemented features and bugfixes will probably not available for backup on the central server if we're using a DVCS, but are with a normal VCS. How do I keep that code safe?</p>
http://stackoverflow.com/questions/419507/how-do-can-i-get-the-current-datetime-from-the-precompiler-in-c/419542#4195420Answer by Stewart Johnson for How do can I get the current DateTime from the Precompiler in C#Stewart Johnson2009-01-07T08:13:13Z2009-01-07T08:13:13Z<p>There's no preprocessor <code>__TIME__</code> directive, but there's other things you could use, such as the creation time of the assembly. You might also consider using keyword substitution from your source control system ($Date$ in subversion).</p>
http://stackoverflow.com/questions/415454/can-a-team-function-predictably-and-deliver-on-time-without-a-project-manager/415462#4154620Answer by Stewart Johnson for Can a team function predictably and deliver (on time) without a project manager?Stewart Johnson2009-01-06T04:30:03Z2009-01-06T04:30:03Z<p>It's less about pushing and more about planning the way forward. <em>Somebody</em> has to figure out what order things are going to be built, what the dependencies are, what resources are needed, etc. If it's not done by a dedicated project manager then the team will have to do it themselves.</p>
http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/388791#3887910Answer by Stewart Johnson for How do I get the name of a property from a property in C# (2.0)Stewart Johnson2008-12-23T12:44:29Z2008-12-23T12:44:29Z<p>The <a href="http://msdn.microsoft.com/en-us/library/kyaxdd3x.aspx" rel="nofollow">GetProperties on the Type class</a> will give you the list of properties on that type.</p>
<pre><code>Type t = whotsit.GetType();
PropertyInfo[] pis = t.GetProperties();
</code></pre>
http://stackoverflow.com/questions/388715/how-to-copy-and-paste-worksheets-between-excel-workbooks/388750#3887502Answer by Stewart Johnson for How to copy and paste worksheets between Excel workbooks?Stewart Johnson2008-12-23T12:20:50Z2008-12-23T12:40:02Z<p>Not tested, but something like:</p>
<pre><code>Dim sourceSheet As Worksheet
Dim destSheet As Worksheet
'' copy from the source
Workbooks.Open Filename:="c:\source.xls"
Set sourceSheet = Worksheets("source")
sourceSheet.Activate
sourceSheet.Cells.Select
Selection.Copy
'' paste to the destination
Workbooks.Open Filename:="c:\destination.xls"
Set destSheet = Worksheets("dest")
destSheet.Activate
destSheet.Cells.Select
destSheet.Paste
'' save & close
ActiveWorkbook.Save
ActiveWorkbook.Close
</code></pre>
<p>Note that this assumes the destination sheet already exists. It's pretty easy to create one if it doesn't.</p>
http://stackoverflow.com/questions/388718/how-to-make-a-net-generic-method-behave-differently-for-value-types-and-referenc/388723#3887230Answer by Stewart Johnson for How to make a .Net generic method behave differently for value types and reference types?Stewart Johnson2008-12-23T12:02:45Z2008-12-23T12:02:45Z<p>Is there a reason you can't go with the two separate implementations (that possibly both use a third common implementation)?</p>
<p>Using <code>typeof</code> means you're doing <a href="http://en.wikipedia.org/wiki/RTTI" rel="nofollow">RTTI</a> which will make your app slower. Using the compiler (by using separate implementations for class and struct) will be much quicker, since all the decisions about types will be handled by the compiler during JIT compiling.</p>
http://stackoverflow.com/questions/388347/what-do-gurus-say-about-requirements-traceability-matrix/388349#3883493Answer by Stewart Johnson for What do gurus say about Requirements Traceability Matrix?Stewart Johnson2008-12-23T07:18:40Z2008-12-23T07:18:40Z<p>If your requirements are constantly changing then you have more issues than just keeping your RTMX up to date -- how can you hope to develop your code?</p>
<p>CMM level 2 also talks about establishing configuration management; specifically a Configuration Control Board which will help reduce the churn on your requirements by managing change properly.</p>
http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/374212#37421210Answer by Stewart Johnson for Opinions sought: Is it better to do roll-your-own or ready-built forum software?Stewart Johnson2008-12-17T10:50:15Z2008-12-17T10:56:08Z<p><strong>Advantages</strong> to rolling your own:</p>
<ul>
<li>a non-standard custom-built system means you'll be less prone to "standard" attacks (e.g.: a vulnerability in PunBB) since bad guys tend to bother with exploit-hunting only on widely-deployed systems (more return on their investment)</li>
<li>absolute control over how your system works and looks</li>
<li>you'll learn a lot</li>
</ul>
<p><strong>Disadvantages:</strong></p>
<ul>
<li>you'll repeat mistakes other people have already solved</li>
<li>it'll take you longer to get up and running</li>
<li>long-term it'll be more maintenance (since you have to fix bugs & add features yourself).</li>
<li>you can't "leverage the community" -- if you choose an off-the-shelf forum that has a plugin system then there's a whole bunch of community add-ons that won't be available for your custom forum software.</li>
</ul>
<p>There's <a href="http://en.wikipedia.org/wiki/Internet_forum_software" rel="nofollow">a GIANT list of forum software on wikipedia</a> -- there's most likely something in there that will suit your needs that you can get up and running quickly.</p>
http://stackoverflow.com/questions/359590/cocoa-equivalent-of-nets-environment-specialfolder-for-saving-preferences-setti3Cocoa equivalent of .NET's Environment.SpecialFolder for saving preferences/settings?Stewart Johnson2008-12-11T14:45:46Z2008-12-13T05:51:57Z
<p>How do I get the reference to a folder for storing per-user-per-application settings when writing an Objective-C Cocoa app in Xcode?</p>
<p>In .NET I would use the <code>Environment.SpecialFolder</code> enumeration:</p>
<pre><code>Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
</code></pre>
<p>What's the Cocoa equivalent?</p>
http://stackoverflow.com/questions/359530/top-reasons-why-programmers-are-fired/359609#3596095Answer by Stewart Johnson for Top reasons why programmers are fired.Stewart Johnson2008-12-11T14:52:25Z2008-12-11T14:52:25Z<p>I've seen people sacked for inappropriate behaviour -- saying inappropriate things in front of the customer (badmouthing the company that provides your paycheque in front of the customers is not a good idea).</p>
http://stackoverflow.com/questions/345825/requirements-or-testing/345855#3458552Answer by Stewart Johnson for Requirements or Testing?Stewart Johnson2008-12-06T03:38:01Z2008-12-06T03:38:01Z<p>You have to test against the requirements, so if you don't have requirements you can't do testing. So if you have to pick one, you can only pick requirements.</p>
<p>But not doing testing is a path to failure. Guaranteed.</p>
http://stackoverflow.com/questions/342596/two-column-primary-key-in-mysql/342615#3426150Answer by Stewart Johnson for Two column primary key in MySQLStewart Johnson2008-12-05T01:13:45Z2008-12-05T01:13:45Z<p>You want to use the MySQL <code>CONSTRAINT</code> syntax when creating your table (or alter an existing table).</p>
http://stackoverflow.com/questions/339956/whats-the-best-ui-for-entering-date-of-birth/340023#3400231Answer by Stewart Johnson for What's the best UI for entering date of birth?Stewart Johnson2008-12-04T09:29:23Z2008-12-04T09:29:23Z<p>I normally use both -- a datepicker that populates a textfield in the correct format. Advanced users can edit the textfield directly, mouse-happy users can pick using the datepicker.</p>
<p>If you're worried about space, I usually have just the textfield with a little calendar icon next to it. If you click on the calendar icon it brings up the datepicker as a popup.</p>
<p>Also I find it good practice to pre-populate the textfield with text that indicates the correct format (i.e.: "DD/MM/YYYY"). When the user focuses the textfield that text disappears so they can enter their own.</p>
http://stackoverflow.com/questions/332908/merge-multiple-svn-projects/332950#3329500Answer by Stewart Johnson for Merge Multiple SVN ProjectsStewart Johnson2008-12-02T03:29:03Z2008-12-02T03:29:03Z<p>You could create a new top-level project that uses svn:externals to point to all the other projects and places them in appropriate subdirectories. </p>
<ul>
<li>devs will only need to check out your new top-level project (svn will automatically follow the svn:externals and pull in the others)</li>
<li>the full version history will be retained, and new changes will be automatically committed to the relevant sub-project</li>
<li>it will take you about 5 mins to implement (create the new top level project and run <code>svn propedit svn:externals top_dir</code>).</li>
</ul>
http://stackoverflow.com/questions/328294/how-do-i-use-sql-server-compact-to-store-per-user-application-data0How do I use SQL Server Compact to store per-user application data?Stewart Johnson2008-11-30T01:13:02Z2008-12-01T04:44:56Z
<p>Normally I use SQLite databases to store data for an application on a per-user basis: I include a blank version of the database in my app and copy it to the user's app data directory on first run, and that's where I keep all their personal data related to the app.</p>
<p>Is it possible to do the same thing with SQL Server Compact edition? I thought I might give that DB a go to see if the Visual Studio support is better.</p>
<p>I can see how to add a SSCE database to my project, but I assume that means it'll be a single version of the DB for all users -- not what I want. Is it possible to create a per-user copy of the database?</p>
<p><strong>Edit:</strong> I just noticed that it's not possible to create LINQ-to-SQL classes using the designer in Visual Studio 2008 using SSCE anyway, which is pretty much the whole reason I was considering SSCE. Am I missing something?</p>
<p><strong>Edit2:</strong> So I can use SQLMetal to generate the DBML and classes -- that'll do the job though I would've preferred using the designer.</p>
http://stackoverflow.com/questions/328262/what-was-the-purpose-of-the-first-application-you-developed/328306#3283062Answer by Stewart Johnson for What was the purpose of the first application you developed?Stewart Johnson2008-11-30T01:25:12Z2008-11-30T06:00:38Z<p>My first application was for a juice delivery company. The company was run by a family friend looking to save some dollars, and I was in the second year of my IT degree at uni.</p>
<p>They needed an application where they could enter in the details of the juice required for the next week for all their customers, and it would automatically round the numbers up to whole cartons and produce a plan for the pallets of juice to be shipped from the factory. Based on what was actually shipped, it would then allocate the juice to the customers according to their orders (sometimes they missed out since some juice wasn't shipped from the factory) and then generate appropriate invoices. </p>
<p>I wrote the whole thing in VBA using Access97. It actually worked really well, though obviously as my first app there were a few WTFs in there and a lot of spaghetti code. I realised years later that the app never deleted any data from the DB, so the longer they used it the slower it would get as the databse file got bigger and bigger. Still, they used it for about 4 years with no major issues, and I call that a success.</p>
<p>When they sold the business to someone else they listed that software as part of the business assets, and that made me quite proud. :-)</p>
http://stackoverflow.com/questions/321068/returning-multiple-values-from-a-c-function/321079#3210794Answer by Stewart Johnson for Returning multiple values from a C++ functionStewart Johnson2008-11-26T15:21:40Z2008-11-26T15:21:40Z<p>It's entirely dependent upon the actual function and the meaning of the multiple values, and their sizes:</p>
<ul>
<li>If they're related as in your fraction example, then I'd go with a struct or class instance.</li>
<li>If they're not really related and can't be grouped into a class/struct then perhaps you should refactor your method into two.</li>
<li>Depending upon the in-memory size of the values you're returning, you may want to return a pointer to a class instance or struct, or use reference parameters.</li>
</ul>
http://stackoverflow.com/questions/314095/make-visual-studio-understand-camelcase-when-hitting-ctrl-and-cursor-keys/314153#3141532Answer by Stewart Johnson for Make Visual Studio understand CamelCase when hitting ctrl and cursor keysStewart Johnson2008-11-24T13:42:02Z2008-11-24T13:42:02Z<p>It's not native to Visual Studio, but you can get it for free using <a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/CodeRushX/" rel="nofollow">CodeRush Express</a>. (ReSharper and CodeRush require payment).</p>
http://stackoverflow.com/questions/312527/os-x-run-rsync-under-sudo-using-sshconfig1OS X run rsync under sudo using ssh_configStewart Johnson2008-11-23T13:34:46Z2008-11-23T13:53:48Z
<p>I want to set up an automatic <code>rsync</code> job to backup a bunch of user accounts on my OS X machine to a linux fileserver. I have set up password-free ssh from my account to another machine, and it works great, so I tried using this command:</p>
<pre><code>sudo rsync -avz /Users/jbloggs myserv:/var/Backup/
</code></pre>
<p>where <code>myserv</code> is an alias set up in my <code>~/.ssh/config</code>. The problem I have is that I have to use sudo to get that command to work -- under my personal account I don't have access to the other users' home directories to copy files for backup. That command works fine on my own account without sudo, but when I run under sudo it's not looking at my <code>~/.ssh/config</code> any more (so it complains about "unknown host myserv").</p>
<p>How can I get the rsync running under sudo to still look at my personal <code>~/.ssh/config</code>?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312433#31243327Answer by Stewart Johnson for Language features you should never use?Stewart Johnson2008-11-23T12:04:51Z2008-11-23T12:04:51Z<p>You should always use Option Explicit in Visual Basic (i.e.: you should never use implicit variables).</p>
http://stackoverflow.com/questions/310813/how-do-you-perform-code-reviews/310847#3108471Answer by Stewart Johnson for How do you perform code reviews?Stewart Johnson2008-11-22T04:16:49Z2008-11-22T04:16:49Z<p>I worked at a process-heavy organisation, and the basic overview of code inspections was like this:</p>
<ul>
<li>project manager identifies 4 people to do the inspection who are identified with the roles of Author, Leader, Scribe and Tester.
<ul>
<li><strong>Author</strong> - person who wrote the code</li>
<li><strong>Leader</strong> - person who organises the inspection meeting and "runs" the meeting (e.g.: gets things back on track if a side discussion takes over)</li>
<li><strong>Scribe</strong> - person who writes down all the comments, takes notes on TODOs for the project manager, architect, etc.</li>
<li><strong>Tester</strong> - representative from the test team</li>
</ul></li>
<li>Leader organises the inspection -- makes sure everyone has access to the correct version of the chunk of source code, along with all supporting artefacts (reqs, design docs, etc)</li>
<li>Everyone prepares for inspection by reading through the code and making notes.</li>
<li>All the obvious errors are collated offline (not in a meeting) so they don't have to be discussed during the inspection meeting (which would be a waste of time)</li>
<li>If everyone agrees the code is ready for inspection then the meeting goes ahead</li>
<li>Someone (not the author) reads through the code, everyone discusses bugs/design issues etc. Scribe writes everything down (we had a standard form for that).</li>
<li>At the end of the meeting everyone agrees on a "disposition" for the code:
<ul>
<li><em>Passed</em> - code is good to go</li>
<li><em>Passed with rework</em> - code is good so long as small changes are fixed</li>
<li><em>Re-inspect</em> - fix problems and have another inspection</li>
</ul></li>
<li>After the meeting the author fixes the mistakes and checks in the new version.</li>
<li>If it's <em>passed with rework</em> then leader checks off the bugs that the scribe wrote down and makes sure they're all fixed.</li>
</ul>
<p>There's loads more, but this is the basic jist of it. This was a CMM level 5 company, so they collected metrics on LoC-inspected-per-hour and used that to predict how much inspection time a new project would require.</p>
http://stackoverflow.com/questions/1129008/does-authorization-in-web-config-check-sub-groups-as-well/1279516#1279516Comment by Stewart Johnson on Does authorization in web.config check sub-groups as well?Stewart Johnson2009-08-15T01:20:19Z2009-08-15T01:20:19ZGreat answer, thanks!http://stackoverflow.com/questions/1258036/rails-how-to-restful-query-models-through-associationsComment by Stewart Johnson on Rails: how to RESTful query models through associations?Stewart Johnson2009-08-12T06:43:02Z2009-08-12T06:43:02ZMy question wasn't about pretty URLs -- it was about which Rails controller I would use to handle the request, and what action would be used.http://stackoverflow.com/questions/1258036/rails-how-to-restful-query-models-through-associations/1258290#1258290Comment by Stewart Johnson on Rails: how to RESTful query models through associations?Stewart Johnson2009-08-12T01:53:02Z2009-08-12T01:53:02Z@Wahnfrieden -- and my question wasn't about pretty URLs, it was about controllers and actions.http://stackoverflow.com/questions/1258036/rails-how-to-restful-query-models-through-associations/1258290#1258290Comment by Stewart Johnson on Rails: how to RESTful query models through associations?Stewart Johnson2009-08-11T13:29:40Z2009-08-11T13:29:40ZActually I had intended that a User :has_many Widgets and a Widget :belongs_to a User.http://stackoverflow.com/questions/1258036/rails-how-to-restful-query-models-through-associations/1258290#1258290Comment by Stewart Johnson on Rails: how to RESTful query models through associations?Stewart Johnson2009-08-11T03:11:13Z2009-08-11T03:11:13ZAh that makes a lot of sense. I wasn't aware of the :shallow option for map.resources. Thanks!http://stackoverflow.com/questions/1258036/rails-how-to-restful-query-models-through-associations/1258139#1258139Comment by Stewart Johnson on Rails: how to RESTful query models through associations?Stewart Johnson2009-08-11T02:31:18Z2009-08-11T02:31:18ZThanks for you reply, but I've got NFI what you're talking about. You don't even seem to mention Widgets owned by Users?
I was looking for an answer like "you should create a custom action on your controller" or "you should use the index action on your Widgets controller and do XYZ in it".http://stackoverflow.com/questions/110313/how-to-make-sure-my-git-repo-code-is-safe/697730#697730Comment by Stewart Johnson on How to make sure my git repo code is safe?Stewart Johnson2009-03-30T23:17:58Z2009-03-30T23:17:58ZWe don't back up developer workstations (it's expensive when you've got 100s of them) and encourage them to checkin a few times a day. Then we just have to back up the server. That's not an option with git.http://stackoverflow.com/questions/696723/how-do-i-guarantee-data-is-the-same-after-upgrading-sql-server/696732#696732Comment by Stewart Johnson on How do I guarantee data is the same after upgrading SQL Server?Stewart Johnson2009-03-30T10:51:51Z2009-03-30T10:51:51Z"The question is up to what degree you want to prove it?" In a court of law. http://stackoverflow.com/questions/388955/copying-millions-of-files/388961#388961Comment by Stewart Johnson on Copying millions of filesStewart Johnson2008-12-23T14:46:09Z2008-12-23T14:46:09Z@NXC: rsync copies between two folders regardless of whether they're on the same machine or not. It doesn't care.http://stackoverflow.com/questions/388715/how-to-copy-and-paste-worksheets-between-excel-workbooks/388750#388750Comment by Stewart Johnson on How to copy and paste worksheets between Excel workbooks?Stewart Johnson2008-12-23T13:11:47Z2008-12-23T13:11:47ZYes this will only work within one Excel application.http://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files/374595#374595Comment by Stewart Johnson on NUnit [TearDown] fails -- what process is accessing my files?Stewart Johnson2008-12-19T07:41:54Z2008-12-19T07:41:54ZI found a solution! Adding GC.Collect() immediately before the File.Delete line in my [TearDown] method gets rid of the exceptions. When I'm debugging there are no longer any references to the connection so I'm not sure how the GC.Collect works, but it does.http://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files/374595#374595Comment by Stewart Johnson on NUnit [TearDown] fails -- what process is accessing my files?Stewart Johnson2008-12-19T07:24:02Z2008-12-19T07:24:02ZThanks for your help anyway!http://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files/374595#374595Comment by Stewart Johnson on NUnit [TearDown] fails -- what process is accessing my files?Stewart Johnson2008-12-19T05:22:45Z2008-12-19T05:22:45ZSo I wrapped all my DbCommands in using() blocks as well, so they're being Dispose()d immediately before the connection is Dispose()d. It made no difference -- same problem. :-(http://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files/374623#374623Comment by Stewart Johnson on NUnit [TearDown] fails -- what process is accessing my files?Stewart Johnson2008-12-18T02:08:16Z2008-12-18T02:08:16Z@Daok: "You say it fail then go to teardown" -- I didn't say that. Everything works <i>except</i> that single line in [TearDown].http://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files/374595#374595Comment by Stewart Johnson on NUnit [TearDown] fails -- what process is accessing my files?Stewart Johnson2008-12-18T02:04:54Z2008-12-18T02:04:54ZAh okay, I'll give that a shot (when I'm at home -- don't have the code at work). Thanks.