User chills42 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T21:56:21Zhttp://stackoverflow.com/feeds/user/23855http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1783254/r-text-editors-for-introductory-statistics-courses/1783289#17832891Answer by chills42 for R text editors for introductory statistics courseschills422009-11-23T14:01:54Z2009-11-23T14:01:54Z<p>As always, emacs is an option: <a href="http://www.stat.duke.edu/courses/Spring04/sta244/computing/R-ESS.html" rel="nofollow">R in Emacs</a></p>
<p>This may not be the best option because of the learning curve with emacs though.</p>
http://stackoverflow.com/questions/1772900/how-can-one-get-a-qa-team-more-involved-in-the-sdlc/1772935#17729351Answer by chills42 for How can one get a QA team more involved in the SDLC?chills422009-11-20T20:07:17Z2009-11-20T20:07:17Z<p>I think that the qa team should be separate from development, but work closely with dev.</p>
<p>That said, I think a good way to get them more involved earlier in the process is to write good specifications and include them in the process. As you work on implementing the product, they are able to focus their testing on the core pieces (because those are defined in the spec), and are able to collaborate in the development process.</p>
<p>As an QA guy, I have directly experienced the difference between testing a product that has a clear goal and can be understood vs a vague framework that needs to be covered.</p>
<p>While it is possible to find the bugs in both, it is more enjoyable and much more rewarding working in an environment where you know what the product <em>should</em> be doing.</p>
http://stackoverflow.com/questions/1770369/how-to-make-documents-evolve/1770435#17704353Answer by chills42 for How to make documents evolve?chills422009-11-20T13:30:50Z2009-11-20T13:30:50Z<p>I'd say the key is to use the documents. If they are getting frequent use by those on your team, then when changes are made, the differences will be noticed and can be fixed incrementally. If the documents are used infrequently, they get updated infrequently, and the changes become more difficult.</p>
<p><hr></p>
<p>Joel Spolsky has a great blog series that touches on this issue:</p>
<p><a href="http://www.joelonsoftware.com/articles/fog0000000036.html" rel="nofollow">Painless Functional Specifications</a></p>
http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764215#17642151Answer by chills42 for What are the biggest potential time wasters in development?chills422009-11-19T15:43:38Z2009-11-19T15:43:38Z<p>Complete and utter lack of specifications.</p>
http://stackoverflow.com/questions/1763005/regex-pattern-for-a-file-name/1763012#17630120Answer by chills42 for Regex Pattern for a File Namechills422009-11-19T12:39:07Z2009-11-19T12:39:07Z<p><code>abc\.\d+</code> should match it</p>
<p><code>\.</code> matches the <code>.</code></p>
<p><code>\d</code> matches any digit</p>
http://stackoverflow.com/questions/1759051/logging-authentication-attempts-including-passwords/1759132#17591320Answer by chills42 for Logging authentication attempts including passwordschills422009-11-18T21:14:58Z2009-11-18T21:14:58Z<p>As others have said, Logging passwords is a bad idea.</p>
<p>A much better idea is to <a href="http://stackoverflow.com/questions/570160/throttling-login-attempts">throttle login attempts</a>.</p>
<p>If done properly, throttling can greatly decrease the risk of password attacks as well as limiting denial of service attacks.</p>
http://stackoverflow.com/questions/1758337/why-change-from-wpf-to-silverlight-4/1758388#17583882Answer by chills42 for Why change from WPF to Silverlight 4chills422009-11-18T19:19:48Z2009-11-18T19:19:48Z<p>If your reasoning for WPF is that you want a full blown desktop app, then silverlight is not an option. If instead you are interested in a web-based app that can leave the browser, then Silverlight 4 might be what you're looking for.</p>
<p>From the wording in your question, it sounds like you want the full desktop experience, so Silverlight is irrelevant. </p>
http://stackoverflow.com/questions/1729191/mysql-should-i-denormalise/1729211#17292110Answer by chills42 for mySQL - Should I denormalise?chills422009-11-13T13:31:20Z2009-11-13T13:31:20Z<p>Normalization vs efficiency is usually a trade-off, while normalization is generally a good thing, it is not a silver bullet. If you have a clear reason (as it seems you do), denormalization is perfectly acceptable.</p>
http://stackoverflow.com/questions/1722334/c-extract-only-right-most-n-letters-from-a-string/1722483#17224830Answer by chills42 for C#: Extract only right most n letters from a stringchills422009-11-12T14:16:48Z2009-11-12T14:16:48Z<p>This isn't exactly what you are asking for, but just looking at the example, it appears that you are looking for the numeric section of the string.</p>
<p>If this is always the case, then a good way to do it would be using a regular expression.</p>
<pre><code>var regex= new Regex("\n+");
string numberString = regex.Match(page).Value;
</code></pre>
http://stackoverflow.com/questions/1717107/why-do-we-need-mocking-frameworks/1717115#17171152Answer by chills42 for Why do we need mocking frameworks?chills422009-11-11T18:16:00Z2009-11-11T18:16:00Z<p>The only reason to use a mocking library is that it makes mocking easier.</p>
<p>Sure, you can do it all without the library, and that is fine if it's simple, but as soon as they start getting complicated, libraries are much easier.</p>
<p>Think of this in terms of sorting algorithms, sure anyone can write one, but why? If the code already exists and is simple to call... why not use it?</p>
http://stackoverflow.com/questions/1687558/calling-unmanaged-function-from-c-should-i-pass-stringbuilder-or-use-unsafe-cod/1687611#16876116Answer by chills42 for Calling unmanaged function from C#: should I pass StringBuilder or use unsafe code?chills422009-11-06T13:32:47Z2009-11-06T13:39:49Z<p>I'd strongly prefer using the StringBuilder version.</p>
<p>There's not going to be a huge difference between the two, and using unsafe code is not nearly as clean.</p>
<p>In my opinion, since there is a way to solve the problem using a core library class, using unsafe code without a clear (and needed) benefit is a premature optimization.</p>
http://stackoverflow.com/questions/1669922/is-it-possible-to-find-two-numbers-whose-difference-is-minimum-in-on-time/1669987#16699870Answer by chills42 for Is it possible to find two numbers whose difference is minimum in O(n) timechills422009-11-03T20:35:37Z2009-11-03T20:35:37Z<p>No, not without making assumptions about the numbers/ordering.</p>
<p>It would be possible given a sorted list though.</p>
http://stackoverflow.com/questions/1667689/who-owns-documentation/1667721#16677211Answer by chills42 for Who owns documentation?chills422009-11-03T14:38:08Z2009-11-03T14:38:08Z<p>I would argue that without a technical writer, the <em>ownership</em> of documentation should fall on the developer, however, documentation should be the <em>responsibility</em> of the both the developer, support engineer, and marketing team.</p>
<p>The views offered by the developer/support/marketing people will be different by necessity, and each should have input in order for the documentation to fulfill it's goal.</p>
<p>Joel Spolsky has a good series on <a href="http://www.joelonsoftware.com/articles/fog0000000036.html" rel="nofollow">writing specifications</a> that also touches on this.</p>
http://stackoverflow.com/questions/1667583/is-it-possible-to-access-a-ms-access-database-with-php-on-a-linux-web-server/1667631#16676311Answer by chills42 for Is it possible to access a MS Access database with PHP on a Linux Web Server?chills422009-11-03T14:24:25Z2009-11-03T14:24:25Z<p>it looks like it is possible using <a href="http://sourceforge.net/projects/mdbtools/" rel="nofollow">mdbtools</a> (<a href="http://packages.ubuntu.com/search?keywords=mdbtools" rel="nofollow">in the repository</a>), which should allow odbc access as well as a way to port to a different database.</p>
<p>Even if you can't use it directly, <a href="http://mediakey.dk/~cc/mdb-tools-to-export-migrate-from-mdb-microsoft-access-format-to-mysql/" rel="nofollow">porting is an option</a>.</p>
http://stackoverflow.com/questions/1667528/regular-expression-listing-all-possibilities/1667558#16675580Answer by chills42 for Regular expression listing all possibilitieschills422009-11-03T14:13:43Z2009-11-03T14:13:43Z<p>I'm not entirely sure this is even possible, but if it were, it would be so cpu/time intensive for many situations that it would not be useful.</p>
<p>For instance, try to make a list of all matches for A.*Z</p>
<p>There are sites that help with building a good regular expression though:</p>
<ul>
<li><a href="http://www.fileformat.info/tool/regex.htm" rel="nofollow">http://www.fileformat.info/tool/regex.htm</a></li>
<li><a href="http://www.regular-expressions.info/javascriptexample.html" rel="nofollow">http://www.regular-expressions.info/javascriptexample.html</a></li>
<li><a href="http://www.regextester.com/" rel="nofollow">http://www.regextester.com/</a></li>
</ul>
http://stackoverflow.com/questions/1667449/mycomputer-as-initial-directory/1667471#16674711Answer by chills42 for MyComputer as initial directorychills422009-11-03T13:58:07Z2009-11-03T14:03:32Z<p>A good way to handle this is using the "special folders" in the .NET Environment library.</p>
<p>For instance, the "My Documents" (personal) would use:</p>
<pre><code>Environment.GetFolderPath(Environment.SpecialFolder.Personal)
</code></pre>
http://stackoverflow.com/questions/1595808/mit-gpl-programs/1663231#16632311Answer by chills42 for MIT & GPL programschills422009-11-02T19:38:45Z2009-11-02T19:38:45Z<p>It depends if you plan to modify the library or simply link to it. If you are only linking to the library then you are allowed to use it as you please as long as you comply with the restriction put in place (such as distributing source or noting it's use in the readme. In this case you are simply distributing a GPL licensed library with your MIT licensed application.</p>
<p>If you plan to modify the library code or use the source directly in your project then you may need to get a relicensed version in order to release under the MIT license.</p>
http://stackoverflow.com/questions/1651729/a-replace-question/1651762#16517620Answer by chills42 for a replace questionchills422009-10-30T19:12:10Z2009-10-30T19:12:10Z<p>I can't think of a better way at the moment, really your method isn't that ugly.</p>
<p>Assuming that there is never a 1 in the string, it should work just fine.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false26Should I use `!IsGood` or `IsGood == false`?chills422008-12-10T14:23:51Z2009-10-30T17:51:31Z
<p>I keep seeing code that does checks like this</p>
<pre><code>if (IsGood == false)
{
DoSomething();
}
</code></pre>
<p>or this</p>
<pre><code>if (IsGood == true)
{
DoSomething();
}
</code></pre>
<p>I hate this syntax, and always use the following syntax.</p>
<pre><code>if (IsGood)
{
DoSomething();
}
</code></pre>
<p>or</p>
<pre><code>if (!IsGood)
{
DoSomething();
}
</code></pre>
<p>Is there any reason to use '<code>== true</code>' or '<code>== false</code>'?</p>
<p>Is it a readability thing? Do people just not understand Boolean variables?</p>
<p>Also, is there any performance difference between the two?</p>
http://stackoverflow.com/questions/1608914/so-what-is-the-best-language-to-learn-oop-on/1608952#16089520Answer by chills42 for So, what is the best language to learn OOP on?chills422009-10-22T18:00:45Z2009-10-22T18:00:45Z<p>C# is probably one of the most commonly used for OOP right now, but it's possible in almost any language. The concepts are more important that the language used.</p>
http://stackoverflow.com/questions/1566411/should-i-keep-my-python-code-at-2-x-or-migrate-to-3-x-if-i-plan-to-eventually-use/1566484#15664840Answer by chills42 for Should I keep my Python code at 2.x or migrate to 3.x if I plan to eventually use Jython?chills422009-10-14T14:09:12Z2009-10-14T14:09:12Z<p>I would expect that the developers will be working towards compatability with 3.0 at this point. Since they released 2.5 in june I'd hope for a 3.0 version no earlier than Jan.-Mar. 2010, but given their slow release cycle, it could be a while.</p>
http://stackoverflow.com/questions/72016/windows-forms-test-automation/1562370#15623701Answer by chills42 for Windows Forms Test Automationchills422009-10-13T19:20:28Z2009-10-13T19:20:28Z<p>We use <a href="http://www.automatedqa.com/products/testcomplete/" rel="nofollow">TestComplete</a> for automating our Windows forms test cases. It is a pretty good product overall.</p>
<p>The main issue you will run into is that while most of these products will meet all of your requirements, you are going to run into a lot of maintenance issues, especially having non-developers recording the tests.</p>
<p>Although it may seem like a good idea to quickly record all of your tests then have them run from the recordings, you will have a much better <a href="http://en.wikipedia.org/wiki/Rate%5Fof%5Freturn" rel="nofollow">ROI</a> by actually treating your automated tests like regular development. Recordings will leave you with a lot of <a href="http://en.wikipedia.org/wiki/Duplicate%5Fcode" rel="nofollow">duplicated code</a>, which is very difficult to maintain. By properly designing the tests and breaking out reusable code you will end up with much more stable tests and you will be able to get your results much quicker.</p>
http://stackoverflow.com/questions/157278/what-are-the-best-resources-for-preparing-for-a-mcts-exam8What are the best resources for preparing for a MCTS exam?chills422008-10-01T12:04:32Z2009-10-13T09:13:07Z
<p>I am considering taking the MCTS exam (employer will pay) with the intention of gaining a core understanding of the .NET framework. Also, I plan to take the C# version. What are the best preparation resources. (I am not interested in brain dumps, as my goal is to learn, not just pass)</p>
http://stackoverflow.com/questions/1509693/ive-learnt-jquery-should-i-go-back-and-learn-proper-js/1509724#15097240Answer by chills42 for I've learnt jQuery, should I go back and learn "proper js"?chills422009-10-02T14:04:50Z2009-10-02T14:04:50Z<p>I think it is certainly worth the time to learn the core language. If you only know the framework, then you're locked into the framework's way of doing things.</p>
<p>While the frameworks offer much more powerful and cleaner code in many cases, sometimes it is overkill and there is a much simpler solution to a problem in the core language.</p>
http://stackoverflow.com/questions/1478397/if-you-created-a-programming-language-what-would-you-call-it/1478491#1478491-1Answer by chills42 for If you created a programming language, what would you call it?chills422009-09-25T17:07:18Z2009-09-25T17:07:18Z<p>APileOfCrap - at least then every time someone said the language was a pile of crap it would be true.</p>
<p>As an added bonus, it would make planning meetings more fun, for instance "<em>I think we should write this in APileOfCrap</em>", or "<em>The server is using APileOfCrap, but that may not be the best choice for the client side</em>".</p>
http://stackoverflow.com/questions/1469568/what-is-the-difference-between-having-a-function-in-jquery-document-and-not-havin/1469597#14695971Answer by chills42 for What is the difference between having a function in Jquery.Document and not having it in.chills422009-09-24T03:09:55Z2009-09-24T03:09:55Z<p>I believe this issue is caused because the extra "$();" wrapping the function creates a sort of closure, resulting in a limited scope.</p>
http://stackoverflow.com/questions/1438785/how-can-i-make-my-relationship-with-qa-less-adversarial/1438995#14389954Answer by chills42 for How can I make my relationship with QA less adversarial?chills422009-09-17T13:48:52Z2009-09-17T13:48:52Z<p>As a QA person who is basically a developer (Automated regression testing), I think I've been able to see both sides of this issue.</p>
<p><em>As several others have stated, this is a communication issue, no tool is going to solve it.</em> Tools such as bugzilla, improve the <strong>efficiency</strong> of the communication, but they still require that both parties work to keep the lines of communication open.</p>
<p>I've seen that developers often have trouble with taking bugs personally, which leads to brushing them off as 'unimportant', 'Edge-cases', 'As-Intended', etc. when the issue is in fact a problem. Even if the issue is actually unimportant, <strong>simply sharing your evaluation of risk/reward in fixing a bug helps to foster better communication.</strong></p>
<p>Conversely, QA guys often leave out details of the bug and steps to reproduce it (myself included). When you as a developer run into missing details, it is your job to ask us for more detail (and please ask us kindly and promptly). The worst feeling is when you write up a bug and send it off to a developer, then hear nothing back for a few days, and it gets closed as 'Unable to Reproduce'.</p>
<p>In the end, <strong>the key is prompt and kind feedback on both sides</strong>. If I (in QA) am working with a developer that always responds when I send him a bug and seems happy to help work through the issue, I am much more willing to take the time to give him all the details I can.</p>
http://stackoverflow.com/questions/1334875/good-cheap-fast-which-two/1334891#133489110Answer by chills42 for Good / Cheap / Fast: Which two?chills422009-08-26T13:59:55Z2009-08-26T13:59:55Z<p>That is entirely dependent on your clients.</p>
<p>If they're willing to pay, good and fast is always the preference...</p>
http://stackoverflow.com/questions/1328903/what-does-eg-do-in-r/1328932#13289321Answer by chills42 for What does eg %+% do? in Rchills422009-08-25T15:14:22Z2009-08-26T11:53:43Z<p>Based on my quick look at the <a href="http://cran.r-project.org/doc/manuals/R-lang.html#Function-calls" rel="nofollow">manual</a> it may be a user defined infix operator, so, it's hard to tell what the actual meaning would be...</p>
<p>I would think binary addition. </p>
http://stackoverflow.com/questions/1334107/how-to-used-xenocode-browser-sandbox-deploy-run-application-via-ie/1334153#13341530Answer by chills42 for how to used Xenocode Browser Sandbox Deploy run application via IEchills422009-08-26T11:46:20Z2009-08-26T11:46:20Z<p>How about checking out the <a href="http://www.xenocode.com/Products/Virtual-Application-Studio/Docs/webframe.html" rel="nofollow">product documentation</a>?</p>
http://stackoverflow.com/questions/1758337/why-change-from-wpf-to-silverlight-4/1758388#1758388Comment by chills42 on Why change from WPF to Silverlight 4chills422009-11-18T19:24:03Z2009-11-18T19:24:03ZTrue, but I think they've made some changes to allow a truly "out of browser" closer to the Adobe Air model.http://stackoverflow.com/questions/840397/static-variables-in-c/840426#840426Comment by chills42 on Static variables in C#.chills422009-11-16T19:01:42Z2009-11-16T19:01:42ZRegardless of the excuse, this is still the canonical answer that is given by Microsoft.http://stackoverflow.com/questions/1722334/c-extract-only-right-most-n-letters-from-a-string/1722483#1722483Comment by chills42 on C#: Extract only right most n letters from a stringchills422009-11-13T13:24:42Z2009-11-13T13:24:42ZI'm not arguing for using this method if you really do only need the last 6, but if your goal is to extract a number (such as an id) that may change to 5 or 7 digits at some point in the future, this is a better way.http://stackoverflow.com/questions/1667689/who-owns-documentation/1667760#1667760Comment by chills42 on Who owns documentation?chills422009-11-03T14:46:22Z2009-11-03T14:46:22ZWhile you're correct that developers usually aren't the best people for end-user documentation, they are the only ones with the full technical understanding of the system, and so it is necessary for their input to be a core part, without it, the end result is a series of useless screenshots by someone that doesn't understand the software.http://stackoverflow.com/questions/1667449/mycomputer-as-initial-directory/1667471#1667471Comment by chills42 on MyComputer as initial directorychills422009-11-03T14:07:31Z2009-11-03T14:07:31ZSvetlozar Angelov is correct though... it looks like "My Computer" is actually undefined...http://stackoverflow.com/questions/1608914/so-what-is-the-best-language-to-learn-oop-on/1608930#1608930Comment by chills42 on So, what is the best language to learn OOP on?chills422009-10-22T18:05:46Z2009-10-22T18:05:46ZYes, there are ways to make OOP easier, but that still doesn't mean it's "the one" to go with. This is the same kind of idea as <a href="http://onsmalltalk.com/functional-programming-in-smalltalk" rel="nofollow">onsmalltalk.com/functional-programming-in-smallta…</a>http://stackoverflow.com/questions/1608914/so-what-is-the-best-language-to-learn-oop-on/1608930#1608930Comment by chills42 on So, what is the best language to learn OOP on?chills422009-10-22T17:59:18Z2009-10-22T17:59:18Zlisp is for functional programming...http://stackoverflow.com/questions/1579542/whats-the-equivalent-of-bonjour-for-windows/1579685#1579685Comment by chills42 on What's the equivalent of Bonjour for Windowschills422009-10-19T11:35:08Z2009-10-19T11:35:08ZSimilar purpose, but fairly different technology, see the comparison here: <a href="http://www.oreillynet.com/pub/a/wireless/2002/12/20/zeroconf.html" rel="nofollow">oreillynet.com/pub/a/…</a>http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/1575864#1575864Comment by chills42 on Should I use `!IsGood` or `IsGood == false`?chills422009-10-16T15:51:42Z2009-10-16T15:51:42ZThat's true, but you could still say:
if (!isValidDate) {
instead of
if ( isValidDate==false) {http://stackoverflow.com/questions/1509693/ive-learnt-jquery-should-i-go-back-and-learn-proper-js/1509724#1509724Comment by chills42 on I've learnt jQuery, should I go back and learn "proper js"?chills422009-10-02T18:14:10Z2009-10-02T18:14:10ZI was just speaking in generic terms, as it really applies to any language/framework pair.http://stackoverflow.com/questions/1478397/if-you-created-a-programming-language-what-would-you-call-itComment by chills42 on If you created a programming language, what would you call it?chills422009-09-25T17:11:22Z2009-09-25T17:11:22ZI think this is perfectly valid, after all it has been said that naming is one of the two hardest programming problems.http://stackoverflow.com/questions/1438785/how-can-i-make-my-relationship-with-qa-less-adversarial/1438831#1438831Comment by chills42 on How can I make my relationship with QA less adversarial?chills422009-09-17T13:56:54Z2009-09-17T13:56:54ZAs others have said, this will not help your relationship with QA.http://stackoverflow.com/questions/1306752/which-dvcs-would-work-best-on-windows-for-my-scenario/1306783#1306783Comment by chills42 on Which DVCS would work best on Windows for my scenario?chills422009-08-24T01:29:04Z2009-08-24T01:29:04ZI use it on windows, and although it's not a seamless port, it works pretty well.http://stackoverflow.com/questions/1311476/splitting-strings-in-javascript/1311508#1311508Comment by chills42 on Splitting strings in javascriptchills422009-08-21T12:00:41Z2009-08-21T12:00:41ZActually it's a caret... <a href="http://en.wikipedia.org/wiki/Caret" rel="nofollow">en.wikipedia.org/wiki/Caret</a>http://stackoverflow.com/questions/1301257/what-regex-can-i-use-to-capture-groups-from-this-string/1301286#1301286Comment by chills42 on What regex can I use to capture groups from this string?chills422009-08-19T17:24:20Z2009-08-19T17:24:20ZFixed it... Should work now.