User Scott Bevington - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T07:00:31Zhttp://stackoverflow.com/feeds/user/9544http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1426815/javascript-ranging-gone-wrong/1426880#14268800Answer by Scott Bevington for JavaScript ranging gone wrongScott Bevington2009-09-15T12:26:45Z2009-09-15T12:26:45Z<p>First, I highly recommend Firebug for debugging Javascript on FireFox. It pointed me to the setEnd line immediately.</p>
<p>Now to the getting you to the answer. The second parameter of setStart and setEnd is the node depth to select into. Since you only have two div tags without any child nodes you only have depths 0 and 1. For myList[0] your depth 0 is the div tag itself and depth 1 is the text node within the div. </p>
<p>Since I'm not sure what you attempting to select here would be the corrected code for selecting all text within both div tags.</p>
<pre><code> var end = myList[1];
range.setStart(start, 0);
range.setEnd(end, 1);
</code></pre>
http://stackoverflow.com/questions/1360805/how-commonly-do-deadlock-issues-occur-in-programming-not-in-the-databases/1360836#13608363Answer by Scott Bevington for How commonly do deadlock issues occur - in programming - not in the databases?Scott Bevington2009-09-01T06:29:09Z2009-09-01T06:29:09Z<p>All depends on what you are coding. Traditional single threaded applications that do not use locking. Not really.</p>
<p>Multi-threaded code with multiple locks is what will cause deadlocks.</p>
<p>I just finished refactoring code that used seven different locks without proper exception handling. That had numerous deadlock issues.</p>
http://stackoverflow.com/questions/965425/why-dont-popular-programming-languages-use-some-other-character-to-delimit-strin/965464#9654645Answer by Scott Bevington for Why don't popular programming languages use some other character to delimit strings?Scott Bevington2009-06-08T15:27:43Z2009-06-08T15:27:43Z<p>Python does have an alternative string delimiter with the triple-double quote """Some String""".</p>
<p>Single quotes and double quotes are used in the majority of languages since that is the standard delimiter in most written languages.</p>
http://stackoverflow.com/questions/620696/mysql-licensing-and-gpl/620717#6207170Answer by Scott Bevington for MySQL licensing and GPLScott Bevington2009-03-06T22:35:11Z2009-03-06T22:35:11Z<p>First, I am not a lawyer. Talk with one before taking any advice here.</p>
<p>Beyond that, if you do not distribute your web app, you likely do not need to release your changes. You can still make your web app available to be used by others if you host the web app. </p>
http://stackoverflow.com/questions/562196/how-to-justify-to-your-colleagues-that-they-produce-crappy-code/562232#5622322Answer by Scott Bevington for How to justify to your colleagues that they produce crappy code?Scott Bevington2009-02-18T18:16:15Z2009-02-18T18:16:15Z<p>You could quit and hope to find something better. </p>
<p><strong>Or</strong>, you could stick it out and try improve the code that you can control, when you can control it. No matter how well intentioned the developers are, if there is more than one developer the code base will be "ugly" by a competent developers standards. Work with the other developers to improve their abilities and refactor code as you make enhancements.</p>
http://stackoverflow.com/questions/530341/online-computer-science-degrees/530402#5304020Answer by Scott Bevington for Online Computer Science DegreesScott Bevington2009-02-09T22:42:46Z2009-02-09T22:42:46Z<p>It all depends on the university. </p>
<ul>
<li>If its a traditional U. with a online
equivalent, I'd consider that as
close to equal to the learning that
takes place in class considering that traditional schools have a rep. to maintain and minimum criteria to adhere to.</li>
<li>After listening to a former
employee's experience with U. of
Phoenix, I don't think that I
would rank that at quite the same
level as the traditional U. This is downgraded simply by what I saw as an over reliance upon "participation" in forums to determine the grade. </li>
<li>Anything that resembles a degree
mill, I'd rank that lower than no degree. And I'd consider anything that isn't a traditional U. or U. of Phoenix a degree mill based solely on lack of reputation.</li>
</ul>
http://stackoverflow.com/questions/382030/your-first-serious-programming-project/382044#3820440Answer by Scott Bevington for Your first serious programming projectScott Bevington2008-12-19T19:56:15Z2008-12-19T19:56:15Z<p>Simple database system for my father's survey firm. Man I wish I could have used a SQL db engine at that time. I hand wrote the database engine in Turbo Pascal.</p>
http://stackoverflow.com/questions/375567/is-it-possible-to-change-an-html-element-property-using-its-id-with-php/375575#3755752Answer by Scott Bevington for Is it possible to change an HTML element property using its ID with PHP?Scott Bevington2008-12-17T18:42:00Z2008-12-17T18:42:00Z<p>What you are looking for is JavaScript and AJAX. </p>
http://stackoverflow.com/questions/369856/how-do-you-join-two-mysql-tables-where-the-data-is-not-in-the-other-table/369866#3698662Answer by Scott Bevington for How do you JOIN two MySQL tables where the data is NOT in the other table?Scott Bevington2008-12-15T22:07:10Z2008-12-15T22:07:10Z<pre><code>SELECT PETS.NAME
FROM PETS
LEFT OUTER JOIN LOST_PETS
ON PETS.PET_ID = LOST_PETS.PET_ID
WHERE LOST_PETS.PET_ID IS NULL;
</code></pre>
http://stackoverflow.com/questions/353795/inherited-a-php-nightmare-where-to-start/353826#35382651Answer by Scott Bevington for Inherited a PHP nightmare, where to start?Scott Bevington2008-12-09T18:58:41Z2008-12-09T18:58:41Z<ol>
<li>Before all else, get the files in
version control as is. <strong>Do not proceed past #1 until it is done.</strong></li>
<li>Establish a testing environment.</li>
<li>Clean up the files</li>
</ol>
http://stackoverflow.com/questions/318996/what-should-a-good-bugtracking-tool-be-capable-of/319031#3190311Answer by Scott Bevington for What should a good BugTracking tool be capable of?Scott Bevington2008-11-25T21:56:07Z2008-11-25T21:56:07Z<p>Simple end user data entry. Without this you won't have bugs entered, which equals worthless bug tool.</p>
http://stackoverflow.com/questions/149784/how-do-you-copy-a-record-in-a-sql-table-but-swap-out-the-unique-id-of-the-new-row/149793#1497931Answer by Scott Bevington for How do you copy a record in a SQL table but swap out the unique id of the new row?Scott Bevington2008-09-29T17:37:25Z2008-09-29T17:37:25Z<p>Specify all fields but your ID field.</p>
<pre><code>INSERT INTO MyTable (FIELD2, FIELD3, ..., FIELD529, PreviousId)
SELECT FIELD2, NULL, ..., FIELD529, FIELD1
FROM MyTable
WHERE FIELD1 = @Id;
</code></pre>
http://stackoverflow.com/questions/140409/why-avoid-pessimistic-locking-in-a-version-control-system/140440#14044011Answer by Scott Bevington for Why avoid pessimistic locking in a version control system?Scott Bevington2008-09-26T16:08:27Z2008-09-26T16:08:27Z<ol>
<li>Go play with Source Safe and have a developer leave for a two week vacation. Add to that the VSS admins not being around. Now you have a fix to be posted but you can't because of the developer</li>
<li>If you have multiple features and/or bug fixes being worked on. No matter how small your code is broken up, you will still have contention for a central file.</li>
</ol>
http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/140226#1402260Answer by Scott Bevington for Combining split date ranges in a SQL queryScott Bevington2008-09-26T15:28:58Z2008-09-26T15:28:58Z<p>Select StudentID, min(startdate) as startdate, max(enddate), field1, field2
from tablex
group by StudentID, field1, field2</p>
<p>That would yield you the result assuming the wasn't a gap between on student's time range.</p>
http://stackoverflow.com/questions/114807/should-i-learn-become-proficient-in-javascript/114850#1148500Answer by Scott Bevington for Should I learn/become proficient in Javascript?Scott Bevington2008-09-22T13:25:44Z2008-09-22T13:25:44Z<p>If you are a webdev then yes, you should be proficient with Javascript. Javascript is a major part of making web apps as interactive as desktop apps. </p>
<p>With that being said, learn to use one of the cross-browser compatible libraries like JQuery, Prototype, etc. We do not need to have any more single browser crud created using Javascript, just because any real man/woman rolls their own.</p>
<p>A few things to learn in Javascript:
1. Basic syntax
2. The various flavours of function declaration.
3. Passing functions around and how to use passed in functions.</p>
http://stackoverflow.com/questions/103170/what-are-some-project-management-tips-and-processes-for-a-single-developer-team/103218#1032182Answer by Scott Bevington for What are some project management tips and processes for a single-developer team?Scott Bevington2008-09-19T15:57:01Z2008-09-19T15:57:01Z<p>For projects like that I've used more of a checklist style to management what I want to have done and when. I highly recommend using good development practices like source control and issue tracking even with one developer. </p>
<p>I've taken over too many projects that started with one developer, but the project grew and now there need to be two or three developers working on the project. Its always difficult to make the transition, even more so when there is a basic check list, version control and/or issue tracking.</p>
http://stackoverflow.com/questions/103059/where-to-start-with-source-control/103080#1030808Answer by Scott Bevington for Where to start with source-controlScott Bevington2008-09-19T15:45:13Z2008-09-19T15:45:13Z<p>Very Subversion specific but it gives a decent understanding of version control basics.</p>
<p><a href="http://svnbook.red-bean.com/" rel="nofollow">http://svnbook.red-bean.com/</a></p>
http://stackoverflow.com/questions/102128/svn-mark-major-version/102169#1021691Answer by Scott Bevington for SVN mark major versionScott Bevington2008-09-19T14:17:07Z2008-09-19T14:17:07Z<p>If you are using the svn standard structure you should have a branches, tags, and trunk folder. </p>
<p>What you are looking to do is to make a copy of the current trunk to a folder in tags.</p>
<p>Example command line:</p>
<p>svn copy mysvnurl/myproject/trunk mysvnurl/myproject/tags/majorrelease_01</p>
http://stackoverflow.com/questions/65718/what-do-the-numbers-in-a-version-typically-represent-i-e-v1-9-0-1/65776#657760Answer by Scott Bevington for What do the numbers in a version typically represent (i.e. v1.9.0.1)?Scott Bevington2008-09-15T19:07:36Z2008-09-15T19:07:36Z<p>Generally then number are in the format of version.major.minor.hotfix, not individual internal components. So v1.9.0.1 would be version 1, major release 9 (of v1), minor release (of v1.9) 0, hot fix 1 of (v1.9.0).</p>
http://stackoverflow.com/questions/353795/inherited-a-php-nightmare-where-to-start/353821#353821Comment by Scott Bevington on Inherited a PHP nightmare, where to start?Scott Bevington2008-12-09T20:00:41Z2008-12-09T20:00:41ZOne the greatest days in my professional life was when I learned there was something other than VSS for version control.http://stackoverflow.com/questions/353795/inherited-a-php-nightmare-where-to-start/353821#353821Comment by Scott Bevington on Inherited a PHP nightmare, where to start?Scott Bevington2008-12-09T19:21:54Z2008-12-09T19:21:54ZAs I stated in my post, you need to version the system as it exists today. Don't worry about making your vc system dirty at first. Better to have index3.php versioned when you find out in three months that it was included in calctax73.php.