User Justin Bozonier - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T11:57:19Zhttp://stackoverflow.com/feeds/user/9401http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245878/how-do-i-choose-between-a-hash-table-and-a-trie-prefix-tree7How Do I Choose Between a Hash Table and a Trie (Prefix Tree)?Justin Bozonier2008-10-29T05:19:04Z2009-11-28T16:37:04Z
<p>So if I have to choose between a hash table or a prefix tree what are the discriminating factors that would lead me to choose one over the other. From my own naive point of view it seems as though using a trie has some extra overhead since it isn't stored as an array but that in terms of run time (assuming the longest key is the longest english word) it can be essentially O(1) (in relation to the upper bound). Maybe the longest english word is 50 characters?</p>
<p>Hash tables are instant look up <em>once you get the index</em>. Hashing the key to get the index however seems like it could easily take near 50 steps.</p>
<p>Can someone provide me a more experienced perspective on this? Thanks!</p>
http://stackoverflow.com/questions/172245/whats-a-good-project-for-an-introduction-to-a-i10What's a good project for an introduction to A.I.?Justin Bozonier2008-10-05T16:40:53Z2009-10-13T14:54:51Z
<p>So I'm just getting started in exploring A.I. a bit and I'm wondering what a good project would be to help introduce me to the field. An example of the level of complexity I'm looking for would be something like tic-tac-toe, or a bayesian spam filter, or...?</p>
<p>For what ever project you suggest it would be helpful if you could also give a brief overview of some common AI strategies that might be used to solve the project you're recommending.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1560649/oauth-for-internal-twitter-feeds/1560712#15607121Answer by Justin Bozonier for OAuth for Internal Twitter FeedsJustin Bozonier2009-10-13T14:48:24Z2009-10-13T14:48:24Z<p>James, based on the following site, I believe you can just grab your token pair from Twitter's Oauth servers and save those on your build server. Then you just use those in the future when you need to authenticate: <a href="http://kovshenin.com/archives/automatic-tweet-oauth/" rel="nofollow">http://kovshenin.com/archives/automatic-tweet-oauth/</a></p>
<p>To clarify,</p>
<ul>
<li><p>First create a web page that you manually use to log into Twitter via OAuth and make that page show you your authentication tokens.</p></li>
<li><p>Next save those in a file your build scripts can use/parse and have them use that data to tweet.</p></li>
</ul>
<p>Good luck man!</p>
http://stackoverflow.com/questions/272985/best-development-methodology-for-a-team-of-6-10-looking-to-grow-by-50-eventual1Best development methodology for a team of 6 - 10 looking to grow by 50% eventuallyJustin Bozonier2008-11-07T18:01:49Z2009-10-09T12:50:23Z
<p>From our current experience we're leaning towards a kind of lean methodology. We are starting to introduce a Product Owner role and we also are forming some QA roles. I'm worried that stratifying the roles like this will result in high visibility but low velocity. I think we'd rather have high velocity at the expense of visibility (we're a small shop visibility is pretty easy).</p>
<p>I'm wondering if instead of handing out horizontally sliced roles if there is a solid framework for handling vertically sliced roles. I'm wondering if that's the crux of XP.</p>
<p>Any thoughts on if I'm off track or any suggestions?</p>
http://stackoverflow.com/questions/270829/internationalizing-desktop-app-within-a-couple-years-what-should-we-do-now8Internationalizing Desktop App within a couple years... What should we do now?Justin Bozonier2008-11-06T23:55:09Z2009-09-22T09:05:24Z
<p>So we are sure that we will be taking our product internationally and will eventually need to internationalize it. How much internationalizing would you recommend we do as we go along?</p>
<p>I guess in other words, is there any internationalization that is easy now but can be much worse if we let the code base mature and that won't slow us down very much if we choose to start doing it now?</p>
<p>Tech used: C#, WPF, WinForms</p>
http://stackoverflow.com/questions/1457519/best-way-to-reuse-a-dialog-in-wpf0Best way to reuse a dialog in WPF?Justin Bozonier2009-09-22T00:04:10Z2009-09-22T00:08:42Z
<p>I have a WPF dialog with a couple user controls and some other standard controls. We have many uses for this dialog with specific tweaks. Right now this dialog manages all of the logic to tweak itself.</p>
<p>I can't help but think there's gotta be a better way. I wish I could do something like this:</p>
<p>Original dialog</p>
<pre><code><dialog>
<Control1>
<CustomHeader />
<Control2 />
<Etc />
</Control1>
</dialog>
</code></pre>
<p>Dialog that varies slightly:</p>
<pre><code><dialog>
<OriginalDialog>
<CustomHeader>
<TextBlock Text="The whole dialog will show and also include this text now" />
</CustomHeader>
<OriginalDialog>
</dialog>
</code></pre>
<p>Is there a way to do what I'm trying for or even a better way that I'm not considering?</p>
http://stackoverflow.com/questions/884488/how-can-i-speed-up-the-rendering-of-my-wpf-listbox1How can I speed up the rendering of my WPF ListBox?Justin Bozonier2009-05-19T19:06:50Z2009-05-21T02:53:48Z
<p>I have a WPF ListBox control <a href="http://github.com/jcbozonier/alloy/blob/2e82343b4b0739eb32ff3fd63354decbe08fc452/IronTwit/Alloy/Alloy.UI/Views/MainView.xaml" rel="nofollow">(view code)</a> and I am keeping maybe like 100-200 items in it. Every time the ObservableCollection it is bound to changes though it takes it a split second to update and it freezes the whole UI. Is there a way to add elements incrementally or something I can do to improve the performance of this control?</p>
http://stackoverflow.com/questions/227909/memory-leaks-in-c-wpf1Memory Leaks in C# WPFJustin Bozonier2008-10-22T23:31:26Z2009-05-12T05:21:39Z
<p>I could use some advice on tracking down the cause of memory leaks in C#. I understand what is a memory leak and I get why they occur in C# but I'm wondering what tools/strategies have you used in the past to resolve them?</p>
<p>I am using .NET Memory Profiler and I've found that one of my huge main objects is staying in memory after I close the window it manages but I'm not sure what to do to severe all links to it.</p>
<p>If I'm not being clear enough just post an answer with a question and I'll edit my question in response. Thanks!</p>
http://stackoverflow.com/questions/850412/whats-a-good-api-for-creating-music-via-programming6What's a good api for creating music via programming?Justin Bozonier2009-05-11T22:42:07Z2009-05-11T23:10:11Z
<p>I'm looking into playing around with procedurally generating music. I'm hoping to find a really simple API where I can just call out instrument, note, duration and string together a song (I'll take anything of course but that would be my preference). Does anyone know of any library that does this?</p>
http://stackoverflow.com/questions/147182/low-friction-minimal-requirements-gathering1Low Friction Minimal Requirements GatheringJustin Bozonier2008-09-29T01:24:19Z2009-04-20T18:15:15Z
<p>How can our team gather requirements from our "Product Owner" in as low friction yet useable of a way as possible?</p>
<p>Now here's the guidelines- No posts that it can't be done or that the business needs to make a decision that it cares about quality, yada yada. The product I work for is a small group that has been successful for years. I just want to help them step it up a notch.</p>
<p>Basically, I'm on a 6 or 7 person team with one Product Owner. She does a great job but is juggling a few different roles (as I believe is common on extremely small teams). Usually requirements are given at sporadic times (email convos, face to face discussions, meetings, etc). They are never entered into a system and sometimes this results in features missing a release or the release getting pushed back since everyone forgot about the necessary feature.</p>
<p>If you're in a similar situation but you found a way to overcome this, I'd love to hear it. I'm happy to write code to help ease this situation but it can't be a web site that the Product Owner has to go to in order to get anything done. She is extremely busy and we need some way of working together as a team in order to gather these requirements.</p>
<p>I'm currently thinking of something like this: Developers and team members gather requirements discussed in face to face meetings and write some quick notes on the features discussed on a wiki page. Product owner is notified whenever these pages are updated and it then becomes her responsibility to ensure accuracy.</p>
<p>Pros: We'll have some record of the features. Cons: The developers are taking responsibility for something that they ordinarily wouldn't. I'm okay with that here. I think in this situation it's teamwork.</p>
<p>Of course once we do this, then we're going to see that the product owner probably doesn't have enough time to ensure feature accuracy. Ultimately she is overburdened and I think this will help showcase that fact, but I just need to be able to draw attention to that first.</p>
<p>So any suggestions?</p>
<p>P.S. her time is extremely limited so it is considered unreasonable to expect her to need to type in the requirements after discussion. She only has time to discuss them once and move on.</p>
http://stackoverflow.com/questions/130898/introduction-to-c-list-comprehensions/684218#6842180Answer by Justin Bozonier for Introduction to C# list comprehensionsJustin Bozonier2009-03-26T01:43:08Z2009-03-26T01:43:08Z<p>Found this when I was looking up how to do list comprehensions in C#...</p>
<p>When someone says list comprehensions I immediately think about Python. The below code generates a list that looks like this:</p>
<p>[0,2,4,6,8,10,12,14,16,18]</p>
<p>the Python way is like this:
list = [2*number for i in range(0,10)]</p>
<p>and in C#:
var list2 = from number in 0.To(10) select 2*number;</p>
<p>Both methods are lazily evaluated.</p>
http://stackoverflow.com/questions/567868/implementing-a-factory-that-uses-specifications-to-determine-which-type-of-object/567917#5679171Answer by Justin Bozonier for Implementing a Factory that uses Specifications to determine which type of object to createJustin Bozonier2009-02-20T00:58:49Z2009-02-20T00:58:49Z<p>So I'm assuming we're really focusing on this set of lines:</p>
<pre><code>if (spec.IsSatisfiedBy(item))
return new NewStatusUpdate();
</code></pre>
<p>and I assume you're asking how in this current form this can be done. It seems like item should support like</p>
<pre><code>interface ISpecSupport<T>
{
bool ItemSpecsContain(ISpecification<T> spec);
}
</code></pre>
<p>Then the spec.IsSatisfiedBy method can take in this interface type and run the method.</p>
<p>In other words I guess I'm saying that the object should carry some sort of description of what it is (in terms of specs). I'm guessing that's a list of some sort but I'm not sure. I'm sure you've probably thought of this so if you can add anything that'd be helpful.</p>
<p>Also, instead of the above maybe you could rearrange it like so:</p>
<pre><code>if (item.Satisfies(spec))
return new NewStatusUpdate();
</code></pre>
<p>Then this way you don't have to use the much maligned visitor pattern (I think that's what I was describing before this). It's more direct since the item seems like it would own the specs and this way you're allowing the item to decide if it meets the spec. </p>
<p>If you don't want this logic held within the object (which I would understand) AND you are using a property bag of some sort (or you're cool with reflection) you could dig into the details of the object with an independent spec validator. Actually, an independent validator might not be a bad idea to begin with. I'm not so sure that the ability to know if a spec matches an item is a responsibility that should remain with an individual spec.</p>
http://stackoverflow.com/questions/296503/wpf-user-controls-datacontext-is-null1WPF User Control's DataContext is NullJustin Bozonier2008-11-17T19:01:25Z2009-02-16T22:11:30Z
<p>I have a user control where the XAML of the control can bind to the appropriate properties from the parent's data context like normal (the data context propagates in xaml). </p>
<p>For example, I have a window whose DataContext I am setting to ObjectA for example. My user control within the window is then try to access the properties within the dataContext</p>
<p>So my window's xaml and code behind can both see a non-null DataContext. </p>
<p>My control that DataContext propagates to can see a non-null DataContext in the Xaml but not in the code behind.</p>
<p>What is the proper way of handling this?</p>
http://stackoverflow.com/questions/338626/flex-profiling-what-is-enterframeevent-doing/342053#3420531Answer by Justin Bozonier for Flex profiling - what is [enterFrameEvent] doing?Justin Bozonier2008-12-04T21:02:42Z2008-12-04T21:20:41Z<p>I think your problem lies elsewhere. This happens because Flex is built on top of Flash and Flash fires that event as often as the framerate (so like 20-30 times a second). </p>
<p><a href="http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary546.html" rel="nofollow">http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary546.html</a></p>
<p>EDIT: I'm not saying your solution would be to lower the framerate. That would only work if the event u noticed were the issue. I'm not convinced that that is actually what's causing your slowdowns. It may be the <em>calling</em> a function that is causing the issue... but that event itself isn't it. It's supposed to fire a lot.</p>
http://stackoverflow.com/questions/331385/actionscript-tdd-frameworks/331483#3314831Answer by Justin Bozonier for actionscript tdd frameworksJustin Bozonier2008-12-01T17:07:39Z2008-12-01T17:07:39Z<p>FlexUnit is the "official" unit testing framework. It's owned by Adobe's Research guys I believe.</p>
<p><a href="http://labs.adobe.com/wiki/index.php/ActionScript_3:resources:apis:libraries" rel="nofollow">http://labs.adobe.com/wiki/index.php/ActionScript_3:resources:apis:libraries</a></p>
<p>Here's a tutorial on how to use it:</p>
<p><a href="http://langexplr.blogspot.com/2008/10/creating-flex-unit-tests-with-flexunit.html" rel="nofollow">http://langexplr.blogspot.com/2008/10/creating-flex-unit-tests-with-flexunit.html</a></p>
http://stackoverflow.com/questions/226599/deserializing-xml-to-objects-in-c5Deserializing XML to Objects in C#Justin Bozonier2008-10-22T16:36:02Z2008-11-27T12:43:08Z
<p>So I have xml that looks like this:</p>
<pre><code><todo-list>
<id type="integer">#{id}</id>
<name>#{name}</name>
<description>#{description}</description>
<project-id type="integer">#{project_id}</project-id>
<milestone-id type="integer">#{milestone_id}</milestone-id>
<position type="integer">#{position}</position>
<!-- if user can see private lists -->
<private type="boolean">#{private}</private>
<!-- if the account supports time tracking -->
<tracked type="boolean">#{tracked}</tracked>
<!-- if todo-items are included in the response -->
<todo-items type="array">
<todo-item>
...
</todo-item>
<todo-item>
...
</todo-item>
...
</todo-items>
</todo-list>
</code></pre>
<p>How would I go about using .NET's serialization library to deserialize this into C# objects? </p>
<p>Currently I'm using reflection and I map between the xml and my objects using the naming conventions.</p>
http://stackoverflow.com/questions/314916/coping-with-not-doing-what-you-want-to/315505#3155051Answer by Justin Bozonier for Coping with not doing what you want to.Justin Bozonier2008-11-24T21:18:02Z2008-11-24T21:18:02Z<p>Learn to become a better communicator. Ultimately every business is driven by a want of cash. If you have ideas that you are sure will help generate revenue or reduce expenses why would they be ignored?</p>
<p>Your boss wants to look good. He'd love to be able to tell everyone how much money he saved/made for the company.</p>
<p>Your leads would love to do things in ways that will improve their quality of life.</p>
<p>So why are people not listening when it's so obvious that they need to change? Most likely because you've only convinced yourself and no one else.</p>
<p>Try looking into how to make a business case for the changes you're really passionate about. If you need help go to one of those spec wielding managers and tell them you see problem x, y, and z and that your tool will resolve that. Ask them what you would need to do to prove your case to them. Ask people what they'd need to see in order to make the changes. It might help.</p>
http://stackoverflow.com/questions/303284/f-how-do-i-use-map-with-a-collection-like-regex-matches2F#: How do I use Map with a Collection (like Regex Matches)?Justin Bozonier2008-11-19T20:39:35Z2008-11-20T03:18:18Z
<p>Soo... F# no longer has IEnumerable.map_with_type... which is the way people <em>were</em> mapping over collections. How do I do that now?</p>
<pre><code>let urlPat = "href\\s*=\\s*(?:(?:\\\"(?<url>[^\\\"]*)\\\")|(?<url>[^\\s]* ))";;
let urlRegex = new Regex(urlPat)
let matches =
urlRegex.Matches(http("http://www.google.com"))
let matchToUrl (urlMatch : Match) = urlMatch.Value
let urls = List.map matchToUrl matches
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/195189/quick-rhinomocks-help0Quick Rhinomocks HelpJustin Bozonier2008-10-12T07:21:22Z2008-11-16T22:45:02Z
<p>Can someone take a look at this code and tell me if there's any obvious reason it shouldn't be working? When service.getResponse is called within my code the mocking framework only returns null, not the object I specified.</p>
<pre><code> [Test]
public void Get_All_Milestones()
{
var mockRepo = new MockRepository();
var service = mockRepo.DynamicMock<IRestfulService>();
var request = new RestRequestObject
{
Password = "testpw!",
UserName = "user",
SecureMode = true,
Url = "www.updatelog.com/",
Command = String.Format("projects/{0}/milestones/list", 123456),
Method = "POST"
};
var response = new RestResponseObject
{
StatusCode = 200,
ErrorsExist = false,
Response =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<milestones type=\"array\">\n <milestone>\n <completed type=\"boolean\">false</completed>\n <created-on type=\"datetime\">2008-10-02T17:37:51Z</created-on>\n <creator-id type=\"integer\">3028235</creator-id>\n <deadline type=\"date\">2008-10-20</deadline>\n <id type=\"integer\">7553836</id>\n <project-id type=\"integer\">123456</project-id>\n <responsible-party-id type=\"integer\">3028295</responsible-party-id>\n <responsible-party-type>Person</responsible-party-type>\n <title>Atb2 Editor Substantially Done</title>\n <wants-notification type=\"boolean\">true</wants-notification>\n </milestone>\n</milestones>\n"
};
using(mockRepo.Record())
{
Expect
.Call(service.GetResponse(request))
.Return(response);
}
using(mockRepo.Playback())
{
var dal = new DataAccess(service);
var result = dal.GetMilestones(123456);
Assert.IsNotNull(result, "The result should not be null.");
Assert.AreNotEqual(0, result.Count, "There should be exactly one item in this list.");
Assert.AreEqual(123456, result[0].ProjectId, "The project ids don't match.");
Assert.AreEqual(7553836, result[0].Id, "The ids don't match.");
}
mockRepo.VerifyAll();
}
</code></pre>
http://stackoverflow.com/questions/291350/what-is-needed-to-execute-visual-studio-2005-web-tests/291373#2913731Answer by Justin Bozonier for What is needed to execute visual studio 2005 web tests?Justin Bozonier2008-11-14T20:55:19Z2008-11-14T20:55:19Z<p>You need VSTS Test Edition. No bueno.</p>
<p><a href="http://msdn.microsoft.com/en-us/vsts2008/test/default.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/vsts2008/test/default.aspx</a></p>
http://stackoverflow.com/questions/284921/is-dependency-injection-possible-with-a-wpf-appliction/284981#2849811Answer by Justin Bozonier for Is Dependency Injection possible with a WPF appliction?Justin Bozonier2008-11-12T19:03:44Z2008-11-12T19:03:44Z<p>Yes, we do it all the time. You can "inject" your ViewModel into the DataContext of the control.</p>
<p>I actually find WPF being even easier to use with DI. Even the dependency objects and properties work with it seamlessly.</p>
http://stackoverflow.com/questions/284530/is-it-a-bad-idea-to-get-rid-of-the-mx-in-your-flex-code/284639#2846392Answer by Justin Bozonier for Is it a bad idea to get rid of the mx: in your Flex code?Justin Bozonier2008-11-12T17:08:20Z2008-11-12T17:08:20Z<p>You need the mx or some xmls:[SOMETHING HERE] because that's the XML namespace that refers to the definition of the controls. It's like using namespaces in normal code.</p>
<p>Just writing Panel is ambiguous and could possibly conflict with another person's implementation of Panel. So we declare to Flex what namespace Panel belongs to (<a href="http://www.adobe.com/2006/mxml" rel="nofollow">http://www.adobe.com/2006/mxml</a>) and we alias it with mx. </p>
<p>Microsoft's WPF XAML requires this as well.</p>
http://stackoverflow.com/questions/281383/maintaining-javascript-code-in-the-head-after-asp-net-postback/281419#2814194Answer by Justin Bozonier for Maintaining JavaScript Code in the <Head> after ASP.Net Postback. Justin Bozonier2008-11-11T16:36:40Z2008-11-11T16:50:19Z<p>If you just have that code hard coded into your page's head then a post back won't affect it. I would check the following by debugging (FireBug in FireFox is a good debugger):</p>
<ul>
<li>Verify the script is still in the head on postback.</li>
<li>verify that the css classes are in fact attached to some element in the page.</li>
<li>verify that the jquery code is executing after the browser is done loading on post back.</li>
</ul>
<p>EDIT: Are you using UpdatePanels for your post back? In other words is this an asynchronous postback or a normal full page refresh?</p>
<p>EDIT EDIT: AHhhhh... Ok. So if you're using UpdatePanels then the document's ready state is already in the ready so that portion of jquery code won't be fired again. I would extract the jquery delegate out to a separate function that you can also call after the async postback.</p>
http://stackoverflow.com/questions/278835/wpf-custom-control-with-item-data-templates0WPF Custom Control with Item/Data TemplatesJustin Bozonier2008-11-10T19:07:56Z2008-11-10T23:53:48Z
<p>I know how to create a custom user control in WPF but how can I make it so that someone can provide an ItemTemplate?</p>
<p>I have a user control that is a mixture of several other WPF controls, one of them being a ListBox. I'd like to let the user of the control specify the content of the list box but I'm not sure how to pass that information through.</p>
<p>EDIT: The accepted answer works with the following correction:</p>
<pre><code><UserControl x:Class="WpfApplication6.MyControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:src="clr-namespace:WpfApplication6">
<ListBox ItemTemplate="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type src:MyControl}}, Path=ItemsSource}" />
</UserControl>
</code></pre>
http://stackoverflow.com/questions/272935/does-it-make-sense-to-set-up-a-wiki-at-the-workplace/272943#27294322Answer by Justin Bozonier for Does it make sense to set up a wiki at the workplace?Justin Bozonier2008-11-07T17:52:33Z2008-11-07T17:52:33Z<p>That is the perfect place for them. There are many different wikis but choosing the right one isn't nearly as important as just choosing one and getting it up and running.</p>
<p>Good job taking the initiative on that.</p>
http://stackoverflow.com/questions/267124/updatepanel-slowness-in-ie/267159#2671590Answer by Justin Bozonier for UpdatePanel Slowness in IEJustin Bozonier2008-11-05T23:37:48Z2008-11-06T01:15:14Z<p>To find out why it's taking so long I would recommend using Fiddler to spy on your IE traffic: <a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">http://www.fiddlertool.com/fiddler/</a></p>
<p>You'll be looking at the response of each of the messages to see how large they are. If the messages are >5kb or so then the UpdatePanel is being way too piggy.</p>
<p>It sounds like a fairly simple thing you're trying to do so I'm having a hard time believing the update panel is to blame. Testing it shouldn't be too difficult though. The easiest way to test this without an UpdatePanel would be to use a PageMethod. This page has a great tutorial on it:
<a href="http://weblogs.asp.net/sohailsayed/archive/2008/02/23/calling-methods-in-a-codebehind-function-pagemethods-from-client-side-using-ajax-net.aspx" rel="nofollow">http://weblogs.asp.net/sohailsayed/archive/2008/02/23/calling-methods-in-a-codebehind-function-pagemethods-from-client-side-using-ajax-net.aspx</a></p>
<p>Could you also post your UpdatePanel code so we could get more details?</p>
<p>EDIT: Thanks!</p>
<p>What version of IE are you using?</p>
http://stackoverflow.com/questions/199056/machine-learning-ai-and-soft-computing3Machine Learning, AI, and Soft ComputingJustin Bozonier2008-10-13T21:15:45Z2008-11-05T00:58:46Z
<p>What is the difference between these three heavily related fields? Is there one specific whole they are all a part of (aside from CS)?</p>
http://stackoverflow.com/questions/260356/css-layout-tricks/260368#2603681Answer by Justin Bozonier for CSS Layout tricksJustin Bozonier2008-11-03T23:48:02Z2008-11-03T23:48:02Z<p>Set a width on #centercontent. Whether that be a percentage or a px size that will be what you're looking for.</p>
http://stackoverflow.com/questions/260342/what-best-practices-do-you-use-for-testing-database-queries/260357#2603573Answer by Justin Bozonier for What best practices do you use for testing database queries?Justin Bozonier2008-11-03T23:42:38Z2008-11-03T23:42:38Z<p>Testing stored procs will require that each person who tests has a separate instance of the db. This is a requirement. If you share environments you won't be able to rely upon the results of your test. They'll be worthless.</p>
<p>You will also need to ensure that you roll back the db to it's previous state after every test so as to make the results predictable and stable. Because of this need to roll back the state after every test these tests will take a lot longer to complete than standard unit tests so they'll probably be something you want to run over night.</p>
<p>There are a few tools out there to help you with this. DbUnit is one of them and I also believe Microsoft had a tool Visual Studio for Database Professionals that contained some support for DB testing.</p>
http://stackoverflow.com/questions/259293/should-i-keep-business-objects-separate-from-the-ui-in-wpf2Should I Keep Business Objects Separate from the UI in WPF?Justin Bozonier2008-11-03T17:03:33Z2008-11-03T18:45:30Z
<p>WPF's view model oriented way of doing things makes it very tempting to just use business objects in the UI. Have you seen any issues with this? Why or why wouldn't you do this?</p>
http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420Comment by Justin Bozonier on Why do I need an IoC container as opposed to straightforward DI code?Justin Bozonier2009-10-07T14:59:58Z2009-10-07T14:59:58ZJoel I used to think the same way as you. Then I literally and seriously spent five minutes to figure out how to get the most basic setup running and was amazed at the 80/20 rule in action. It makes code much cleaner especially in the simple cases.http://stackoverflow.com/questions/884472/top-algorithms-to-learn/884479#884479Comment by Justin Bozonier on Top Algorithms To LearnJustin Bozonier2009-05-19T19:08:48Z2009-05-19T19:08:48Zerr meant Graphs. :)http://stackoverflow.com/questions/884472/top-algorithms-to-learn/884479#884479Comment by Justin Bozonier on Top Algorithms To LearnJustin Bozonier2009-05-19T19:08:38Z2009-05-19T19:08:38ZThis is really fundamental. So many problems are just specialized trees.http://stackoverflow.com/questions/567868/implementing-a-factory-that-uses-specifications-to-determine-which-type-of-object/567917#567917Comment by Justin Bozonier on Implementing a Factory that uses Specifications to determine which type of object to createJustin Bozonier2009-02-20T01:17:40Z2009-02-20T01:17:40ZYeah if one specification maps to one type of item then the dictionary makes sense. I was assuming one item might have multiple specs. And you're right about using the factory to inject. I definitely think that's point of having the factory.http://stackoverflow.com/questions/303284/f-how-do-i-use-map-with-a-collection-like-regex-matches/303471#303471Comment by Justin Bozonier on F#: How do I use Map with a Collection (like Regex Matches)?Justin Bozonier2008-11-19T21:59:44Z2008-11-19T21:59:44ZSounds like it... how would that work? I tried googling but haven't found anything useful.http://stackoverflow.com/questions/296503/wpf-user-controls-datacontext-is-null/296614#296614Comment by Justin Bozonier on WPF User Control's DataContext is NullJustin Bozonier2008-11-17T22:56:22Z2008-11-17T22:56:22Znoope. I am checking it within the context of the class.http://stackoverflow.com/questions/291350/what-is-needed-to-execute-visual-studio-2005-web-tests/291373#291373Comment by Justin Bozonier on What is needed to execute visual studio 2005 web tests?Justin Bozonier2008-11-14T20:57:28Z2008-11-14T20:57:28ZBTW I know that is for 2008 but it's the same for 2005.http://stackoverflow.com/questions/281383/maintaining-javascript-code-in-the-head-after-asp-net-postback/281495#281495Comment by Justin Bozonier on Maintaining JavaScript Code in the <Head> after ASP.Net Postback. Justin Bozonier2008-11-11T17:37:39Z2008-11-11T17:37:39ZWhat was the answer Damien?http://stackoverflow.com/questions/281383/maintaining-javascript-code-in-the-head-after-asp-net-postback/281474#281474Comment by Justin Bozonier on Maintaining JavaScript Code in the <Head> after ASP.Net Postback. Justin Bozonier2008-11-11T16:59:38Z2008-11-11T16:59:38ZYou're using $(document).ready and that does not fire after an asynchronous postback. You need to tie into the UpdatePanel's events and run that code explicitly after a post back.http://stackoverflow.com/questions/278835/wpf-custom-control-with-item-data-templates/279029#279029Comment by Justin Bozonier on WPF Custom Control with Item/Data TemplatesJustin Bozonier2008-11-10T23:48:13Z2008-11-10T23:48:13ZOkay, I got this working but there was one correction I needed to make. I'm going to post it in my original question.http://stackoverflow.com/questions/278835/wpf-custom-control-with-item-data-templates/279029#279029Comment by Justin Bozonier on WPF Custom Control with Item/Data TemplatesJustin Bozonier2008-11-10T22:00:38Z2008-11-10T22:00:38Zthat's not nearly as bad as I was making it out to be. I'll accept after I'm able to verify that it works.http://stackoverflow.com/questions/274213/how-does-the-fill-operation-work-in-paint-applications/274353#274353Comment by Justin Bozonier on How does the fill operation work in paint applications?Justin Bozonier2008-11-08T04:23:26Z2008-11-08T04:23:26ZUpmodded for mention of stack overflow in context...!http://stackoverflow.com/questions/272935/does-it-make-sense-to-set-up-a-wiki-at-the-workplace/272958#272958Comment by Justin Bozonier on Does it make sense to set up a wiki at the workplace?Justin Bozonier2008-11-07T18:51:08Z2008-11-07T18:51:08ZI think he meant add Google search so that they could start their web browsing from the wiki and replace google with it. Might be a good idea.http://stackoverflow.com/questions/272985/best-development-methodology-for-a-team-of-6-10-looking-to-grow-by-50-eventual/273044#273044Comment by Justin Bozonier on Best development methodology for a team of 6 - 10 looking to grow by 50% eventuallyJustin Bozonier2008-11-07T18:45:51Z2008-11-07T18:45:51ZI think you're on the same page as me especially regarding fearing the creation of silos.http://stackoverflow.com/questions/270829/internationalizing-desktop-app-within-a-couple-years-what-should-we-do-now/270849#270849Comment by Justin Bozonier on Internationalizing Desktop App within a couple years... What should we do now?Justin Bozonier2008-11-07T01:13:43Z2008-11-07T01:13:43ZAs far as the YAGNI... yeah I think that way about a lot of stuff. This is one area where I've been bit in the butt for it though. Internationalization is a common way to grow your product's user base so you want to make sure you can do it. One project I worked on literally couldn't. That was bad.