User Jason Cohen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T09:01:01Zhttp://stackoverflow.com/feeds/user/4926http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/136946/difference-between-enum-and-define-statements/136954#13695418Answer by Jason Cohen for Difference between Enum and Define StatementsJason Cohen2008-09-25T23:48:21Z2009-11-11T16:03:00Z<p><code>enum</code> defines a syntactical element.</p>
<p><code>#define</code> is a pre-preprocessor directive, executed <em>before</em> the compiler sees the code, and therefore is not a language element of C itself.</p>
<p>Generally enums are preferred as they are type-safe and more easily discoverable. Defines are harder to locate and can have complex behavior, for example one piece of code can redefine a <code>#define</code> made by another. This can be hard to track down.</p>
http://stackoverflow.com/questions/619610/whats-the-most-efficient-test-of-whether-a-php-string-ends-with-another-string3What's the most efficient test of whether a PHP string ends with another string?Jason Cohen2009-03-06T17:03:46Z2009-11-03T18:31:49Z
<p>The standard PHP way to test whether a string <code>$str</code> ends with a substring <code>$test</code> is:</p>
<pre><code>$endsWith = substr( $str, -strlen( $test ) ) == $test
</code></pre>
<p>Is this the fastest way?</p>
http://stackoverflow.com/questions/1626794/how-to-invalidate-cache-when-the-page-is-modified-via-ajax/1626804#16268040Answer by Jason Cohen for How to invalidate cache when the page is modified via Ajax?Jason Cohen2009-10-26T19:21:53Z2009-10-26T19:21:53Z<p>You need to set the cache headers in the HTTP response.</p>
<p>Depending on your technology, you can do that in the web server (e.g. based on the URL in question) or in your code (e.g. set the header using your framework or some API call).</p>
<p>Specifically:</p>
<pre><code>no-cache
expires
</code></pre>
<p>Are the ones you want.</p>
http://stackoverflow.com/questions/1609250/how-do-i-add-update-a-property-inside-an-msi-from-the-command-line2How do I add/update a property inside an MSI from the command-line?Jason Cohen2009-10-22T18:51:07Z2009-10-22T23:25:52Z
<p>I have an MSI installer in which I need to add or modify a short text property from the command-line.</p>
<p>This has to be done after the installer is built; I cannot modify the process that produces the installer in the first place. It also has to be executed headless from a script.</p>
<p>When I say "property," it could be an MSI property, a value that gets written to the registery at install-time, or any other mechanism that can get this short custom text into the installed application when it runs.</p>
http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript23How to create a GUID / UUID in Javascript?Jason Cohen2008-09-19T20:01:00Z2009-10-19T17:04:26Z
<p>I'm trying to create globally-unique identifiers in Javascript. I'm not sure what routines are available on all browsers, how "random" and seeded the built-in random number generator is, etc..</p>
<p>The GUID / UUID should be at least 32 characters and should stay in the ASCII range to avoid trouble when passing them around.</p>
http://stackoverflow.com/questions/1586698/are-partially-updated-values-when-multithreading-still-a-concern-on-modern-cpus/1586714#15867140Answer by Jason Cohen for Are partially updated values when multithreading still a concern on modern CPUs?Jason Cohen2009-10-19T02:30:02Z2009-10-19T02:30:02Z<p>It's still not safe to assume your hardware will support unchecked updates.</p>
<p>If you're coding in something low-level (C/C++), use macros to wrap the based operations. Then, if you're SURE a particular hardware configuration will work natively you can always #define those operations to be trivial, just as if you didn't protect yourself.</p>
<p>But generally it's better to be right than fast.</p>
http://stackoverflow.com/questions/61615/should-you-use-international-identifiers-in-java-c3Should you use international identifiers in Java/C#?Jason Cohen2008-09-14T20:28:43Z2009-09-11T23:54:49Z
<p>C# and Java allow almost any character in class names, method names, local variables, etc.. Is it bad practice to use non-ASCII characters, testing the boundaries of poor editors and analysis tools and making it difficult for some people to read, or is American arrogance the only argument against?</p>
http://stackoverflow.com/questions/480683/whats-the-best-open-source-java-bayesian-spam-filter-library6What's the best open-source Java Bayesian spam filter library?Jason Cohen2009-01-26T17:47:41Z2009-08-26T01:10:01Z
<p>In other answers at Stackoverflow it's been suggested that Weka is good, but there are others (<a href="http://classifier4j.sourceforge.net/" rel="nofollow">Classifier4j</a>, <a href="http://jbnc.sourceforge.net/" rel="nofollow">jBNC</a>, <a href="http://www.tempeststrings.com/naiban/" rel="nofollow">Naiban</a>).</p>
<p>Does anyone have actual experience with these?</p>
http://stackoverflow.com/questions/1288038/what-is-the-query-to-print-date-along-with-timestamp-in-sql/1288053#12880531Answer by Jason Cohen for What is the query to print date along with timestamp in sql?Jason Cohen2009-08-17T13:48:52Z2009-08-17T13:48:52Z<p>If the data type is <code>Date</code> and not e.g. <code>Timestamp</code> or <code>Datetime</code>, it is probably storing only the date and not the time, in which case the information you seek is simply not there.</p>
http://stackoverflow.com/questions/1288022/how-do-i-change-an-onmouseover-event-using-javascript/1288036#12880362Answer by Jason Cohen for How do I change an onmouseover event using Javascript?Jason Cohen2009-08-17T13:44:30Z2009-08-17T13:44:30Z<p>The safe way is to use a Javascript toolkit like Prototype or JQuery.</p>
<p>They all can do things like this easily but it works cross-browser.</p>
<p>For example, <a href="http://docs.jquery.com/Events" rel="nofollow">here is how you do it in JQuery</a>.</p>
http://stackoverflow.com/questions/1234471/rails-rake-testfunctionals-cannot-access-db-sqlite3-on-winxp/1234549#12345490Answer by Jason Cohen for Rails : Rake Test:functionals cannot access DB (Sqlite3 on winXP)Jason Cohen2009-08-05T17:09:43Z2009-08-05T17:09:43Z<p>If you're running under Cygwin, try running this on your database files:</p>
<pre><code>chmod 777 <your-files>
</code></pre>
<p>Cygwin can become confused about what permissions should be applied.</p>
<p>Yes I know these permissions are ridiculous, but so is Cygwin sometimes...</p>
http://stackoverflow.com/questions/1234443/easy-way-to-get-day-number-of-current-quarter/1234511#12345110Answer by Jason Cohen for Easy way to get day number of current quarter?Jason Cohen2009-08-05T17:02:46Z2009-08-05T17:02:46Z<p>Assuming you mean a calendar-quarter (because a company fiscal year can start in any month of the year), you could rely on the date('z') to determine the day-of-year, and then keep a simple array of the day each quarter starts on:</p>
<pre><code>$quarterStartDays = array( 1 /* Jan 1 */, 90 /* Mar 1, non leap-year */, ... );
</code></pre>
<p>Then with the current day-of-year you can first locate the largest start-day that's less than or equal to the day-of-year, then subtract.</p>
<p>Note that you need different numbers depending on the leap year.</p>
http://stackoverflow.com/questions/1074928/should-the-junit-message-state-the-condition-of-success-or-failure5Should the JUnit message state the condition of success or failure?Jason Cohen2009-07-02T15:05:07Z2009-07-03T05:45:20Z
<p>I can write an assertion message one of two ways. Stating success:</p>
<pre><code>assertEquals( "objects should be identical", expected, actual );
</code></pre>
<p>Or stating the condition of being broken:</p>
<pre><code>assertEquals( "objects aren't identical", expected, actual );
</code></pre>
<p>Is there a standard for this in JUnit specifically? If not, what are the arguments for each side?</p>
<p>P.S. I've seen articles on the web demonstrating both of these without explanation, so just saying "search Google" is not an answer!</p>
<p><strong>[UPDATE]</strong></p>
<p>Everyone is getting hung up on the fact that I used <code>assertEquals</code> and therefore the message is probably useless. But of course that's just because I wanted to illustrate the question simply.</p>
<p>So imagine instead it's:</p>
<pre><code>assertTrue( ... big long multi-line expression ... );
</code></pre>
<p>Where a message is useful.</p>
http://stackoverflow.com/questions/377133/how-to-kindly-ask-your-users-to-upgrade-from-ie6/1025361#10253610Answer by Jason Cohen for How to (kindly) ask your users to upgrade from IE6?Jason Cohen2009-06-22T03:21:19Z2009-06-22T03:21:19Z<p>Tell them you service requires a client-side install, then point them to Chrome.</p>
http://stackoverflow.com/questions/1008428/whats-the-best-tutorial-to-start-learning-ruby2What's the best tutorial to start learning Ruby? [closed]Jason Cohen2009-06-17T17:16:26Z2009-06-17T17:36:21Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/6806/what-is-the-best-way-to-learn-ruby">What is the best way to learn Ruby?</a> </p>
</blockquote>
<p>There's tutorials on Rails but it's hard to find good on-line tutorials for Ruby.</p>
<p>What's your favorite one?</p>
http://stackoverflow.com/questions/917453/calling-built-in-java-native-methods/917458#9174586Answer by Jason Cohen for Calling built-in java native methodsJason Cohen2009-05-27T19:03:22Z2009-05-27T19:03:22Z<p>No you can't. It's designed that way on purpose; you would override the API contracts if you could.</p>
<p>In any event, the standard library wrapper code is <em>very</em> slight and with JIT compilers you shouldn't notice any speed impact.</p>
<p>Furthermore, the <em>implementation</em> of those methods are not part of the API spec. What is "native" for one implementation of Java doesn't have to be for another.</p>
http://stackoverflow.com/questions/882954/how-can-i-sort-numbers-lexicographically/883110#8831102Answer by Jason Cohen for How can I sort numbers lexicographically?Jason Cohen2009-05-19T14:25:55Z2009-05-19T14:25:55Z<p>Since you mentioned Java is the actual language in question:</p>
<p>You don't need to convert to and from strings. Instead, define your own comparator and use that in the sort.</p>
<p>Specifically:</p>
<pre><code>Comparator<Integer> lexCompare = new Comparator<Integer>(){
int compareTo( Integer x, Integer y ) {
return x.toString().compareTo( y.toString() );
}
};
</code></pre>
<p>Then you can sort the array like this:</p>
<pre><code>int[] array = /* whatever */;
Arrays.sort( array, lexCompare );
</code></pre>
<p>(Note: The <code>int</code>/<code>Integer</code> mismatch works automatically through auto-boxing)</p>
http://stackoverflow.com/questions/883060/how-can-i-determine-if-a-date-is-between-two-dates-in-java/883077#8830778Answer by Jason Cohen for How can I determine if a date is between two dates in Java?Jason Cohen2009-05-19T14:19:53Z2009-05-19T14:19:53Z<p>Like so:</p>
<pre><code>Date min, max; // assume these are set to something
Date d; // the date in question
return d.compareTo(min) >= 0 && d.compareTo(max) <= 0;
</code></pre>
<p>You can use <code>></code> instead of <code>>=</code> and <code><</code> instead of <code><=</code> to exclude the endpoints from the sense of "between."</p>
http://stackoverflow.com/questions/837507/what-is-the-difference-between-code-reviews-and-code-inspections/840371#8403710Answer by Jason Cohen for What is the difference between code reviews and code inspections?Jason Cohen2009-05-08T15:24:35Z2009-05-08T15:24:35Z<p><strong>I wrote about this in my <a href="http://codereviewbook.com" rel="nofollow">book about peer code review</a>.</strong></p>
<p>In common language there is no difference at all, and this is the answer I would typically give.</p>
<p>In academic literature, an "inspection" generally means a full-document review with heavyweight process. The process will involve some if not all of the <a href="http://en.wikipedia.org/wiki/Fagan%5Finspection" rel="nofollow">Fagan Inspection</a> parts including a "Reading" phase (reviewers by themselves) and an "Inspection" phase (everyone together in a room). Each person has a role (e.g. Moderator, Author, Reader, Reviewer) with certain goals.</p>
<p>Having gotten some training in the Fagan Inspection myself, I can tell you that the Fagan method in particular is strict, even requiring code print-outs for example.</p>
<p>In practice, few people still perform these types of "inspections" due to the obvious time constraints. I have found that people who are successful with "review" tend towards lightweight techniques. </p>
<p>Lightweight "code review" techniques include just looking over someone's shoulder, automatically sending emails after code is checked into version control, pair programming, and using one of the tool specifically made for code review including my company's <a href="http://codecollab.com" rel="nofollow">Code Collaborator</a>, Atlassian's Crucible, and the open source CodeStriker and Review Board.</p>
<p>Although I personally believe that lightweight techniques are 80-90% as effective as formal inspections (see the book for data and studies), it is undeinable that they take a small fraction of the time (because a 2-hour meeting with 4 people is a person-day of time). So even if you think they're only half as effective, it's still a much smarter use of time.</p>
http://stackoverflow.com/questions/829915/is-it-possible-for-md5x-x/830024#8300241Answer by Jason Cohen for Is it possible for MD5(x) == x?Jason Cohen2009-05-06T14:58:10Z2009-05-06T14:58:10Z<p>The probability that there exists <em>no</em> such number <code>x</code> is <code>1/e</code> which is approximentally 37%. That assumes MD5s are randomly distributed.</p>
<p>Of course the true answer is either "no there isn't" or "here's one or more examples," but since currently no one knows the answer, this is the best thing you can say. </p>
http://stackoverflow.com/questions/73736/best-server-side-framework-for-heavy-ajax-java-application7Best server-side framework for heavy AJAX Java applicationJason Cohen2008-09-16T15:41:33Z2009-05-02T11:17:08Z
<p>There are <a href="http://java-source.net/open-source/web-frameworks" rel="nofollow">zillions</a> of Java web application frameworks.</p>
<p>95% were designed before the modern era of AJAX/DHTML-based development, and that means these new methods are grafted on rather than designed in.</p>
<p>Has any framework been built from the ground up with e.g. <a href="http://extjs.com/products/gxt/" rel="nofollow">GWT + Extjs</a> in mind?</p>
<p>If not, which framework has adapted best to the world of forms with dynamic numbers of fields and pages that morph client-side?</p>
http://stackoverflow.com/questions/774644/sql-server-2000-drop-column-with-constraints2SQL Server 2000 drop column with constraintsJason Cohen2009-04-21T21:13:59Z2009-04-28T23:12:11Z
<p>I have the same problem as described in <a href="http://stackoverflow.com/questions/314998/sql-server-2005-drop-column-with-constraints">this question</a>, but there it's SQL Server 2005 and the "accepted" answer doesn't work in SQL Server 2000.</p>
<p>Specifically: I'm trying to run <code>ALTER TABLE foo DROP COLUMN bar</code>, and it's failing because there's a "default constraint." Meaning, I have a default value on that column which SQL Server implements as a separate constraint that I need to delete first.</p>
<p>The problem is no name was given for the default constraint when the column was created, so I have to query the system tables to discover the (auto-generated) name of the constraint.</p>
<p>The answer given in that other question works for me in SQL Server 2005 but not in SQL Server 2000. I need the latter.</p>
<p>[UPDATE] I need a <em>query</em> that can answer the question "What is the name of the default constraint for column <code>bar</code> in table <code>foo</code>." Not a way for a human being to manually find the answer.</p>
http://stackoverflow.com/questions/785886/select-where-fieldvalue-how-its-done-in-mysql/785902#7859024Answer by Jason Cohen for SELECT WHERE field!=value how it's done in mysql?Jason Cohen2009-04-24T13:41:40Z2009-04-24T13:41:40Z<p>Yes, you can do exactly what you wrote, but use <code><></code> instead of <code>!=</code></p>
<p>Perhaps the answer depends on what "value" is? For example, for an integer 123 <code>value</code> would be <code>123</code>; for a string "foobar" <code>value</code> would be <code>'foobar'</code>.</p>
http://stackoverflow.com/questions/782117/sql-putting-two-single-quotes-around-datetime-fields-and-fails-to-insert-record/782129#7821290Answer by Jason Cohen for SQL putting two single quotes around datetime fields and fails to insert recordJason Cohen2009-04-23T14:55:30Z2009-04-23T14:55:30Z<p>Try this:</p>
<pre><code>'2009-04-30 00:00:00.000'
</code></pre>
<p>Note the single-quotes and "." instead of ":" for the milliseconds. Or try this:</p>
<pre><code>'2009-04-30 00:00:00'
</code></pre>
<p>To make sure it's not the milliseconds.</p>
http://stackoverflow.com/questions/409/what-is-your-favorite-coding-guidelines-checklist/778925#7789250Answer by Jason Cohen for What is your favorite Coding Guidelines Checklist?Jason Cohen2009-04-22T19:55:32Z2009-04-22T19:55:32Z<p>Use a simple process for determining your checklist <em>and</em> change your checklist over time!</p>
<p>Article: <a href="http://smartbear.com/white-paper.php?content=docs/articles/Checklists.html&pageToken=codecollab-docs" rel="nofollow">How to build a checklist</a>.</p>
http://stackoverflow.com/questions/768338/correct-evaluation-of-expression/768346#7683463Answer by Jason Cohen for Correct evaluation of expressionJason Cohen2009-04-20T13:52:27Z2009-04-20T13:52:27Z<p>You are correct, both in your rewriting and in your assertion that this attempt at conciseness is bad because it leads to confusion.</p>
http://stackoverflow.com/questions/760832/how-would-i-use-jquery-to-grab-the-contents-of-a-page-and-render-it-within-a-div/760849#7608491Answer by Jason Cohen for How would I use jQuery to grab the contents of a page and render it within a div?Jason Cohen2009-04-17T15:18:34Z2009-04-17T15:18:34Z<p>See <code>$.ajax()</code> to retrieve pages and access the content. <a href="http://docs.jquery.com/Ajax" rel="nofollow">Documentation here</a>.</p>
<p>Then use e.g. <code>$("#yourElementId").html( myHtmlContent )</code> to replace the HTML. <a href="http://docs.jquery.com/Manipulation" rel="nofollow">More doc here</a>.</p>
http://stackoverflow.com/questions/760819/is-there-a-limit-on-number-of-tcp-ip-connections-between-machines-on-linux/760839#7608396Answer by Jason Cohen for Is there a limit on number of tcp/ip connections between machines on linux?Jason Cohen2009-04-17T15:16:02Z2009-04-17T15:16:02Z<p>There is a limit, yes. See <code>ulimit</code>.</p>
<p>Also you need to consider the <code>TIMED_WAIT</code> state. Once a TCP socket is closed (by default) the port remains <em>occupied</em> in <code>TIMED_WAIT</code> status for 2 minutes. This value is tunable. This will also "run you out of sockets" even though they are closed.</p>
<p>Run <code>netstat</code> to see the <code>TIMED_WAIT</code> stuff in action.</p>
<p>P.S. The reason for <code>TIMED_WAIT</code> is to handle the case of packets arriving after the socket is closed. This can happen because packets are delayed or the other side just doesn't know that the socket has been closed yet. This allows the OS to silently drop those packets without a chance of "infecting" a different, unrelated socket connection.</p>
http://stackoverflow.com/questions/760781/getbytes-vs-getbinarystream-vs-getblob-for-getting-data-out-of-a-blob-column/760813#7608133Answer by Jason Cohen for getBytes vs getBinaryStream vs getBlob for getting data out of a BLOB columnJason Cohen2009-04-17T15:11:52Z2009-04-17T15:11:52Z<p>Generally you want to pick the stream-based methods (i.e. getBlob().getBinaryStream() or getBinaryStream()) rather than the byte-array method.</p>
<ol>
<li>Performance. The driver has a chance to incrementally pull bytes from the database.</li>
<li>Memory. You don't have to load all bytes at once, and in one contiguous block.</li>
</ol>
<p>Worst-case is the database (or JDBC driver) doesn't truly support streaming binary data, but then there's still no appreciable penalty for using the streaming methods.</p>
http://stackoverflow.com/questions/760740/why-does-this-code-compile-and-run-successfully-it-seems-it-should-get-an-index-o/760754#7607541Answer by Jason Cohen for Why does this code compile and run successfully it seems it should get an index out of bounds.Jason Cohen2009-04-17T15:01:36Z2009-04-17T15:01:36Z<p>Your first problem is that <code>objs</code> is <code>null</code> rather than allocated as an array. The first line should be:</p>
<pre><code>Object[] objs = new Object[2]; // array 2 elements long
</code></pre>
<p>Next, the "array length" is the total allocated size of the array, not the number of elements you inserted. So in this example, <code>objs.length</code> is always <code>2</code>.</p>
<p>Therefore your loop is wrong too.</p>
<p>The correct code would be this:</p>
<pre><code>Object[] objs = new Object[ strArray.length ]; // array of the right size.
for( int k = 0 ; k < strArray.length ; k++ )
{
objs[k] = strArray[k];
}
</code></pre>
http://stackoverflow.com/questions/203229/preventing-the-circumvention-of-copy-protection/203243#203243Comment by Jason Cohen on Preventing the Circumvention of Copy ProtectionJason Cohen2009-11-17T21:42:30Z2009-11-17T21:42:30Z@Tim -- Nice point, depending on your customers. For example at Smart Bear 95% of our sales are through purchase orders, so that doesn't work. But I like it!http://stackoverflow.com/questions/1609250/how-do-i-add-update-a-property-inside-an-msi-from-the-command-line/1609329#1609329Comment by Jason Cohen on How do I add/update a property inside an MSI from the command-line?Jason Cohen2009-10-22T19:17:10Z2009-10-22T19:17:10ZI thought that INSTALLS with a new property. I don't want to install, I need to MODIFY the MSI file.http://stackoverflow.com/questions/621350/free-country-city-database-for-sql-server/621361#621361Comment by Jason Cohen on free country, city database for sql serverJason Cohen2009-10-11T05:16:26Z2009-10-11T05:16:26Z+1 'cause that's right, but in my experience it very often has no idea where you're from. At least it tells you when it doesn't know. Seems to be better IDing residential things than commercial.http://stackoverflow.com/questions/1234443/easy-way-to-get-day-number-of-current-quarter/1234504#1234504Comment by Jason Cohen on Easy way to get day number of current quarter?Jason Cohen2009-08-05T17:03:34Z2009-08-05T17:03:34ZBecause months don't fall on that boundary. For example with Feb having 28 or 29 days, the first quarter has 89 or 90 days.http://stackoverflow.com/questions/98018/which-php-open-source-crm-should-i-use/694052#694052Comment by Jason Cohen on Which PHP open source CRM should I use?Jason Cohen2009-07-09T14:31:41Z2009-07-09T14:31:41Z+1, even though I also answered with SugerCRM. :-) You're right, vtiger is another good one to consider. Stackoverflow is great -- I can agree with you and have another answer at the same time.http://stackoverflow.com/questions/1074928/should-the-junit-message-state-the-condition-of-success-or-failure/1074946#1074946Comment by Jason Cohen on Should the JUnit message state the condition of success or failure?Jason Cohen2009-07-04T17:23:25Z2009-07-04T17:23:25ZI'm accepting this answer since it does summarize the consensus of the answers which is: (a) try not to use messages and (b) it doesn't matter.http://stackoverflow.com/questions/1074928/should-the-junit-message-state-the-condition-of-success-or-failure/1074946#1074946Comment by Jason Cohen on Should the JUnit message state the condition of success or failure?Jason Cohen2009-07-02T15:09:27Z2009-07-02T15:09:27ZI tend to agree, however you're not answering the question. <i>When</i> a message makes sense -- and sometimes it does -- how do you phrase it? I'm asking an API definition question, so saying "Don't use the API" is not an answer.http://stackoverflow.com/questions/981162/c-c-identify-the-digits-in-a-given-number/981172#981172Comment by Jason Cohen on C/C++ Identify the digits in a given number. Jason Cohen2009-06-11T14:44:19Z2009-06-11T14:44:19ZYeah, +1 your answer is good because it leads to the answer rather than just solving the homework, but please correct your numbers!http://stackoverflow.com/questions/917453/calling-built-in-java-native-methods/917458#917458Comment by Jason Cohen on Calling built-in java native methodsJason Cohen2009-05-28T19:58:39Z2009-05-28T19:58:39ZYou bet! Your critique of Java's API is fair enough! I suggest defining your own API and using the standard library behind the scenes. It's enough to just shield your code from the horrors; the rest (platform behavior, speed) won't be a problem.http://stackoverflow.com/questions/917411/is-it-possible-to-use-source-safe-over-the-internet/917434#917434Comment by Jason Cohen on Is it possible to use Source Safe over the internet?Jason Cohen2009-05-27T19:01:35Z2009-05-27T19:01:35Z+1, and VPN gives you access to other things anyway (internal Wiki?). Note that this is very slow, but that's mostly SourceSafe's fault.http://stackoverflow.com/questions/917411/is-it-possible-to-use-source-safe-over-the-internet/917421#917421Comment by Jason Cohen on Is it possible to use Source Safe over the internet?Jason Cohen2009-05-27T19:01:03Z2009-05-27T19:01:03Z+1 because that's the answer, but I wouldn't say "don't use it." Yes, SourceSafe itself is something you'll want to move off of, but if you're stuck you should use SourceoffSite.http://stackoverflow.com/questions/881880/open-source-alternative-to-mathworks-polyspaceComment by Jason Cohen on Open Source alternative to Mathworks Polyspace?Jason Cohen2009-05-24T14:05:49Z2009-05-24T14:05:49ZMight help if you named the language you need the tool for.http://stackoverflow.com/questions/771248/size-of-a-single-record-sql/850068#850068Comment by Jason Cohen on Size of a single Record ? SQLJason Cohen2009-05-11T21:23:56Z2009-05-11T21:23:56ZWish I could vote for you more than once. :-)http://stackoverflow.com/questions/837507/what-is-the-difference-between-code-reviews-and-code-inspections/837549#837549Comment by Jason Cohen on What is the difference between code reviews and code inspections?Jason Cohen2009-05-08T15:30:23Z2009-05-08T15:30:23ZI agree with you (and +1) that in practice there's no difference, but in the literature and for people who like to name different processes, there is a significant difference. See my answer for what that is.http://stackoverflow.com/questions/829725/what-source-control-should-we-use/829737#829737Comment by Jason Cohen on What source control should we useJason Cohen2009-05-06T15:03:35Z2009-05-06T15:03:35ZI'm not down-voting you, but I'm not voting for. Reason: He states that simplicity and a good GUI is more important than advanced features like branching. Given than constraint, Subversion is better for their team than a DVCS IMHO.