User Jason Terk - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:07:14Zhttp://stackoverflow.com/feeds/user/12582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1147830/understanding-sha-1-collision-weakness/1155033#11550330Answer by Jason Terk for Understanding sha-1 collision weaknessJason Terk2009-07-20T18:10:35Z2009-07-20T18:10:35Z<p>Keep in mind that hash function weaknesses depend also depend on the type of data you're talking about and what you're using the hash values for. The article you referred to only talks about general collisions. I.e. if I have one random string what does it take to find another random string that hashes to the same value. Getting from a collision between random data blobs to a useful collision (one where, for example, the two things that hash to the same value are both valid digital certificates seemingly signed by the same CA) is much harder. From the article: "I am unaware of a practical collision that has been found." The upshot of this is that SHA-1 is not broken for real world use - yet.</p>
http://stackoverflow.com/questions/115098/cvs-replace-head-with-a-branch3CVS: Replace HEAD with a branch.Jason Terk2008-09-22T14:20:13Z2008-09-22T14:33:50Z
<p>How do I replace the HEAD of a CVS repository with a branch?</p>
http://stackoverflow.com/questions/115098/cvs-replace-head-with-a-branch/115129#115129-2Answer by Jason Terk for CVS: Replace HEAD with a branch.Jason Terk2008-09-22T14:26:41Z2008-09-22T14:31:50Z<p>We solved this with the following process. In this example, the module we're working on is <code>test-module</code> and the branch that is replacing the HEAD is <code>test-branch</code>.</p>
<ol>
<li><p>Get up-to-date copies of both <code>test-branch</code> and the HEAD:</p>
<pre><code>cd ~/tmp
mkdir test-branch
cd test-branch
cvs co -r test-branch test-module
cd ~/tmp
mkdir head
cd head
cvs co test-module
cd ~/tmp
</code></pre></li>
<li><p>Use <code>rsync</code> to replace everything in our copy of the HEAD with the corresponding file from the branch and to delete files on the HEAD that no longer exist on the branch. In this command the <code>-C</code> switch tells rsync not to copy CVS related files and directories. Note the trailing <code>/</code> on <code>test-branch/</code>, it's important:</p>
<pre><code>rsync --progress --delete -rC test-branch/ head
</code></pre></li>
<li><p>Now that the rsync is complete our copy of the trunk is the same as the branch, but we need to tell CVS about the files that need to be deleted. We can't run <code>cvs up</code> in our HEAD directory because that will restore the deleted files. We solved the problem by running the following script from within the <code>head</code> directory.:</p>
<pre><code>#!/bin/bash
# Save the base working dir.
basedir=`pwd`
dirs=`find . -type d | sed /CVS/d`
for dir in $dirs
do
if [ -d $dir/CVS ]
then
cd $dir
files=`cvs -q status -l | \
sed -n "s/File: no file \(.*\) *Status: Needs Checkout/\1/p"`
if [ "$files" != "" ]
then
echo "Removing files $files."
cvs -q rm $files
fi
cd $basedir
fi
done
</code></pre></li>
</ol>
<p>4) Once that's done make sure everything works as expected and <code>cvs commit</code> your changes.</p>
http://stackoverflow.com/questions/104487/mod-rewrites-on-apache-change-all-urls/104596#1045961Answer by Jason Terk for Mod-rewrites on apache: change all URLsJason Terk2008-09-19T19:04:32Z2008-09-19T19:04:32Z<p>Mod rewrite can't do (potentially) boundless replaces like you want to do in the second part of your question. But check out the External Rewriting Engine at the bottom of the <a href="http://httpd.apache.org/docs/2.2/misc/rewriteguide.html" rel="nofollow">Apache URL Rewriting Guide</a>:</p>
<blockquote>
<p>External Rewriting Engine</p>
<p>Description:</p>
<p>A FAQ: How can we solve the FOO/BAR/QUUX/etc. problem? There seems no solution by the use of mod_rewrite...
Solution:</p>
<p>Use an external RewriteMap, i.e. a program which acts like a RewriteMap. It is run once on startup of Apache receives the requested URLs on STDIN and has to put the resulting (usually rewritten) URL on STDOUT (same order!).</p>
<pre><code>RewriteEngine on
RewriteMap quux-map prg:/path/to/map.quux.pl
RewriteRule ^/~quux/(.*)$ /~quux/${quux-map:$1}
#!/path/to/perl
# disable buffered I/O which would lead
# to deadloops for the Apache server
$| = 1;
# read URLs one per line from stdin and
# generate substitution URL on stdout
while (<>) {
s|^foo/|bar/|;
print $_;
}
</code></pre>
<p>This is a demonstration-only example and just rewrites all URLs /~quux/foo/... to /~quux/bar/.... Actually you can program whatever you like. But notice that while such maps can be used also by an average user, only the system administrator can define it.</p>
</blockquote>
http://stackoverflow.com/questions/95852/what-is-best-practice-for-large-file-transfer-sftp-or-assymetric-file-encryptio/95944#959443Answer by Jason Terk for What is best practice for large file transfer - SFTP or assymetric file encryption?Jason Terk2008-09-18T19:18:55Z2008-09-18T19:18:55Z<p>I believe you're talking about <a href="http://en.wikipedia.org/wiki/FTPS" rel="nofollow">FTP with SSL</a> when you say SFTP, and not the <a href="http://en.wikipedia.org/wiki/SSH_file_transfer_protocol" rel="nofollow">SFTP protocol that goes along with SSH</a>. Use SFTP (the SSH version) as it doesn't require an encrypted control channel and will work fine over NAT. The SFTP page I linked to lists a number of graphical SFTP clients at the bottom of the page.</p>
http://stackoverflow.com/questions/86515/does-anyone-know-the-cvs-command-line-options-to-get-the-details-of-the-last-chec/86551#865512Answer by Jason Terk for Does anyone know the CVS command line options to get the details of the last check in?Jason Terk2008-09-17T19:14:24Z2008-09-17T19:14:24Z<p>CVS doesn't group change sets like other version control systems do; each file has its own, independent version number and history. This is one of the deficiencies in CVS that prompts people to move to a newer VC.</p>
<p>That said, there are ways you could accomplish your goal. The easiest might be to add a post-commit hook to send email or log to a file. Then, at least, you can group a set of commits together by looking at the time the emails are sent and who made the change.</p>
http://stackoverflow.com/questions/75734/improving-sql-server-performance-on-vmware-under-linux/75800#758000Answer by Jason Terk for Improving SQL Server performance on VMware under LinuxJason Terk2008-09-16T19:06:01Z2008-09-16T19:06:01Z<p>Give the virtual machines more memory (configured in VMWare). SQL Server 2005 has a <a href="http://www.microsoft.com/sql/editions/standard/sysreqs.mspx" rel="nofollow">minimum requirement of 512M, with 1024M recommended</a>; it does not sound like you've given them that much.</p>
http://stackoverflow.com/questions/75652/is-there-a-firefox-add-on-to-use-vim-to-edit-textboxes/75672#7567211Answer by Jason Terk for Is there a Firefox add-on to use vim to edit textboxes?Jason Terk2008-09-16T18:52:06Z2008-09-16T18:52:06Z<p><a href="http://vimperator.mozdev.org/" rel="nofollow">Vimperator</a> makes Firefox act very much like VIM:</p>
<blockquote>
<p>Vimperator is a free browser add-on for Firefox, which makes it look and behave like the Vim text editor. It has similar key bindings, and you could call it a modal web browser, as key bindings differ according to which mode you are in.</p>
</blockquote>
http://stackoverflow.com/questions/74674/how-to-do-i-check-cpu-and-memory-usage-in-java/74770#747700Answer by Jason Terk for How to do I check CPU and Memory Usage in Java?Jason Terk2008-09-16T17:23:16Z2008-09-16T17:23:16Z<p>Check out the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Runtime.html" rel="nofollow">Runtime</a> class; it has methods to check memory usage of the JVM (as a whole). Specifically, <code>Runtime.getRuntime().totalMemory()</code> will tell you the number of bytes the JVM has allocated for itself. This will probably be greater than the amount of memory actually used for allocated objects, to get that figure use <code>Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()</code>.</p>
<p>Unfortunately there is no way to check the CPU usage from within the JVM using native Java. You'll need to call out to another command or write an extension using <a href="http://en.wikipedia.org/wiki/Java_Native_Interface" rel="nofollow">JNI</a> to do that.</p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/73165#731652Answer by Jason Terk for Which text/code editor on Linux is most similar to TextMate?Jason Terk2008-09-16T14:50:37Z2008-09-16T14:50:37Z<p><a href="http://www.gnu.org/software/emacs/" rel="nofollow">Emacs</a>, with its infinite extendability (via. Emacs Lisp) is most like TextMate in its ability to be modified for any purpose. A big plus is that the modification can be done on the fly, by writing new functions and loading them into Emacs while it is running. It has "modes" (packages of syntax highlighting, indentation, shortcuts and snippets) for most languages and many of the big frameworks (i.e. there is a mode specifically for <a href="http://www.rubyonrails.org/" rel="nofollow">Rails</a>). Emacs is cross platform - it runs on Windows, OS X and, of course, Linux (along with many other more obscure operating systems).</p>
<p>That all said, Emacs has a steep learning curve. The key bindings and general way of doing things takes a while to get used to. However, this is the case with any powerful piece of software, including TextMate and some of the other editors that have been mentioned (vi, I'm looking at you). And the work is worth the effort; Emacs has features that will make everything you do faster. Take the time, print out a "<a href="http://www.google.com/search?q=emacs+cheat+sheet" rel="nofollow">cheat sheet</a>," read about <a href="http://steve.yegge.googlepages.com/effective-emacs" rel="nofollow">useful tweaks to the defaults</a> and give Emacs a try.</p>