User MrFox - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T23:32:01Zhttp://stackoverflow.com/feeds/user/32726http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years43What made programming easier in the last couple of years?MrFox2009-03-10T14:52:02Z2009-11-16T15:53:44Z
<p>I have been programming for 20 years. Many things changed since I wrote my first BASIC lines. Now we have IDEs, frameworks, debuggers, profilers, versioning tools and many other helpful toys. </p>
<p>So which developments in the past 10 years have made programming easier? And what was necessary to sacrifice for it? </p>
http://stackoverflow.com/questions/433525/is-there-an-advantage-in-choosing-asp-net-over-php-or-perl8Is there an advantage in choosing ASP.Net over PHP or Perl?MrFox2009-01-11T19:52:26Z2009-09-17T08:37:10Z
<p>I found myself struggling with me every time I am asked, which language to prefer for a web-application. Most people dismiss the importance of a good architecture. That why a answer that architecture is more important than the language. Afterwards sometimes I sompare the advantadges.
But that is always not about the language but im most cases:</p>
<ul>
<li>about the IDE</li>
<li>about tools</li>
<li>about costs</li>
<li>about a community and distribution</li>
<li>about existing frameworks and libraries</li>
</ul>
<p>etc.</p>
<p>So I am currently asking myself: Is the advantage of the comfortable Visual Studio, the tools, the framework, ... worth chooing ASP.Net over PHP or Perl? Are the higher licence and hosting costs worth the ease of coding?</p>
http://stackoverflow.com/questions/1152571/infopath-forms-in-subversion/1160235#11602351Answer by MrFox for Infopath Forms in SubversionMrFox2009-07-21T16:19:20Z2009-07-21T16:19:20Z<p>The InfoPath form .xsn is a packed container format that contains a bunch of XML files and some images.</p>
<p>I would rather sugesst to extract the InfoPath form to source files and check them in. </p>
<p>You can work on source files as well as on the packed <code>.xsn</code> of course.
The source files are XML and the <strong>history can be tracked</strong> well by SVN.</p>
http://stackoverflow.com/questions/318996/what-should-a-good-bugtracking-tool-be-capable-of4What should a good BugTracking tool be capable of?MrFox2008-11-25T21:47:24Z2009-07-20T14:00:35Z
<p>I found a lot of questions asking for the best tool, but none asking for the <strong>features, you really need</strong>? And what features you <em>never</em> really needed?</p>
<p>(I caught myself to be comparing tools on feature matrices. Something I hate, because in the end I will be using only the 3-4 most important features and leave the rest untouched.)</p>
http://stackoverflow.com/questions/264846/how-can-i-make-a-non-programming-person-recognize-a-good-programmer8How can I make a non-programming person recognize a good programmer?MrFox2008-11-05T11:04:45Z2009-07-15T20:23:01Z
<p>Let's assume that I would be a good programmer and I knew that my (non programming) customer will have to decide between me and a competitor. Let's say that I, as an experienced programmer, would obviously see that my competitor is inexperienced and trying to fool the customer with some nice presentations or an expensive suit. </p>
<p>And here is my problem: How can I empower my customer with the aibility to distinguish between a good and a bad programmer? What can I tell or teach him to be able to look a bit behind the scene?</p>
<p>Same problem, other situation: The nice guy from HR has to hire some programmers on his own. How can I brief him?</p>
<p>Here some solutions that seem obvious, but do not work well:</p>
<ul>
<li>Tell the HR guy to send the best 10 candidates to me. (Changing the assumption -- "non programming person" -- is a solution, but not to this problem.)</li>
<li>Give the customer 5 questions he should ask the competitor. (Bad style and the customer still has no clue.)</li>
<li>Teach the customer how to code. (errrr ... try again please)</li>
</ul>
http://stackoverflow.com/questions/907452/preview-infopath-attachment/949479#9494790Answer by MrFox for Preview InfoPath AttachmentMrFox2009-06-04T09:29:11Z2009-06-04T09:29:11Z<p>You could add a link column (named preview) to your form library that leads to an .aspx page in the layouts directory, where you read the form xml and generate a preview of the document including the attachment previews.</p>
<p>This way you are able to handle the different attachment formats (e.g using C# code) and bypass the limited functions of the form service. </p>
<p>You could add a "edit this form" button to that page that redirects to the original formservice url.</p>
http://stackoverflow.com/questions/926733/programatically-generate-infopath-form-template/949441#9494410Answer by MrFox for Programatically generate InfoPath form template ?MrFox2009-06-04T09:20:15Z2009-06-04T09:20:15Z<p>It is possible to generate the manifest.xsf, xsl and xml files from a structured source (let's say an xml) and then pack this (as .cab) with the extension .xsn<br />
(The .xsn file is nothing but a renemed .cab!)</p>
<p><em>This is only a raw concept - it could be refined if the purpose was a bit more explicit. Why generate? Are you going to create a bunch of different files? What for?</em></p>
http://stackoverflow.com/questions/944411/how-can-i-populate-a-field-based-on-another-field-only-on-the-page-load-infopat/949410#9494101Answer by MrFox for How can I populate a field based on another field only on the page load? (Infopath)MrFox2009-06-04T09:10:26Z2009-06-04T09:10:26Z<p>Just go to the <strong>extras menu → form options → open and save → rules button</strong><br />
and add a rule here. (These rules will only be perfomed once, during each opening.)</p>
<p>Mind to create your fields before.</p>
http://stackoverflow.com/questions/872009/sql-command-to-backup-and-restore-a-mysql-database/872025#8720250Answer by MrFox for SQL command to backup and restore a MySQL databaseMrFox2009-05-16T09:10:29Z2009-05-16T09:10:29Z<p>You can either call the external command line executables <a href="http://www.webcheatsheet.com/SQL/mysql%5Fbackup%5Frestore.php" rel="nofollow">here</a> is a nice intro to that.</p>
<p>Or you run a couple of queries (like PHPMyAdmin does) and store the result somewhere by your own. </p>
<p>But there is no simple "one command" query for that.</p>
http://stackoverflow.com/questions/844508/how-to-calculate-the-network-diameter/844842#8448420Answer by MrFox for how to calculate the network diameterMrFox2009-05-10T06:47:40Z2009-05-10T06:59:34Z<p>That's simple:</p>
<ul>
<li><strong>Prepare</strong>
<ul>
<li>Add a colum named <code>distance</code></li>
<li>Give all nodes the distance of <code>-1</code></li>
</ul></li>
<li><strong>First Iteration</strong>
<ul>
<li>Pick any node (e.g. the first)</li>
<li>give it the distance of <code>1</code></li>
<li>Now iterate until there are nodes with distance <code>-1</code>
<ul>
<li><code>UPDATE table SET distance=:i+1 WHERE from_node IN (SELECT to_node FROM table WHERE distance=:i)</code></li>
</ul></li>
</ul></li>
<li><strong>Second Iteration</strong>
<ul>
<li>Pick a node that has the maximum distance (any) - remember it </li>
<li>Set all distances back to <code>-1</code></li>
<li>Set your remebered node to <code>1</code></li>
<li>Call the iteration a second time</li>
</ul></li>
</ul>
<p>This time the maximum distance is the diameter of your graph/network.</p>
http://stackoverflow.com/questions/643410/how-to-avoid-duplicate-logic-with-mocks/843360#8433600Answer by MrFox for How to avoid duplicate logic with MocksMrFox2009-05-09T13:46:47Z2009-05-09T13:46:47Z<p>I would like to narrow the problem down to it's core.</p>
<h2>The Problem</h2>
<p>Of course, most of your changes will be caught by the test.<br />
But there is subset of Scenarios where your test won't fail - although it should:</p>
<p>As you write code, you use your methods multiple times. You get a 1:n relation between method definition and use. Each class that uses that method will use it's mock in the according test. So the mock is also used n times.</p>
<p>Your methods result was once expected to never be <code>null</code>. After you change this, you probably will remember to fix the according test. So far so good.</p>
<p>You run your Tests - <strong>all pass</strong>.</p>
<p><strong>But</strong> over time you forgot something ... the mock never returns a <code>null</code>. So n test for n classes that use the mock do not test for <code>null</code>.</p>
<p>Your <strong>QA will fail</strong> - although your tests did not fail.</p>
<p>Obviously you will have to modify your other tests. But there are no fails to work along. So you need a solution, that works better than remembering all referencing tests.</p>
<h2>A Solution</h2>
<p>To avoid problems like this, you will have to write better tests from the beginning. If you miss out the cases, where the tested class should handle errors or <code>null</code> values, you simply have <strong>incomplete tests</strong>. It's like not testing all functions of your class. </p>
<p>It's hard to add this later. - So start early and be extensive with your tests.</p>
<p>As mentioned by other users - the code coverage reveals some untested cases. But missing error-handling code <em>and</em> the missing according test won't appear in code coverage. <em>(Code coverage of 100% doesn't mean, that you are not missing something.)</em></p>
<p>So write good test: <strong>Assume the outside world to be malicious.</strong> That does not only include to <strong>pass bad parameters</strong> (like <code>null</code> values). <strong>Your mocks are a part of the outside world too.</strong> Pass <code>null</code>s and exceptions - and watch your class handling them as expected.</p>
<p>If you decide <code>null</code> to be a valid value - these test will later fail (because of missing exceptions).
So you get a list of fails to work along.</p>
<p><em>Because each calling class handles the errors or <code>null</code> different - it is not duplicate code that could be avoided. Different treatment needs different tests.</em></p>
<p><hr /></p>
<p><strong>Hint:</strong> Keep your mock simple and clean. Move the expected return values to the testing method. (Your mock can pass them simply back.) Avoid testing decisions in mocks.</p>
http://stackoverflow.com/questions/788704/get-selected-text-from-html-by-javascript1Get selected text from HTML by javascript?MrFox2009-04-25T11:05:40Z2009-05-03T11:39:33Z
<p>I have a page with formated text and a toolbar (images with click events) beside it.
One of the tool-commands is meant to be "mark yellow". <em>(The text has to be read only and is formated.)</em></p>
<p>I tried to use <code>document.getSelection()</code> and <code>window.getSelection()</code>, but they seem to be designed for input fields only.</p>
<p>The other problem is, that as I click the tool bar my selection gets lost.</p>
<p>How do I get the selected text without loosing the selection?</p>
<p><br/></p>
<h2>Solution:</h2>
<p>The clue was to use <code>onmousedown=""</code>
or jQuery: <code>.mousedown()</code> function to avoid loosing the selection.</p>
http://stackoverflow.com/questions/793267/what-are-the-php-specific-antipatterns-that-you-know-of/795148#7951481Answer by MrFox for What are the PHP-specific antipatterns that you know of?MrFox2009-04-27T20:26:22Z2009-04-27T20:26:22Z<ol>
<li>Never EVER use a <code>$_GET</code> or <code>$_POST</code> without checking it and cleaning it up.</li>
<li>Read about how to set up the <code>php.ini</code> right.</li>
<li>Never put variables into raw SQL.</li>
<li>If you use frameworks, use the ones with less dependencies.</li>
<li>Stop over-generalization.</li>
<li>Distribute your code on the php files. In most cases there is no real need to put everything into one <code>index.php</code>.</li>
<li>Reduce complexity before writing code.</li>
<li>Respect the fact that it is a web application. (Try to be <a href="http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer" rel="nofollow">RESTful</a>.) It's not a desktop application. So stop putting everything into <code>$_SESSION</code>.</li>
<li>At least one comment line for every 10 lines of code. You WILL read that after a year. I promise!</li>
<li>Code <a href="http://headrush.typepad.com/creating%5Fpassionate%5Fusers/2006/03/code%5Flike%5Fa%5Fgir.html" rel="nofollow">like a girl</a> - make it nice to read.</li>
</ol>
http://stackoverflow.com/questions/794946/what-is-the-best-class-structure-for-simple-php-framework/795057#7950571Answer by MrFox for What is the best class structure for simple php framework ?MrFox2009-04-27T20:02:58Z2009-04-27T20:02:58Z<p>There is a simple rule of thumb:</p>
<ul>
<li>Either you have a need that the standard frameworks can not fulfill</li>
<li>or you should use a good standard framework that does what you need.</li>
</ul>
<p>In the first case the restriction will be the driving aspect in your design.</p>
<p>There are no general design rule for class structures in frameworks. But try to keep this in mind, if you decide to write your own one:</p>
<ul>
<li>Minimize dependencies between modules</li>
<li>Always try to give default values</li>
<li>Try to minimize the overhead</li>
<li><em>Talk a lot with peers about it to find flaws early.</em></li>
</ul>
http://stackoverflow.com/questions/785270/how-to-tell-c-to-omit-creation-of-attributes-that-are-default-during-serializati2How to tell C# to omit creation of attributes that are default during serialization?MrFox2009-04-24T10:10:27Z2009-04-24T10:15:19Z
<p>I have a class that is serialized to a XML file. There are several properties that are rarely used but always created. If I delete them within the XML the deserialization still works, because they have the default value.</p>
<p>These unnecessary (bool) attributes make the XML harder to read. </p>
<p>Can I somehow tell C# to omit elements or attributes that still have default value?</p>
http://stackoverflow.com/questions/767089/infopath-autonumber-field/767178#7671781Answer by MrFox for InfoPath autonumber fieldMrFox2009-04-20T06:56:52Z2009-04-20T06:56:52Z<p>There is no build-in way to do this, but there are several ways to achieve what you want (Database query or SPList query). But this kind of request somehow smells like a workaround for an other problem.
Common cases for increasing numbers are:</p>
<ul>
<li>unique IDs</li>
<li>count the Requests</li>
<li>make referable by external list (same as ID)</li>
<li>make IDs guessable (time stamps are not)</li>
</ul>
<p>If you need an ID: In most cases you are not forced to use integer IDs. Simply use the form title as a natural ID. (e.g. customer + timestamp)</p>
<p>If you need guessable IDs, you need them because an external system wants to access or refer to the request. In that case try to change the pull-direction into a push-direction (e.g. by using workflows) or let your other system provide a "getID" function that can be called by your form to obtain a known ID (no guessing needed).</p>
<p>Anyway - for me, it looks like you want to achieve this to solve some other problem. Maybe there are different solutions for that problem too?</p>
http://stackoverflow.com/questions/727373/c-to-fill-out-infopath-form-programmatically/733167#7331672Answer by MrFox for C# to fill out InfoPath Form programmatically?MrFox2009-04-09T07:24:43Z2009-04-09T07:24:43Z<p>Yes, you can create a XML file within your C# application and push it to your Sharepoint Form Library. Sharepoint won't realize any difference.</p>
<p>Just ensure two things:</p>
<ul>
<li>Your XML must validate against the Infopath <strong>schema</strong>.</li>
<li>Remember to add the XML <strong>processing instructions</strong>, so that Sharepoint and Infopath know how to handle the XML file. (Simply 'steal' it from an Infopath generated XML.)</li>
</ul>
http://stackoverflow.com/questions/714254/infopath-2007-hide-a-checkbox-control/721180#7211803Answer by MrFox for Infopath 2007: Hide a checkbox controlMrFox2009-04-06T12:20:07Z2009-04-06T12:20:07Z<p>Add conditional formating to the checkbox.
Remove the text behind the box (would be visible all time).
Add an expression field behind the checkbox and put your text in here.
Then give that expression box the same conditional fomating.</p>
<p>An alternative:</p>
<p>Put the checkbox into a scetion with conditional formating
(This needs more space but is eaysier to build and manage later.)</p>
http://stackoverflow.com/questions/206788/why-does-xdebug-crash-apache-on-every-xampp-install-ive-tried/665813#6658130Answer by MrFox for Why does xdebug crash apache on every XAMPP install I've tried?MrFox2009-03-20T11:48:57Z2009-03-20T11:48:57Z<p>According to this <a href="http://bugs.xdebug.org/view.php?id=410" rel="nofollow">Issue</a> I suggest you disable these two lines in your <code>php.ini</code>:</p>
<pre><code>;xdebug.profiler_enable=1
;xdebug.profiler_output_dir="(temp_dir)"
</code></pre>
<p>worked for me</p>
http://stackoverflow.com/questions/642891/how-to-convert-ticks-into-a-readable-datetime-with-xslt4How to convert ticks into a readable datetime with XSLT?MrFox2009-03-13T14:09:38Z2009-03-14T09:08:02Z
<p>I have an XML with timestamps like this:</p>
<pre><code><node stamp="1236888746689" />
</code></pre>
<p>And I would like to display them in the result HTML as date with time.
Is there a way to do it with XSLT (any Version)?</p>
<p><strong>EDIT:</strong>
I am using XSLT2.0 with Saxon9. The base date is 1970-01-01 0:00.</p>
http://stackoverflow.com/questions/462563/how-to-store-sets-to-find-similar-patterns-fast0How to store sets, to find similar patterns fast?MrFox2009-01-20T18:48:03Z2009-03-06T21:21:28Z
<p>(This is no homework and no work issue. It's just my personal interest/occupation and completly fictional. But I am interested in a good algorithm or data structure.)</p>
<p>Let's assume, that I would run a dating site. And my <strong><em>special feature</em></strong> would be that the singles were <strong>matched by movie taste</strong>. (Why not?)</p>
<p>In that case I would need a way to store the movie ratings for each user. (So far no problem.) And I would need a data structure to find the best fitting user. The distance between two taste patterns would be the average distance between all ratings that both users made.</p>
<p><strong>Example</strong></p>
<pre><code>movies A B C D E F G H I J K L M ...
user Xm 9 5 1 1 5
user Ym 4 6 1 8
user Zf 9 6 4 7
</code></pre>
<p>Distance(X,Z) = avg( abs(9-9) + abs(1-4) ) = 1.5</p>
<p>Distance(Y,Z) = avg( abs(4-6) + abs(6-4) + abs(8-7) ) = 1.666</p>
<p>So Mr. X fits slightly better to Mrs. Z, than Mr. Y does. </p>
<p><strong>I like soulution that ...</strong></p>
<ul>
<li>... don't need many operations on the database</li>
<li>... don't need to handle a lot of data</li>
<li>... run fast</li>
<li>... deliver the best matching</li>
<li>Ok, maybe I would consider good approximations too.</li>
</ul>
<p>Try to keep in mind that this should also work with thousands of possible movies, users that rate only about 20-50 movies, and thousands of users.</p>
<p>(Because this is a mental puzzle and not a real problem, work-arrounds are not really helping.)</p>
<p><strong>What would be your search algorithm or data structure?</strong></p>
http://stackoverflow.com/questions/249883/how-to-copy-a-structure-of-nodes-from-one-xml-to-an-other-with-a-different-namesp1How to copy a structure of nodes from one xml to an other with a different namespace?MrFox2008-10-30T11:38:11Z2009-02-10T08:07:10Z
<p>I have two XML files with two different XSD schemas and different namespaces. They have both an identical substructure. And now i need to copy that node (and all childs) from one XML document to the other one. </p>
<p>Clone would do, if the namespaces were the same. Is there a nice way to do it?
(The substructure will change later on - but will be kept identical.)</p>
http://stackoverflow.com/questions/261557/what-do-i-need-to-read-to-understand-how-git-works9What do I need to read to understand how git works?MrFox2008-11-04T11:16:22Z2009-01-13T21:08:12Z
<p>I would like to understand the way git works from a architects point of view. How are files stored, how are versions kept and how do changes happen (branches, merges, etc.)?</p>
<p>I am not searching for information how to use it. (I already found a lot of pages with tutorials.) But I did not find any "behind the scenes" details, that would make me understand.</p>
http://stackoverflow.com/questions/329626/an-easy-way-to-run-an-asp-net-application-at-home0An easy way to run an ASP.Net application at home?MrFox2008-11-30T23:50:59Z2008-12-01T01:20:03Z
<p>I'd like to run some small private/home applications on a local machine, but I dislike the idea to set up a full Win2003 Server with IIS for this. </p>
<p>Is there a easy and cheap way to get an ASP.Net application running at home?</p>
http://stackoverflow.com/questions/300488/does-evidence-based-scheduling-work-right-with-heterogenous-estimations2Does evidence based scheduling work right with heterogenous estimations?MrFox2008-11-18T23:03:43Z2008-11-19T11:02:12Z
<p>Observing one year of estimations during a project I found out some strange things that make me wonder if evidence based scheduling would work right here?</p>
<ul>
<li>individual programmers seem to have favorite numbers (e.g. 2,4,8,16,30 hours) </li>
<li>the big tasks seem to be underestimated by a fix value (about 2) but the standard deviation is low here</li>
<li>the small tasks (1 or 2 hours) are absolutely wide distributed. In average they have the same average underestimation factor of 2, but the standard deviation is high:
<ul>
<li>some 5 minute spelling issues are estimated with 1 hour</li>
<li>other bugfixes are estimated with 1 hour too, but take a day</li>
</ul></li>
</ul>
<p>So, is it really a good idea to let the programmers break down the 30 hours task down to 4 or 2 hours steps during estimations? Won't this raise the standard deviation? (Ok, let them break it down - but perhaps after the estimations?!)</p>
http://stackoverflow.com/questions/300488/does-evidence-based-scheduling-work-right-with-heterogenous-estimations/301472#3014720Answer by MrFox for Does evidence based scheduling work right with heterogenous estimations?MrFox2008-11-19T10:26:24Z2008-11-19T11:02:12Z<p>Ok, I have the answer. Yes it is right AND the observations I made (see question) are absolutely understandable. To be sure I made a small Excel simulation to ensure myself of what I was guessing.</p>
<p>If you add multiple small task with a high standard deviation to bigger tasks, they will have a lower deviation, because the small task partially compensate the uncertainty.</p>
<p>So the answer is: Yes, it will work, if you break down your tasks, so that they are about the same length. It's because the simulation will do the compensation for bigger tasks automatically. I do not need to worry about a higher standard deviation in the smaller tasks.</p>
<p><em>But I am sure you <strong>must not</strong> mix up low estimated tasks with high estimated tasks - because they simply do not have the same variance.</em> </p>
<p>Hence, it's always better to break them down. :)</p>
<p><hr /></p>
<p>The Excel simulation I made:</p>
<ul>
<li>create 50 rows with these columns:
<ul>
<li>first - a fixed value 2 (the very homogeneous estimation)</li>
<li>20 columns with some random function (e.g. "=rand()*rand()*20")</li>
</ul></li>
<li>make sums fore each column</li>
<li>add "=VARIANCE(..)" for each random coulumn</li>
<li>and add a variance calculation for the sums</li>
</ul>
<p>The variance for each column in my simulation was about 2-3 and the variance of the sums below 1.</p>
http://stackoverflow.com/questions/299260/web-service-or-dll/299285#2992850Answer by MrFox for Web Service or DLL?MrFox2008-11-18T16:34:34Z2008-11-18T16:34:34Z<p>Right now there is <strong>no</strong> need to create a webservice. You just would have to maintain an other IIS service on your server. If you later on create some interface that will need that DLL you can simply refer to it. So there is no need to do it preventative.</p>
http://stackoverflow.com/questions/299222/managing-web-service-views-templates-for-several-clients/299240#299240-2Answer by MrFox for Managing web service views/templates for several clientsMrFox2008-11-18T16:17:52Z2008-11-18T16:17:52Z<p>First of all you should not return HTML by a webservice. IMHO a webservice should return generic/client independent form. I would suggest to use a simple ASPX web page that gets a bunch of XSL Layout transformations for some clients.</p>
<p>Make it customizable and you will not have to touch the code for a long time, even if new clients come along or your visualization changes.</p>
http://stackoverflow.com/questions/279335/how-to-add-icons-to-treeview-in-wpf/279354#2793540Answer by MrFox for How to add Icons to Treeview in WPF?MrFox2008-11-10T22:09:54Z2008-11-10T22:09:54Z<p>Ok, my fault. Found same question <a href="http://stackoverflow.com/questions/250597/how-do-i-add-icons-next-to-the-nodes-in-a-wpf-treeview">here</a> after posting by similar tags.</p>
http://stackoverflow.com/questions/279335/how-to-add-icons-to-treeview-in-wpf0How to add Icons to Treeview in WPF? [closed]MrFox2008-11-10T22:03:43Z2008-11-10T22:09:54Z
<p>I would like to add some icons to my treeview. Is there a way to do it within the XAML?</p>
<pre><code> <TreeView Height="200" Name="treeView1" Width="120">
<TreeViewItem Header="Topic1" IsExpanded="True">
<TreeViewItem Header="Subtopic2" />
<TreeViewItem Header="Subtopic3" />
</TreeViewItem>
</TreeView>
</code></pre>
http://stackoverflow.com/questions/2123/how-do-i-make-a-checkbox-toggle-from-clicking-on-the-text-label-as-well/2223#2223Comment by MrFox on How do I make a checkbox toggle from clicking on the text label as well?MrFox2009-08-31T17:21:39Z2009-08-31T17:21:39ZIt's better to put the checkbox outside the label.http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/1257036#1257036Comment by MrFox on What made programming easier in the last couple of years?MrFox2009-08-25T21:12:35Z2009-08-25T21:12:35ZThat's good point! Thanks!http://stackoverflow.com/questions/670909/multiple-wmd-editors-so-forked-version-on-one-page/1116263#1116263Comment by MrFox on Multiple WMD editors (SO forked version) on one page?MrFox2009-07-25T21:39:23Z2009-07-25T21:39:23ZA fine piece of work!http://stackoverflow.com/questions/299222/managing-web-service-views-templates-for-several-clients/299240#299240Comment by MrFox on Managing web service views/templates for several clientsMrFox2009-05-30T17:53:09Z2009-05-30T17:53:09ZDarrel: You might be right, if you just server browsers. But the question states multiple clients - among them browsers. XML is an client and platform indipendent format for just these purposes. No need to force the other clients to use a browser-client friendly format for data. (Altough it's possible. But that's not the point.) There IS sence in XML and XSLT.http://stackoverflow.com/questions/785270/how-to-tell-c-to-omit-creation-of-attributes-that-are-default-during-serializati/785276#785276Comment by MrFox on How to tell C# to omit creation of attributes that are default during serialization?MrFox2009-04-24T10:19:09Z2009-04-24T10:19:09Z´[System.ComponentModel.DefaultValue(false)]´ did it for bool values - Thank you :)http://stackoverflow.com/questions/87177/how-do-i-preserve-line-feeds-tabs-and-spaces-in-data-while-still-wrapping-text/92703#92703Comment by MrFox on How do I preserve line feeds, tabs, and spaces in data while still wrapping text?MrFox2009-03-23T11:30:45Z2009-03-23T11:30:45ZCorrection: You have two substring-before in your code that should be substring-after. http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/632225#632225Comment by MrFox on What made programming easier in the last couple of years?MrFox2009-03-10T20:59:21Z2009-03-10T20:59:21ZI like this one - nice pointhttp://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/630619#630619Comment by MrFox on What made programming easier in the last couple of years?MrFox2009-03-10T15:00:15Z2009-03-10T15:00:15ZYou are right! Didn't think of that. :) But I know how I dislike editing XML without highlighting. - nice one!http://stackoverflow.com/questions/462563/how-to-store-sets-to-find-similar-patterns-fast/462598#462598Comment by MrFox on How to store sets, to find similar patterns fast?MrFox2009-01-20T19:47:30Z2009-01-20T19:47:30ZThis looks a bit too easy. I think the complexity of this query would be about O(n²). Except the database does some magic, that I am asking for - right here. :) Thank you anyay for your suggestion. (small fix: "AND other.user <> me.user")http://stackoverflow.com/questions/462563/how-to-store-sets-to-find-similar-patterns-fast/462621#462621Comment by MrFox on How to store sets, to find similar patterns fast?MrFox2009-01-20T19:39:57Z2009-01-20T19:39:57ZYou are right. This is a kind of nearest neighbor with some L1 distance function. And I have already considered a spatial index like z-order or oct-tree. But this would imply a large table (thought) with almost empty cells. Any spacial index would perform bad on such an empty table.http://stackoverflow.com/questions/300488/does-evidence-based-scheduling-work-right-with-heterogenous-estimations/300620#300620Comment by MrFox on Does evidence based scheduling work right with heterogenous estimations?MrFox2008-11-19T13:11:35Z2008-11-19T13:11:35ZMaybe my answer below brings light to the question where my focus was in the question. I was focusing on the aspect that deviations increase during breaking down tasks. Sorry for the confusions.http://stackoverflow.com/questions/300488/does-evidence-based-scheduling-work-right-with-heterogenous-estimations/300560#300560Comment by MrFox on Does evidence based scheduling work right with heterogenous estimations?MrFox2008-11-19T13:05:43Z2008-11-19T13:05:43ZThis answer may be right for a more general question, but I miss a referring to aspect that smaller work-packages could raise the standard deviation.http://stackoverflow.com/questions/300488/does-evidence-based-scheduling-work-right-with-heterogenous-estimations/300620#300620Comment by MrFox on Does evidence based scheduling work right with heterogenous estimations?MrFox2008-11-19T09:42:02Z2008-11-19T09:42:02ZMy problem is, that I (as non-boss in this project) observed some estimations and it turned out big taks seem to be more predictable than small ones. So my question is: Is EBS only working good if all task are broken down until they are equal estimated?http://stackoverflow.com/questions/264883/what-is-the-best-pay-model-for-programmers/265456#265456Comment by MrFox on What is the best pay model for programmers?MrFox2008-11-07T11:42:23Z2008-11-07T11:42:23Zquality as a parameter beside scope and budget is a good point, thankshttp://stackoverflow.com/questions/264883/what-is-the-best-pay-model-for-programmers/265597#265597Comment by MrFox on What is the best pay model for programmers?MrFox2008-11-07T11:39:28Z2008-11-07T11:39:28Zthaks, good answer too