User Microserf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:04:36Z http://stackoverflow.com/feeds/user/3397 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/312624/removing-or-overwriting-a-component-from-windsor-container 1 Removing or overwriting a component from Windsor Container Microserf 2008-11-23T15:34:41Z 2009-12-16T20:39:43Z <p>I'm trying to accomplish a seemingly super simple thing: from my unit test I want to replace the type being resolved with a mock/fake object.</p> <p>For example: the xml config states that a component of the service IInterface should resolve to ClassA. That's fine, but from my unit test I want the type to resolve to FakeClassA instead. I can't use container.AddComponent for this, since there "is a component already registered for the given key ...".</p> http://stackoverflow.com/questions/72626/could-not-find-file-when-using-isolated-storage 3 "Could not find file" when using isolated storage Microserf 2008-09-16T14:04:41Z 2009-11-16T16:37:30Z <p>I'm saving some stuff in an IsolatedStorageFile. It works well and I can retrieve the saved values when calling the saving and retrieving methods in my DAL layer from my GUI layer. However, when I try to retrieve the same settings from another assembly in the same project, it gives me a FileNotFoundException. What do I do wrong? This is the general concept:</p> <pre><code> public void Save(int number) { IsolatedStorageFile storage = IsolatedStorageFile.GetMachineStoreForAssembly(); IsolatedStorageFileStream fileStream = new IsolatedStorageFileStream(filename, FileMode.OpenOrCreate, storage); StreamWriter writer = new StreamWriter(fileStream); writer.WriteLine(number); writer.Close(); } public int Retrieve() { IsolatedStorageFile storage = IsolatedStorageFile.GetMachineStoreForAssembly(); IsolatedStorageFileStream fileStream = new IsolatedStorageFileStream(filename, FileMode.Open, storage); StreamReader reader = new StreamReader(fileStream); int number; try { string line = reader.ReadLine(); number = int.Parse(line); } finally { reader.Close(); } return number; } </code></pre> <p>I've tried using all the GetMachineStoreFor* scopes.</p> <p>EDIT: Since I need several assemblies to access the files, it doesn't seem possible to do with isolated storage, unless it's a ClickOnce app.</p> http://stackoverflow.com/questions/1682123/downloading-a-file-over-https-in-ie8-using-asp-net 3 Downloading a file over https in IE8, using ASP.NET Microserf 2009-11-05T17:12:45Z 2009-11-05T17:18:11Z <p>I'm trying to make it possible for the user to download an Excel spreadsheet from our site, by having a button that redirect through this:</p> <pre><code>Response.Redirect(string.Format("../excel/ExcelForm.aspx?pathName=&amp;fileNameDisplay={0}&amp;fileNameUnique={1}", "spreadsheet.xls", fileName)); </code></pre> <p>The aspx page just sends back the file through the Response object, like this:</p> <pre><code> Response.ContentType = "application/vnd.ms-excel"; Response.AddHeader("Content-Disposition", "attachment; filename=" + fileNameDisplay); Response.WriteFile(Server.MapPath(pathName + fileNameUnique)); Response.Flush(); Response.End(); </code></pre> <p>Everything works just fine on my machine, but when we're putting it on the server, the https in combination with no-cache settings gives us an error saying "Internet Explorer cannot download [blahblahblah]". The cache settings on the page displaying the excel button:</p> <pre><code>HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache); HttpContext.Current.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1); HttpContext.Current.Response.Expires = 0; HttpContext.Current.Response.AddHeader("Pragma", "no-cache"); HttpContext.Current.Response.AddHeader("cache-control", "private, no-cache, must-revalidate no-store pre-check=0 post-check=0 max-stale=0"); HttpContext.Current.Response.Cache.SetNoServerCaching(); </code></pre> <p>When I remove those lines, everything works just fine. However, I'm not allowed to remove them for other reasons. So I tried adding the following line to the ExcelForm.aspx just before it adds stuff to the header:</p> <pre><code>Response.ClearHeaders(); </code></pre> <p>Which just gives me "Internet Explorer cannot download ExcelForm.aspx from [url]". And that's where I'm stuck. Suggestions?</p> http://stackoverflow.com/questions/62064/the-best-django-webcasts-videos 3 The best Django webcasts/videos Microserf 2008-09-15T09:56:22Z 2009-10-31T19:25:43Z <p>I'm currently learning Django though reading <a href="http://www.djangobook.com/" rel="nofollow">the Django Book</a>, but I'm a huge fan of webcasts/screencasts/videos and haven't found any good ones so far. Are there any and which ones would you recommend?</p> http://stackoverflow.com/questions/244408/deleting-items-from-one-collection-in-another-collection 3 Deleting items from one collection in another collection Microserf 2008-10-28T18:55:08Z 2009-06-09T20:45:49Z <p>I've got two collections (generic Lists), let's call them ListA and ListB.</p> <p>In ListA I've got a few items of type A. In ListB I've got some items of type B that have the SAME ID (but not same type) as the items in ListA, plus many more. I want to remove all the items from ListB that have the same ID as the ones in ListA. What's the best way of doing this? Is Linq to objects a nice fit? What algorithm would you use?</p> <p>Example</p> <p>ListA: ItemWithID1, ItemWithID2¨</p> <p>ListB: ItemWithID1, ItemWithID2, ItemWithID3, ItemWithID4</p> <p>EDIT: I forgot to mention in my original question that ListA and ListB doesn't contain the same types. So the only way to compare them is through the .Id property. Which invalidates the answers I've gotten so far.</p> http://stackoverflow.com/questions/934334/how-long-should-a-method-be/934346#934346 2 Answer by Microserf for How long should a method be? Microserf 2009-06-01T10:59:26Z 2009-06-01T10:59:26Z <p>As short as humanely possible. Whenever in doubt, extract a method based on the logical grouping of the code. Most of my methods are at the most between 7-10 lines long.</p> http://stackoverflow.com/questions/700337/cant-get-no-javascript-to-execute-on-an-asp-net-user-control 1 Can't get no javascript to execute on an ASP.NET user control Microserf 2009-03-31T07:01:46Z 2009-04-01T04:18:40Z <p>Hello,</p> <p>I'm trying to do the simplest thing, to show an alert popup through javascript from my code-behind of a user control (ascx.cs).</p> <p>I've tried </p> <pre><code>protected void btnSave_Click(object sender, EventArgs e) { ScriptManager.RegisterStartupScript(btnSave, GetType(), "uniqueID", "alert('hello');", true); } </code></pre> <p>as well as</p> <pre><code>Page.ClientScript.RegisterStartupScript(GetType(), "uniqueID", "alert('hello');", true); </code></pre> <p>but nothing seems to work for me. The control is located within an RadAjaxPanel (telerik) in an ASPX page.</p> <p>I'm missing something obvious here. Any ideas what?</p> <p><strong>EDIT:</strong> The javascript is not injected into the html source as far as I can see. I look for the ID and the actual alert statement in the html.</p> http://stackoverflow.com/questions/700337/cant-get-no-javascript-to-execute-on-an-asp-net-user-control/701224#701224 1 Answer by Microserf for Can't get no javascript to execute on an ASP.NET user control Microserf 2009-03-31T14:27:21Z 2009-03-31T14:27:21Z <p>Ah, the problem was the Telerik RadAjaxPanel. I just had to set the EnableOutsideScripts to true on them, like so:</p> <pre><code>&lt;telerik:RadAjaxPanel ID="ajaxpanel" runat="server" LoadingPanelID="ajaxLoadingPanel" EnableOutsideScripts="true"&gt; </code></pre> <p>And then I could use the following code:</p> <pre><code>ScriptManager.RegisterStartupScript(btnSave, GetType(), "uniqueID", "alert('hello');", true); </code></pre> http://stackoverflow.com/questions/457117/how-do-i-get-the-correct-clientid-for-my-asp-net-textbox 2 How do I get the correct ClientID for my ASP.NET TextBox? Microserf 2009-01-19T10:09:53Z 2009-01-19T11:12:21Z <p>I have created a a subclass of Table in my ASP.NET project which creates. The table uses a class that formats and creates TableRows and TableCells which we can call RowCreator. So MyTable calls rowCreator.CreateRow() and gets back a TableRow with a lot of goodies in it.</p> <p>In this TableRow there is a TextBox which is supposed to trigger a javascript method on the onblur event, which is added by the RowCreator class.</p> <p><code>textBox.Attributes.Add("onblur", "javascriptMethod('" + textbox.ClientID + "');");</code></p> <p>I've also tried created a subclass of textBox which implements a method that adds the onblur event:</p> <p><code>Attributes.Add("onblur", "javascriptMethod('" + this + "');")</code></p> <p>Which doesn't work. The ID is just the namespace of the textbox subclass.</p> <p>And the JavaScript method is very simple: </p> <p><code>function javascriptMethod(boxId) { alert(boxId); }</code></p> <p>The trouble is, and I'm guessing this is because the textbox control hasn't been added to the control collection yet, that the boxId isn't the proper client ID. It is the same as the server side ID. Is there a way of getting the proper ID without having to add the row using Controls.Add on the page first? Any other suggestions?</p> <p>The reason I'm even doing this is to read the textbox contents from a javascript function whenever it's been changed. Maybe there's a better way to do this?</p> http://stackoverflow.com/questions/314468/workspace-problem-once-the-user-name-has-been-changed-in-tfs-source-control 1 Workspace problem once the user name has been changed in TFS Source Control Microserf 2008-11-24T15:25:53Z 2009-01-09T08:41:53Z <p>For some reason the system admin changed my user name from XxXx to XxXx1 in the source control system. Then the problems started. I had to delete all local files and re-download them from source control just to open the project.</p> <p>And after I had rebooted the computer, I can't do much to my files. Whenever I try to undo a checkout I get the following message:</p> <blockquote> <p>TF14098: Access Denied: User DOMAIN\XxXx needs UndoOther permission(s) for $/blablabla</p> </blockquote> <p>So it is still trying to use my old user name. The user name and password is stored somewhere because I don't ever have to enter it when starting VS2008. Maybe through Explorer (I think I used it to browse to the tfs server and saved the user name and password).</p> <p>Any tips?</p> http://stackoverflow.com/questions/314468/workspace-problem-once-the-user-name-has-been-changed-in-tfs-source-control/427412#427412 2 Answer by Microserf for Workspace problem once the user name has been changed in TFS Source Control Microserf 2009-01-09T08:41:53Z 2009-01-09T08:41:53Z <p>After giving up on everything else, I deleted the local workspace and created a new one. Now everything works fine.</p> http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/330849#330849 0 Answer by Microserf for What tricks do you use to get yourself "in the zone"? Microserf 2008-12-01T13:34:24Z 2008-12-01T13:34:24Z <p>I really recommend using the Pomodoro Technique to achieve this. Basically you tell yourself to work focused and uninterrupted for 25 minutes and stick to it, using a timer of some sort. If an interruption arises, such as someone coming by and asking a question, kindly tell them that you will answer it later, and make a note of it. Then get back to work.</p> <p>When the timer has ringed, you allow yourself a short break during which you can go get a glass of water, talk to your colleagues or surf stackoverflow (although you're not supposed to do anything too intelligent during the break, it is a brain break after all).</p> <p>If you stick to this, it will be a lot easier for you to focus on the task at hand and to get into the zone.</p> <p>To get started NOW with the Pomodoro Technique, you can read Staffan Nötebergs excellent blog post <a href="http://blog.staffannoteberg.com/2008/02/22/pomodoro-technique-in-5-minutes/" rel="nofollow">Pomodoro Technique in 5 minutes</a>. </p> http://stackoverflow.com/questions/320976/how-do-i-hire-a-programmer-smarter-than-me/321026#321026 4 Answer by Microserf for How do I hire a programmer smarter than me? Microserf 2008-11-26T15:08:43Z 2008-11-26T15:08:43Z <p>Ask them to sit down and write some code and solve a problem next to some of your smartest (and nicest) developers. Seeing how people code and talk about code is better than any interview questions you could ever ask.</p> http://stackoverflow.com/questions/286876/asp-net-how-to-best-create-a-test-db-when-doing-tdd/312682#312682 0 Answer by Microserf for ASP.NET How to best create a test DB when doing TDD? Microserf 2008-11-23T16:32:01Z 2008-11-23T16:32:01Z <p>I am using a complete in memory database with SQLite and ActiveRecord. Basically we delete and re-create the database before every integration test is being run, so that the data is always in a known state. The contents of the database are inserted through code. So an example would be like this:</p> <pre><code>ActiveRecord.Initalize(lots of parameters) ActiveRecord.DropSchema(); ActiveRecord.CreateSchema(); </code></pre> <p>and then we just add lots of customers or whatever, DDD style:</p> <pre><code>customerRepository.Save(customer); </code></pre> <p>Another way to solve this could be using NDbUnit to maintain the state of the database.</p> http://stackoverflow.com/questions/312642/how-many-classes-per-package-methods-per-class-lines-per-method/312665#312665 3 Answer by Microserf for how many classes per package? methods per class? lines per method? Microserf 2008-11-23T16:05:21Z 2008-11-23T16:05:21Z <p>Robert C. Martin, who recently released the book "Clean Code", states that the number of lines per method should be the absolutely smallest possible. Between 1-7 lines is a good rule of thumb.</p> <p>There's also a good point being made in the book The ThoughtWorks Anthology, in the essay “Object Calisthenics” by Jeff Bay. He suggests 9 pretty hardcore constraints that will make you a better OO developer in the long run. <a href="http://binstock.blogspot.com/2008/04/perfecting-oos-small-classes-and-short.html" rel="nofollow">Read more about them here.</a></p> <p>To answer your specific questions, these are the constraints specifically to you: - No more than 10 classes per package - A maximum of 50 lines per class</p> <p>These constraints might not be ideal for all of your real projects, but using them in a small (hobby?) project will force you into a better practice.</p> http://stackoverflow.com/questions/284152/poll-what-are-the-top-3-blogs-for-new-net-developers/284161#284161 20 Answer by Microserf for Poll: What are the top 3 blogs for new .net developers? Microserf 2008-11-12T14:45:56Z 2008-11-12T14:45:56Z <p>I'd say the following blogs:</p> <ol> <li><a href="http://weblogs.asp.net/Scottgu/" rel="nofollow">Scott Guthrie's</a></li> <li><a href="http://www.hanselman.com/blog/" rel="nofollow">Scott Hanselman's</a></li> <li><a href="http://www.codinghorror.com/blog/" rel="nofollow">Jeff Atwood's</a></li> </ol> http://stackoverflow.com/questions/278627/why-wont-my-website-project-adapt-to-net-3-5 3 Why won't my Website Project adapt to .NET 3.5? Microserf 2008-11-10T17:47:00Z 2008-11-12T14:38:31Z <p>We've converted our solution from .NET 2.0 to .NET 3.5. All projects converted just fine except for the Website Project, which still doesn't understand what I mean when using 'var' and the like.</p> <p>I've looked in the property pages for the web project, and the Target Framework is set to '.NET Framework 3.5'.</p> <p>Any other ideas?</p> http://stackoverflow.com/questions/278627/why-wont-my-website-project-adapt-to-net-3-5/280667#280667 3 Answer by Microserf for Why won't my Website Project adapt to .NET 3.5? Microserf 2008-11-11T11:37:21Z 2008-11-12T14:38:13Z <p>Add the following to web.config:</p> <pre><code> &lt;system.codedom&gt; &lt;compilers&gt; &lt;compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&gt; &lt;providerOption name="CompilerVersion" value="v3.5"/&gt; &lt;providerOption name="WarnAsError" value="false"/&gt; &lt;/compiler&gt; &lt;/compilers&gt; &lt;/system.codedom&gt; </code></pre> http://stackoverflow.com/questions/244408/deleting-items-from-one-collection-in-another-collection/262112#262112 2 Answer by Microserf for Deleting items from one collection in another collection Microserf 2008-11-04T15:16:16Z 2008-11-04T15:16:16Z <p>I discovered that lambda expressions was a perfect match. Instead of a long linq to objects method, I could do it in just a few lines with lambda:</p> <pre><code>foreach(TypeA objectA in listA){ listB.RemoveAll(objectB =&gt; objectB.Id == objectA.Id); } </code></pre> http://stackoverflow.com/questions/228394/automating-code-review-and-refactoring/228819#228819 1 Answer by Microserf for Automating code review and refactoring Microserf 2008-10-23T07:13:58Z 2008-10-23T07:13:58Z <p>I'd like to mention <a href="http://blogs.msdn.com/fxcop/archive/2007/02/28/announcing-visual-studio-code-metrics.aspx" rel="nofollow">Code Metrics</a>, which is a good code review tool included in the Team System editions. If you don't those fancy versions of Visual Studio you can have a look at <a href="http://www.exactmagic.com/products/studiotools/" rel="nofollow">StudioTools from Exact Magic Software</a>, which is a free plugin.</p> http://stackoverflow.com/questions/224852/dragging-dropping-items-from-one-list-to-another-in-a-asp-net-page 2 Dragging & dropping items from one list to another in a ASP.NET page? Microserf 2008-10-22T08:22:06Z 2008-10-22T11:44:57Z <p>I would like to move items from one list to another on a page, and I'm pretty flexible about what type of a list it is. What's the best way to do that? ASP.NET Ajax? jQuery? Anything else?</p> http://stackoverflow.com/questions/81305/where-to-put-the-dependency-injection-framework-config-file 0 Where to put the dependency injection framework config file? Microserf 2008-09-17T09:02:33Z 2008-10-17T23:36:46Z <p>I've got a solution with several different projects in it, some are pure class libraries and some are web app projects. If I want my default types to be available to all projects, where should I put the config file for the container?</p> http://stackoverflow.com/questions/61959/tfs-vs-open-source-alternatives 2 TFS vs open source alternatives? Microserf 2008-09-15T07:07:47Z 2008-09-29T19:59:42Z <p>We're currently in the process of setting up a source control/build/and more-server for .NET development and we're thinking about either utilizing the Team Foundation Server (which costs a lot of dough) or combining several open source options, such as SourceForge Enterprise/GForge and Subversion and CruiseControl.net and so on. Has anyone walked down the full blown OSS road or is it TFS only if you want to get it right and get to work soon?</p> http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-file 0 Letting several assemblies access the same text file Microserf 2008-09-19T11:38:23Z 2008-09-19T14:28:01Z <p>I've got many assemblies/projects in the same c#/.net solution. A setting needs to be saved by people using the web application gui, and then a console app and some test projects need to access the same file. Where should I put the file and how to access it?</p> <p>I've tried using "AppDomain.CurrentDomain.BaseDirectory" but that ends up being different for my assemblies. Also the "System.Reflection.Assembly.Get*Assembly.Location" fail to give me what I need.</p> <p>Maybe this isn't something I should but in a file, but rather the database? But it feels so complicated doing that for a few lines of configuration.</p> http://stackoverflow.com/questions/83886/how-do-you-get-yourself-to-focus/84646#84646 6 Answer by Microserf for How do you get yourself to focus? Microserf 2008-09-17T15:40:48Z 2008-09-17T15:40:48Z <p><img src="http://microserf.files.wordpress.com/2008/07/460332_tomatoe_1.jpg" alt="alt text" /><br/>I've found that the <strong>Pomodoro Technique</strong> really helps me focusing on the tasks at hand. It's relatively simple: work for 25 minutes (a pomodoro is 25 minutes) undisturbed and then take a break for 5 minutes. For every succeeded pomodoro, put down an X on a list. If anything comes up that takes your focus from the pomodoro, write it down and get back to work.</p> <p>It's not that simple, but that's the essence of it. For more information, <a href="http://microserf.wordpress.com/2008/08/12/trying-out-the-pomodoro-technique/" rel="nofollow">take a look at my blogpost on the subject</a>.</p> http://stackoverflow.com/questions/80243/does-test-driven-development-take-the-focus-from-design/80758#80758 4 Answer by Microserf for Does Test Driven Development take the focus from Design? Microserf 2008-09-17T07:19:33Z 2008-09-17T09:33:06Z <p>There's always a risk of overdoing either the TDD design or the upfront design. So the answer is that it depends. I prefer starting with a user story/acceptance test which is the base of the requirement that my tests will aid in producing. Only after I've established that, I start writing detailed unit tests TDD-style. If the only design and thinking you do is through TDD, then you risk too much of a bottom up approach, which might give you units and classes that are excellent in isolation, but when you try to integrate them into the user story fulfilling task you might be surprised by having done it all wrong. For more inspiration on this, look att <a href="http://blog.daveastels.com/files/BDD_Intro.pdf" rel="nofollow">BDD</a>.</p> <p><a href="http://www.infoq.com/interviews/coplien-martin-tdd" rel="nofollow">A great "debate" about this has been recorded</a> between Robert C. Martin and James Coplien, where the former is a TDD advocate and the latter has stated that it ruins the design of a system. This is what Robert said about TDD and design:</p> <blockquote> <p>"There has been a feeling in the Agile community since about '99 that architecture is irrelevant, we don't need to do architecture, all we need to do is write a lots of tests and do lots of stories and do quick iterations and the code will assemble itself magically, and this has always been horse shit. I even think most of the original Agile proponents would agree that was a silliness."</p> </blockquote> <p>James Coplien states that merely driving your design from TDD has a great risk:</p> <blockquote> <p>"One of the things we see a lot, in a lot of projects, is that projects go south on about their 3rd sprint and they crash and burn because they cannot go any further, because they have cornered themselves architecturally. And you can't refactor your way out of this because the refactoring has to be across class categories, across class hierarchies, and you no longer can have any assurances about having the same functionality."</p> </blockquote> <p>Also he gives a great example of how a bank account probably would look if you test drove it as compared to using your upfront knowledge to drive the architecture:</p> <blockquote> <p>"I remember when I was talking with Kent once, about in the early days when he was proposing TDD, and this was in the sense of YAGNI and doing the simplest thing that could possibly work, and he says: 'Ok. Let's make a bank account, a savings account.' What's a savings account? It's a number and you can add to the number and you can subtract from the number. So what a saving account is, is a calculator. Let's make a calculator, and we can show that you can add to the balance and subtract from the balance. That's the simplest thing that could possibly work, everything else is an evolution of that.</p> <p>If you do a real banking system, a savings account is not even an object and you are not going to refactor your way to the right architecture from that one. What a savings account is, is a process that does an iteration over an audit trail of database transactions, of deposits and interest gatherings and other shifts of the money. It's not like the savings account is some money sitting on the shelf on a bank somewhere, even though that is the user perspective, and you've just got to know that there are these relatively intricate structures in the foundations of a banking system to support the tax people and the actuaries and all these other folks, that you can't get to in an incremental way. Well, you can, because of course the banking industry has come to this after 40 years. You want to give yourself 40 years? It's not agile."</p> </blockquote> <p>The interesting thing here is that both the TDD proponent and the TDD antagonist are saying that you need design up front. </p> <p>If you have the time, watch the video. It's a great discussion between two highly influential experts, and it's only 22 minutes long.</p> http://stackoverflow.com/questions/72893/whats-the-best-way-to-learn-c-quickly/73348#73348 0 Answer by Microserf for What's the best way to learn C# quickly? Microserf 2008-09-16T15:05:42Z 2008-09-16T15:05:42Z <p>Invite someone who is knowledgeable in C# and arrange a <a href="http://www.codingdojo.org/cgi-bin/wiki.pl?WhatIsCodingDojo" rel="nofollow">coding dojo</a>. Dojos and other group practice sessions are really useful for picking up new techniques and languages in my opinion.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/73035#73035 4 Answer by Microserf for What development book made the most impact on you as a developer? Microserf 2008-09-16T14:38:11Z 2008-09-16T14:38:11Z <p><a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">Pragmatic Unit Testing in C# with NUnit by by Andy Hunt and Dave Thomas with Matt Hargett</a>. It made me really understand unit testing and that affects my code in so many ways. It pushed me towards becoming better at understanding Object Orientation.</p> http://stackoverflow.com/questions/71271/how-do-you-motivate-the-80/71346#71346 0 Answer by Microserf for How do you motivate the 80% Microserf 2008-09-16T11:22:26Z 2008-09-16T11:22:26Z <p>I've found that lunch &amp; learns are pretty good for this. You get to show how much of a rock star you really are and hopefully inspire the 80 % around you. Talk about something you know they'd benefit from or show a webcast/screencast/video while they're eating.</p> <p><a href="http://www.oredev.org/toppmeny/video/november13/andyhunthowhardcanitbe.4.7677b1da118323397c080003101.html" rel="nofollow">"How hard can it be?"</a> by Andy Hunt is a good video to start with. Then move on with something more technically advanced that is relevant for your colleagues.</p> http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/70264#70264 0 Answer by Microserf for Which text/code editor on Linux is most similar to TextMate? Microserf 2008-09-16T08:08:25Z 2008-09-16T08:08:25Z <p>You can learn Vi, which is a bit frustrating at first but makes you more productive in the long run. </p> <p>Using <a href="http://www.vim.org/scripts/script.php?script_id=69" rel="nofollow">the project plugin</a> makes Vim a little bit more like TextMate, with an IDE-like explorer.</p> http://stackoverflow.com/questions/1682123/downloading-a-file-over-https-in-ie8-using-asp-net/1682156#1682156 Comment by Microserf on Downloading a file over https in IE8, using ASP.NET Microserf 2009-11-05T17:28:10Z 2009-11-05T17:28:10Z Computer says yes! http://stackoverflow.com/questions/700337/cant-get-no-javascript-to-execute-on-an-asp-net-user-control/700456#700456 Comment by Microserf on Can't get no javascript to execute on an ASP.NET user control Microserf 2009-03-31T08:32:11Z 2009-03-31T08:32:11Z It's called from the server side button click event, since I have to do some server side checks before I throw up the alert box. http://stackoverflow.com/questions/700337/cant-get-no-javascript-to-execute-on-an-asp-net-user-control/700359#700359 Comment by Microserf on Can't get no javascript to execute on an ASP.NET user control Microserf 2009-03-31T08:21:50Z 2009-03-31T08:21:50Z I've tried that, same result unfortunately. http://stackoverflow.com/questions/314468/workspace-problem-once-the-user-name-has-been-changed-in-tfs-source-control Comment by Microserf on Workspace problem once the user name has been changed in TFS Source Control Microserf 2008-11-24T16:06:55Z 2008-11-24T16:06:55Z Haha... it's a big black box at times. http://stackoverflow.com/questions/312642/how-many-classes-per-package-methods-per-class-lines-per-method/312649#312649 Comment by Microserf on how many classes per package? methods per class? lines per method? Microserf 2008-11-23T16:06:32Z 2008-11-23T16:06:32Z It absolutely DOES matter how large a method is, since a) a method is read more times than it is written and b) small methods are easier to understand. http://stackoverflow.com/questions/284152/poll-what-are-the-top-3-blogs-for-new-net-developers/284160#284160 Comment by Microserf on Poll: What are the top 3 blogs for new .net developers? Microserf 2008-11-12T14:46:39Z 2008-11-12T14:46:39Z They're not all blogs, and there are not three of them. http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-file Comment by Microserf on Letting several assemblies access the same text file Microserf 2008-09-19T12:13:07Z 2008-09-19T12:13:07Z Vaibhav: Only one of the assemblies will ever write to the file. http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-file/101247#101247 Comment by Microserf on Letting several assemblies access the same text file Microserf 2008-09-19T11:47:52Z 2008-09-19T11:47:52Z I don't know. It feels more logical and safe to put it in a database as compared to the registry. Or? http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-file/101247#101247 Comment by Microserf on Letting several assemblies access the same text file Microserf 2008-09-19T11:43:07Z 2008-09-19T11:43:07Z Not really, they need to be deployed using ClickOnce for that as it seems. http://stackoverflow.com/questions/72626/could-not-find-file-when-using-isolated-storage/73400#73400 Comment by Microserf on "Could not find file" when using isolated storage Microserf 2008-09-16T15:21:43Z 2008-09-16T15:21:43Z Sorry, that was a typo. I used the same scope for both the save and the retrieve methods. So the documentation isn't helping me here. As I said, I can successfully save and retrieve from the GUI, but another assembly can't retrieve it. http://stackoverflow.com/questions/72626/could-not-find-file-when-using-isolated-storage/72736#72736 Comment by Microserf on "Could not find file" when using isolated storage Microserf 2008-09-16T14:26:24Z 2008-09-16T14:26:24Z I've updated the post now to show all of the code. http://stackoverflow.com/questions/62152/good-books-on-designing-for-improving-the-user-experience/62172#62172 Comment by Microserf on Good books on "designing for improving the User Experience" Microserf 2008-09-15T11:30:19Z 2008-09-15T11:30:19Z Good tip, but it's not really a book now is it?