Brian Genisio

5,309
reputation
325 views

Registered User

name Brian Genisio
member for 1 year
seen 14 hours ago
website
location Ann Arbor, MI
age 32
Software developer, Father, Husband and nerd.
22h
comment Automatize Builds in .net
+1 to Cruise Control. I can't speak to other CI servers, because I haven't used them, but Cruise Control is very easy to use and it is reliable and free.
1d
comment Animated Items Control in Silverlight
Yes, I got that working. I needed something that acted like a StackPanel -- the content stretches to the width of the panel. I accomplished this by deriving from AnimatedLayoutPanel and setting the width of the content children. Works beautifully. Thanks.
2d
comment Animated Items Control in Silverlight
Yes, the implementation uses SL4 specific capabilities: blogs.silverlight.net/blogs/jesseliberty/…
2d
asked Animated Items Control in Silverlight
Dec
11
revised Edit and Continue in Silverlight?
added 414 characters in body
Dec
11
answered Edit and Continue in Silverlight?
Dec
10
comment Silverlight - load a CSV file into a DataGrid
As a suggestion, consider moving that CVS reader code out of your code-behind. It really doesn't belong there. It should be its own class for several reasons.
Dec
9
accepted .NET IDisposable inline temps
Dec
8
comment Regex for splitting
Can you give us some example strings that matches your pattern?
Dec
8
awarded  Nice Answer
Dec
8
accepted How do I fire an event safely
Dec
8
revised How do I fire an event safely
added 836 characters in body
Dec
8
answered How do I fire an event safely
Dec
8
answered Navigate from datagrid to dataform in silverlight
Dec
8
comment Is it possible to descend from Silverlight’s System.Windows.Controls.Page?
Can you give an example?
Dec
8
answered .NET IDisposable inline temps
Dec
8
comment TDD: Does it get in the way of good API design?
@dsimcha: If the API of a given system requires the dependencies, it will do so with TDD or not. You are not exposing implementation details, but exposing dependencies. There is a big difference.
Dec
8
answered Changing the UI language dynamically
Dec
7
answered Silverlight and Full Trust Issue
Dec
7
answered Silverlight Refresh Data in Combo Box
Dec
7
answered Silverlight Data Grid
Dec
6
awarded  Mortarboard
Dec
4
awarded  Notable Question
Nov
28
asked Get Notified of Silverlight Binding Errors?
Nov
26
accepted Silverlight MVVM Unit-Testing Explanation
Nov
25
answered How to add an item to a list of generics declared as a list of an abstract object in C#
Nov
25
comment How to carry out performance test on our website
We currently use Visual Studio Team System Test Edition for our load tests. It works well and gives us a lot of data. It is the cheapest load testing solution I have come across. Others on the mareket include LoadRunner and QALoad.
Nov
25
answered How to carry out performance test on our website
Nov
25
revised Silverlight Application for the web - storing data on site
added 245 characters in body
Nov
24
accepted reference methods from interface through a WCF service
Nov
24
answered Silverlight Application for the web - storing data on site
Nov
24
comment WCF Service invalid with Silverlight
How are you hosting the WCF service? In a website project via .svc file?
Nov
24
accepted silverlight - communicate between 2 view models in MVVM using commands
Nov
20
revised silverlight - communicate between 2 view models in MVVM using commands
added 35 characters in body
Nov
20
answered silverlight - communicate between 2 view models in MVVM using commands
Nov
17
asked Adding MimeMap via WIX failed.
Nov
17
answered Using DataAnnotations for validation in MVVM
Nov
12
awarded  Yearling
Nov
9
answered Decoupling Silverlight client from service reference generated class
Nov
2
accepted how would you design a “state/management” that would do this
Oct
30
comment What is the point of having using blocks in C# code?
@Sekhat: I am not suggesting that you use using() to scope the variable if it is not IDisposable. I think you misunderstood my point. I am merely explaining a sublety of the functionality that using() provides. Further, it is possible to have code where you don't know if it implements IDisposable. Wrapping it in a using() is a safe way to make it get disposed IF it implements IDisposable, but you have no way of knowing at that time. This happens often in generic methods and extension methods.
Oct
30
comment Is there a way to add event handlers for controls in c# without using the designer?
Robert: Of course I realize this. My statement was that it is redundant. I am bringing it up for readability. Creating new EventHandler() is terribly ugly and redundant in our language. Just like GenericMethod<int>(5) is redundant and should just be GenericMethod(5) to increase readability. Lambda notation is also more readable, IMO, because it is immediately recognized by people familiar with other languages that include lambdas.
Oct
30
answered Is there a way to add event handlers for controls in c# without using the designer?
Oct
25
comment Need of interfaces in c#
But when you are writing unit tests, you almost always need to mock/stub out the class if it is a dependency of another class. By doing that, you are automatically creating a second implementation of the interface in your test project. Because of this, I find that I create interfaces more often than not for my classes in order to write testable, decoupled code.
Oct
25
answered Need of interfaces in c#
Oct
25
accepted Distance between ellipse path and point?
Oct
23
comment Getting the object out of a MemberExpression?
Good lord, man! You are teh awesome :) Perfect!!!!
Oct
23
asked Getting the object out of a MemberExpression?
Oct
21
answered Distance between ellipse path and point?
Oct
21
comment Ruby On Rails Web Application Development From Scratch?!
+1 to "Agile Web Development with Rails". Just finished the meat of that and it is quite good.