User Quibblesome - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:24:08Z http://stackoverflow.com/feeds/user/1143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/139387/least-favourite-design-pattern/139582#139582 0 Answer by Quibblesome for Least favourite design pattern Quibblesome 2008-09-26T13:45:10Z 2009-11-25T18:44:02Z <p>MVP. It's MVC but broken.</p> <p>Oh no but wait, developing an application IS completely different than following good practise such as "It's just a view".</p> <p><strong>Update</strong></p> <p>I reference "It's just a view" which is from the book Pragmatic Programmer. My main issue is that almost every single MVP implementation has the view holding onto the presenter and telling the presenter to do things. This is conceptually backwards. The UI should not have a dependancy on the logic. It is "just a view". The logic is the primary reason for the application, how that logic is displayed is a secondary concern. I could use one winform, or I could use many. Hell, I could pipe the whole thing out into ASCII text, or create the "view" by sending charges down a wire attached to an artist who renders the view via the medium of interperative dance.</p> <p>Practically speaking this premise does have some viable uses. Some of the controllers I've written in the past have MANY views that are exernally exposed and can be pushed into the UI as the application sees fit. Consider a live feed of data. I could present this as stats, as lines graphs, as pie charts. Perhaps all at the same time! Then the view holding onto the controller looks kinda silly, the parent is the controller and the children are the views.</p> <p>A traditional (Form holds presenter) MVP implementation has other consequences. One being that your UI now has a dependancy on code that performs the logic, this means it will also require references to everything that logic needs (services etc). </p> <p>The way to fix this is to pass in an interface (again, most MVP implementation I see have the form creating the presenter, but hey). Then it becomes a workable model, although i've never been a fan of passing in args to a form constructor.</p> <p>At the end of day it feels like people are twisting things around attempting to justify a model that is broken. I am of the personal belief that the MVP pattern purely exists as an attempt to rationalise how Visual Studio Windows Forms Applications work. They start with a "Form First" mentality. </p> <p>"Oh hai, here is your form, now go and draggy drop your controls and stuff logic into the UI"</p> <p>Anyone with experience with any apps that are beyond a util appreciate that this way of working does not scale. I see MVP as a way of making this scale but this just feels like an architectural band aid around the broken "form first" development model the IDE promotes. </p> <p>I argue that MVC is just MVC, MVP is a bastardisation of the pattern. Infact the whole definition of MVC is kinda backwards. The important part of it is separation of concerns. The UI, the logic, the data and/or services you're consuming. Keep these seperate. You don't implement MVC to do this, <em>you do this and by doing so you end up with a form of MVC</em>. MVP doesn't fit into this because you don't end up with MVP if you start by thinking of Separation of Concerns you end up with MVP if you're stuck in "Form First" land and you feel you should be doing things a bit more MVCish.</p> <p>That's my take on it anyway....</p> http://stackoverflow.com/questions/1790257/how-can-i-learn-asp-net/1790309#1790309 0 Answer by Quibblesome for How can I learn ASP.NET? Quibblesome 2009-11-24T14:09:15Z 2009-11-24T14:09:15Z <p>Read books as the other posters have suggested. This will let you know what you can and can't do (easily). After reading a book then build a website and learn the rest through experience.<br> Then get a more advanced book and go through the same process. :)</p> http://stackoverflow.com/questions/1751758/adding-menu-items-from-a-separate-thread/1764288#1764288 0 Answer by Quibblesome for Adding menu items from a separate thread. Quibblesome 2009-11-19T15:51:53Z 2009-11-19T15:51:53Z <p>Hmmmm. Whenever I call BeginInvoke I always do this instead:</p> <pre><code>BeginInvoke(new CallbackDelegate&lt;MenuItemPlus&gt;(AddRecentMenuItem), new object[]{menuItem}); </code></pre> <p>IIRC correctly I always use the object array because without it in the past I've got weird exceptions.</p> http://stackoverflow.com/questions/1746923/semaphores-in-net-compact-framework/1764274#1764274 1 Answer by Quibblesome for Semaphores in .NET compact framework Quibblesome 2009-11-19T15:50:16Z 2009-11-19T15:50:16Z <p>I think there is a semaphore implementation in <a href="http://www.opennetcf.com/Products/SmartDeviceFramework/tabid/65/Default.aspx" rel="nofollow">OpenNETCF</a></p> http://stackoverflow.com/questions/1730792/how-do-i-support-different-screen-sizes-in-windows-mobile/1743761#1743761 0 Answer by Quibblesome for How do I support different Screen sizes in Windows Mobile? Quibblesome 2009-11-16T17:49:50Z 2009-11-16T17:49:50Z <p>This is a toughie. I've had reasonable results with the following low effort plan. (This is Winform oriented, btw)</p> <p>The biggest issue is with resolutions that are <em>smaller</em> than expected. Therefore create your screens as small as possible and pay particular attention to your anchor and docking settings. When displaying each form set it to full screen and the anchoring properties should do a reasonable job of displaying things in a sane way.</p> <p>This only starts to look silly if the resolution is MUCH larger than anticipated.<br> Note you can find the screen size of the current platform via the Screen.PrimaryScreen.Bounds call.</p> http://stackoverflow.com/questions/1724606/cant-append-one-list-to-another-in-c-trying-to-use-addrange/1724614#1724614 3 Answer by Quibblesome for Can't append one list to another in C#... trying to use AddRange. Quibblesome 2009-11-12T19:11:19Z 2009-11-12T19:11:19Z <p>I would assume .ToList() is creating a new collection. Therefore your items are being added to a new collection that is immediately thrown away and the original remains untouched.</p> http://stackoverflow.com/questions/1724381/explaining-why-just-add-another-column-to-the-db-is-a-bad-idea-to-non-programm/1724543#1724543 12 Answer by Quibblesome for Explaining why "Just add another column to the DB" is a bad idea, to non programmers. Quibblesome 2009-11-12T18:58:16Z 2009-11-12T18:58:16Z <p>Ah.. a little knowledge is a dangerous thing. </p> <p>Try this one:</p> <p><strong>You:</strong> Which companies did we fail to sell to?<br> <strong>Sales:</strong> Acme Industries, OCP Corp, blah blah blah<br> <strong>You:</strong> Well.... why can't you just make a couple of more phonecalls?</p> <p>The answer of course is sales isn't that simple. Neither is software development. Unless they <em>really</em> want hours of explanation in regards to architecture and maintenance I suggest they trust your judgement as a software developer.</p> <p>This is the issue here, trust. You should explain to them they are displaying a lack of trust in your abilities by making these statements.</p> http://stackoverflow.com/questions/1522775/branching-and-merging-strategies/1724289#1724289 1 Answer by Quibblesome for Branching and Merging Strategies Quibblesome 2009-11-12T18:15:53Z 2009-11-12T18:15:53Z <p>The simplest and most usual way I've seen branching work is off two premises. Trunk and Release. I think this is known as the "Unstable trunk, stable branch" philosophy.</p> <p><strong>Trunk</strong> is your main source. This contains the "latest and the greatest" code and is forward looking. It generally isn't always stable.</p> <p><strong>Release</strong> is a one-to-many association with trunk. There is one trunk but many releases that derive from the trunk. Releases generally start with a branch of the trunk once a particular functionality milestone has been hit so the "only" things left to go in for a particular deployment should just be bug fixes. You then branch the trunk, give it a label (e.g. 1.6 Release is our current latest Release), build and send the release to QA. We also push the version number (usually the minor number) of the trunk up at this point to ensure we don't have two releases with the same number.</p> <p>Then you begin the testing cycle on your release branch. When sufficient testing has been perfomed you apply bug fixes to the release branch, merge these back to the trunk (to ensure bug fixes are carried forward!) and then re-release a build of the branch. This cycle with QA continues until you are both happy and the release is finally given to the customer(s). Any bug reports from the customer(s) that are accurate (i.e. they are a bug!) start another QA cycle with the branch in question.</p> <p>As you create future releases it is a good idea to also try to move older customers onto newer branches to reduce the potential number of branches you might have to back-patch a bug fix into.</p> <p>Using this technique you can deploy solutions using your technology to a variety of customers that require different levels of service (starting with least first), you can isolate your existing deployments from "dangerous" new code in the trunk and the worst merge scenario is one branch.</p> http://stackoverflow.com/questions/1714513/webforms-to-winforms/1714546#1714546 -2 Answer by Quibblesome for Webforms to Winforms Quibblesome 2009-11-11T11:18:06Z 2009-11-11T11:18:06Z <p>Hahahahaha. Well in my opinion pretty much every single example of Winforms lacks good software design principles. This is due to the "form first" development style that visual studio uses by default.</p> <p>In most demonstrations and samples there is no benefit in producing a more pleasing design as you're trying to demonstrate just one thing and redoing the architecture would be overboard.</p> http://stackoverflow.com/questions/1714293/is-it-good-to-use-check-constraints-for-business-rules/1714511#1714511 0 Answer by Quibblesome for is it good to use check constraints for business rules Quibblesome 2009-11-11T11:11:07Z 2009-11-11T11:11:07Z <p>C#. It's much easier to reuse logic in C# than SQL (in my experience) and generally maintain. </p> http://stackoverflow.com/questions/1703113/c-simple-file-i-o/1703158#1703158 1 Answer by Quibblesome for C# Simple File I/O Quibblesome 2009-11-09T19:21:09Z 2009-11-09T19:21:09Z <p>How about you separate out the processes? Do the reading and fill a list of integers with the contents of the file. Then perform the processing for min / max and average later on.</p> <p>Isolating issues help you focus on them. I like to call this noise reduction. As a contractor I get to work on a lot of messy code and one of the reasons they are hard to understand is that too much is going on at the same time. If you simplify whats going on the code almost writes itself. This is also called Separation of Concerns. This is a very important programming principle.</p> <p>After you've isolated the issues and got the code working you can then try to put it all together again so the process is more efficient (if you do it inline with the file reading then you will only hold one line in memory at a time).</p> http://stackoverflow.com/questions/1700280/compact-framework-2-0-detecting-enter-key-in-a-textbox/1702523#1702523 0 Answer by Quibblesome for compact framework 2.0 detecting enter key in a textbox Quibblesome 2009-11-09T17:30:59Z 2009-11-09T17:30:59Z <p>OEMs configure their keys differently sometimes. The trick is to create an app that just handles the key up and key down events and then query the values you get when pressing the relevant keys. YOU MAY BE SUPRISED at the results.</p> <p>I had an Intermec unit once. Enter was correctly enter, however the ACTION key was Enter followed by F23 about 10 ms later. God... that was hard to code around to make that key useful (i.e. do something that wasn't the same as the enter key). The solution included a function called:</p> <pre><code>public bool IsReallyEnter(KeyEventArgs e); </code></pre> <p>KeyPress is an okay workaround, your issue is that it will fire multiple times if they hold the keydown.</p> http://stackoverflow.com/questions/1680934/upgrade-compact-framework-version-in-htc-phones/1689956#1689956 1 Answer by Quibblesome for upgrade compact framework version in htc phones? Quibblesome 2009-11-06T19:54:04Z 2009-11-06T19:54:04Z <p>If you want to install the framework on the device then use the .cab file instead. These are usually stored somewhere like:</p> <p>C:\Program Files\Microsoft.NET\SDK\CompactFramework\v3.5\WindowsCE</p> <p>These can be installed manually on the device by clicking or via some code running on the device.</p> http://stackoverflow.com/questions/1662761/checkedlistbox-populating-a-text-control/1662835#1662835 1 Answer by Quibblesome for CheckedListBox populating a text control Quibblesome 2009-11-02T18:21:26Z 2009-11-02T18:21:26Z <p>Ouch 1.1? Is your employer trying to kill you? I'd try to push up to 2.0 if I could.</p> <p>To double check when you say the "Checked" event do you mean CheckedChanged? In 2.00 this works fine on desktop. Is it a bug in 1.1?</p> <p>If it is a bug (check your own code first before deciding this! Then check it again!) then I can suggest trying to capture the Leave event which occurs when a control loses focus. Failing this you could databind a business object to the .Checked property and then fire your own event when your value changes. E.G.</p> <pre><code>public class MyValues { private bool _check; public bool Check { get { return _check; } set { if(_check != value) { _check = value; // todo: raise event! } } } } </code></pre> http://stackoverflow.com/questions/1660911/microsoft-codename/1660928#1660928 2 Answer by Quibblesome for Microsoft Codename? Quibblesome 2009-11-02T12:09:06Z 2009-11-02T12:09:06Z <p>Tried reading <a href="http://msdn.microsoft.com/en-us/library/dd129873.aspx" rel="nofollow">the</a> <a href="http://www.microsoft.com/net/dublin.aspx" rel="nofollow">FAQs</a>?</p> http://stackoverflow.com/questions/1660053/net-development-in-a-team/1660880#1660880 0 Answer by Quibblesome for .NET Development In a Team Quibblesome 2009-11-02T11:59:23Z 2009-11-02T11:59:23Z <p>Trust your team or fire them. If you can't trust your team then I would give up trying to produce software with them.</p> http://stackoverflow.com/questions/1660556/beginner-problems-with-many-input-parameters/1660577#1660577 7 Answer by Quibblesome for Beginner problems with many input parameters Quibblesome 2009-11-02T10:55:33Z 2009-11-02T10:55:33Z <p>Try passing the object ITSELF. </p> <pre><code>obj2.doSomething(obj1); </code></pre> <p>If you provide public access to get the variables then your method in class2 will be able to access the values and you'll release the strain on your method definition and calling.</p> http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1644650#1644650 3 Answer by Quibblesome for Why no love for SQL? Quibblesome 2009-10-29T15:43:25Z 2009-10-29T15:43:25Z <p>Heard a lot recently? I hope you're not confusing this with the NoSql movement. As far as i'm aware that is mainly a bunch of people who use NoSql for high scalability web apps and appear to have forgotten that SQL is an effective tool in a non "high scalability web app" scenario.</p> <p>The abstraction layer business is just about sorting out the difference between Object Oriented code and Table - Set based code such as SQL likes to talk. Usually this results in writing lots of boiler plate and dull transition code between the two. ORM automates this and thus saves time for business objecty people.</p> http://stackoverflow.com/questions/451494/why-does-windows-ce-drop-key-events-if-you-hog-the-ui-thread 0 Why does Windows CE drop key events if you hog the UI thread Quibblesome 2009-01-16T18:41:37Z 2009-10-28T15:52:19Z <p>Now I appreciate the moral of the story is "don't hog the UI thread" but we tried to KISS by keeping things on the UI thread for as long as possible but I think we've just hit the tipping point and we're going to have to change our design. </p> <p>But anyway..... something I noticed on our device that doesn't happen on desktop: When you hog the UI thread it drops keys. Here is a very simple app that displays the problem.</p> <pre><code>using System; using System.Windows.Forms; namespace DeviceApplication14 { public partial class Form1 : Form { /// &lt;summary&gt; /// The main entry point for the application. /// &lt;/summary&gt; [MTAThread] static void Main() { Application.Run(new Form1()); } private int ctr; public Form1() { InitializeComponent(); KeyPreview = true; KeyDown += Form1_KeyDown; } void Form1_KeyDown(object sender, KeyEventArgs e) { for (int i = 0; i &lt; 1000000; i++) { } ctr++; button1.Text = ctr.ToString(); } private void button2_Click(object sender, EventArgs e) { ctr = 0; button1.Text = ctr.ToString(); } /// &lt;summary&gt; /// Required designer variable. /// &lt;/summary&gt; private System.ComponentModel.IContainer components = null; /// &lt;summary&gt; /// Clean up any resources being used. /// &lt;/summary&gt; /// &lt;param name="disposing"&gt;true if managed resources should be disposed; otherwise, false.&lt;/param&gt; protected override void Dispose(bool disposing) { if (disposing &amp;&amp; (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// &lt;summary&gt; /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// &lt;/summary&gt; private void InitializeComponent() { this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // button1 // this.button1.Location = new System.Drawing.Point(235, 137); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(329, 239); this.button1.TabIndex = 0; this.button1.Text = "button1"; // // button2 // this.button2.Location = new System.Drawing.Point(62, 291); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(72, 20); this.button2.TabIndex = 1; this.button2.Text = "Clear"; this.button2.Click += new System.EventHandler(this.button2_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(638, 455); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); } #endregion private Button button1; private Button button2; } } </code></pre> <p>When I run this on my custom box I can press four keys in succession but my ctr only increments by two. If I then add a few zeros (to compensate for the desktop's greater speed) and run it on desktop I get all the keys.</p> <p>What's going on here?</p> http://stackoverflow.com/questions/451494/why-does-windows-ce-drop-key-events-if-you-hog-the-ui-thread/1638165#1638165 1 Answer by Quibblesome for Why does Windows CE drop key events if you hog the UI thread Quibblesome 2009-10-28T15:52:19Z 2009-10-28T15:52:19Z <p>The issue was to do with a bug in the BSP (apparently from some Freescale code) that meant that the keyboard driver was functioning at a much lower priority interrupt than was intended.</p> <p>This is now fixed and everything works awesome fine. :)</p> http://stackoverflow.com/questions/1599203/windows-mobile-5-how-to-kill-other-application/1609113#1609113 0 Answer by Quibblesome for Windows Mobile 5 - How to kill other application? Quibblesome 2009-10-22T18:28:06Z 2009-10-22T18:28:06Z <p>Note that if the application you are trying to kill is holding open ports or other system resources then it might hang on exiting. Ensure everything is effectively disposed when the form closes.</p> <p>This can be acheived by putting stuff in the:</p> <pre><code>public void Dispose(bool disposing) { } </code></pre> <p>block of code in the designer of your main form, or if you've chosen a less Windows Form centric architecture then just run your dispose calls following Application.Run(new YourForm()) and it will execute after the application has closed.</p> <p>If you're feeling really lazy then just setup some destructors (otherwise known as finalizers ~) but be careful about navigating through relationships between managed objects at "destruct" time if you do this as there is no guarantee as to which order objects will be destroyed.</p> http://stackoverflow.com/questions/1586166/career-killer-nhibernate-oop-design-patterns-domain-driven-design-test-driv/1606884#1606884 0 Answer by Quibblesome for Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC Quibblesome 2009-10-22T12:30:51Z 2009-10-22T12:30:51Z <p>The killer in my experience is that you learn on the cool tools: NHibernate and NUnit but then have to professionally work with the tools that are a poor substitute: EF and MSTest 2005.</p> <p>This makes me a sad panda.</p> http://stackoverflow.com/questions/1592640/how-to-logout-in-windows-mobile-based-application/1596248#1596248 1 Answer by Quibblesome for how to logout in windows mobile based application? Quibblesome 2009-10-20T17:49:30Z 2009-10-20T17:49:30Z <p>Try this. Your main form becomes a "shell" with a logout button (or possibly you do that via a MainMenu object). Then rewrite your other forms into UserControls instead. Then when the user "moves" to a new page just initialise the usercontrol and slap it into the .Controls collection in your shell form (oh and remove the current one first :) ). </p> <p>Technically you always remain on the first form this way, you don't need to duplicate the logout code/UI and moving the user back to the login page is easy, just remove the "Current" usercontrol and replace it with the "Login" user control.</p> http://stackoverflow.com/questions/56949/race-condition-analysers-for-net 2 Race Condition Analysers for .NET Quibblesome 2008-09-11T15:46:53Z 2009-10-19T02:09:19Z <p>I've seen there are some race condition analysis tools for C++, C and Java. Anyone know of any static analysis tools that do the same for .NET?</p> http://stackoverflow.com/questions/322666/why-does-it-seem-that-most-programmers-tend-to-write-all-their-code-at-the-lowest/323360#323360 1 Answer by Quibblesome for Why does it seem that most programmers tend to write all their code at the lowest possible level of abstraction? Quibblesome 2008-11-27T10:00:38Z 2009-10-18T06:14:19Z <p>It's a power vs responsibility issue. </p> <p>Programmers that aren't primarily architects tend to think of power, they want to see everything in their routines even if it does mean doing bit shifts in a high level service. They like the power because they like to see exactly what they're doing.</p> <p>Programmers that are looking at the system as a whole generally want to give up power and responsibility and are happy to include an IsPresent() method, heck they don't even mind making it virtual and just want to define <em>roughly</em> what it should represent.</p> <p>We have a very interesting mix in my team and I don't necessarily think that is <em>always</em> a bad thing (aside from the odd fire due to this kind of thing). However when when I'm looking at the code I'm hoping that as the layers rise the amount of options declines, simplifying things (as per your IsPresent() method) so the top, top, top layer of code reads well and is very simple.</p> http://stackoverflow.com/questions/1559892/why-shouldnt-i-give-outsiders-access-to-my-database/1559927#1559927 3 Answer by Quibblesome for Why shouldn't I give outsiders access to my database? Quibblesome 2009-10-13T12:33:12Z 2009-10-13T12:38:20Z <p>Portability too. Lets say for licensing reasons and scaling you make the business decision to move from MSSQL to MySql. Syntax ain't quite the same and your clients will all have to change their code.</p> <p>Much better to just buffer it all off and keep the implementation abstracted away. Whose to say you're not persisting the state of the application using trained monkeys scratching marks on bottletops?</p> http://stackoverflow.com/questions/1559255/whats-wrong-with-using-thread-abort/1559897#1559897 0 Answer by Quibblesome for What's wrong with using Thread.Abort() Quibblesome 2009-10-13T12:26:04Z 2009-10-13T12:26:04Z <p>It's easier to hurt yourself. As others have stated it raises an exception in the code, which can occur at any point. This might be fine if you expect this and have coded in a way that elegantly handles this exception at any point but some people dont:</p> <pre><code>Monitor.Enter(obj); // some code - if exception is raised here, then the lock isn't released Monitor.Exit(obj) IDisposable someCriticalResource = GetResource(); // some code - if exception is raised here, then the object isn't disposed someCriticalResource.Dispose(); </code></pre> <p>Additionally if you're working with many people on a team unless you have good code reviews you cannot guarantee the quality of the code you'll be working with. Hence it is a good idea to preach the gospal of "no Thread.Abort()" than it is to get people to remember to write code that is robust against exceptions occuring <em>anywhere</em> within that code.</p> http://stackoverflow.com/questions/1547278/how-to-write-a-class-library-that-will-work-on-net-3-5-compact-framework-and-reg/1549326#1549326 2 Answer by Quibblesome for How to write a class library that will work on .NET 3.5 compact framework AND regular framework? Quibblesome 2009-10-10T23:02:28Z 2009-10-10T23:02:28Z <ol> <li>Create a class library for the compact framework. </li> <li>Add a reference to that library from your .exe project (Desktop or Mobile) </li> <li>Profit!</li> </ol> <p>Seriously, I don't know why the top answer is so top. You don't need two separate projects at all. Also i'm not in love with pre-processor directives, they're ugly and require additional knowledge about the project when playing with the build parameters. It is much more pretty to outsource all the incompatible bits and pieces to an interface (IPlaformServices or such like) or you could even just ask:</p> <pre><code> if(Environment.OSVersion.Platform == PlatformID.WinCE) { // winCE specific } else { // desktop specific } </code></pre> <p>Both of these are better solutions than preprocessor directives IMO.</p> http://stackoverflow.com/questions/1530915/tools-to-profile-performance-of-net-compact-framework-applications/1533023#1533023 2 Answer by Quibblesome for Tools to profile performance of .NET Compact Framework applications Quibblesome 2009-10-07T17:21:08Z 2009-10-07T17:21:08Z <p>From my experiences of looking a while back the EQATEC profiler was the only "minimum effort" profiling option kicking around. It becomes more suitable for proper performance testing if you use the "clear snapshot" command after the code you're interested in has been JITed and if you use the mechanism of producing files you can parse them yourself to gain a: Min, Max, Average output.</p> <p>Obviously that then becomes more effort than "minimum effort" though! :D</p> http://stackoverflow.com/questions/1524738/references-for-learning-to-write-multi-threaded-application-in-c/1524789#1524789 1 Answer by Quibblesome for References for learning to write multi-threaded application in C#? Quibblesome 2009-10-06T10:30:41Z 2009-10-06T10:30:41Z <p><a href="http://www.yoda.arachsys.com/csharp/threads/" rel="nofollow">This</a> was my first step to learning. One of the more advanced steps is <a href="http://rads.stackoverflow.com/amzn/click/032143482X" rel="nofollow">Joe Duffy's book</a>. I'm not sure what goes inbetween, for me it was mis-understanding, disaster and woe, I hope your travels are safer. :)</p> http://stackoverflow.com/questions/139387/least-favourite-design-pattern/139582#139582 Comment by Quibblesome on Least favourite design pattern Quibblesome 2009-11-25T18:44:12Z 2009-11-25T18:44:12Z Aye, have added moar text. http://stackoverflow.com/questions/1746923/semaphores-in-net-compact-framework/1764274#1764274 Comment by Quibblesome on Semaphores in .NET compact framework Quibblesome 2009-11-20T14:41:14Z 2009-11-20T14:41:14Z TELL ME ABOUT IT. M$ obviously don't care about CF or are planning to replace WinCE/CF with something else. That is the only reasoning I can come up with. The package size argument is silly as devices have more space these days and they could always have a &quot;fuller&quot; version or release these kind of libraries as add ons. http://stackoverflow.com/questions/1751758/adding-menu-items-from-a-separate-thread/1752075#1752075 Comment by Quibblesome on Adding menu items from a separate thread. Quibblesome 2009-11-19T17:47:14Z 2009-11-19T17:47:14Z I don't think it is possible for InvokeRequired to give bad values in CF. InvokeRequired on a control in CF is MAD SIMPLE. It just takes the thread id that created it in the Ctor and then compares it to the current thread id in InvokeRequired. http://stackoverflow.com/questions/1724381/explaining-why-just-add-another-column-to-the-db-is-a-bad-idea-to-non-programm/1724543#1724543 Comment by Quibblesome on Explaining why "Just add another column to the DB" is a bad idea, to non programmers. Quibblesome 2009-11-13T10:23:23Z 2009-11-13T10:23:23Z Theo man, sales isn't about having a good product, or in some cases even having a product at all! Well... that's my experience with most software sales. Anyhow the argument is that you don't pry into their business so they should afford you the same respect. http://stackoverflow.com/questions/1522775/branching-and-merging-strategies/1724327#1724327 Comment by Quibblesome on Branching and Merging Strategies Quibblesome 2009-11-12T19:36:29Z 2009-11-12T19:36:29Z I'm gonna read up on this but I don't get it off just the image, especially if you say: &quot;no junk in the trunk&quot;. Who is testing the trunk? As far as I can tell this pattern suggests the opposite as no-one is primarily using the trunk for dev or test.... http://stackoverflow.com/questions/1724381/explaining-why-just-add-another-column-to-the-db-is-a-bad-idea-to-non-programm/1724543#1724543 Comment by Quibblesome on Explaining why "Just add another column to the DB" is a bad idea, to non programmers. Quibblesome 2009-11-12T19:27:46Z 2009-11-12T19:27:46Z You are spot on, this is pretty aggressive, i'm getting more cynical the older I get. However there are some people who just don't seem to get it, irrespective of how many times you explain it to them (I guess I suck at explaining!). This is mainly directed at those that don't listen. http://stackoverflow.com/questions/1724606/cant-append-one-list-to-another-in-c-trying-to-use-addrange/1724614#1724614 Comment by Quibblesome on Can't append one list to another in C#... trying to use AddRange. Quibblesome 2009-11-12T19:18:22Z 2009-11-12T19:18:22Z Use the solution offered by Greg Beech. Also, if accepting go for him rather than me, i've only pointed out the problem, he's done that plus provided a solution! :) http://stackoverflow.com/questions/1722373/how-can-you-be-a-quality-programmer-in-a-programming-team/1722395#1722395 Comment by Quibblesome on How can you be a quality programmer in a programming team? Quibblesome 2009-11-12T14:11:58Z 2009-11-12T14:11:58Z The &quot;we&quot; is very important. Analyse the emails you send. In most cases you'll want to replace any &quot;I&quot; and &quot;You&quot; or &quot;Your&quot; with &quot;We&quot; and &quot;Our&quot;. It makes a lot of difference to the general philosophy of the development team. http://stackoverflow.com/questions/1714513/webforms-to-winforms/1714546#1714546 Comment by Quibblesome on Webforms to Winforms Quibblesome 2009-11-11T11:34:01Z 2009-11-11T11:34:01Z @Fredrik. Ya, I agree. I do WinForm all the time. The OP is looking for a resource online with WinForm with good design principles. I'm stating it is doubtful he'll find one online is all. http://stackoverflow.com/questions/1714513/webforms-to-winforms/1714546#1714546 Comment by Quibblesome on Webforms to Winforms Quibblesome 2009-11-11T11:28:10Z 2009-11-11T11:28:10Z Mr -1, i'm not trolling, i'm serious. Unless you think putting all the logic in the GUI components is a good idea. There are examples of using WinForm in a purer form (where the view has less prominence) but these are mainly stored in source repositiories in closed source. I don't think i've ever seen an example of this online. http://stackoverflow.com/questions/1714513/webforms-to-winforms Comment by Quibblesome on Webforms to Winforms Quibblesome 2009-11-11T11:20:56Z 2009-11-11T11:20:56Z i've got a sample kicking about somewhere of an MVC winform proj. If you want it hit me up at uchihajax@gmail.com. http://stackoverflow.com/questions/1714438/are-there-good-tools-for-c-reverse-engineering/1714449#1714449 Comment by Quibblesome on Are there good tools for C# reverse engineering? Quibblesome 2009-11-11T11:00:25Z 2009-11-11T11:00:25Z It's even better than that... It also has a &quot;Create Source&quot; plugin which creates a a project and sln based on the dlls/exes you are examining. Now that is gold. http://stackoverflow.com/questions/1714171/how-does-a-programmer-work-across-multiple-computers/1714254#1714254 Comment by Quibblesome on How does a programmer work across multiple computers? Quibblesome 2009-11-11T10:54:47Z 2009-11-11T10:54:47Z Don't use the &quot;social&quot; persuation tool (&quot;a lot of people are moving to&quot;) without also clarifying the respective trade-offs. With distributed source control you will need to perform more merges and without organisation there will be more than one current &quot;top&quot; version of source at any one time. With a server there will be only one version of the &quot;top&quot; source (the one on the server!). http://stackoverflow.com/questions/1703113/c-simple-file-i-o Comment by Quibblesome on C# Simple File I/O Quibblesome 2009-11-09T20:27:36Z 2009-11-09T20:27:36Z if we're going for little syntax tips how about this instead of the do-while: string line = null; while((line = fileReader.ReadLine()) != null) http://stackoverflow.com/questions/1667853/no-load-event-on-usercontrol-for-compact-framework/1668310#1668310 Comment by Quibblesome on No Load event on UserControl for Compact Framework? Quibblesome 2009-11-06T20:02:40Z 2009-11-06T20:02:40Z Um... what this works? &quot;new&quot; only overrides the call if that explicit type definition is referenced. If .ResumeLayout() is called via UserControl or Control it wont call the &quot;new&quot; version.