User crucible - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T07:41:44Zhttp://stackoverflow.com/feeds/user/3717http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/43201/categories-of-controllers-in-mvc-routing-duplicate-controller-names-in-separat2Categories of controllers in MVC Routing? (Duplicate Controller names in separate Namespaces)crucible2008-09-04T05:02:36Z2009-07-21T19:16:46Z
<p>Hey guys,</p>
<p>I'm looking for some examples or samples of routing for the following sort of scenario:</p>
<p>The general example of doing things is: {controller}/{action}/{id}</p>
<p>So in the scenario of doing a product search for a store you'd have:</p>
<pre><code>public class ProductsController: Controller
{
public ActionResult Search(string id) // id being the search string
{ ... }
}
</code></pre>
<p>Say you had a few stores to do this and you wanted that consistently, is there any way to then have: {category}/{controller}/{action}/{id}</p>
<p>So that you could have a particular search for a particular store, but use a different search method for a different store?</p>
<p>(If you required the store name to be a higher priority than the function itself in the url)</p>
<p>Or would it come down to:</p>
<pre><code>public class ProductsController: Controller
{
public ActionResult Search(int category, string id) // id being the search string
{
if(category == 1) return Category1Search();
if(category == 2) return Category2Search();
...
}
}
</code></pre>
<p>It may not be a great example, but basically the idea is to use the same controller name and therefore have a simple URL across a few different scenarios, or are you kind of stuck with requiring unique controller names, and no way to put them in slightly different namespaces/directories?</p>
<p>Edit to add:</p>
<p>The other reason I want this is because I might want a url that has the categories, and that certain controllers will only work under certain categories.</p>
<p>IE:</p>
<p>/this/search/items/search+term <-- works</p>
<p>/that/search/items/search+term <-- won't work - because the search controller isn't allowed.</p>
http://stackoverflow.com/questions/40863/business-application-ui-design14Business Application UI Designcrucible2008-09-02T22:56:14Z2009-06-22T07:42:57Z
<p>Hey guys,</p>
<p>Basically I'm going to go a bit broad here and ask a few questions to get a bit of a picture of how people are handling UI these days.</p>
<p>Lately I've found it pretty easy to do some fancy things with UI design and with WPF specifically we're finding new ways to do layouts that are better looking and more functional for the user, but in contrast one of the business focused guys at our local .NET User Group wouldn't even think of using WPF until it had a datagrid that he could use to make Excel like input forms.</p>
<ol>
<li><p>So basically, have you rethought the design of your business apps as you move to Web/WPF/Silverlight designs, because for us at least - in winforms we kept things fairly functional and uniform, or are you trying to keep that "known" UI?</p></li>
<li><p>Would a dedicated design guy (for larger teams), or a dev with more design chops rank higher when looking at hiring these days? (Check out what a designer did for <a href="http://www.hanselman.com/blog/LearningWPFWithBabySmashManuallyManagingClickOnceAndSomeMoreDesignerGoodness.aspx" rel="nofollow">Scott Hanselman's BabySmash</a> and <a href="http://codebetter.com/blogs/glenn.block/archive/2008/05/08/wpf-from-this-to-that-wow.aspx" rel="nofollow">Microsoft's Prism demo</a>)</p></li>
<li><p>Are there any design hints/tips/guidelines you use for your UI - especially for WPF?</p></li>
<li><p>What sites would you recommend for design?</p></li>
</ol>
http://stackoverflow.com/questions/41712/traditional-asp-net-vs-mvc8Traditional ASP .NET vs MVCcrucible2008-09-03T13:54:22Z2009-05-21T09:03:10Z
<p>As someone with some winforms and client applications experience - is it worth going back and learning the way traditional ASP .NET pages work, or is it okay with moving straight into ASP .NET MVC?</p>
<p>I'm kind of looking for pitfalls or traps in my knowledge of general C#, that I won't know from the screencast series and things on the ASP .NET site.</p>
http://stackoverflow.com/questions/118872/how-to-set-sql-profiler-to-profile-sql-2005-reporting-services/656430#6564300Answer by crucible for How to set sql profiler to profile SQL 2005 reporting servicescrucible2009-03-17T23:33:10Z2009-03-17T23:33:10Z<p>So there's a few ways I profile that could help you.</p>
<ol>
<li>Add the column named "HostName" and you'll get the server name appearing as the computer running the report.</li>
<li>Add a reporting login name to the database and use that name on the reporting service's Shared Data Source, and then filter by LoginName.</li>
<li>If you add a comment to the report, then you will see that comment and the sql of the report appear in the Data window.</li>
</ol>
<p>For the third one, what I mean is do this:</p>
<p><hr /></p>
<p>-- Get Products Report</p>
<p>select productid, productname from products</p>
<p><hr /></p>
<p>And the comment line will appear in the window along with the SQL, which makes it very easy to track to a report when you're noticing one of them is causing issues, further on down the track.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/42761/what-documentation-and-training-are-you-pushing-out-with-your-app1What documentation and training are you pushing out with your app?crucible2008-09-03T22:36:45Z2009-01-17T05:41:35Z
<p>The question is pretty self-explanatory, but for those of you pushing out new applications, or having to support legacy systems, how do you effectively get training for new users out there?</p>
<p>I think the way of handing over a book is obsolete, and spending an hour or two showing someone around a system is just a waste of time as a developer, so...</p>
<ul>
<li>Do you rely on other users of the system to show a newbie?</li>
<li>Do you have documentation that you expect them to read?</li>
<li>Hope that the application interface is intuitive enough for someone performing the job?</li>
<li>Use wikis or collaborative tools, sharepoint, etc?</li>
<li>Have videos?</li>
</ul>
<p>I'm beginning to half think a simple wiki might be helpful in the long run to explain things that aren't self explanatory, but also linking in screencasts of how to do it in the interface - as long as the interface doesn't change too often to make the screencasts obsolete.</p>
<p>What's worked for you and what do you think is worth pursuing?</p>
http://stackoverflow.com/questions/390930/asp-net-mvc-authorization-using-roles/390963#3909633Answer by crucible for asp.net mvc authorization using rolescrucible2008-12-24T07:25:29Z2008-12-24T07:25:29Z<p>Matt is right.</p>
<p>What the authorisation is for is to show that they're allowed to perform that function - what you're trying to do is say whether they can perform the function for that particular ID.</p>
<p>So two solutions:</p>
<ol>
<li>Like Matt said, make an action that takes no ID, but looks up the current logged in user from the session information, and retrieves them.</li>
<li>Make an action that takes an ID, but only allow administrators access - so they can modify other users information if required.</li>
</ol>
<p>But to answer the question, the Authorisation is only to say "Yes, this person can use the modify user action", not based on the parameter entered.</p>
<p>The other way is that you could make it check that the user retrieved == the current user, or redirect to another action saying that they cannot edit that user - but it'd be better just to provide an action that doesn't take an id, and just gets the current logged in user.</p>
http://stackoverflow.com/questions/42984/how-do-you-add-a-web-reference-through-a-proxy-firewall1How do you add a web reference through a proxy/firewall?crucible2008-09-04T01:18:50Z2008-11-24T16:13:44Z
<p>I'm behind a firewall at work at the moment and I was testing something that I had deployed to my website, and the work proxy seems to be blocking it somewhat.</p>
<p>Basically I am getting a message of:</p>
<blockquote>
<p>Operation is not valid due to the current state of the object</p>
</blockquote>
<p>I've got it down to my proxy interferring, but I can't see any advanced settings or anything I can set up to go through my proxy to get to my service.</p>
<p>I did a quick google for it, but no joy.</p>
<p>Anyone found a quick way to get around it?</p>
http://stackoverflow.com/questions/47338/asp-net-mvc-preview-5-routing-ambiguity/49187#491870Answer by crucible for ASP.NET MVC Preview 5 routing ambiguitycrucible2008-09-08T05:01:31Z2008-09-08T05:15:49Z<p>Hey Davide,</p>
<p>What I'd do is ditch the blank Delete(), and only use Delete(string username)</p>
<p>In your url routing you'd have something similar to "/{Controller}/{Action}/{username}/" ?
If you have "/{Controller}/{Action}/{Id}/" you'd be better off doing Delete(string id) and that way just using the url to handle this "/Account/Delete/davide/"</p>
<p>That said use your default route which should be something like the default Id is ""</p>
<p>Then in your Delete(string id) method have:</p>
<pre><code>public ActionResult Delete(string id)
{
if(string.IsNullOrEmpty(id)) return EmptyID();
// Continue normal Delete method
}
public ActionResult EmptyID()
{
// The method you were going to have on a blank delete.
}
</code></pre>
<p>That or just wrap it up in the one method on an if {} else {}</p>
<p>Either way I'd just be going with the one method and doing a default on your username/id in your route of an empty string and handle it that way.</p>
<p>If you want to contact me on further follow up to what I mean, or whatever will help, ping me at andrew@ my domain on my info page.</p>
<p>Edit: Ah pretty much what Berko said anyway, I'm not sure how Named Attributes would help - so please post a comment here detailing it for other guys who find the same issues! :)</p>
http://stackoverflow.com/questions/45191/ioc-explain-and-more-important-when-to-use-it/45208#452082Answer by crucible for IoC Explain and more important when to use it?crucible2008-09-05T04:00:16Z2008-09-05T04:00:16Z<p>Hey JMS, basically IoC/DI will allow you to define which implementation you're using once, and keep a static copy of your container to reference each time you want to reference it.</p>
<p>The Wikipedia will probably help you, but I wanted to reference your second part - yes, dependency injection can be done for classes (ie, every time this class type needs to be passed to a method, use this class), but it's better to use interfaces, because that way you can change which version of a provider, repository, etc you're using just by re-referencing it in your setup.</p>
<p>IE, say you had an interface to read a stream in, and you had an XMLStreamReader and a SQLStreamReader implementation. Then you can pass the reference to the interface to your methods and then in your IoC container tell it which one to use.</p>
<p>So, you could have public List ReadPeople(IStreamReader reader) and in your setup for your IoC container tell it, every time you expect an IStreamReader use SQLStreamReader.</p>
<p>Then if you change your mind later, you only need to change it in the one place (the setup of your container) and it won't matter how many methods ask for an IStreamReader, it will always get the default you told your container to serve up.</p>
http://stackoverflow.com/questions/43201/categories-of-controllers-in-mvc-routing-duplicate-controller-names-in-separat/45076#450761Answer by crucible for Categories of controllers in MVC Routing? (Duplicate Controller names in separate Namespaces)crucible2008-09-05T01:30:27Z2008-09-05T01:40:57Z<p>I actually found it not even by searching, but by scanning through the ASP .NET forums in <a href="http://forums.asp.net/t/1296928.aspx?PageIndex=1" rel="nofollow">this question</a>.</p>
<p>Using this you can have the controllers of the same name under any part of the namespace, so long as you qualify which routes belong to which namespaces (you can have multiple namespaces per routes if you need be!)</p>
<p>But from here, you can put in a directory under your controller, so if your controller was "MyWebShop.Controllers", you'd put a directory of "Shop1" and the namespace would be "MyWebShop.Controllers.Shop1"</p>
<p>Then this works:</p>
<pre><code> public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
var shop1namespace = new RouteValueDictionary();
shop1namespace.Add("namespaces", new HashSet<string>(new string[]
{
"MyWebShop.Controllers.Shop1"
}));
routes.Add("Shop1", new Route("Shop1/{controller}/{action}/{id}", new MvcRouteHandler())
{
Defaults = new RouteValueDictionary(new
{
action = "Index",
id = (string)null
}),
DataTokens = shop1namespace
});
var shop2namespace = new RouteValueDictionary();
shop2namespace.Add("namespaces", new HashSet<string>(new string[]
{
"MyWebShop.Controllers.Shop2"
}));
routes.Add("Shop2", new Route("Shop2/{controller}/{action}/{id}", new MvcRouteHandler())
{
Defaults = new RouteValueDictionary(new
{
action = "Index",
id = (string)null
}),
DataTokens = shop2namespace
});
var defaultnamespace = new RouteValueDictionary();
defaultnamespace.Add("namespaces", new HashSet<string>(new string[]
{
"MyWebShop.Controllers"
}));
routes.Add("Default", new Route("{controller}/{action}/{id}", new MvcRouteHandler())
{
Defaults = new RouteValueDictionary(new { controller = "Home", action = "Index", id = "" }),
DataTokens = defaultnamespace
});
}
</code></pre>
<p>The only other thing is that it will reference a view still in the base directory, so if you put the view into directories to match, you will have to put the view name in when you return it inside the controller.</p>
http://stackoverflow.com/questions/43021/c-get-index-of-current-foreach-iteration/43103#43103-2Answer by crucible for (C#) Get index of current foreach iterationcrucible2008-09-04T02:39:11Z2008-09-04T02:51:31Z<p>It's only going to work for a List and not any IEnumerable, but in LINQ there's this:</p>
<pre><code>IList<Object> collection = new List<Object> {
new Object(),
new Object(),
new Object(),
};
foreach (Object o in collection)
{
Console.WriteLine(collection.IndexOf(o));
}
Console.ReadLine();
</code></pre>
<p>@Jonathan I didn't say it was a great answer, I just said it was just showing it was possible to do what he asked :)</p>
<p>@Graphain I wouldn't expect it to be fast - I'm not entirely sure how it works, it could reiterate through the entire list each time to find a matching object, which would be a helluvalot of compares.</p>
<p>That said, List might keep an index of each object along with the count.</p>
<p>Jonathan seems to have a better idea, if he would elaborate?</p>
<p>It would be better to just keep a count of where you're up to in the foreach though, simpler, and more adaptable.</p>
http://stackoverflow.com/questions/42984/how-do-you-add-a-web-reference-through-a-proxy-firewall/43013#430130Answer by crucible for How do you add a web reference through a proxy/firewall?crucible2008-09-04T01:35:20Z2008-09-04T01:35:20Z<p>Thanks @Dale!</p>
<p>Checking out wsdl.exe it also has optional parameters to define a proxy as well, but your suggestion seems to work :)</p>
http://stackoverflow.com/questions/41724/what-is-a-dsl-and-where-should-i-use-it14What is a DSL and where should I use it?crucible2008-09-03T14:00:51Z2008-09-03T21:34:26Z
<p>I'm hearing more and more about domain specific languages being thrown about and how they change the way you treat business logic, and I've seen Ayende's blog posts and things, but I've never really gotten exactly why I would take my business logic away from the methods and situations I'm using in my provider.</p>
<p>If you've got some background using these things, any chance you could put it in real laymans terms:</p>
<ul>
<li>What exactly building DSLs means?</li>
<li>What languages are you using?</li>
<li>Where using a DSL makes sense?</li>
<li>What is the benefit of using DSLs?</li>
</ul>
http://stackoverflow.com/questions/41319/checking-if-a-list-is-empty-with-linq/41325#413255Answer by crucible for Checking if a list is empty with LINQcrucible2008-09-03T08:39:30Z2008-09-03T09:16:31Z<p>I just wrote up a quick test, try this:</p>
<pre><code> IEnumerable<Object> myList = new List<Object>();
Stopwatch watch = new Stopwatch();
int x;
watch.Start();
for (var i = 0; i <= 1000000; i++)
{
if (myList.Count() == 0) x = i;
}
watch.Stop();
Stopwatch watch2 = new Stopwatch();
watch2.Start();
for (var i = 0; i <= 1000000; i++)
{
if (!myList.Any()) x = i;
}
watch2.Stop();
Console.WriteLine("myList.Count() = " + watch.ElapsedMilliseconds.ToString());
Console.WriteLine("myList.Any() = " + watch2.ElapsedMilliseconds.ToString());
Console.ReadLine();
</code></pre>
<p>The second is almost three times slower :)</p>
<p>Trying the stopwatch test again with a Stack or array or other scenarios it really depends on the type of list it seems - because they prove Count to be slower.</p>
<p>So I guess it depends on the type of list you're using!</p>
<p>(Just to point out, I put 2000+ objects in the List and count was still faster, opposite with other types)</p>
http://stackoverflow.com/questions/40863/business-application-ui-design/41303#413030Answer by crucible for Business Application UI Designcrucible2008-09-03T08:05:33Z2008-09-03T08:05:33Z<p>@Lars Truijens - Thanks, but I think for 99% of cases that's a horrible idea, and sure, there are uses - but I've found that with WPF there's typically a much better way to do it.</p>
<p>Plus you can use textboxes, and use an Enter as Tab override to move through them easily and swiftly.</p>
http://stackoverflow.com/questions/40863/business-application-ui-design/41245#412450Answer by crucible for Business Application UI Designcrucible2008-09-03T06:32:26Z2008-09-03T06:32:26Z<p>@David H Aust That's part of the reason for asking the question - with these newer tools like WPF that lend themselves to providing newer, more intricate, and at the same time simpler for the user, interfaces that we might need to adapt to new ways of doing things.</p>
<p>And trying to find out who else is adapting/interested and what they are doing, and where they get some inspiration, knowledge or help :)</p>
<p>IE: This is me being proactive about change in possibly the slackest manner ever, short of actively googling :) </p>
<p>^ That was a joke, to make it clear, I'm actually pretty active about learning new stuff, I'm just finding some of the crowdsourcing stackoverflow vs googling pretty interesting :)</p>
http://stackoverflow.com/questions/40873/searching-for-phone-numbers-in-mysql/40916#409160Answer by crucible for Searching for phone numbers in mysqlcrucible2008-09-02T23:32:11Z2008-09-02T23:32:11Z<p>Just an idea, but couldn't you use Regex to quickly strip out the characters and then compare against that like @Matt Hamilton suggested?</p>
<p>Maybe even set up a view (not sure of mysql on views) that would hold all phone numbers stripped by regex to a plain phone number?</p>
http://stackoverflow.com/questions/40730/how-do-you-give-a-c-auto-property-a-default-value/40882#408822Answer by crucible for How do you give a C# Auto-Property a default value?crucible2008-09-02T23:07:27Z2008-09-02T23:07:27Z<p>Sometimes I use this, if I don't want it to be actually set and persisted in my db:</p>
<pre><code>class Person
{
private string _name;
public string Name
{
get
{
return string.IsNullOrEmpty(_name) ? "Default Name" : _name;
}
set { _name = value; }
}
}
</code></pre>
<p>Obviously if it's not a string then I might make the object nullable ( double?, int? ) and check if it's null, return a default, or return the value it's set to.</p>
<p>Then I can make a check in my repository to see if it's my default and not persist, or make a backdoor check in to see the true status of the backing value, before saving.</p>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/38144/how-can-i-convince-skeptical-management-and-colleagues-to-allow-refactoring-of-aw/38841#388411Answer by crucible for How can I convince skeptical management and colleagues to allow refactoring of awful code?crucible2008-09-02T04:52:50Z2008-09-02T04:52:50Z<p>If it aint broke.</p>
<p>I'd suggest just refactoring portions as you get called in for a bug fix - refactor the method, or parts of the class to fit what you'd like to see, and then if you can see a better way of doing a section as part of a fix, go bigger.</p>
<p>But yeah, I'd say legacy code is legacy code - leave it be, as you need to do new things, wrap tests around what you can and move the quality of the code you write for it up.</p>
http://stackoverflow.com/questions/38005/how-to-use-linq-to-sql-in-an-n-tier-solution/38716#387160Answer by crucible for How to use LINQ To SQL in an N-Tier Solution?crucible2008-09-02T02:30:49Z2008-09-02T02:30:49Z<p>LINQ to SQL doesn't really have a n-tier story that I've seen, since the objects that it creates are created in the class with the rest of it, you don't really have an assembly that you can nicely reference through something like Web Services, etc.</p>
<p>The only way I'd really consider it is using the datacontext to fetch data, then fill an intermediary data model, passing that through, and referencing it on both sides, and using that in your client side - then passing them back and pushing the data back into a new Datacontext or intellgently updating rows after you refetch them.</p>
<p>That's if I'm understanding what you're trying to get at :\</p>
<p>I asked ScottGu the same question on his blog when I first started looking at it - but I haven't seen a single scenario or app in the wild that uses LINQ to SQL in this way. Websites like Rob Connery's Storefront are closer to the provider.</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/38706#387060Answer by crucible for Can you recommend an alternative for NCover?crucible2008-09-02T02:18:22Z2008-09-02T02:18:22Z<p>I'm not sure about the coverage, but there is a free version of NCover which is a version before NCoverExplorer, and we're still using that - it's available on the NCover site still.</p>
<p>That said, if you could elaborate on what is not covered by its coverage I'd be interested in hearing about that too!</p>
http://stackoverflow.com/questions/37743/sql-query-to-get-the-top-n-scores-out-of-a-list/37813#378132Answer by crucible for SQL query to get the top "n" scores out of a listcrucible2008-09-01T11:59:05Z2008-09-01T11:59:05Z<p>Here's one that works - I don't know if it's more efficient, and it's SQL Server 2005+</p>
<pre><code>with scores as (
select 1 userid, 100 points
union select 2, 75
union select 3, 50
union select 4, 50
union select 5, 50
union select 6, 25
),
results as (
select userid, points, RANK() over (order by points desc) as ranking
from scores
)
select userid, points, ranking
from results
where ranking <= 3
</code></pre>
<p>Obviously the first "with" is to set up the values, so you can test the second with, and final select work - you could start at "with results as..." if you were querying against an existing table.</p>
http://stackoverflow.com/questions/37666/what-tool-to-use-for-automatic-nightly-builds/37675#3767513Answer by crucible for What tool to use for automatic nightly builds?crucible2008-09-01T09:50:26Z2008-09-01T09:50:26Z<p>At my work we use CCNET, but with builds on check-in more than nightly - although it's easily configured for either or both.</p>
<p>You can very easily set up unit testing to run on every checkin as well, FXCop testing, and a slew of other products.</p>
<p>I would also advise checking out <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">Team City</a> as an option, because it has a free version, and the reporting and setup is reportedly much simpler (it does look nice to me). It does have a limit of somewhere around 20 team members/projects, before it hits a pay-for window.</p>
<p>That said, we started with CCNET, and have grown several products too large to look at Team City on the free version and are very happy with what we have.</p>
<p>Features that help with CCNET include:</p>
<ul>
<li>XML based configuration - you can usually copy and paste most of what you need. </li>
<li>More or less you'll be able to plug your treesurgeon script in as your build script, and point CCNET at that as an executable task to run the compilation. </li>
<li>Lots of documentation and very easy to set up nunit, ncover, fxcop, etc. </li>
<li>Taskbar app that will let you know the status of your projects at any time, and it can also fire off an email or keep an RSS feed with the same information. </li>
</ul>
<p>But I'd definitely go with running a CI build on every check-in - for the most part will run the unit tests before checking in, but let the CCNET server handle run any applications/assemblies that would have dependencies on the assembly we're checking in, and they get re-built, and re-tested on every checkin.</p>
<p>Given that CCNET is free free and takes very little time to set up - I'd highly recommend just going for it and seeing if it suits you, then expanding from there.</p>
<p>(There's another thread here where I posted pretty much the same/with a few alterations - but some of the other comments may help too! <a href="http://beta.stackoverflow.com/questions/36568/automated-builds#37204" rel="nofollow">Automated Builds</a>)</p>
<p>Edit to add: You can easily set up your own deployment scheme for CCNET, and there are a tonne of blog posts out there to assist, and email notifications can really be set up fairly granularly, either on all successes, all failures, when it changes from success to fail, etc. There's also built in RSS, and you could even set up your own notifiers for other systems.</p>
http://stackoverflow.com/questions/35849/what-logging-is-good-logging-for-your-app8What logging is good logging for your app?crucible2008-08-30T10:02:20Z2008-09-01T00:18:00Z
<p>So we've discussed logging in passing at my place of work and I was wondering if some of you guys here could give me some ideas of your approaches?</p>
<p>Typically our scenario is, no logging really at all, and mostly .NET apps, winforms/WPF clients talking through web services or direct to a db.</p>
<p>So, the real question is, where or what would you log? At the moment we have users reporting error messages - so I would assume log startups/shutdowns, exceptions...</p>
<p>Do you take it to calls to the web services or db? Page loads?</p>
<p>How do you get a good idea of what the user was trying to do at the time?</p>
<p>Is it better to go all the way and log everything across multiple attempts/days, or log only what you need to (given hdd is cheap).</p>
<p>I guess that's a few questions, but I wanted to get more of an idea of what the actual practice is out there in larger shops!</p>
http://stackoverflow.com/questions/35849/what-logging-is-good-logging-for-your-app/37297#372970Answer by crucible for What logging is good logging for your app?crucible2008-09-01T00:18:00Z2008-09-01T00:18:00Z<p>Thanks guys, lot of good info, but Martin has given me a bit more detail on how to proceed. I'll give him the answer, as it seems like now we're off the front few pages answers will drop off.</p>
http://stackoverflow.com/questions/36415/best-chat-im-tool-for-developers/37213#372130Answer by crucible for Best chat/IM tool for developers?crucible2008-08-31T22:48:31Z2008-08-31T22:48:31Z<p>Skype is the easiest answer, because it provides great voice and video.</p>
<p>As others have stated something like trillian that provides multiple chat protocols/logins across multiple services is also nice.</p>
<p>But I'd also like to suggest Microsoft's <a href="http://www.connect.microsoft.com/content/content.aspx?SiteID=94&ContentID=6415" rel="nofollow">Shared View</a>. What Shared View gives you that I haven't seen in the others is the ability to chat and share an active window with up to 15 other people on a conference, and you can relinquish control of that screen to any of them - with each person with a share of the control getting their own mouse cursor.</p>
<p>It's made it very easy for our team to have two or three people looking over a coding window, and "taking the helm" as it were on a task.</p>
http://stackoverflow.com/questions/36568/automated-builds/37204#372044Answer by crucible for Automated Buildscrucible2008-08-31T22:42:02Z2008-08-31T22:42:02Z<p>As other's have mentioned we use CCNET here, which we don't usually work on a nightly build, but instead go with a Continuous Integration strategy (every check-in).</p>
<p>I would advise doing the same, whether it be by yourself or within a team, because you can very easily set up unit testing to run on every checkin as well, FXCop testing, and a slew of other products.</p>
<p>If it's just you in a one man team, and you don't have too many projects on the go, I would also advise checking out <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">Team City</a> as an option, because it has a free version, and the reporting and setup is reportedly much simpler (it does look nice to me).</p>
<p>That said, we started with CCNET, and have grown several products too large to look at Team City on the free version and are very happy with what we have.</p>
<p>Features that help with CCNET include:</p>
<ul>
<li>XML based configuration - you can usually copy and paste most of what you need.</li>
<li>More or less you'll be able to plug your treesurgeon script in as your build script, and point CCNET at that as an executable task to run the compilation.</li>
<li>Lots of documentation and very easy to set up nunit, ncover, fxcop, etc.</li>
<li>Taskbar app that will let you know the status of your projects at any time, and it can also fire off an email or keep an RSS feed with the same information.</li>
</ul>
<p>But I'd definitely go with running a CI build on every check-in - for the most part will run the unit tests before checking in, but let the CCNET server handle run any applications/assemblies that would have dependencies on the assembly we're checking in, and they get re-built, and re-tested on every checkin.</p>
<p>Given it's free and takes very little time to set up - I'd highly recommend just going for it.</p>
http://stackoverflow.com/questions/33349/looking-up-document-library-items-in-a-sharepoint-workflow/37186#371861Answer by crucible for Looking up document library items in a SharePoint workflowcrucible2008-08-31T22:24:05Z2008-08-31T22:24:05Z<p>I really don't have much experience with Sharepoint, but I thought I could at least provide <em>some</em> answer - even if it's the wrong one.</p>
<p>From another dev I've spoken to it sounds like it's tough to get into any subfolders, so you might need to look at making your own custom workflow.</p>
<p>Maybe something like LINQ to Sharepoint might be able to help you with actually getting in and enumerating the subfolders and getting to the data that you need? <a href="http://www.codeplex.com/LINQtoSharePoint" rel="nofollow">LINQ to Sharepoint</a></p>
http://stackoverflow.com/questions/36432/commenting-code/36467#364672Answer by crucible for Commenting codecrucible2008-08-30T23:23:39Z2008-08-30T23:23:39Z<p>As others have said, code should be self commenting, so names, events, objects should all reflect and read as easily as possible to what they're trying to achieve.</p>
<p>Apart from that additional comments should be used when something needs further explaining, as to why you went down a way (this formula, and values were chosen because of x, refer to bug, etc).</p>
<p>(If this is .NET and you are also wanting to provide a windows helpfile you could also look at Ghostdoc and the commenting it provides, and Sandcastle [a Windows helpfile builder that will take code xml comments and build a helpfile from your API].)</p>
<p>But generally the rule of thumb is that 99% of the time the code should be readable, logical and broken down into methods that make sense so that you don't really need anything apart from the code, and then comments are only to fill in the blanks on what <em>really</em> needs explaining further.</p>
http://stackoverflow.com/questions/35874/how-do-you-enforce-or-maintain-the-quality-of-the-bug-reports-in-your-bug-tracker/35887#358870Answer by crucible for How do you enforce or maintain the quality of the bug reports in your bug tracker?crucible2008-08-30T11:15:11Z2008-08-30T11:15:11Z<p>Tough question. I'd try and see if the system has any way to enforce that certain fields that you require are entered, try and have whatever bugs that are critical coming across your eyes somehow (email, rss) so you can pounce quickly, but mostly that your team is aware of the quality standard and keep to it, guidelines are published and public, that sort of thing.</p>
<p>Assuming it's your team:
If you can have a certain structure that is used every time in a comments field, of what is expected when it is entered, then that would be good too - even better if your software has a default notes outline where you can define that structure on a blank form.</p>
<p>To some degree though, it's up to the individual, they have to be aware that it's part of the communication standards, it's expected as a job requirement, and that they're responsible to every other member of the team - because other people shouldn't be in a position of hunting them down to find out any further details if it could be avoided.</p>
<p>Especially since the turnaround time on fixing bugs on lower priority items could be some time and people are bound to be forgetful on the details.</p>
<p>Assuming it's users:
You can't to a high degree, but I'd try - if possible, to ask questions on whatever form in a way that people could understand.</p>
<p>Not entirely on this topic, but in a "how you ask the questions" kind of way, is this post on 37 Signals blog - <a href="http://www.37signals.com/svn/posts/1111-design-decisions-basecamp-support-request-form" rel="nofollow" title="Design Decisions - Support Request Form">link text</a></p>
<p>Even if you have to have another form asking the questions visible to your users, that only feeds mostly the data to bug program, I'd do it just to ask the right questions.</p>
<p>What product? What version (pictures showing how to find it)? It'd be helpful to include a screen dump, if they could open the program and press a button to send through a log file automatically, whether it stopped them from doing further work, whether it lost their changes, etc.</p>
<p>For the users it's probably more about how you ask the questions, and letting them know that you require certain ones to be answered, or which ones you'd find more helpful, then you'd probably get better responses.</p>