Jay Bazuzi

9,271
reputation
780 views

Registered User

name Jay Bazuzi
member for 1 year
seen 10 hours ago
website
location Port Townsend, WA
age 35
Former member of C# team at Microsoft. Now a stay-at-home Dad & small boat sailor.
18h
comment Missing debugger types in VS2005
The image is gone; the question no longer makes sense. Voting to close.
18h
revised ListView multiple selection behavior
formatting
18h
comment Visual Designer errors, when there are no errors
which version of VS are you using?
20h
comment What is the best regular expression for validating email addresses?
You need to tell us more about your goals. Is it more important that you exclude all illegal forms, or include all legal forms? Are you hoping to prevent someone from providing a bogus email address? Then you'll need to send mail to it and see if they get it.
1d
answered Will software automation take over industry in future?
Dec
17
comment generate text sequence in powershell
Using a pipeline with the Foreach-Object cmdlet (%) is more idiomatic of PowerShell than using a 'foreach' statement. In a script, replace the '%' with 'foreach' if you want, and break in to multiple lines.
Dec
17
revised Need C# regexp for URL validation
note about URL casing.
Dec
17
comment Need C# regexp for URL validation
@diadiora you edited to provide more examples, but I still don't think you've povided enough information. What are the patterns you need to match / reject?
Dec
17
comment Does porting count as derivative work?
#2 is exactly what the LGPL is supposed to address: a GPL library in a non-GPL application. As you mention, we need more information.
Dec
15
revised Regex for string enclosed in <*>, C#
formatting
Dec
15
comment Need C# regexp for URL validation
@jk: the pedant in me says to specifiy ".NET Regex".
Dec
15
answered Need C# regexp for URL validation
Dec
15
comment Need C# regexp for URL validation
We need to know more about what patterns you want to match. 3 examples isn't enough. Describe it.
Dec
15
comment Recursive file copy & rename on Vista command line
SO's formatting of PowerShell code blocks doesn't work very well, as the syntax isn't very C-like. So I usually use <PRE> for PowerShell. In this case, it decided that the two '_' should make a span italic, even in <PRE>. So I made the compromise and switched it to a code block.
Dec
15
awarded  Nice Answer
Dec
13
comment How much is too much data for and XML file, and what are some file based database alternatives?
XML is a database technology, but it lacks features that some databases have (performance, built-in query operations, and reliability) but has features of its own (human readable, broad tool availability, easy to implement, generally free).
Dec
12
comment Is it better to use Enumerable<T>.Empty() as opposed to new List<T> to initialize an IEnumerable?
Yes, making it clear that you mean this to be empty vs. something that might be added to later is good for your code.
Dec
10
answered Estimating/forecasting download completion time
Dec
7
answered Staying motivated as a solo developer
Dec
7
comment Matching up Curly Brackets
Please say what language this is.
Dec
6
awarded  Mortarboard
Dec
5
accepted compairing some pattern with regular expression C#
Dec
5
comment compairing some pattern with regular expression C#
yes, a '.' matches any character.
Dec
5
answered compairing some pattern with regular expression C#
Dec
2
comment Does having more projects in your visual studio increase compile time?
Do you care about clean builds or incremental builds? When you change only 1 file, a multi-project solution may be able to build only a subset. You'll need to tell us a lot more about your solution for us to help figure that out. Or, you can figure it out yourself.
Dec
2
comment Does having more projects in your visual studio increase compile time?
Do you really have a solution with only 10 classes? Do you you really need to optimize compile times for such a small solution?
Dec
2
answered Does having more projects in your visual studio increase compile time?
Dec
1
awarded  Popular Question
Nov
25
awarded  Nice Answer
Nov
24
awarded  Nice Answer
Nov
23
comment What artifacts to save for a nightly build?
I had to look it up. FPGA = Field Programmable Gate Array. en.wikipedia.org/wiki/FPGA
Nov
19
awarded  Nice Answer
Nov
10
accepted Build Quality
Oct
30
comment Should C# include multiple inheritance?
C IS-A I, but AINT-NO DefaultI. You can inherit from multiple interfaces in C# already, but only from one base class, and I'm not proposing a change to that rule.
Oct
27
comment What punishment do you have when someone on the team breaks the build?
I worked on an enormous project that took nearly 24 hours to build, so breaking it meant a lot of time lost. 2000 people worked on that project, and many were waiting for a good build to come out, so that made it all the more expensive. Don't break the build.
Oct
15
awarded  Great Answer
Oct
10
comment Should C# include multiple inheritance?
@kitchen: It is multiple inheritance, but only of interfaces, which is already allowed in C#. It doesn't bump in to any of the MI issues that come from inheriting implementation.
Oct
9
comment How to answer what are your strengths and what are your weakness question during Interview ?
"it should be reasonably close to the truth": why? Just wishing for more truth in the world isn't enough. You have to ask people questions they are willing to answer truthfully.
Oct
9
revised How to answer what are your strengths and what are your weakness question during Interview ?
add interviewing note
Oct
3
revised Windows batch file to change monitor settings
spelling, grammar
Oct
3
answered Is it time to drop support for .NET 2.0 and move to .NET 3.5 ?
Oct
3
comment What is the best UI you’ve ever used?
@Stuart: not necessarily; that could just be evidence of effective marketing.
Oct
2
awarded  Favorite Question
Oct
2
answered How to answer what are your strengths and what are your weakness question during Interview ?
Oct
1
revised What Makes a Good Unit Test?
DRY and one assertion per test
Oct
1
comment What Makes a Good Unit Test?
I think we agree that DRY applies to unit tests. As I said, "Unit tests should be well-factored". However, there are multiple ways to resolve the duplication. One, as you mention, is to have a unit test that first invokes the code under test, and then asserts multiple times. An alternative is to create a new "test fixture" for the scenario, which invokes the code under test during an Initialize/Setup step, and then has a series of unit tests which simply assert.
Oct
1
comment Powershell equivalent of LINQ Any()?
IMO, this is a better answer than @JaredPar's, because you can test for pipeline being empty as described here. I think the answer could be improved by moving the | to the line before, and removing the `.
Sep
29
awarded  Taxonomist
Sep
27
comment PSake extensions?
This seems too open for Stack Overflow: it's not really a question. If you keep it, please mark as Community Wiki.
Sep
26
answered What is the easiest and most compact way to create a IEnumerable<T> or ICollection<T>?