User Jay Bazuzi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:37:24Z http://stackoverflow.com/feeds/user/5314 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/230595/what-artifacts-to-save-for-a-nightly-build 5 What artifacts to save for a nightly build? Jay Bazuzi 2008-10-23T17:19:37Z 2009-11-18T22:00:47Z <p>Assume that I set up an <a href="http://stackoverflow.com/questions/204603/nightly-builds-why-should-i-do-it">automatic nightly build</a>. What artifacts of the build should I save?</p> <p>For example:</p> <ul> <li>Input source code</li> <li>output binaries</li> </ul> <p>Also, how long should I save them, and where?</p> <p>Do your answers change if I do Continuous Integration? </p> http://stackoverflow.com/questions/1029489/how-do-i-check-if-a-file-is-under-a-given-directory-in-powershell 2 How do I check if a file is under a given directory, in PowerShell? Jay Bazuzi 2009-06-22T21:28:12Z 2009-11-14T19:05:48Z <p>I want to check if a file path is in a given directory (or one of its subdirectories), from PowerShell.</p> <p>Right now I'm doing:</p> <pre><code>$file.StartsWith( $directory, [StringComparison]::InvariantCultureIgnoreCase ) </code></pre> <p>but I'm sure there are better ways.</p> <p>I could do take <code>$file.Directory</code> and iterate over all <code>.Parent</code>s, but I was hoping for something simpler.</p> <p><strong>EDIT</strong>: the file may not exist; I'm just looking at the path.</p> http://stackoverflow.com/questions/1009677/how-can-i-intersect-two-collections-with-a-table-with-a-2-part-key-in-powershell 0 How can I intersect two collections with a table with a 2-part key, in PowerShell? Jay Bazuzi 2009-06-17T21:43:05Z 2009-11-03T04:00:03Z <p>I have input data like this:</p> <p><PRE> FOO.A FOO.B FOO.C</p> <p>BAR.X BAR.Y </PRE></p> <p>and a rules table like:</p> <p><PRE> (FOO = A, BAR = X) => 1 # match (FOO = A, BAR = Z) => 2 # no match (FOO = B, BAR = X) => 3 # match </PRE></p> <p>I want to take the input data, and ask the table "what entries match this input data?", and get back rows 1 &amp; 3.</p> <p>I thought about using hashtables where FOO is the key, and the value is a hashtable with BAR as the key, and 1 as the value. Problem is, there are duplicate keys.</p> <p>What's an idiomatic way to write this in PowerShell?</p> <p>Performance is not critical: the data sets are small.</p> http://stackoverflow.com/questions/361002/any-patterns-for-modelling-board-games 31 Any patterns for modelling board games? Jay Bazuzi 2008-12-11T21:24:26Z 2009-10-23T09:38:13Z <p>For fun, I'm trying to write one of my son's favorite board games as a piece of software. Eventually I expect to build a WPF UI on top of it, but right now I'm building the machine that models the games and its rules.</p> <p>As I do this, I keep seeing problems that I think are common to many board games, and perhaps others have already solved them better than I will. </p> <p>(Note that AI to play the game, and patterns around high performance are not interesting to me.)</p> <p>So far my patterns are:</p> <ul> <li><p>Several immutable types representing entities in the game box, e.g. dice, checkers, cards, a board, spaces on the board, money, etc.</p></li> <li><p>An object for each player, which contains the players resources (e.g. money, score), their name, etc.</p></li> <li><p>An object that represents the state of the game: the players, who's turn it is, the layout of the peices on the board, etc.</p></li> <li><p>A state machine that manages the turn sequence. For example, many games have a small pre-game where each player rolls to see who goes first; that's the start state. When a player's turn starts, first they roll, then they move, then they have to dance in place, then other players guess what breed of chicken they are, then they receive points.</p></li> </ul> <p>Is there some prior art I can take advantage of?</p> <p><strong>EDIT:</strong> One thing I realized recently is that game state can be split in to two categories:</p> <ul> <li><p><strong>Game artifact state</strong>. "I have $10" or "my left hand is on blue".</p></li> <li><p><strong>Game sequence state</strong>. "I have rolled doubles twice; the next one puts me in jail". A state machine may make sense here.</p></li> </ul> <p><strong>EDIT:</strong> What I'm really looking for here is the <em>best</em> way to implement multiplayer turn-based games like Chess or Scrabble or Monopoly. I'm sure I could create such a game by just working through it start to finish, but, like other Design Patterns, there are probably some ways to make things go much more smoothly that aren't obvious without careful study. That's what I'm hoping for. </p> http://stackoverflow.com/questions/1507295/how-to-answer-what-are-your-strengths-and-what-are-your-weakness-question-during/1507703#1507703 8 Answer by Jay Bazuzi for How to answer what are your strengths and what are your weakness question during Interview ? Jay Bazuzi 2009-10-02T04:12:35Z 2009-10-09T01:24:58Z <p><strong>I always thought this was a stupid question.</strong> As an interviewer, you have no way to tell the difference between an honest answer and a carefully prepared one. As a candidate, it is in your best interest to prepare a false answer to this question.</p> <p>If you're feeling really confident, you could tell the interviewer this. If I was the interviewer, and a candidate told me my question was stupid, and gave me a good reason why, I'd be inclined to hire them. That sort of behavior is something I really need in an employee: someone who will tell me when I'm making a mistake. It also shows that you've thought (at least a little) about how to conduct a good interview, and all employers need good interviewers.</p> <p>That said, it's a good question <em>for you to ask yourself</em>. The problem, of course, is that most of the time we have a hard time seeing our weaknesses clearly. If you aren't seeing your weaknesses, then you need to look a little harder. </p> <p>Knowing your strengths, and how to play to them, and your weaknesses, and how to stop them from being a problem, makes you much better at the job.</p> http://stackoverflow.com/questions/987158/how-can-i-separate-msbuild-logs-by-project-files 0 How can I separate MSBuild logs by project files? Jay Bazuzi 2009-06-12T15:07:12Z 2009-10-08T00:00:01Z <p>I have a very complex set of MSBuild projects. Often, one .proj will invoke the &lt;MSBuild&gt; task to build another project file.</p> <p>When reading the console log, it's hard to see which invocation of MSBuild I'm looking at.</p> <p>Is there a way to make the log either:</p> <ul> <li>Indent the output from sub-invocations of MSBuild, or</li> <li>Put each MSBuild log in t oa new file</li> </ul> <p>Preferably without spending a lot of time writing a new logger.</p> http://stackoverflow.com/questions/1514813/is-it-time-to-drop-support-for-net-2-0-and-move-to-net-3-5/1514935#1514935 2 Answer by Jay Bazuzi for Is it time to drop support for .NET 2.0 and move to .NET 3.5 ? Jay Bazuzi 2009-10-03T21:47:43Z 2009-10-03T21:47:43Z <p><strong>It depends on your customers</strong>.</p> <ul> <li><p>If your customers are slow to adopt new technology (a modern OS, modern hardware that can run a modern OS, and recent .NET), then requiring a new .NET will alienate a significant portion of your customers.</p></li> <li><p>If they're the type who goes to Windows Update every week to make sure they have all the latest updates, they'll have the latest .NET from there.</p></li> </ul> <p><strong>It depends on you</strong>.</p> <ul> <li><p>I have better things to do in my life than support ancient platforms. Are you willing to sacrifice your life energy this way?</p></li> <li><p>I am more productive with the best development tools. That means I can make better software (fewer bugs, better features, quicker releases), which my customers benefit from. Are you willing to sacrifice that value in your software?</p></li> <li><p>I am willing to lose customers that won't upgrade their platform. That means I am willing to lose revenue because of my decision. Are you willing to sacrifice that portion of your customer base?</p></li> </ul> <p>Remember that you aren't just changing who your customers are, but you are also <strong>establishing a reputation</strong> that will affect your customer base in the future. If you alienate a curmudgeon, he will spread negativity to his friends. Similarly, if you delight an early adopter, she will spread the love. Both are powerful effects.</p> http://stackoverflow.com/questions/61400/what-makes-a-good-unit-test/61441#61441 5 Answer by Jay Bazuzi for What Makes a Good Unit Test? Jay Bazuzi 2008-09-14T16:22:22Z 2009-10-01T15:59:33Z <p><strong>Some properties of great unit tests:</strong></p> <ul> <li><p>When a test fails, it should be immediately obvious where the problem lies. If you have to use the debugger to track down the problem, then your tests aren't granular enough. Having exactly one assertion per test helps here.</p></li> <li><p>When you refactor, no tests should fail.</p></li> <li><p>Tests should run so fast that you never hesitate to run them.</p></li> <li><p>All tests should pass always; no non-deterministic results.</p></li> <li><p>Unit tests should be well-factored, just like your production code.</p></li> </ul> <p>@Alotor: If you're suggesting that a library should only have unit tests at its external API, I disagree. I want unit tests for each class, including classes that I don't expose to external callers. (However, <a href="http://beta.stackoverflow.com/questions/34571/whats-the-best-way-of-unit-testing-private-methods#52054" rel="nofollow">if I feel the need to write tests for private methods, then I need to refactor.</a>)</p> <p><hr /></p> <p>EDIT: There was a comment about duplication caused by "one assertion per test". Specifically, if you have some code to set up a scenario, and then want to make multiple assertions about it, but only have one assertion per test, you might duplication the setup across multiple tests.</p> <p>I don't take that approach. Instead, I use test fixtures <em>per scenario</em>. Here's a rough example:</p> <pre><code>[TestFixture] public class StackTests { [TestFixture] public class EmptyTests { Stack&lt;int&gt; _stack; [TestSetup] public void TestSetup() { _stack = new Stack&lt;int&gt;(); } [TestMethod] [ExpectedException (typeof(Exception))] public void PopFails() { _stack.Pop(); } [TestMethod] public void IsEmpty() { Assert(_stack.IsEmpty()); } } [TestFixture] public class PushedOneTests { Stack&lt;int&gt; _stack; [TestSetup] public void TestSetup() { _stack = new Stack&lt;int&gt;(); _stack.Push(7); } // Tests for one item on the stack... } } </code></pre> http://stackoverflow.com/questions/1481381/what-is-the-easiest-and-most-compact-way-to-create-a-ienumerablet-or-icollectio/1481439#1481439 0 Answer by Jay Bazuzi for What is the easiest and most compact way to create a IEnumerable<T> or ICollection<T>? Jay Bazuzi 2009-09-26T15:18:48Z 2009-09-26T15:18:48Z <p>If you have a method that takes an array as its last parameter, it may make sense to mark that parameter <code>params</code>. This lets you call the method like this:</p> <pre><code>Foo(o1, o2, o3); </code></pre> <p>I find this particularly helpful when writing a unit test for <code>Foo()</code>, because often in a unit test my parameters are separate like this, instead of in an array.</p> <p>I advise against doing this if there is an overload of <code>Foo()</code> that doesn't take an array in that position, because it can get confusing quickly.</p> <p>I do wish that the C# language allowed <code>params</code> for <code>IList&lt;T&gt;</code>:</p> <pre><code>void Foo(params IList&lt;T&gt; ts) { ... } </code></pre> http://stackoverflow.com/questions/1271716/is-unit-testing-a-bad-idea-during-beta-prototyping/1447786#1447786 0 Answer by Jay Bazuzi for Is unit testing a bad idea during beta/prototyping? Jay Bazuzi 2009-09-19T05:00:35Z 2009-09-19T05:00:35Z <p>I don't have a prescription for you, but I do have a diagnosis: </p> <ul> <li><p><strong>if you ever end up in a debugger, you shoulda had more tests</strong>. Even in the very earliest prototypes, you want the code you write to work, right? If I don't do TDD, and I run in to a bug, it's hard to retrofit unit tests to find the bug. It's tempting to go to the debugger. So, I aim my TDD efforts to produce a good enough set of tests so that I don't need the debugger. Doing this well requires lots of practice.</p></li> <li><p><strong>If you want to refactor but don't because of risk, you shoulda had more tests</strong>. If I'm going to be working with some code for more than a couple hours, I want to refactor to keep my velocity high. If I hesitate to refactor, it's gonna hurt my productivity, so I do everything I can to make refactoring safe and easy. Again, a good selection of tests is exactly what I need.</p></li> </ul> http://stackoverflow.com/questions/1416215/which-programming-languages-were-designed-with-unicode-support-from-the-beginning/1416220#1416220 26 Answer by Jay Bazuzi for Which programming languages were designed with Unicode support from the beginning? Jay Bazuzi 2009-09-12T21:42:55Z 2009-09-12T21:42:55Z <p>Basically all of the .NET languages are Unicode languages, such as <strong>C#</strong> and <strong>VB.NET</strong>.</p> http://stackoverflow.com/questions/1390122/who-should-perform-code-review/1390204#1390204 3 Answer by Jay Bazuzi for Who should perform code review? Jay Bazuzi 2009-09-07T17:01:18Z 2009-09-07T17:01:18Z <p>First you have to decide what the <strong>purpose of the code review</strong> is. Here are the things I look for, in my priority order:</p> <ol> <li><strong>Learning</strong>. The code review is a good time to discuss why the code was written this way, and what alternatives are available. Both the original coder and the reviewer contribute ideas to this discussion. The goal isn't to change the code, but to <strong>change the people</strong>.</li> <li><strong>Consistency</strong>. Ensure consistency of coding practices from formatting to idioms to sharing existing code.</li> <li><strong>Redundancy</strong>. Make sure more than one person is familiar with every bit of the codebase.</li> <li><strong>Find mistakes</strong>. When you explain your code to someone else, it forces you to think through it in a different way, and you're likely to find your own mistakes in the process.</li> <li><strong>Find mistakes II</strong>. The reviewer can sometimes find mistakes. In my experience, this doesn't happen as often as you might wish, so don't count on it.</li> </ol> <p>The first items don't depend on the experience of the reviewer, so you can be flexible there. I like to pick an expert in the area if I'm a little uncertain of my approach in a critical area, or an novice in the area if I want to teach something with my changes, or sometimes both.</p> <p>As deadlines approach, risk management becomes more important, so getting more code reviewers is a good idea.</p> <p>According to <strong><a href="http://mitchlacey.com/docs/XR4PromiscuousPairingandBeginnersMind.pdf" rel="nofollow">Promiscuous Pairing and Beginner's Mind</a></strong>, getting people out of their comfort zone causes them to learn very quickly. That suggests that either the coder or the reviewer should be unfamiliar with the code being changes. </p> http://stackoverflow.com/questions/1336177/replacing-nested-foreach-with-linq-modify-and-update-a-property-deep-within/1336366#1336366 1 Answer by Jay Bazuzi for Replacing nested foreach with LINQ; modify and update a property deep within Jay Bazuzi 2009-08-26T17:34:48Z 2009-08-26T17:34:48Z <p><a href="http://stackoverflow.com/questions/214500/which-linq-syntax-do-you-prefer-fluent-or-query-expression/214610#214610">I don't like mixing "query comprehension" syntax and dotted-method-call syntax</a> in the same statement.</p> <p>I do like the idea of separating the <em>query</em> from the <em>action</em>. These are semantically distinct, so separating them in code often makes sense.</p> <pre><code>var addrItemQuery = from emp in company.internalData.Emps from addr in emp.privateData.Addresses from addrItem in addr.Items where addrItem.Type == "StreetAddress" select addrItem; foreach (var addrItem in addrItemQuery) { addrItem.Text = CleanStreetAddressLine(addrItem.Text); } </code></pre> <p>A few style notes about your code; these are personal, so I you may not agree:</p> <ul> <li>In general, I avoid abbreviations (<code>Emps</code>, <code>emp</code>, <code>addr</code>)</li> <li>Inconsistent names are more confusing (<code>addr</code> vs. <code>Addresses</code>): pick one and stick with it</li> <li>The word "number" is ambigious. It can either be an identity ("Prisoner number 378 please step forward.") or a count ("the number of sheep in that field is 12."). Since we use both concepts in code a lot, it is valuable to get this clear. I use often use "index" for the first one and "count" for the second.</li> <li>Having the <code>type</code> field be a string is a code smell. If you can make it an <code>enum</code> your code will probably be better off.</li> </ul> http://stackoverflow.com/questions/214500/which-linq-syntax-do-you-prefer-fluent-or-query-expression/214610#214610 16 Answer by Jay Bazuzi for Which LINQ syntax do you prefer? Fluent or Query Expression Jay Bazuzi 2008-10-18T05:07:47Z 2009-08-26T17:14:23Z <p>I prefer to use the latter (sometimes called "query comprehension syntax") when I can write the whole expression that way. </p> <pre><code>var titlesQuery = from e in entries where e.Approved orderby e.Rating select e.Titles; var title = titlesQuery.FirstOrDefault(); </code></pre> <p>As soon as I have to add (parentheses) and <code>.MethodCalls()</code>, I change.</p> <p>When I use the former, I usually put one clause per line, like this:</p> <pre><code>var title = entries .Where (e =&gt; e.Approved) .OrderBy (e =&gt; e.Rating) .Select (e =&gt; e.Title) .FirstOrDefault(); </code></pre> <p>I find that a little easier to read.</p> http://stackoverflow.com/questions/1329650/linq-and-binary-search-improve-this-slow-where-statement/1329741#1329741 1 Answer by Jay Bazuzi for Linq and Binary Search - Improve this slow Where statement? Jay Bazuzi 2009-08-25T17:31:52Z 2009-08-25T17:31:52Z <p>What about this:</p> <pre><code> var joined = list1.Join(list2, x =&gt; x.ChildID, x =&gt; x.ID, (x, y) =&gt; new { x, y }); foreach (var j in joined) { j.x.Child = j.y; } </code></pre> <p>?</p> http://stackoverflow.com/questions/1256877/linq-nested-select-new-not-working/1295310#1295310 2 Answer by Jay Bazuzi for Linq nested select new not working Jay Bazuzi 2009-08-18T17:19:34Z 2009-08-18T17:19:34Z <p>"UserModel.Company is always null."</p> <p>since you are setting this with an expression that ends with <code>.SingleOrDefault()</code>, I'm going to suggest that the query isn't returning a single item. Start investigating there. If you are expecting exactly one item in <code>u.Companies</code>, change to <code>.Single()</code> and force an early failure.</p> <p>You can do the <code>.Single()</code> before creating the new <code>CompanyModel</code> object, I think.</p> <p>As for style, I like the query comprehension syntax ("<code>from x in y select</code>") but find it awkward when combined with traditional dot-notation syntax. It's just hard to read. (<a href="http://stackoverflow.com/questions/214500/which-linq-syntax-do-you-prefer-fluent-or-query-expression/214610#214610">http://stackoverflow.com/questions/214500/which-linq-syntax-do-you-prefer-fluent-or-query-expression/214610#214610</a>).</p> <p>Consider using <code>let</code> in the query comprehension to make it clearer.</p> <p>Also, since a query already returns an <code>IEnumerable&lt;T&gt;</code>, and calling <code>ToList()</code> forces all items to be realized, I would modify my method to return <code>IEnumerable&lt;T&gt;</code> if possible.</p> <p>So, in your case, I would refactor the first to say:</p> <pre><code>public IEnumerable&lt;User&gt; GetUsers() { return from u in SubsonicSqlServer.Users.All() let c = u.Companies.Single() select new UserModel { UserId = u.UserId, Company = new CompanyModel { CompanyId = c.CompanyId, CompanyName = c.CompanyName }, FirstName = e.FirstName, LastName = e.LastName, BirthDate = e.BirthDate }; } </code></pre> <p>If it makes sense in your object model, you could modify <code>User</code> to have a constructor that takes whatever type <code>u</code> is, and it gets even simpler:</p> <pre><code>return from u in SubsonicSqlServer.Users.All() select new UserModel (u); </code></pre> <p>or even</p> <pre><code>return SubsonicSqlServer.Users.All().Select(u =&gt; new UserModel (u)); </code></pre> http://stackoverflow.com/questions/759481/batch-file-to-display-directory-size/1285839#1285839 0 Answer by Jay Bazuzi for Batch File To Display Directory Size Jay Bazuzi 2009-08-17T01:36:51Z 2009-08-17T01:36:51Z <p>PowerShell makes this easy, of course:</p> <p><PRE> (gci . -Recurse | Measure-Object -Property Length -Sum).Sum </PRE></p> <p>And PowerShell is already installed on Windows 7. Get on the bandwagon! :-)</p> <p>Also, <code>C:\users\%USERNAME%\AppData\</code> isn't a reliable way of finding AppData. Try <code>%APPDATA%</code> (or <code>$env:APPDATA</code> in PowerShell).</p> http://stackoverflow.com/questions/1074577/build-quality/1236970#1236970 1 Answer by Jay Bazuzi for Build Quality Jay Bazuzi 2009-08-06T04:26:53Z 2009-08-06T04:26:53Z <p>Your goal here is to get the highest quality possible in each branch, balanced against the burden of verifying that level of quality.</p> <p>Allowing quality to drop in <em>any</em> branch is always harmful. Don't think you can let the Dev branch go to hell and then fix it up before merging. It doesn't work well, for two reasons:</p> <ul> <li><p><strong>Recovering is harder than you expect</strong>. When a branch is badly broken, you don't know how broken it really is. That's because each issue hides others. It's also hard to make any progress on any issue because you'll run in to other problems along the way.</p></li> <li><p><strong>Letting quality drop saves you nothing</strong>. People sometimes say "quality, cost, schedule - pick any 2" or something like that. The false assumption here is that you "save" by allowing quality to slip. The problem is that as soon as quality drops, so does "velocity" - the speed at which you get work done. The good news is that keeping quality high doesn't really cost extra, and everyone enjoys working with a high-quality code base.</p></li> </ul> <p>The compromise you have to make is on how much time you spend <em>verifying</em> quality. </p> <p>If you do Test Driven Development well, you will end up with a comprehensive set of extremely fast, reliable unit tests. Because of those qualities, you can reasonably require developers to run them before checking in, and run them regularly in each branch, and require that they pass 100% at all times. You can also keep refactoring as you go, which lets you keep velocity high over the life of the project.</p> <p>Similarly, if you write automated integration / customer tests well, so they run quickly and reliably, then you can require that they be run often, as well, and always pass.</p> <p>On the other hand, if your automated tests are flaky, if they run slowly, or if you regularly operate with "known failures", then you will have to back off on how often people must run them, and you'll spend a lot of time working through these issues. It sucks. Don't go there.</p> <p>Worst case, most of your tests are not automated. You can't run them often, because people are really slow at these things. Your non-release branch quality will suffer, as will the merging speed and development velocity. </p> http://stackoverflow.com/questions/1195494/equivalent-to-unix-eval-in-windows/1195701#1195701 1 Answer by Jay Bazuzi for Equivalent to Unix eval in Windows Jay Bazuzi 2009-07-28T17:59:08Z 2009-07-28T17:59:08Z <p>(Making some guesses where details are missing from your question)</p> <p>In CMD, when a batch script modifies the environment, the default behavior is that it modifies the environment of the CMD process that is executing it. </p> <p>Now, if you have a batch script that calls another batch script, there are 3 ways to do it.</p> <ol> <li><p>execute the batch file directly: <PRE> REM call q.bat q.bat REM this line never runs </PRE> Usually you don't want this, because it won't return to the calling batch script. This is more like <code>goto</code> than <code>gosub</code>. The CMD process just switches from one script to another.</p></li> <li><p>execute with <code>call</code>: <PRE> REM call q.bat CALL q.bat REM changes that q.bat affects will appear here. </PRE> This is the most common way for one batch file to call another. When <code>q.bat</code> exits, control will return to the caller. Since this is the same CMD process, changes to the environment will still be there. <BR><BR> Note: If <code>q.bat</code> uses the <code>EXIT</code> statement, it can cause the CMD process to terminate, without returning control to the calling script.<br /> <BR><BR> Note 2: If <code>q.bat</code> uses <code>EXIT /B</code>, then the CMD process will not exit. This is useful for setting <code>ERRORLEVEL</code>.</p></li> <li><p>Execute in a new CMD process: <PRE> REM call q.bat CMD /C q.bat REM environment changes in q.bat don't affect me </PRE> Since q.bat run ins a new CMD process, it affects the environment of that process, and not the CMD that the caller is running in. <BR><BR> Note: If <code>q.bat</code> uses <code>EXIT</code>, it won't terminate the process of the caller.</p></li> </ol> <p><hr /></p> <p>The <code>SETLOCAL</code> CMD command will create a new environment for the current script. Changes in that environment won't affect the caller. In general, <code>SETLOCAL</code> is a good practice, to avoid leaking environment changes by accident.</p> <p>To use <code>SETLOCAL</code> and still push environment changes to the calling script, end the script with:</p> <p><PRE> ENDLOCAL &amp;&amp; SET X=%X% &amp;&amp; SET Y=%Y% </PRE></p> <p>This will push the values of X and Y to the parent environment.</p> <p><hr /></p> <p>If on the other hand you want to run another process (not a CMD script) and have it affect the current script's environment, than have the tool generate a batch file that makes the changes you want, then execute that batch file.</p> <p><PRE> REM q.exe will write %TEMP%\runme.cmd, which looks like: REM set X=Y q.exe call "%TEMP%\runme.cmd" </PRE></p> http://stackoverflow.com/questions/1163183/checklist-for-knowledge-transfer/1163297#1163297 2 Answer by Jay Bazuzi for Checklist for Knowledge Transfer Jay Bazuzi 2009-07-22T06:00:23Z 2009-07-22T06:00:23Z <p>My answer comes from the other side: what I do before leaving, to make sure the team isn't screwed.</p> <ul> <li><p><strong>Second Owner</strong> I always make sure that everything I own has a second owner. When I'm getting ready to leave a job, I find a new second owner for each of those things. If I forget something, at least it won't be completely orphaned.</p></li> <li><p><strong>Future plans</strong> I'm always thinking about what we should do next; when I'm getting ready to leave, I start writing them all down.</p></li> <li><p><strong>How to do my job</strong> There are always responsibilities I've taken on that other people don't know much about. Before I leave, I write them all down and send that info out to the team.</p></li> </ul> <p>I also ask around, to see what people want from me before I go. It doesn't net much, as other people don't know as much about what I'm doing as I know, but sometimes there's something important that I missed.</p> <p>I start this process as soon as I know I'm going to leave, even before anyone else knows my decision. In one case that was 6 months before I left.</p> <p><hr /></p> <p>From the original question: </p> <p>Comments in source code aren't likely to answer some question you were otherwise stuck on. Asking someone to go back over their code and make sure it's "well commented" is going to take a lot of their time but not get you much value.</p> <p>Pair programming is extremely effective in spreading knowledge around, especially when it's ** <a href="http://mitchlacey.com/docs/XR4PromiscuousPairingandBeginnersMind.pdf" rel="nofollow">Promiscuous Pairing</a>**</p> <p>If you don't have source code for their work, you've been doing it wrong since the beginning. All source should be in source control from the beginning. </p> <p>If they're writing a tool you consume: Every binary should be documented with info about where it came from, where the source code lives, which revisions it was built from, how to build it, etc. This is the same as if you release software to your regular users.</p> <p>If you are dependent on a bunch of machines that someone was responsible for, they should all have second administrators from the start, in case the primary administrator is unavailable. For critical systems, have a 3rd admin, too.</p> <p>In the end, though, the team is still somewhat screwed: they don't have me, and I'm hard to replace. </p> http://stackoverflow.com/questions/1144703/what-should-the-penalty-response-for-missing-a-deadline-be/1157145#1157145 0 Answer by Jay Bazuzi for What should the penalty/response for missing a deadline be? Jay Bazuzi 2009-07-21T03:22:30Z 2009-07-21T03:22:30Z <p><strong>Your question is inherently flawed</strong>: it assumes that punishment is the best way to manage people. In general, that people don't respond well to punishment or threats of punishment; it brings out the worst behaviors, make the motivation external, and distracts from internal motivation. Rewards and bribes (threats of reward) are the other side of the same coin, and do no better.</p> <p>These forces are built in to work for hire, however, so you'll never get the best creative work out of your programmers, but you don't have to make it worse by punishing them when they miss a deadline.</p> <p>Instead, meditate on the creative process, the <strong>chaos</strong> of multiple people doing creative work, and what tools are effective in managing chaos. </p> <p>To manage any chaotic system, do lots of measurement and be ready to change course quickly. In the case of programming:</p> <ul> <li><p>Take the <strong>smallest steps</strong> possible. Don't "break the task in to small steps", as you'll waste a lot time planning steps that won't work out like you planned. Chaos, remember?</p></li> <li><p>Pick the smallest steps that deliver the <strong>most value</strong>.</p></li> <li><p>after a short period, <strong>reevaluate your plan</strong> based on what you've learned</p></li> <li><p><strong>deliver</strong> working software to actual, real customers as soon as possible, so they can tell you what you should <em>really</em> be doing.</p></li> </ul> <p>You may recognize this as the thinking behind SCRUM.</p> http://stackoverflow.com/questions/1084824/c-piping-commands-into-powershell/1084864#1084864 0 Answer by Jay Bazuzi for C# Piping commands into PowerShell Jay Bazuzi 2009-07-05T21:36:22Z 2009-07-05T21:36:22Z <p>Would you be happier with your code if you wrote:</p> <pre><code>using (Pipeline pipeLine = myRunSpace.CreatePipeline()) { Command myCommand = new Command("Get-Command..."); } </code></pre> <p>?</p> http://stackoverflow.com/questions/1064400/is-it-bad-to-think-in-linq-when-the-skill-isnt-transferrable-outside-c/1064523#1064523 3 Answer by Jay Bazuzi for Is it bad to "think" in LINQ when the skill isn't transferrable outside C#? Jay Bazuzi 2009-06-30T15:56:53Z 2009-06-30T15:56:53Z <p><strong>Yes, your concern is valid.</strong> </p> <p><strong>That is, when you get good at using any tool, you start to forget how to function well without the tool. You also get frustrated when that tool is not available.</strong></p> <p>For millions of years humans were able to feed themselves without the use of metal tools. They weren't miserable. Today very few know how to do that, and most are scared of what that would be like.</p> <p>For tens of years humans wrote software without real-time interaction with a computer, e.g. punch cards. They weren't miserable. Today very few know how to do that. The idea of doing that sounds miserable to me.</p> <p>If you become adept with Linq, you will miss it when it's not around. It's a great tool. As your skill with Linq grows, your skill of programming without Linq (which you aren't practicing) will become rusty.</p> <p>In all the above cases, we have replaced a human skill with a tool + a new human skill. Each time, the idea of giving up the tool sounds scary. I believe there's always some value in exploring the older, lower-tech way of doing things, as it helps me become more well-rounded, but usually I'll pick the higher-tech way.</p> <p>So, <strong>don't shy away from Linq, but do explore other ways of doing things, as part of your self-education as a programmer.</strong></p> http://stackoverflow.com/questions/1011243/where-to-put-powershell-scripts/1018433#1018433 3 Answer by Jay Bazuzi for Where to put PowerShell scripts? Jay Bazuzi 2009-06-19T14:58:10Z 2009-06-19T14:58:10Z <p>I put my personal scripts in the same folder as my profile. I can then back up &amp; version them together. My profile begins with:</p> <pre><code>$ProfileRoot = (Split-Path -Parent $MyInvocation.MyCommand.Path) $env:path += ";$ProfileRoot" </code></pre> http://stackoverflow.com/questions/1009677/how-can-i-intersect-two-collections-with-a-table-with-a-2-part-key-in-powershell/1009849#1009849 0 Answer by Jay Bazuzi for How can I intersect two collections with a table with a 2-part key, in PowerShell? Jay Bazuzi 2009-06-17T22:34:02Z 2009-06-17T22:34:02Z <p>Here's what I'm trying to use, and I think it will work</p> <pre><code>$table = @( @{ Foo = "A" Bar = "X Value = 1 }, @{ Foo = "A" Bar = "Y" Value = 2 }, @{ Foo = "B" Bar = "Z" Value = 3 } ) $table | foreach { $row = $_ $foo = $input.Foos | where { $_.Name -eq $row.Foo } $bar = $input.Bars | where { $_.Name -eq $row.Bar } if ($foo -and $bar) { # processing } } </code></pre> http://stackoverflow.com/questions/998595/where-do-you-store-your-library-of-powershell-scripts 3 Where do you store your library of PowerShell scripts? Jay Bazuzi 2009-06-15T21:53:34Z 2009-06-16T21:47:26Z <p>As soon as you start using PowerShell, you are likely to start collecting small, useful scripts. Managing them well is tricky.</p> <ul> <li>Where do you keep your PowerShell scripts? </li> <li>How do you track versions &amp; do backups? </li> <li>How do you synchronize between machines?</li> <li>How do you integrate new versions of other's scripts? (Including dealing with breaking changes between their scripts and yours)</li> <li>Do you see PowerShell V2 changing the picture? </li> </ul> http://stackoverflow.com/questions/997547/powershell-and-forms/998574#998574 0 Answer by Jay Bazuzi for Powershell and Forms Jay Bazuzi 2009-06-15T21:49:18Z 2009-06-15T21:49:18Z <p>Take a look at <a href="http://blogs.msdn.com/jaybaz%5Fms/archive/2007/09/12/powshell-gui-for-selecting-objects-in-a-pipeline-select-graphiphicalfilteredobject-ps1.aspx" rel="nofollow">Select-GuiFilteredObject</a>, originally by Lee and enhanced a little by me. This will help you get started with forms.</p> <p>I bet it would be a bunch nicer if done with the latest PowerShell v2 features.</p> http://stackoverflow.com/questions/984894/how-can-i-track-the-sequence-of-imports-in-msbuild 0 How can I track the sequence of <Import>s in MSBuild? Jay Bazuzi 2009-06-12T03:57:31Z 2009-06-12T17:57:50Z <p>I have a complex set of MSBuild .targets files tha I am trying to debug. I want to figure out who is who, in what order, when. </p> <p>I tried using 'msbuild /v:diag' but I don't see this much detail in there.</p> <p>Is there a way to get this information?</p> http://stackoverflow.com/questions/174198/c3-0-automatic-properties-why-not-access-the-field-directly/205567#205567 1 Answer by Jay Bazuzi for C#3.0 Automatic properties, why not access the field directly? Jay Bazuzi 2008-10-15T17:05:19Z 2009-06-12T02:30:59Z <p>For 99% of cases, exposing a public field is fine.</p> <p>The common advice is to use fields: "If you expose public fields from your classes you can't later change them to properties ". I know that we all want our code to be future-proof, but there are some problems with this thinking:</p> <ul> <li><p>The consumers of your class can probably recompile when you change your interface.</p></li> <li><p>99% of your data members will never need to become non-trivial properties. It's <a href="http://c2.com/cgi/wiki?SpeculativeGenerality" rel="nofollow">speculative generality</a>. You're writing a lot of code that will probaby never be useful.</p></li> <li><p>If you need binary compatability across versions, making data members in to properties probably isn't enough. At the very least, you should only expose interfacess and hide all constructors, and expose factories (see code below).</p></li> </ul> <p><hr /></p> <pre><code>public class MyClass : IMyClass { public static IMyClass New(...) { return new MyClass(...); } } </code></pre> <p>It's a hard problem, trying to make code that will work in an uncertain future. Really hard.</p> <p><a href="http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon">Does anyone have an example of a time when using trivial properties saved their bacon?</a> </p> http://stackoverflow.com/questions/962301/how-many-digits-will-be-after-converting-from-one-numeral-system-to-another/962320#962320 6 Answer by Jay Bazuzi for How many digits will be after converting from one numeral system to another Jay Bazuzi 2009-06-07T17:05:42Z 2009-06-07T17:05:42Z <p>Writing <em>n</em> in base <em>b</em> takes <em>ceiling(log base b (n))</em> digits. </p> <p>The ratio you noticed (octal/binary) is <em>log base 8 (n) / log base 2 (n) = 3</em>.</p> <p>(From memory, will it stick?)</p> http://stackoverflow.com/questions/230595/what-artifacts-to-save-for-a-nightly-build/1759419#1759419 Comment by Jay Bazuzi on What artifacts to save for a nightly build? Jay Bazuzi 2009-11-23T04:58:24Z 2009-11-23T04:58:24Z I had to look it up. FPGA = Field Programmable Gate Array. <a href="http://en.wikipedia.org/wiki/FPGA" rel="nofollow">en.wikipedia.org/wiki/FPGA</a> http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/271410#271410 Comment by Jay Bazuzi on Should C# include multiple inheritance? Jay Bazuzi 2009-10-30T04:19:50Z 2009-10-30T04:19:50Z 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. http://stackoverflow.com/questions/211426/what-punishment-do-you-have-when-someone-on-the-team-breaks-the-build/264067#264067 Comment by Jay Bazuzi on What punishment do you have when someone on the team breaks the build? Jay Bazuzi 2009-10-27T00:35:26Z 2009-10-27T00:35:26Z 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. http://stackoverflow.com/questions/191691/should-c-include-multiple-inheritance/271410#271410 Comment by Jay Bazuzi on Should C# include multiple inheritance? Jay Bazuzi 2009-10-10T04:52:54Z 2009-10-10T04:52:54Z @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 <i>implementation</i>. http://stackoverflow.com/questions/1507295/how-to-answer-what-are-your-strengths-and-what-are-your-weakness-question-during/1507325#1507325 Comment by Jay Bazuzi on How to answer what are your strengths and what are your weakness question during Interview ? Jay Bazuzi 2009-10-09T01:26:27Z 2009-10-09T01:26:27Z &quot;it should be reasonably close to the truth&quot;: why? Just wishing for more truth in the world isn't enough. You have to ask people questions they are willing to answer truthfully. http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238338#238338 Comment by Jay Bazuzi on What is the best UI you've ever used? Jay Bazuzi 2009-10-03T00:03:36Z 2009-10-03T00:03:36Z @Stuart: not necessarily; that could just be evidence of effective marketing. http://stackoverflow.com/questions/61400/what-makes-a-good-unit-test/61441#61441 Comment by Jay Bazuzi on What Makes a Good Unit Test? Jay Bazuzi 2009-10-01T15:52:25Z 2009-10-01T15:52:25Z I think we agree that DRY applies to unit tests. As I said, &quot;Unit tests should be well-factored&quot;. 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 &quot;test fixture&quot; 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. http://stackoverflow.com/questions/1499466/powershell-equivalent-of-linq-any/1499606#1499606 Comment by Jay Bazuzi on Powershell equivalent of LINQ Any()? Jay Bazuzi 2009-10-01T02:39:04Z 2009-10-01T02:39:04Z 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 `. http://stackoverflow.com/questions/304907/psake-extensions Comment by Jay Bazuzi on PSake extensions? Jay Bazuzi 2009-09-27T02:57:03Z 2009-09-27T02:57:03Z This seems too open for Stack Overflow: it's not really a question. If you keep it, please mark as Community Wiki. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408185#408185 Comment by Jay Bazuzi on What's your most controversial programming opinion? Jay Bazuzi 2009-09-10T20:58:59Z 2009-09-10T20:58:59Z @Amarghosh No, that's not what I'm talking about. It's not possible to do this in C++ because the language is too complex and unwieldy. Also, I wish you would write Englis. http://stackoverflow.com/questions/759481/batch-file-to-display-directory-size Comment by Jay Bazuzi on Batch File To Display Directory Size Jay Bazuzi 2009-08-17T01:20:17Z 2009-08-17T01:20:17Z Consider making the first line: @IF NOT DEFINED _ECHO ECHO OFF then you can set _ECHO when debugging. http://stackoverflow.com/questions/411906/c-net-design-flaws/412050#412050 Comment by Jay Bazuzi on C# (.NET) Design Flaws Jay Bazuzi 2009-08-04T14:31:29Z 2009-08-04T14:31:29Z The namespacing of types in .NET are good enough, except that many types in System belong elsewhere. I just wish for nesting of types where it makes sense. http://stackoverflow.com/questions/1201930/how-to-create-a-login-batch Comment by Jay Bazuzi on How to create a login batch. Jay Bazuzi 2009-07-29T17:59:43Z 2009-07-29T17:59:43Z You haven't asked a question. http://stackoverflow.com/questions/1195494/equivalent-to-unix-eval-in-windows Comment by Jay Bazuzi on Equivalent to Unix eval in Windows Jay Bazuzi 2009-07-28T17:43:46Z 2009-07-28T17:43:46Z Please be specific about which shell you are using. CMD is my best guess, but maybe you mean PowerShell or a Windows port of CSH. http://stackoverflow.com/questions/504423/powershell-causes-a-to-seek-when-it-starts-how-do-i-stop-this Comment by Jay Bazuzi on Powershell causes a: to seek when it starts; how do I stop this? Jay Bazuzi 2009-07-22T14:13:12Z 2009-07-22T14:13:12Z You have a floppy drive?