User Cory Foy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T00:32:07Zhttp://stackoverflow.com/feeds/user/4083http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/537577/where-do-you-keep-your-code/574409#57440973Answer by Cory Foy for Where do you keep your code?Cory Foy2009-02-22T05:35:16Z2009-10-27T20:30:42Z<p>Wow. All these people who trust their code on these "hard drives". Please.</p>
<p>I have a batch process. It utilizes the latest Microsoft(R) Windows(R) .NET(R) FIleSystemWatcher technology. When I save, it kicks off my batch file. </p>
<p>My batch file then walks my directory to find all changes. It copies the modified files to my second hardrive, my USB Drive, and a floppy disk - just in case. It then <code>scp</code>s them to a secure offsite location, and then to my home network. </p>
<p>Both my secure offsite location and home network monitor the incoming files. When they detect new ones, they make true hard copies - they print the suckers. At each location, I've set up an automated mover which is basically a Lego(R) MindStorms(R) arm that grabs the fresh-off-the-printer source code. At the facility, it then passes it to a second arm, which files the document in a secure, fireproof safe - indexing it by filename, date and time. At home, I just have it put it in a box under my bed, so I feel all warm and fuzzy at night.</p>
<p>This process has saved me so many times. For example, just the other day my customer decided that the thing he told me to delete that I swore to him he would need and pleaded not to delete because we surely would just need to restore it later on, needed to be restored, because he was wrong about us deleting it, and he actually did need it. So I kicked off my restore process, which pulls in the copies from my other partition, my USB drive, and then contacts my offsite facility, which retrieves the version, OCRs it, and sends it back down my reverse-tunneled SSH connection. It then compares all three versions, and, finding them all in agreement, restores the file just like new.</p>
<p>Sure, keeping up with all that can be expensive, but you know, you just can't be too careful. Luckily, with this process, I can have my batch script automatically monitor all of my drives, so it doesn't really matter where I keep it at - it does the right thing.</p>
<p>Of course, that's all for my work stuff. For personal projects, I just keep them in C:. Why bother with folders, ya know?</p>
http://stackoverflow.com/questions/301993/is-agile-development-dead42Is Agile Development Dead?Cory Foy2008-11-19T14:18:01Z2009-09-17T19:49:42Z
<p>There's been <a href="http://jamesshore.com/Blog/The-Decline-and-Fall-of-Agile.html" rel="nofollow">lots</a> <a href="http://www.cio.com/article/464169/When_Agile_Projects_Go_Bad" rel="nofollow">of</a> <a href="http://businessagile.blogspot.com/2008/11/scrum-is-dead-long-live-scrum.html" rel="nofollow">articles</a> as of late declaring that Agile, Scrum or XP are "dead" or are "circling the drain". While I personally don't think agile development is dead, I wondered what others out there thought. Is agile dying, or are people just not following the practices and principles and thereby diluting what agile software development is all about?</p>
http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/380912#38091271Answer by Cory Foy for Common programming mistakes for .NET developers to avoid?Cory Foy2008-12-19T13:07:37Z2009-06-14T21:52:37Z<p>Deploying your ASP.NET applications to production with <code>Debug="true"</code> set in the web.config. The compiler can't do any optimizations, and batch build is disabled. When we used to debug performance problems, this was one main area we'd look at. Tess has a <a href="http://blogs.msdn.com/tess/archive/2006/04/13/575364.aspx" rel="nofollow">great article</a> on it.</p>
<p>It's so common, there is a built-in command to the SOS extension to WinDBG. Just get a memory dump of an ASP.NET application and run:</p>
<p><code>!finddebugtrue</code></p>
<p>which would output something like:</p>
<pre>
0:016> !finddebugtrue
Debug set to true for Runtime: 61b48dc, AppDomain: /MyDebugApplication
Debug set to true for Runtime: 1f50e6d8, AppDomain: /MemoryIssues
Total 16 HttpRuntime objects
</pre>
<p>Tess' article above has more examples.</p>
http://stackoverflow.com/questions/858607/what-eletronic-scrum-kanban-board-do-you-use-and-recommend-for-distributed-teams/858659#8586590Answer by Cory Foy for What eletronic scrum/kanban board do you use and recommend for distributed teams?Cory Foy2009-05-13T15:31:47Z2009-05-13T15:31:47Z<p>We use <a href="http://www.projectcards.com" rel="nofollow">ProjectCards</a>, but it really depends on the size of the team. We have close to 50 people distributed globally and we're using ProjectCards for the story management.</p>
http://stackoverflow.com/questions/334174/can-i-run-a-net-garbage-collection-from-windbg/334646#3346461Answer by Cory Foy for Can I run a .NET garbage collection from WinDbg?Cory Foy2008-12-02T16:46:36Z2009-04-27T19:38:50Z<p>WinDBG is first and foremost a Win32/Kernel Debugger. So you may want to try one of the managed debuggers, like <a href="http://msdn.microsoft.com/en-us/library/ms229861.aspx" rel="nofollow">mDBG</a>. But I used to do .NET Debugging support for MSFT, and I've never needed anything like that to troubleshoot memory leaks. </p>
http://stackoverflow.com/questions/553843/is-there-a-way-of-measuring-the-cost-of-agile-development-without-recording-the-a/555461#5554612Answer by Cory Foy for Is there a way of measuring the cost of agile development without recording the amount of time it took you to do a task?Cory Foy2009-02-17T03:41:10Z2009-02-17T03:41:10Z<p>The first question is - are you a consulting shop, or an internal IT shop. If the former, then actuals may be necessary to allow them to bill the customers correctly. If the latter, and you all are salaried, then the reasons aren't as clear. I'm always suspect of any manager wanting to know "how much time a programmer spent doing productive work". It's a metric, and one of the key things I tell teams with any form of agile development is that metrics should be captured for clear purposes that the team agrees with.</p>
<p>I would ask what the "question behind the question" is - or what management is really looking for. Why are they concerned about developer productivity? Are they having a hard time explaining to <em>their</em> managers what is going on? Are there team metrics that could be provide that you could generalize? </p>
<p>In short - your manager could be considered a customer of the team, so find out what your customer wants, and figure out the best way - as a team - to provide it.</p>
http://stackoverflow.com/questions/542709/asp-net-c-upload-memorystream-content-via-ftpwebrequest-issue/542713#5427131Answer by Cory Foy for ASP.NET C# upload MemoryStream content via FTPwebRequest issueCory Foy2009-02-12T18:44:31Z2009-02-12T20:27:04Z<p>Try not using <code>request.UseBinary = true</code></p>
<p>In other words, use <code>request.UseBinary = false</code>. Otherwise it will upload the contents as binary data, which is likely why you are seeing it show up that way on the server. </p>
<p>For example, if you use the command line FTP client in windows, you have to explicitly type <code>ascii</code> before <code>put</code>ing a text file. Same principle likely applies here.</p>
http://stackoverflow.com/questions/535255/sharepoint-for-a-c-asp-net-developer/535306#5353062Answer by Cory Foy for SharePoint for a C# ASP.NET DeveloperCory Foy2009-02-11T03:25:35Z2009-02-11T03:25:35Z<p>The first thing to remember is that SharePoint is just an ASP.NET application. It has a ton of framework, and various things like security, etc, built-in. But from your perspective, you can just build a Web Control, and basically deploy it right to the server. Check out <a href="http://sharepoint.microsoft.com/blogs/mikeg/Lists/Posts/Post.aspx?List=1b3bbb8f-4b5a-4f72-94c4-94cb80bc3866&ID=1066" rel="nofollow">this post</a> from MikeG, and especially look at <a href="http://www.codeplex.com/smartpart" rel="nofollow">SmartPart</a> on CodePlex. That will help you get up and running without too much fuss. Since you are using standard web controls, you have access to CodeBehind. The one caveat is that your assemblies have to either be deployed to the GAC or granted Full Trust in the config files - something SmartPart will help you through.</p>
<p>SharePoint Designer is just FrontPage, rebranded. It very much could help you with some basic stuff, and might be worth looking into if this is an occasional thing. But if you are going to be doing any kind of long term work, I highly recommend taking a class on developing SharePoint applications. It can be quite a beast, and you may find yourself in quicksand faster than you think.</p>
http://stackoverflow.com/questions/505883/how-do-you-unit-test-an-exe-with-3rd-party-dll/505912#5059120Answer by Cory Foy for How do you Unit Test an .EXE with 3rd party dll?Cory Foy2009-02-03T03:19:55Z2009-02-03T21:05:08Z<p>About the only useful piece of advice I might be able to give is to pick up Michael Feathers <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow"><em>Working Effectively with Legacy Code</em></a>. I think your biggest challenge is going to be your toolset, as I know the tools for VB6 unit testing just aren't as strong. </p>
<p>You could also try asking on the <a href="http://groups.yahoo.com/group/testdrivendevelopment" rel="nofollow">TDD Yahoo! List</a> as I know at least a couple of people are using vbunit3 on there.</p>
http://stackoverflow.com/questions/505882/out-of-memory-exception/505904#5059044Answer by Cory Foy for Out of Memory ExceptionCory Foy2009-02-03T03:15:56Z2009-02-03T03:22:58Z<p>Also note that you may not actually be running out of memory. What happens is that .NET goes to look for contiguous blocks of memory, and if it doesn't find any, it throws an OOM - even if you have plenty of total memory to cover the request. </p>
<p>Someone referenced both Perfmon and WinDBG. You could also setup adplus to capture a memory dump on crash - I believe the syntax is <code>adplus -crash -iis</code>. Once you have the memory dump, you can do something like:</p>
<p><code><pre>
.symfix C:\symbols
.reload
.loadby sos mscorwks
!dumpheap -stat
</pre></code></p>
<p>And that will give you an idea for what your high-memory objects are. </p>
<p>And of course, check out <a href="http://blogs.msdn.com/tess" rel="nofollow">Tess Fernandez's</a> excellent blog, for example this article on <a href="http://blogs.msdn.com/tess/archive/2006/02/15/net-memory-leak-xmlserializing-your-way-to-a-memory-leak.aspx" rel="nofollow">Memory Leaks with XML Serializers</a> and how to troubleshoot them.</p>
<p>If you are able to repro this in your dev environment, and you have VS Team Edition for Developers, there are memory profilers built right in. Just launch a new performance session, and run your app. It will spit out a nice report of what's hanging around.</p>
<p>Finally, make sure your objects don't define a destructor. This isn't C++, and there's nothing deterministic about it, other than it guarantees your object will survive a round of Garbage Collection since it has to be placed in the finalizer queue, and then cleaned up the next round.</p>
http://stackoverflow.com/questions/500170/how-do-you-encourage-end-users-to-fill-out-trouble-tickets/501488#5014881Answer by Cory Foy for How do you encourage end users to fill out trouble tickets?Cory Foy2009-02-01T20:10:35Z2009-02-01T20:10:35Z<p>Also - stop encouraging the behavior. Use your IM filtering options to only appear online to the dev team. Don't check your email - or setup filters that filter the high priority stuff (your boss, your dev team) to your inbox, and everything else to a folder you check once a day or once every other day. </p>
http://stackoverflow.com/questions/501406/developing-in-a-hostile-environment/501484#5014841Answer by Cory Foy for Developing in a hostile environmentCory Foy2009-02-01T20:08:24Z2009-02-01T20:08:24Z<p>Yeah. Leave. If your organization is not willing to give you the normal tools that any normal <em>professional</em> programmer should be able to use, then it's time to up your networking skills and update your resume. </p>
http://stackoverflow.com/questions/478918/stuck-on-card-deck-exercise-from-java-official-tutorial/478942#4789421Answer by Cory Foy for Stuck on Card/Deck exercise from Java official tutorialCory Foy2009-01-26T06:03:32Z2009-01-26T06:03:32Z<p>The exercise is simple enough if you know some basics:</p>
<ul>
<li>A deck of cards has 52 cards (54 if counting Jokers)</li>
<li>A deck contains 4 suits - Diamonds, Hearts, Clubs and Spades</li>
<li>Each Suit contains number cards (2-10), a Jack, a Queen, a King and an Ace</li>
<li>Ace's generally count to be "1" (but lots of edge cases for specific games)</li>
</ul>
<p>So, some simple tests:</p>
<p><code>
assert(deck.count == 52);
assert(deck.suits.count == 4);
assert(deck.suits.contains("Diamonds"));
assert(deck.suits.contains("Hearts"));
assert(deck.suits.contains("Clubs"));
assert(deck.suits.contains("Spades"));
assert(deck.suits["Diamonds"].contains("Ace")); //repeat for 2-10, Jack, Queen, King
</code></p>
<p>or something like that.</p>
http://stackoverflow.com/questions/472040/running-a-managed-application-2nd-time-shows-different-performance-than-1st/472044#4720443Answer by Cory Foy for Running a managed application 2nd time shows different performance than 1stCory Foy2009-01-23T06:10:57Z2009-01-23T06:10:57Z<p>Yes. It's called <a href="http://msdn.microsoft.com/en-us/library/ht8ecch6.aspx" rel="nofollow">Just-In-Time compiling</a>. Basically your app is deployed as MSIL (the Microsoft Intermediate Language) and the first time it is run it gets converted to native code.</p>
<p>You can always run NGen (see the above article), or have a warm up period in your performance testing scripts where it runs through the scenario a couple of times before actually benchmarking performance.</p>
http://stackoverflow.com/questions/469436/ms-access-as-enterprise-software/469513#4695132Answer by Cory Foy for MS Access as Enterprise Software?Cory Foy2009-01-22T15:13:50Z2009-01-22T15:13:50Z<p>Sadly, I have quite a bit of experience with this. We built an entire product around Access Forms tying into SQL database. Honestly, the performance wasn't an issue - it really is the normal db connection type scenarios that you'd have to be concerned about with any client/server app. In our case, the original developer knew tons of "tricks" in Access, and did things like databinding drop downs to stored procedures. Oh, and the awful triggers. Awful. As in, 45 triggers firing per update awful.</p>
<p>The tables we worked with did indeed have millions of rows of data, however typically the roll-out was to tens or hundreds of users. I'd imagine that any effort going out to thousands of users would benefit more from a custom development so that you can do things like build the software correctly, support it from a performance and development perspective, and build automated deployment options (MSIs or ClickOnce, for example).</p>
<p>So, I would not say it is a perfectly acceptable, stable, maintainable or robust solution. It worked for us because we were there to support it (and eventually rewrite it in .NET), but I wouldn't recommend it for anyone. I have, however, worked in government where trying to get anything done from "IT" (which I was part of) was so filled with red-tape and paperwork that departments would oftentimes just do the Access solutions.</p>
<p>Ultimately if that's the case you are in - where the departments simply can't get access to IT resources - then showing them at least some best practices for how to eventually scale the app would be helpful. As long as right after you show them, you put your resume out to find a better job.</p>
http://stackoverflow.com/questions/458581/insertstyleseparator-in-word-for-range-objects-not-selection-objects0InsertStyleSeparator in Word for Range objects (not Selection objects)Cory Foy2009-01-19T18:14:52Z2009-01-19T18:24:11Z
<p>We're currently doing some Word automation, and want to be able to insert a Style Separator into a Range object. We've found how to do it with the Selection object (<code>InsertStyleSeparator</code>) but can't seem to figure out how to do that with Range objects. Does anyone know how to make that work?</p>
<p>Relevant links I've found so far:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.selection.insertstyleseparator(VS.80).aspx" rel="nofollow">Style Separator in Selection</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.range_members(VS.80).aspx" rel="nofollow">Range members (which doesn't include the above method)</a></li>
</ul>
http://stackoverflow.com/questions/455490/how-much-should-i-charge-for-rails-programming/455609#4556091Answer by Cory Foy for How much should I charge for Rails programming?Cory Foy2009-01-18T18:14:02Z2009-01-18T18:14:02Z<p>Some other things to take into consideration. Do you have health benefits, and will you need to buy them on your own? Will you be self-employed - hence having to pay the self-employment tax that your employer normally matches? What are you making now?</p>
<p>The rough rule of thumb would be to double what your hourly rate equivalent would be now. However, it also comes down to how much you want something. I've had offers where I really didn't want the gig (involved flying out to the site) and I quoted a pretty high rate (I think for one I quoted roughly $350 per hour).</p>
<p>If you really want to do this, and are using it as a stepping stone, then figure out what you need to make and propose that. Don't think you'll be able to increase later on if you don't write that in from the beginning. Now is the time to negotiate.</p>
http://stackoverflow.com/questions/443294/restoring-team-foundation-server/445466#4454661Answer by Cory Foy for Restoring Team Foundation ServerCory Foy2009-01-15T02:46:15Z2009-01-15T02:46:15Z<p>It shouldn't be taking days. Do you have some huge WSS databases? If so, you can ignore those during an initial restore, since that's not where your core source code is at. </p>
<p>The most important thing is to get your App Tier and Databases back online. The easiest thing might be just to email me at foyc at cornetdesign dot com and I can help either walk you through it, or get you in touch with the right people. But I've dealt with critical restores, and it's never taken days before.</p>
http://stackoverflow.com/questions/439091/what-company-would-you-like-to-work-for/439107#4391072Answer by Cory Foy for What company would you like to work for?Cory Foy2009-01-13T14:23:08Z2009-01-13T14:23:08Z<p>My Own. I had the opportunity to work at Microsoft, and I've gotten the chance to work for and with some great companies and great people, but there is nothing like calling your own shots.</p>
http://stackoverflow.com/questions/38109/pair-programming/38205#382058Answer by Cory Foy for Pair programmingCory Foy2008-09-01T17:50:20Z2009-01-12T22:56:29Z<p>I have worked in both instances where we heavily pair programmed, ones where we did occasionally, and ones where it was looked down upon.</p>
<p>I would say that I felt the most productive when we did it full time. This, I think, is because it encourages such a high degree of collaboration with the team. However, it was also important that we swapped pairs on a regular basis - once or twice a day. Here's some pictures of the setup at a former place:</p>
<p><a href="http://www.cornetdesign.com/images/carfax" rel="nofollow">http://www.cornetdesign.com/images/carfax</a></p>
<p>Implementing Pair Programming, however, means that you've overcome several items on the <a href="http://rads.stackoverflow.com/amzn/click/0787960756" rel="nofollow">Five Dysfunctions of a Team</a> list - primarily trust and communication. It's also helpful to be able to get into a flow - we used Ping-Pong programming - one would write a failing test, the other would make it pass and write the next failing test, with both of us participating in refactoring as we needed to.</p>
<p>It can be a little scary to people who are used to having their own thing, but the collaboration it allows for is really quite amazing.</p>
http://stackoverflow.com/questions/420510/why-did-the-designers-of-coldfusion-decide-to-index-arrays-from-1-rather-than-0/420560#4205605Answer by Cory Foy for Why did the designers of Coldfusion decide to index arrays from 1 rather than 0?Cory Foy2009-01-07T14:49:05Z2009-01-07T14:49:05Z<p>Well, unless we have any of the original designers, it's going to be tough to do anything but speculate. But having used CF in a previous life, I have some ideas.</p>
<p>If you look at the original language, it was designed for RAD type development for people who wanted to build dynamic applications without a lot of complexity. I still remember the joy when they finally released User-Defined Functions so I didn't have to use tags everywhere.</p>
<p>Based on that, then it would make sense that aspects of the language people had to deal with - such as arrays - they would make more "friendly". To me, seeing array[0] makes perfect sense. But to people new to the paradigm who haven't learned that, it wouldn't make any sense. Why would I access an object at position "0"? </p>
<p>The funny thing is that now that CF is Java in the backend, you actually have to deal with cases where your index starts at 1, and cases where it starts at 0. So by trying to be helpful, they actually added in more complexity as the language has grown.</p>
http://stackoverflow.com/questions/390752/does-the-theological-nature-of-computer-programmers-have-an-adverse-impact-on-the/390769#3907698Answer by Cory Foy for Does the theological nature of computer programmers have an adverse impact on the state of the art of computer programing?Cory Foy2008-12-24T04:47:21Z2009-01-06T22:26:14Z<p>Hi Scott,</p>
<p>I want to focus on one part of your question - the part where you say that people just ask for ways of doing things.</p>
<p>If you look at (and you may have) models of learning, such as the Dreyfus Method, people who are first learning <em>need</em> rules and clear guidelines. They don't have the context to be able to do anything else. (For example, see <a href="http://www.infoq.com/articles/better-best-practices" rel="nofollow">Dan North's article</a> from InfoQ, or my <a href="http://www.cornetdesign.com/2006/03/dreyfus-model-experiment.html" rel="nofollow">own experiences</a>).</p>
<p>Stack Overflow, to me, is a place people turn to when they are trying to figure out how to do things - typically this falls into the beginner category. So, going on that, I would expect the number of questions both on this forum and in general to be of the "Tell me what to do" type, since that is what beginners <em>need</em>. </p>
<p>To me, the whole issue of group think is a moot point. Your top developers aren't going to fall prey to that anyway. There are plenty of opportunities for the average developer to learn, grow and question. For some people, they may not be in a place where they can do that. For others, programming may simply be the financing to do whatever else it is they want to do - a "day job" if you will. </p>
<p>No one is under "shackles" of convention, and if they are, it is self-imposed. Given that, I'd hardly say there is much that can be done without passion. Look at things like ALT.NET - there are people in that community pushing very hard to break people free, if you will, but ultimately all you can do is present someone with opportunities - if they don't want to take them, that's up to them.</p>
http://stackoverflow.com/questions/417735/in-tdd-what-is-the-advantage-of-running-the-tests-before-even-writing-an-empty-m/417746#41774618Answer by Cory Foy for In TDD, what is the advantage of running the tests before even writing an empty method?Cory Foy2009-01-06T19:14:32Z2009-01-06T19:14:32Z<p>Then try it by writing the method name first. I find by writing the test first and the methods, it forces me to really think about the API, and I'm free to easily change names without having to worry about code that has already been written. My suggestion would be to try not following the rules, and monitor what happens. If you find that it causes problems, switch back. And if it doesn't, you've got a new way of working now.</p>
<p>Remember also that when you are first learning about things, generally you need a clear set of rules to give you context. As you begin to move from Beginner to more advanced, you'll gain more context and be able to make tweaks. It sounds to me like that's where you are.</p>
http://stackoverflow.com/questions/46569/solutions-for-multiple-webcam-meeting3Solutions for multiple webcam meetingCory Foy2008-09-05T19:00:15Z2009-01-02T20:30:26Z
<p>Currently our team is partially distributed with several members not at our local office. We do a lot of collaboration, and have decided to move to using webcams. I've done this before where we've had dedicated video links, but that was typically point to point, connecting two rooms at a time.</p>
<p>What solutions exist out there for having multiple webcams streaming at one time? Audio would be nice, but not entirely necessary, since we can just do a conference call for audio while we stream the video. Any gotchas to those who have used it?</p>
http://stackoverflow.com/questions/405568/are-you-doing-iphone-development-how-do-you-learn/405898#4058988Answer by Cory Foy for Are you doing iPhone development? How do you learn?Cory Foy2009-01-02T02:31:59Z2009-01-02T02:31:59Z<p>Oddly enough, I just finished reviewing <a href="http://www.apress.com/book/view/1430216263" rel="nofollow">Beginning iPhone Development</a> from Apress (review <a href="http://www.cornetdesign.com/2009/01/beginning-iphone-development-review.html" rel="nofollow">here</a>). I've found it to be a great book in getting started with development. Other than that, I've been just keeping an eye on Twitter and blogs for interesting apps that come up.</p>
http://stackoverflow.com/questions/400167/righttoleft-property-in-form-in-c-updated/400186#4001863Answer by Cory Foy for RightToLeft property in Form in C# (updated)Cory Foy2008-12-30T12:55:11Z2008-12-30T12:55:11Z<p>To further Blounty's answer, the MSDN specs clearly state that BackgroundImage, Opacity and others aren't supported when using RightToLeftLayout:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.form.righttoleftlayout(vs.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.forms.form.righttoleftlayout(vs.80).aspx</a>:</p>
<blockquote>
<p>Owner draw is not supported when RightToLeftLayout is set to Yes. The owner draw events will still occur, but the behavior of any code you author in these events is not defined. Additionally, BackgroundImage, Opacity, TransparencyKey, and the painting events are not supported. </p>
</blockquote>
http://stackoverflow.com/questions/382765/compiling-massive-vb-net-project/382835#3828351Answer by Cory Foy for Compiling Massive VB.NET ProjectCory Foy2008-12-20T03:10:00Z2008-12-29T03:01:56Z<p>If you can, upgrade to the 3.5 version of MSBuild. It can build solution files, and enables support for <a href="http://blogs.msdn.com/aaronhallberg/archive/2007/10/02/fancy-new-command-line-options-for-msbuild.aspx" rel="nofollow">multiprocessor support</a> (or <a href="http://blogs.msdn.com/msbuild/archive/2007/10/22/enabling-multiprocessor-support-in-an-msbuild-host.aspx" rel="nofollow">here</a> if you need to host it yourself) enabling it to build projects in parallel.</p>
<p>The caveat is that you need to be using project references so it knows what to build.</p>
<p>Also, how long is it taking now? Have you looked at the CPU/Memory Usage (using something like <a href="http://msdn.microsoft.com/en-us/library/aa645516(VS.71).aspx" rel="nofollow">PerfMon</a>) to see if it is a bottleneck?</p>
http://stackoverflow.com/questions/389103/debugging-tools-for-windows-symbol-proxy-doesnt-proxy/389334#3893340Answer by Cory Foy for Debugging Tools for Windows: Symbol Proxy doesn't proxyCory Foy2008-12-23T16:22:54Z2008-12-23T16:22:54Z<p>Also try a simple <code>.symfix c:\symbols</code>. That sets up your search path to be the default symbol site. You can also check your search paths to see what they are setup to be. </p>
http://stackoverflow.com/questions/387938/uievent-passed-into-uiview-hittest/388032#3880320Answer by Cory Foy for UIEvent passed into -[UIView hitTest:]Cory Foy2008-12-23T02:45:07Z2008-12-23T02:45:07Z<p>Looks like you have to implement a transparent view on top of it, and then delegate all events down to the UIWebView:</p>
<ul>
<li><a href="http://discussions.apple.com/thread.jspa?messageID=8486052" rel="nofollow">http://discussions.apple.com/thread.jspa?messageID=8486052</a></li>
</ul>
<p>has a bunch more information about how they got it to work.</p>
http://stackoverflow.com/questions/386613/who-develops-against-sharepoint-and-is-there-anyone-out-there-who-would-be-called/386686#3866861Answer by Cory Foy for Who develops against SharePoint and is there anyone out there who would be called an Expert?Cory Foy2008-12-22T16:33:34Z2008-12-22T16:33:34Z<p>Yes, there are people out there (if by out there, you mean, in the development world) developing SharePoint solutions. I used to teach SharePoint Admin and SharePoint Dev classes. Some of the experts I've talked to, worked with, or learned from include:</p>
<ul>
<li><a href="http://www.andrewconnell.com/blog/" rel="nofollow">Andrew Connell</a></li>
<li><a href="http://www.tedpattison.net/" rel="nofollow">Ted Pattison</a></li>
<li><a href="http://sharepoint.microsoft.com/blogs/mikeg/default.aspx" rel="nofollow">MikeG</a> (Mike Gannotti)</li>
<li><a href="http://www.sharepointblogs.com/" rel="nofollow">SharePoint blogs</a></li>
</ul>
<p>The tricky part is that SharePoint development can be such a broad range. For example, are you dealing with WSS or MOSS? Packaging and deployment questions? Custom List Development? Custom Workflow development? Dealing with Data Connectors? Going straight code, or using SharePoint Designer? Using the Object Model or Web Services (or even HTTP PUTs)? Forms or Integrated Authentication? Large Farm, or all on one box? </p>
<p>I do think there are enough good people on there to get you down the road, but in general, even with the experts I've had the chance to work with, if you ask broad SharePoint question, people are going to have trouble answering it.</p>
http://stackoverflow.com/questions/334174/can-i-run-a-net-garbage-collection-from-windbg/334646#334646Comment by Cory Foy on Can I run a .NET garbage collection from WinDbg?Cory Foy2009-04-27T19:39:23Z2009-04-27T19:39:23ZThanks for the clarification Mark. Comment updated.http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/380912#380912Comment by Cory Foy on Common programming mistakes for .NET developers to avoid?Cory Foy2009-02-26T17:50:59Z2009-02-26T17:50:59ZDario - You can still output PDBs even with debug turned off. For any production application, you really should never deploy with Debug=true. There are much better ways to troubleshoot your apps without taking the performance hit.http://stackoverflow.com/questions/542709/asp-net-c-upload-memorystream-content-via-ftpwebrequest-issue/542713#542713Comment by Cory Foy on ASP.NET C# upload MemoryStream content via FTPwebRequest issueCory Foy2009-02-12T20:25:33Z2009-02-12T20:25:33ZNo, I meant set it to false. Setting it to true means to upload the contents as binary data - hence why you are seeing it as binary data on the server. I'll edit the answer to be clearer.http://stackoverflow.com/questions/505883/how-do-you-unit-test-an-exe-with-3rd-party-dll/505912#505912Comment by Cory Foy on How do you Unit Test an .EXE with 3rd party dll?Cory Foy2009-02-03T21:05:24Z2009-02-03T21:05:24ZDone. Thanks for the suggestion.http://stackoverflow.com/questions/501406/developing-in-a-hostile-environment/501484#501484Comment by Cory Foy on Developing in a hostile environmentCory Foy2009-02-02T14:52:49Z2009-02-02T14:52:49ZI've been seeing that response more and more. Sure, you have to make smart decisions, and I didn't say to walk out the door. Even in this economy, highly skilled people are in demand - you just may have to do a bit more networking to make it happen.http://stackoverflow.com/questions/458581/insertstyleseparator-in-word-for-range-objects-not-selection-objects/458607#458607Comment by Cory Foy on InsertStyleSeparator in Word for Range objects (not Selection objects)Cory Foy2009-01-22T20:44:45Z2009-01-22T20:44:45ZThanks. Selection still won't work for us, because if the user happens to click or edit the doc during that brief moment wonky things happen (which is why we're using range). But I'm marking your answer as accepted since that's likely the only way. ;)http://stackoverflow.com/questions/451925/a-logical-error-with-my-codeComment by Cory Foy on A logical error with my codeCory Foy2009-01-16T21:02:24Z2009-01-16T21:02:24ZOr using automated unit tests instead of comments...http://stackoverflow.com/questions/385213/what-measurements-to-you-use-to-improve-your-processes/385633#385633Comment by Cory Foy on What measurements to you use to improve your processes?Cory Foy2008-12-22T13:40:50Z2008-12-22T13:40:50ZThat's the thing. There isn't one set of things we look at. It's fluid, depending on what issue the team feels we need to solve. But that's what I said the bad part was that it wasn't exactly what you were looking for.http://stackoverflow.com/questions/320234/what-do-you-do-when-you-reach-the-end-of-an-iteration-and-testing-is-not-finished/320244#320244Comment by Cory Foy on What do you do when you reach the end of an iteration and testing is not finished?Cory Foy2008-12-01T15:09:55Z2008-12-01T15:09:55ZI'd agree with this <i>only</i> if it is a one time thing. Otherwise you keep accruing debt. Committments should be a whole team effort - Dev, QA and verification. Failure on one part should be on the whole.http://stackoverflow.com/questions/328329/why-should-i-use-fComment by Cory Foy on Why should I use F#? Cory Foy2008-11-30T04:13:07Z2008-11-30T04:13:07ZSeems like this should be closed as a duplicate of <a href="http://stackoverflow.com/questions/141985/why-should-a-net-developer-learn-f" rel="nofollow" title="why should a net developer learn f">stackoverflow.com/questions/141985/…</a>http://stackoverflow.com/questions/309497/evidence-that-sharepoint-has-no-sql-injection-vulnerabilities/309781#309781Comment by Cory Foy on Evidence that SharePoint has no SQL injection vulnerabilities?Cory Foy2008-11-23T02:23:31Z2008-11-23T02:23:31ZThe only thing to be super-cautious of is that any modification to the database is considered unsupported by Microsoft. So just be aware of that in case any of your DBAs want to make "tweaks" or install "monitors".http://stackoverflow.com/questions/309205/are-variable-prefixes-hungarian-really-necessary-anymore/309251#309251Comment by Cory Foy on Are variable prefixes ( Hungarian ) really necessary anymore? Cory Foy2008-11-23T02:22:04Z2008-11-23T02:22:04ZI agree with your counter, and raise you this counter. You shouldn't change just for change's sake either. There may be a very important reason those are named a certain way. So figure out that reason, and either stick to it, or rename them. Just make it a team decision. :)http://stackoverflow.com/questions/301993/is-agile-development-dead/303241#303241Comment by Cory Foy on Is Agile Development Dead?Cory Foy2008-11-19T21:30:22Z2008-11-19T21:30:22ZThere were actually three different articles referenced - each word is a different hyperlink. But yeah, I agree. Duh.http://stackoverflow.com/questions/299987/c-generic-and-methodComment by Cory Foy on C# Generic and methodCory Foy2008-11-18T20:21:58Z2008-11-18T20:21:58ZThere's no boxing and unboxing of Object - it's not a value type. I'd just remove the generics or overload the methodhttp://stackoverflow.com/questions/287456/static-eventhandler-memory-leaks-in-the-frameworkComment by Cory Foy on Static EventHandler Memory Leaks in the FrameworkCory Foy2008-11-13T18:42:05Z2008-11-13T18:42:05ZThe connect link is incorrect - you have it as <a href="http://https://" rel="nofollow">https:/</a>