User Sam Saffron - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T19:48:05Zhttp://stackoverflow.com/feeds/user/17174http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1933866/efficient-ruby-lru-cache/1937922#19379220Answer by Sam Saffron for Efficient Ruby LRU cacheSam Saffron2009-12-21T02:53:17Z2009-12-21T02:53:17Z<p>Remaze has a reasonably well tested LRU Cache: See <a href="http://github.com/manveru/ramaze/blob/master/lib/ramaze/snippets/ramaze/lru%5Fhash.rb" rel="nofollow">http://github.com/manveru/ramaze/blob/master/lib/ramaze/snippets/ramaze/lru%5Fhash.rb</a></p>
<p>And there is also this: <a href="http://github.com/rubyworks/lrucache/blob/master/lib/lrucache.rb" rel="nofollow">http://github.com/rubyworks/lrucache/blob/master/lib/lrucache.rb</a> which should be more efficient than the remaze one for large caches. </p>
http://stackoverflow.com/questions/1937281/is-ferret-stable-enough-to-use-in-production0Is Ferret stable enough to use in production?Sam Saffron2009-12-20T22:17:51Z2009-12-20T22:50:21Z
<p>Ferret the ruby implementation of lucene is reasonably powerful, however online discussions in 2008 seemed to indicate ferret had many stability issues and would segfault regularly. There have been 10 or so commits this year so the project has pretty light activity. </p>
<p>Is <a href="http://github.com/dbalmain/ferret/commits/master" rel="nofollow">Ferret</a> stable enough to use in production?</p>
http://stackoverflow.com/questions/1203565/native-threads-in-ruby-1-9-1-whats-in-it-for-me1Native threads in Ruby 1.9.1, whats in it for me? Sam Saffron2009-07-29T23:00:16Z2009-12-19T04:19:50Z
<p>So, Ruby 1.9.1 is now <a href="http://www.ruby-lang.org/en/downloads/" rel="nofollow">declared stable</a>. Rails is supposed to work with it and slowly gems are being ported to it.</p>
<p>It has native threads.... and a global interpreter lock. </p>
<p>Since a GIL is in place, do native threads offer any kind of benefit over green threads in 1.9.1? </p>
http://stackoverflow.com/questions/437762/msbuild-or-nant-or-rake-tasks-for-wise-installation-studio1MSBuild or NAnt or Rake tasks for Wise Installation StudioSam Saffron2009-01-13T02:16:02Z2009-12-18T18:57:10Z
<p>Does anyone know of any MSBuild or NAnt tasks for controlling Wise Installation Studio? </p>
<p>I know, I should probably just use WiX but my current project is already in Wise and all I need to automate is updating of a product code, the upgrade section and a few bits of text. </p>
http://stackoverflow.com/questions/1927782/null-media-experience-when-playing-videos-from-a-plugin-in-windows-media-center0Null media experience when playing videos from a plugin in windows media centerSam Saffron2009-12-18T11:52:53Z2009-12-18T12:47:31Z
<p>In our windows media center plugin we use the PlayMedia api to play Videos. This is the documented API by MS for playing videos and is documented in the SDK.</p>
<p>Eg.</p>
<pre><code>AddInHost.Current.MediaCenterEnvironment.PlayMedia(Microsoft.MediaCenter.MediaType.Video, path, false)
</code></pre>
<p>In Vista, consistently, after this call we have a media experience ready for us in:
AddInHost.Current.MediaCenterEnvironment.MediaExperience </p>
<p>However in Window 7 stuff is a bit more <strong>erratic</strong> and is seems that MediaExperience goes to la-la land after a certain amount of time or certain random actions. </p>
<p>How do I consistently play a video and go full screen in Window 7? </p>
<p>Are there any workarounds to getting this API to work consistently 100% of the time. </p>
<p>It seems the remoting channel just dies or something. </p>
http://stackoverflow.com/questions/1918398/how-do-you-query-for-comments-stackoverflow-style3How do you query for comments stackoverflow style?Sam Saffron2009-12-16T22:55:38Z2009-12-17T01:02:14Z
<p>I saw this question on meta: <a href="http://meta.stackoverflow.com/questions/33101/how-does-so-query-comments">http://meta.stackoverflow.com/questions/33101/how-does-so-query-comments</a> </p>
<p>I wanted to set the record straight and ask the question in a proper technical way. </p>
<p>Say I have 2 tables:</p>
<pre>
Posts
id
content
parent_id (null for questions, question_id for answer)
Comments
id
body
is_deleted
post_id
upvotes
date
</pre>
<p><strong>Note</strong>: I think this is how the schema for SO is setup, answers have a parent_id which is the question, questions have null there. Questions and answers are stored in the same table.</p>
<p>How do I pull out comments stackoverflow style in a very efficient way with minimal round trips? </p>
<p>The rules:</p>
<ol>
<li>A single query should pull out all the comments needed for a page with multiple posts to render </li>
<li>Needs to only pull out 5 comments per answer, with pref for upvotes</li>
<li>Needs to provide enough information to inform the user there are more comments beyond the 5 that are there. (and the actual count - eg. 2 more comments) </li>
<li>Sorting is really hairy for comments, as you can see on the comments in this question. The rules are, display comments by date, <strong>HOWEVER</strong> if a comment has an upvote it is to get preferential treatment and be displayed as well at the bottom of the list. (this is nasty hard to express in sql) </li>
</ol>
<p>If any denormalizations make stuff better what are they? What indexes are critical?</p>
http://stackoverflow.com/questions/1901938/how-many-ruby-threads-is-too-many/1903769#19037691Answer by Sam Saffron for How many Ruby threads is too many?Sam Saffron2009-12-14T21:54:58Z2009-12-15T20:36:21Z<p>To me your problem sounds IO bound, so multi threading a single core may help out. </p>
<p>Most of the time in your main Ruby loop you will probably be waiting on tokyo tyrant and simple DB which are running in separate multi-threaded process. </p>
<p>So how many threads? Who knows? You are going to have to <strong>benchmark and measure</strong>.</p>
http://stackoverflow.com/questions/157998/whats-the-difference-between-sha-and-md5-in-php/818572#8185724Answer by Sam Saffron for What's the difference between SHA and MD5 (in PHP)?Sam Saffron2009-05-04T02:09:03Z2009-12-14T21:42:22Z<p><strong>Take home poin</strong>t: <a href="http://chargen.matasano.com/chargen/2007/9/7/enough-with-the-rainbow-tables-what-you-need-to-know-about-s.html" rel="nofollow">Use bcrypt for password storage</a>.</p>
<p><hr></p>
<p><a href="http://en.wikipedia.org/wiki/MD5" rel="nofollow">MD5</a> and <a href="http://en.wikipedia.org/wiki/Sha1" rel="nofollow">SHA1</a> are different hashing algorithms. MD5 "compresses" any stream of bytes into a 128 bit value. SHA1 compresses any stream of bytes into a 160 bit value. This compression only goes one way. If you give the hash of a random stream of bytes to someone , there is no theoretical way for them to go back to original stream of bytes. This is because of the <a href="http://en.wikipedia.org/wiki/Pigeonhole%5Fprinciple" rel="nofollow">pigeonhole principle</a>. You can not fit infinity into 128 bits.</p>
<p>The MD5 algorithm is <strong>slightly cheaper</strong> to compute, however MD5 is currently <a href="http://www.win.tue.nl/hashclash/fastcoll.pdf" rel="nofollow">very vulnerable</a> to <a href="http://en.wikipedia.org/wiki/Birthday%5Fattack" rel="nofollow">collision attacks</a>. Similarly SHA1 <strong>will most likely be very vulnerable</strong> to collision attacks in a few years since there are now some attacks, security experts consider <a href="http://ehash.iaik.tugraz.at/wiki/The%5FHash%5FFunction%5FZoo" rel="nofollow">SHA1 broken</a> since collision attacks are feasible. </p>
<h2>
For some uses MD5 and SHA1 are perfectly fine
</h2>
<p>Say for example you were looking for duplicate files in a file system. One (slightly inefficient way) would be to calculate a MD5 hash for every file in the file system. If you find 2 duplicate MD5 hashs, you have a duplicate file. This is a fact because there are no MD5 collisions in the wild, they have to be painstakingly generated. </p>
<h2>
For some uses MD5 and SHA1 are very bad hash functions to use.
</h2>
<p>(keep in mind that real world cases where collision attacks are bad are very elaborate). Say you are writing an email-signing-service that works like this:</p>
<ol>
<li>User sends you an email</li>
<li>You read the email</li>
<li>You hash the message and store the hash in your database. </li>
<li>Anyone can interrogate a public API on you site that takes as an input a body of text and returns a boolean that says weather you have seen this message before or not. The way that works is that you hash the message and compare it to the list of hashs in your db. </li>
</ol>
<p>If you were using MD5 someone malicious could generate two messages GOOD and EVIL, give you the good one to look up and later on pretend that you saw the EVIL message. </p>
<p>To overcome this, you could use a private salt <strong>or</strong> a stronger hashing function like SHA256. SHA2 based hashing functions are <a href="http://phprpms.sourceforge.net/mhash" rel="nofollow">available for PHP</a>.</p>
<p>Keep in mind MD5 and SHA1 are not even theoretically vulnerable to <a href="http://stackoverflow.com/questions/800685/which-hash-function-should-i-choose/817121#817121">preimage attacks</a>. </p>
<h2>
For some uses MD5 and SHA1 are the wrong tool for the job.
</h2>
<p>Take for example <strong>password storage</strong>. The trouble with MD5 and SHA1 are that they are really fast, they are designed that way. A fast computer could hash millions of passwords a second.</p>
<p>With password storage, you calculate hash of a password combined with a known random string (to impede rainbow attacks) and store that hash in the database.</p>
<p>The problem is, that if an attacker gets a dump of the database, he can, quite effectively guess passwords using brute-force. Every combination he tries only takes a fraction of millisecond, and he can try out hundreds of thousands of passwords a second.</p>
<p>To work around this issue, the <a href="http://www.openwall.com/phpass/" rel="nofollow">bcrypt</a> algorithm can be used, it is designed to be slow so the attacker will be heavily slowed down if attacking a system using bcrypt. Recently scrypt has made some headline and is considered by some to be more effective than bcrypt but I do not know of a .Net implementation.</p>
http://stackoverflow.com/questions/1871675/activerecord-select-is-messing-with-my-data-types0ActiveRecord :select is messing with my data typesSam Saffron2009-12-09T05:02:09Z2009-12-10T04:58:34Z
<p>So I have this very simple snippet.</p>
<pre><code>Topic.all(:select => 'count(*) as cnt')[0].cnt # behaves the same on all models
"500" # What, a string?
</code></pre>
<p>It seems that for some reason ActiveRecord is coercing the count to a string. In fact, I notice it coerces everything in the select list missing from the original object to a string. </p>
<p>Why does this happen? </p>
<p>What is a monkey patch to fix this so it works as expected?</p>
<p><strong>Please</strong>: I do not want to use Topic.count, I have some tricky grouping and selecting I need to do.</p>
<p>FYI using ActiveRecord 2.3.5 </p>
<p>Proof that the info is in the raw connection: </p>
<pre><code>ree-1.8.7-2009.10 > r = ActiveRecord::Base::connection.raw_connection.query(
"select 1").fetch_field.type == Mysql::Field::TYPE_LONGLONG
=> true
ree-1.8.7-2009.10 > r = ActiveRecord::Base::connection.raw_connection.query(
"select 'a'").fetch_field.type == Mysql::Field::TYPE_VAR_STRING
=> true
</code></pre>
<p>And when using the Stmt APIs you get stuff with the right types back automatically</p>
<pre><code>ree-1.8.7-2009.10 > s = ActiveRecord::Base::connection.raw_connection.stmt_init
=> #<Mysql::Stmt:0xbd083dc>
ree-1.8.7-2009.10 > s.prepare("select 1, 'hello'")
=> #<Mysql::Stmt:0xbd083dc>
ree-1.8.7-2009.10 > s.execute
=> #<Mysql::Stmt:0xbd083dc>
ree-1.8.7-2009.10 > s.fetch
=> [1, "hello"]
ree-1.8.7-2009.10 >
</code></pre>
<p>But ... the Active Record MySql Adapter uses the query API that returns strings. </p>
<pre><code>ree-1.8.7-2009.10 > cnn.query("select 1,2,3 union all select 1,2,3").each{|r| p r}
["1", "2", "3"]
["1", "2", "3"]
</code></pre>
http://stackoverflow.com/questions/320636/how-to-get-efficient-sql-server-deadlock-handling-in-c-with-ado/335669#3356690Answer by Sam Saffron for How to get efficient Sql Server deadlock handling in C# with ADO?Sam Saffron2008-12-02T22:18:49Z2009-12-09T01:33:22Z<p>First, I would review my SQL 2000 code and get to the bottom of why this deadlock is happening. Fixing this may be hiding a bigger problem (Eg. missing index or bad query). </p>
<p>Second I would review my architecture to confirm the deadlocking statement really needs to be called that frequently (Does <code>select count(*) from bob</code> have to be called 100 times a second?). </p>
<p>However, if you really need some deadlock support and have no errors in your SQL or architecture try something along the following lines. (Note: I have had to use this technique for a system supporting thousands of queries per second and would hit deadlocks quite rarely) </p>
<pre><code>int retryCount = 3;
bool success = false;
while (retryCount > 0 && !success)
{
try
{
// your sql here
success = true;
}
catch (SqlException exception)
{
if (exception.Number != 1205)
{
// a sql exception that is not a deadlock
throw;
}
// Add delay here if you wish.
retryCount--;
}
}
</code></pre>
http://stackoverflow.com/questions/471537/how-to-programmatically-retrieve-installer-version-from-visual-studio-setup-proje/471551#4715511Answer by Sam Saffron for How to programmatically retrieve installer version from Visual Studio Setup ProjectSam Saffron2009-01-23T01:39:04Z2009-12-08T19:38:55Z<p>In general you would look at the version of your current assembly for this kind of stuff, finding the MSI requires a registry search to find the MSI and then some interop to pull out the version using some COM interfaces. </p>
<p>To get started along those lines have a look here: <a href="http://www.codeproject.com/KB/cs/msiinterop.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/msiinterop.aspx</a>, it is a lot of work.</p>
<p>Instead just use: </p>
<pre><code>Assembly.GetExecutingAssembly().GetName().Version;
</code></pre>
<p>And make sure you match your application version with your msi version. </p>
http://stackoverflow.com/questions/54423/best-net-podcasts/985111#9851110Answer by Sam Saffron for Best .NET PodcastsSam Saffron2009-06-12T05:11:00Z2009-12-07T17:25:44Z<p>ASP.NET podcast, <a href="http://aspnetpodcast.com/CS11/" rel="nofollow">http://aspnetpodcast.com/CS11/</a>.</p>
http://stackoverflow.com/questions/1855242/net-4-makes-for-better-unit-testing-mocking-due-to-the-ability-to-monkey-patch/1855252#18552521Answer by Sam Saffron for .NET 4 makes for better unit testing/mocking due to the ability to monkey patch?Sam Saffron2009-12-06T12:21:14Z2009-12-06T13:05:03Z<p>The dynamic type support in .Net 4 does not really give you full monkey-patching support across the CLR type system. It give you another way to mock objects, but to be frank the current way is plenty good (see moq: <a href="http://code.google.com/p/moq/" rel="nofollow">http://code.google.com/p/moq/</a>)</p>
<p>With dynamic types, you lose intellisense, so an argument could be made that it is not advisable to dynamic for mocking.</p>
<p>The IronPython style interception will allow you to wrap up an existing object with your own desired behavior, but it will not allow you to tell the framework, to patch all Foo objects (from this point onwards) so Bar method will call Bar2 instead of Bar.</p>
<p>Keep in mind, with IronRuby and IronPython there are 2 separate type systems in play, there is the underlying CLR type system and the IronRuby/IronPython type system, when they call out to C# code there is marshalling going on. So even though IronRuby/IronPython can properly monkey patch their own type system, they can not use the same mechanism to patch the CLRs type system. </p>
<p>If you want monkey patching you need proper interception and that is <strong>hard</strong>: <a href="http://stackoverflow.com/questions/1331851/dynamic-interception-of-calls-in-net/1331869#1331869">http://stackoverflow.com/questions/1331851/dynamic-interception-of-calls-in-net/1331869#1331869</a></p>
http://stackoverflow.com/questions/1666094/has-anyone-successfully-deployed-a-rails-project-with-ruby-1-9-1/1855167#18551670Answer by Sam Saffron for Has anyone successfully deployed a Rails project with Ruby 1.9.1?Sam Saffron2009-12-06T11:49:17Z2009-12-06T11:49:17Z<p>I spent a day looking at the feasibility of this and am going to wait a while longer. </p>
<p>As it stands you can get stuff to mostly work but there are some seriously scary workarounds you will have to put in place to get stuff going. </p>
<ol>
<li>The MySql gem (version 2.8.1) returns all strings in ASCII encoding, this means trouble cause when you start appending them in your views you get all sorts of nasty errors. There is a work around but it involves compiling the gem with patches see: <a href="http://stackoverflow.com/questions/1344594/encoding-problems-in-rails-on-ruby-1-9-1/1854957#1854957">http://stackoverflow.com/questions/1344594/encoding-problems-in-rails-on-ruby-1-9-1/1854957#1854957</a></li>
<li>You need to force utf-8 encoding globally using hacks or env vars </li>
<li>Passenger 2.2.7 has trouble due to a bug in Ruby tempfile, so you have to hack at the source: <a href="http://stackoverflow.com/questions/1627582/ruby-1-9-1-p234-passenger-2-2-5-rails-2-3-stable-closed-stream-on-post-request">http://stackoverflow.com/questions/1627582/ruby-1-9-1-p234-passenger-2-2-5-rails-2-3-stable-closed-stream-on-post-request</a> </li>
<li>Some gems just do not work at all. </li>
</ol>
<p>As much as I would love the perf boost, I think it is a bit too bleeding edge at the moment, it is probably a good idea to wait till early mid 2010</p>
http://stackoverflow.com/questions/1344594/encoding-problems-in-rails-on-ruby-1-9-1/1854957#18549571Answer by Sam Saffron for Encoding problems in rails on ruby 1.9.1Sam Saffron2009-12-06T10:09:36Z2009-12-06T10:09:36Z<p>I just had this as well so I think its worth having the correct answer. </p>
<p>The 2.8.1 MySql gem is not utf-8 friendly, so it sometimes will return UTF strings and lie to Rails it that they are ASCII when in fact they are UTF-8 this makes things explode. </p>
<p>So: you can either monkey patch or get a compatible MySql gem. See: <a href="http://gnuu.org/2009/11/06/ruby19-rails-mysql-utf8/" rel="nofollow">http://gnuu.org/2009/11/06/ruby19-rails-mysql-utf8/</a> </p>
http://stackoverflow.com/questions/286334/finding-head-and-tail-events-in-sql-server-optimisation0Finding head and tail events in SQL Server (Optimisation) Sam Saffron2008-11-13T05:36:52Z2009-12-05T01:20:53Z
<p>I have a table of events, I need to find all tail events of type 1 and all head events of type 1. </p>
<p>So, for the set of events in this order [1, 1], 3, 1 ,4, 5, [1,1,1] the brackets denote head and tail events of type 1. </p>
<p>This is much better illustrated in SQL:</p>
<pre><code>drop table #event
go
create table #event (group_id int, [date] datetime, [type] int)
create index idx1 on #event (group_id, date)
insert into #event values (1, '2000-01-01', 1)
insert into #event values (1, '2000-01-02', 1)
insert into #event values (1, '2000-01-03', 3)
insert into #event values (1, '2000-01-04', 2)
insert into #event values (1, '2000-01-05', 1)
insert into #event values (2, '2000-01-01', 2)
insert into #event values (2, '2000-01-02', 2)
insert into #event values (2, '2000-01-03', 3)
insert into #event values (2, '2000-01-04', 2)
insert into #event values (2, '2000-01-05', 1)
insert into #event values (3, '2000-01-01', 1)
insert into #event values (3, '2000-01-02', 2)
insert into #event values (3, '2000-01-03', 1)
insert into #event values (3, '2000-01-04', 2)
insert into #event values (3, '2000-01-05', 2)
insert into #event values (4, '2000-01-01', 2)
insert into #event values (4, '2000-01-02', 2)
insert into #event values (4, '2000-01-03', 3)
insert into #event values (4, '2000-01-04', 1)
insert into #event values (4, '2000-01-05', 1)
go
select e1.* from #event e1
where (
not exists (
select top 1 1
from #event e2
where e1.group_id = e2.group_id
and e2.date < e1.date
and e2.type <> 1
) or not exists (
select top 1 1
from #event e2
where e1.group_id = e2.group_id
and e2.date > e1.date
and e2.type <> 1
)
)
and e1.type = 1
</code></pre>
<p>Expected results: </p>
<pre><code>1 2000-01-01 00:00:00.000 1
1 2000-01-02 00:00:00.000 1
1 2000-01-05 00:00:00.000 1
2 2000-01-05 00:00:00.000 1
3 2000-01-01 00:00:00.000 1
4 2000-01-04 00:00:00.000 1
4 2000-01-05 00:00:00.000 1
</code></pre>
<p>This all works just fine and returns my expected results, but it scans through the table 3 times. Is there any way to make this perform faster and reduce the number of table scans? </p>
http://stackoverflow.com/questions/531187/clearing-prioritized-overlapping-ranges-in-sql-server0Clearing prioritized overlapping ranges in SQL ServerSam Saffron2009-02-10T05:55:24Z2009-12-05T01:16:59Z
<p>This one is nasty complicated to solve. </p>
<p>I have a table containing date ranges, each date range has a priority. Highest priority means this date range is the most important. </p>
<p>Or in SQL</p>
<pre><code>create table #ranges (Start int, Finish int, Priority int)
insert #ranges values (1 , 10, 0)
insert #ranges values (2 , 5 , 1)
insert #ranges values (3 , 4 , 2)
insert #ranges values (1 , 5 , 0)
insert #ranges values (200028, 308731, 0)
Start Finish Priority
----------- ----------- -----------
1 10 0
2 5 1
3 4 2
1 5 0
200028 308731 0
</code></pre>
<p>I would like to run a series of SQL queries on this table that will result in the table having no overlapping ranges, it is to take the highest priority ranges over the lower ones. Split off ranges as required, and get rid of duplicate ranges. It allows for gaps.</p>
<p>So the result should be: </p>
<pre><code>Start Finish Priority
----------- ----------- -----------
1 2 0
2 3 1
3 4 2
4 5 1
5 10 0
200028 308731 0
</code></pre>
<p>Anyone care to give a shot at the SQL? I would also like it to be as efficient as possible. </p>
http://stackoverflow.com/questions/1841595/secure-password-hashing/1844539#18445392Answer by Sam Saffron for Secure Password HashingSam Saffron2009-12-04T02:45:56Z2009-12-04T02:45:56Z<p>Salt your hash with secure random salt of at least 128bits or longer, to avoid a rainbow attack and use <a href="http://stackoverflow.com/questions/873403/net-impl-of-bcrypt">BCrypt</a>. </p>
<p>To quote: <a href="http://chargen.matasano.com/chargen/2007/9/7/enough-with-the-rainbow-tables-what-you-need-to-know-about-s.html" rel="nofollow">http://chargen.matasano.com/chargen/2007/9/7/enough-with-the-rainbow-tables-what-you-need-to-know-about-s.html</a> </p>
<blockquote>
<p>The problem is that MD5 is fast. So are its modern competitors, like
SHA1 and SHA256. Speed is a design
goal of a modern secure hash, because
hashes are a building block of almost
every cryptosystem, and usually get
demand-executed on a per-packet or
per-message basis.</p>
<p><strong>Speed is exactly what you don’t want in a password hash function.</strong></p>
</blockquote>
<p>Fast password validation functions are a problem, cause they can be attacked using brute force. For BCrypt to become much faster it would require a break through in cryptography, something that is less likely to happen. Sure as CPU are getting faster so is BCrypt you have control over its slowness. </p>
http://stackoverflow.com/questions/800685/which-hash-function-should-i-choose8Which hash function should I choose?Sam Saffron2009-04-29T02:47:23Z2009-12-04T02:37:55Z
<p>The .NET framework ships with 6 different hashing algorithms: </p>
<ul>
<li>MD5: 16 bytes (Time to hash 500MB: 1462 ms)</li>
<li>SHA1: 20 bytes (1644 ms)</li>
<li>SHA256: 32 bytes (5618 ms)</li>
<li>SHA384: 48 bytes (3839 ms)</li>
<li>SHA512: 64 bytes (3820 ms)</li>
<li>RIPEMD: 20 bytes (7066 ms)</li>
</ul>
<p>Each of these functions performs differently; MD5 being the fastest and RIPEMD being the slowest.</p>
<p>MD5 has the advantage that it fits in the built-in Guid type. Which makes it really easy to use for identification.</p>
<p>MD5 however is vulnerable to <a href="http://en.wikipedia.org/wiki/Cryptographic%5Fhash%5Ffunction" rel="nofollow">collision attacks</a>, SHA1 is also vulnerable but to a lesser degree. </p>
<h3>
Under what conditions should I use which hashing algorithm?
</h3>
<p>Particular questions I'm really curious to see answered are: </p>
<ul>
<li><p>Is MD5 not to be trusted? Under normal situations when you use the MD5 algorithm with no malicious intent and no third party has any malicious intent would you expect ANY collisions (meaning two arbitrary byte[] producing the same hash)</p></li>
<li><p>How much better is RIPEMD than SHA1? (if its any better) its 5 times slower to compute but the hash size is the same as SHA1. </p></li>
<li><p>What are the odds of getting non-malicious collisions when hashing file-names (or other short strings)? (Eg. 2 random file-names with same MD5 hash) (with MD5 / SHA1 / SHA2xx) In general what are the odds for non-malicious collisions? </p></li>
</ul>
<p>This is the benchmark I used:</p>
<pre><code> static void TimeAction(string description, int iterations, Action func) {
var watch = new Stopwatch();
watch.Start();
for (int i = 0; i < iterations; i++) {
func();
}
watch.Stop();
Console.Write(description);
Console.WriteLine(" Time Elapsed {0} ms", watch.ElapsedMilliseconds);
}
static byte[] GetRandomBytes(int count) {
var bytes = new byte[count];
(new Random()).NextBytes(bytes);
return bytes;
}
static void Main(string[] args) {
var md5 = new MD5CryptoServiceProvider();
var sha1 = new SHA1CryptoServiceProvider();
var sha256 = new SHA256CryptoServiceProvider();
var sha384 = new SHA384CryptoServiceProvider();
var sha512 = new SHA512CryptoServiceProvider();
var ripemd160 = new RIPEMD160Managed();
var source = GetRandomBytes(1000 * 1024);
var algorithms = new Dictionary<string,HashAlgorithm>();
algorithms["md5"] = md5;
algorithms["sha1"] = sha1;
algorithms["sha256"] = sha256;
algorithms["sha384"] = sha384;
algorithms["sha512"] = sha512;
algorithms["ripemd160"] = ripemd160;
foreach (var pair in algorithms) {
Console.WriteLine("Hash Length for {0} is {1}",
pair.Key,
pair.Value.ComputeHash(source).Length);
}
foreach (var pair in algorithms) {
TimeAction(pair.Key + " calculation", 500, () =>
{
pair.Value.ComputeHash(source);
});
}
Console.ReadKey();
}
</code></pre>
http://stackoverflow.com/questions/800685/which-hash-function-should-i-choose/817121#8171217Answer by Sam Saffron for Which hash function should I choose?Sam Saffron2009-05-03T13:59:15Z2009-12-04T02:37:55Z<h2>
All hash functions are "broken"
</h2>
<p>The <a href="http://en.wikipedia.org/wiki/Pigeonhole%5Fprinciple" rel="nofollow">pigeonhole principle</a> says that try as hard as you will you can not fit more than 2 pigeons in 2 holes (unless you cut the pigeons up). Similarly you can not fit 2^128 + 1 numbers in 2^128 slots. All hash functions result in a hash of finite size, this means that you can always find a collision if you search through "finite size" + 1 sequences. It's just not feasible to do so. Not for MD5 and not for <a href="http://www.schneier.com/skein.html" rel="nofollow">Skein</a>.</p>
<h2>
MD5/SHA1/Sha2xx have no chance collisions
</h2>
<p>All the hash functions have collisions, its a fact of life. Coming across these collisions by accident is the equivalent of <strong>winning the intergalactic lottery</strong>. That is to say, <a href="http://stackoverflow.com/questions/201705/how-many-random-elements-before-md5-produces-collisions/288519#288519">no one wins the intergalactic lottery</a>, its just not the way the lottery works. You will not come across an accidental MD5/SHA1/SHA2XXX hash, EVER. Every word in every dictionary, in every language, hashes to a different value. Every path name, on every machine in the entire planet has a different MD5/SHA1/SHA2XXX hash. How do I know that, you may ask. Well, as I said before, no one wins the intergalactic lottery, ever. </p>
<h2>
But ... MD5 is broken
</h2>
<p><strong>Sometimes the fact that its broken does not matter</strong>. </p>
<p>As it stands there are no known <a href="http://en.wikipedia.org/wiki/Preimage%5Fattack" rel="nofollow">pre-image or second pre-image attacks</a> on MD5.</p>
<p>So what is so broken about MD5, you may ask? It is possible for a third party to generate 2 messages, one of which is EVIL and another of which is GOOD that both hash to the same value. (<a href="http://en.wikipedia.org/wiki/Birthday%5Fattack" rel="nofollow">Collision attack</a>)</p>
<p>Nonetheless, the current RSA recommendation is not to use MD5 if you need pre-image resistance. People tend to err on the side of caution when it comes to security algorithms. </p>
<h2>So what hash function should I use in .NET?</h2>
<ul>
<li>Use MD5 if you need the speed/size and don't care about birthday attacks or pre-image attacks. </li>
</ul>
<p>Repeat this after me, <strong>there are no chance MD5 collisions</strong>, malicious collisions can be carefully engineered. Even though there are no known pre-image attacks to date on MD5 the line from the security experts is that MD5 should not be used where you need to defend against pre-image attacks. <strong>SAME goes for SHA1</strong>. </p>
<p>Keep in mind, not all algorithms need to defend against pre-image or collision attacks. Take the trivial case of a first pass search for duplicate files on your HD. </p>
<ul>
<li>Use SHA2XX based function if you want a cryptographically secure hash function. </li>
</ul>
<p>No one ever found any SHA512 collision. EVER. They have tried really hard. For that matter no one ever found any SHA256 or 384 collision ever. . </p>
<ul>
<li>Don't use SHA1 or RIPEMD unless its for an interoperability scenario. </li>
</ul>
<p>RIPMED has not received the same amount of scrutiny that SHAX and MD5 has received. Both SHA1 and RIPEMD are volunarable to birthday attacks. They are both slower than MD5 on .NET and come in the awkward 20 byte size. Its pointless to use these functions, forget about them. </p>
<p>SHA1 collision attacks are down to 2^52, its not going to be too long until SHA1 collisions are out in the wild. </p>
<p>For up to date information about the various hash functions have a look at <a href="http://ehash.iaik.tugraz.at/wiki/The%5FHash%5FFunction%5FZoo" rel="nofollow">the hash function zoo</a>.</p>
<h2>But wait there is more</h2>
<p>Having a <strong>fast</strong> hash function can be a curse. For example: a very common usage for hash functions is password storage. Essentially, you calculate hash of a password combined with a known random string (to impede rainbow attacks) and store that hash in the database. </p>
<p>The problem is, that if an attacker gets a dump of the database, he can, quite effectively guess passwords using brute-force. Every combination he tries only takes a fraction of millisecond, and he can try out hundreds of thousands of passwords a second. </p>
<p>To work around this issue, the <a href="http://stackoverflow.com/questions/873403/net-impl-of-bcrypt">bcrypt</a> algorithm can be used, it is designed to be slow so the attacker will be heavily slowed down if attacking a system using bcrypt. Recently <a href="http://www.daemonology.net/blog/2009-05-09-scrypt-key-derivation.html" rel="nofollow">scrypt</a> has made some headline and is considered by some to be more effective than bcrypt but I do not know of a .Net implementation. </p>
http://stackoverflow.com/questions/1109695/installing-ruby-1-9-1-on-ubuntu/1838121#18381211Answer by Sam Saffron for Installing Ruby 1.9.1 on Ubuntu?Sam Saffron2009-12-03T06:43:12Z2009-12-03T06:57:10Z<p>Save yourself the headache and use RVM (<a href="http://rvm.beginrescueend.com/" rel="nofollow">Ruby Version Manager</a>)</p>
http://stackoverflow.com/questions/100235/looking-for-a-simple-standalone-persistent-dictionary-implementation-in-c4Looking for a simple standalone persistent dictionary implementation in C#Sam Saffron2008-09-19T07:25:32Z2009-12-03T01:44:54Z
<p>For an open source project I am looking for a good, simple implementation of a Dictionary that is backed by a file. Meaning, if an application crashes or restarts the dictionary will keep its state. I would like it to update the underlying file every time the dictionary is touched. (Add a value or remove a value). A FileWatcher is not required but it could be useful. </p>
<pre><code>class PersistentDictionary<T,V> : IDictionary<T,V>
{
public PersistentDictionary(string filename)
{
}
}
</code></pre>
<p>Requirements: </p>
<ul>
<li>Open Source, with no dependency on native code (no sqlite) </li>
<li>Ideally a very short and simple implementation</li>
<li>When setting or clearing a value it should not re-write the entire underlying file, instead it should seek to the position in the file and update the value.</li>
</ul>
<p><strong>Similar Questions</strong> </p>
<ul>
<li><a href="http://stackoverflow.com/questions/108435/persistent-binary-tree-hash-table-in-net">Persistent Binary Tree / Hash table in .Net</a></li>
<li><a href="http://stackoverflow.com/questions/408401/disk-backed-dictionary-cache-for-c">Disk backed dictionary/cache for c#</a></li>
</ul>
http://stackoverflow.com/questions/1823615/quick-and-dirty-reflection-based-xml-serializer0Quick and dirty reflection based XML Serializer Sam Saffron2009-12-01T02:18:36Z2009-12-02T00:27:21Z
<p>Does anyone know of a quick and dirty implementation of a reflection based XML serializer? </p>
<p>I am looking to rip out my XML serialization code due to the horrid start up time. <strong>I know about sgen.exe</strong> but do not want to complicate my build and packaging process. </p>
<p>We use the XML serialization at startup to pull out configuration values from a file, the reflection hit would be minimal, we are talking 20-40 values max. We do not need anything super fast here. I just do not want to take the hit for compiling the XML serializer that seems to be <strong>500-700ms</strong> in my case.</p>
<p>I also would like control of the code, cause I would like very robust error handling. </p>
<p>I know about protobuf.net, but it may be a bit of an overkill. Looking at data contracts they may be a tad limited and require quite a lot of decoration I would like to avoid. </p>
http://stackoverflow.com/questions/1823615/quick-and-dirty-reflection-based-xml-serializer/1829929#18299290Answer by Sam Saffron for Quick and dirty reflection based XML Serializer Sam Saffron2009-12-02T00:27:21Z2009-12-02T00:27:21Z<p><a href="http://code.google.com/p/videobrowser/source/browse/trunk/MediaBrowser/Library/Persistance/XmlSettings.cs?spec=svn1660&r=1660" rel="nofollow">I wrote my own</a>... feel free to use it if anyone has similar specs the code it under the BSD license. </p>
<p>Here are some sample tests, it generates lovely XML just like the XML serializer only much faster for config file scenarios where sgen is not an option: </p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using NUnit.Framework;
using MediaBrowser.Library.Persistance;
namespace TestMediaBrowser.Unit {
[TestFixture]
public class TestXmlSettings {
enum Farts {
Smelly,
SilentButDeadly
}
class Monster {
public Weapon Weapon;
}
class Weapon {
public int LaserCount { get; set; }
}
class Farter {
public Farts Smell = Farts.Smelly;
}
class Group {
public List<Person> People;
}
class Person {
public int Age = 1;
public string Name = "Default";
public bool Happy = true;
public DateTime Birthdate = DateTime.Now;
}
class Account {
public Person Person;
public int Balance;
}
const string CONFIG_FILE = "test.config";
private void ClearConfig() {
if (File.Exists(CONFIG_FILE)) {
File.Delete(CONFIG_FILE);
}
}
public void TestProperty() {
ClearConfig();
Monster monster = new Monster();
XmlSettings<Monster> settings = XmlSettings<Monster>.Bind(monster, CONFIG_FILE);
monster.Weapon = new Weapon();
monster.Weapon.LaserCount = 99;
settings.Write();
monster = new Monster();
settings = XmlSettings<Monster>.Bind(monster, CONFIG_FILE);
Assert.AreEqual(monster.Weapon.LaserCount, 99);
}
public void TestEnum() {
ClearConfig();
Farter farter = new Farter();
XmlSettings<Farter> settings = XmlSettings<Farter>.Bind(farter, CONFIG_FILE);
farter.Smell = Farts.SilentButDeadly;
settings.Write();
farter = new Farter();
settings = XmlSettings<Farter>.Bind(farter, CONFIG_FILE);
Assert.AreEqual(farter.Smell, Farts.SilentButDeadly);
}
[Test]
public void TestList() {
ClearConfig();
Group group = new Group();
group.People = new List<Person>();
group.People.Add(new Person());
group.People.Add(new Person());
XmlSettings<Group> settings = XmlSettings<Group>.Bind(group, CONFIG_FILE);
settings.Write();
group = new Group();
settings = XmlSettings<Group>.Bind(group, CONFIG_FILE);
Assert.AreEqual(group.People.Count, 2);
}
[Test]
public void BasicValueTypeTest() {
ClearConfig();
var person = new Person();
XmlSettings<Person> settings = XmlSettings<Person>.Bind(person, CONFIG_FILE);
person.Age = 3;
person.Name = "Sam";
person.Happy = false;
person.Birthdate = DateTime.Today;
settings.Write();
person = new Person();
settings = XmlSettings<Person>.Bind(person, CONFIG_FILE);
Assert.AreEqual(person.Age, 3);
Assert.AreEqual(person.Name, "Sam");
Assert.AreEqual(person.Happy, false);
Assert.AreEqual(person.Birthdate, DateTime.Today);
}
[Test]
public void NestedObjectTypeTest() {
ClearConfig();
var account = new Account();
var settings = XmlSettings<Account>.Bind(account, CONFIG_FILE);
var person = new Person();
person.Age = 3;
person.Name = "Sam";
person.Happy = false;
person.Birthdate = DateTime.Today;
account.Person = person;
account.Balance = 999;
settings.Write();
account = new Account();
settings = XmlSettings<Account>.Bind(account, CONFIG_FILE);
person = account.Person;
Assert.AreEqual(account.Balance, 999);
Assert.AreEqual(person.Age, 3);
Assert.AreEqual(person.Name, "Sam");
Assert.AreEqual(person.Happy, false);
Assert.AreEqual(person.Birthdate, DateTime.Today);
}
}
}
</code></pre>
http://stackoverflow.com/questions/196415/date-ranges-in-t-sql2Date ranges in T/SQLSam Saffron2008-10-13T00:42:18Z2009-12-01T06:30:19Z
<p>For a current project I am working I need to return an aggregate report based on date ranges. </p>
<p>I have 3 types of reports, yearly, monthly and daily.</p>
<p>To assist in returning this report I need a function that will return all of the sub-ranges of datetimes, within a big range.</p>
<p>So for example if I as for all the daily ranges between '2006-01-01 11:10:00' and '2006-01-05 08:00:00' I would expect the following results.</p>
<pre><code>select *
from dbo.fnGetDateRanges('d', '2006-01-01 11:10:00', '2006-01-05 08:00:00')
2006-01-01 11:10:00.000, 2006-01-02 00:00:00.000
2006-01-02 00:00:00.000, 2006-01-03 00:00:00.000
2006-01-03 00:00:00.000, 2006-01-04 00:00:00.000
2006-01-04 00:00:00.000, 2006-01-05 00:00:00.000
2006-01-05 00:00:00.000, 2006-01-05 08:00:00.000
</code></pre>
<p>For the yearly range of '2006-01-01 11:10:00' to '2009-05-05 08:00:00', I would expect.</p>
<pre><code>select *
from dbo.fnGetDateRanges('y', '2006-01-01 11:10:00', '2009-05-05 08:00:00')
2006-01-01 11:10:00.000, 2007-01-01 00:00:00.000
2007-01-01 00:00:00.000, 2008-01-01 00:00:00.000
2008-01-01 00:00:00.000, 2009-01-01 00:00:00.000
2009-01-01 00:00:00.000, 2009-05-05 08:00:00.000
</code></pre>
<p>How would I implement this function? </p>
http://stackoverflow.com/questions/1331851/dynamic-interception-of-calls-in-net/1331869#13318698Answer by Sam Saffron for Dynamic interception of calls in .NETSam Saffron2009-08-26T01:13:13Z2009-11-30T13:27:34Z<p>There is nothing built-in that allows you to intercept an object that you can not control instantiation of. Similarly, there will be no new facilities for this in the upcoming .net 4.0. </p>
<p>If you can control instantiation:</p>
<ol>
<li>If your object can be MarshalByRef you can use <a href="http://code.google.com/p/videobrowser/source/browse/trunk/MediaBrowser/Library/Extensions/Interceptor.cs" rel="nofollow">RealProxy</a>. </li>
<li>You could use quite a few IOC containers, eg. <a href="http://code.google.com/p/linfu/" rel="nofollow">LinFu</a>, <a href="http://www.castleproject.org/dynamicproxy/index.html" rel="nofollow">Castle Dynamic Proxy</a> </li>
<li>You could use a tool like <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a>, <a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono Cecil</a> or <a href="http://stackoverflow.com/questions/1380380/microsoft-cci-resources-references-for-writing-compilers">Microsoft CCI</a> to rewrite your assemblies with the interceptions as a post compile step. </li>
</ol>
<p>If you can not control instantiation</p>
<ol>
<li>You can use <a href="http://blogs.msdn.com/jmstall/archive/2004/10/05/237954.aspx" rel="nofollow">ICorDebug</a> - the .Net debugging APIs which are really hard to use and heavy.</li>
<li>You can use <a href="http://blogs.msdn.com/jmstall/archive/2004/10/22/246151.aspx" rel="nofollow">ICorProfiler</a> - the .Net profiling APIs where are also pretty complicated to use. </li>
</ol>
<p>Alternatively, you could look at a dynamic language like IronRuby, which has a built-in <code>alias_method</code> and <code>define_method</code> goodness (which allows you to redefine anything), so interception baked in. </p>
http://stackoverflow.com/questions/1816985/simulating-a-global-revision-number-with-git5Simulating a global revision number with gitSam Saffron2009-11-29T22:22:11Z2009-11-30T00:14:31Z
<p>How would I go about simulating a global increasing revision number for every commit in the git main line? </p>
<p>So, after I commit I would like a script to run increases a number somewhere. </p>
<p>This will allow me to tell my customers easily that X feature was fixed in git revision XYZ. </p>
<p>I am looking for a practical sample script that is robust enough to handle pushes and merges to a degree. </p>
http://stackoverflow.com/questions/775665/determining-the-parent-process-id-from-c1Determining the parent process id from C#Sam Saffron2009-04-22T04:23:34Z2009-11-28T18:12:08Z
<p>I would like to determine the process id of the parent process for an arbitrary process in Windows. </p>
<p>I need this method to work on both x64 and x32. </p>
<p>Any ideas / sample code to make this happen. System.Diagnositics.Process does not include this info. </p>
<p>I am a bit worried about using the toolhelp apis cause they are 32 bit specific. </p>
<p>Related info: </p>
<ul>
<li><a href="http://www.codeproject.com/KB/threads/ParentPID.aspx" rel="nofollow">C++ implementation</a></li>
<li><a href="http://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=27395" rel="nofollow">Some thing I googled</a> (the interop there is not x64 freindly) </li>
</ul>
<p>The Performance counter solution in <a href="http://msdn.microsoft.com/en-us/netframework/aa569609.aspx" rel="nofollow">the FAQ</a>:
(PerformanceCounter("Process", "Creating Process ID", procName);) scares me, cause it does not allow you to enter a process id, instead you specify a process by name so it all can go pear shape when you have multiple children. </p>
http://stackoverflow.com/questions/624614/wix-changes-required-to-streamline-net-3-5-installation-for-vista-and-above-ma1WiX changes required to streamline .NET 3.5 installation for Vista (and above) machines.Sam Saffron2009-03-09T00:21:20Z2009-11-25T22:34:53Z
<p>We have decided to take the plunge and require that our users have .NET 3.5 installed before they can use our media center plug-in.</p>
<p>I want to make sure the install experience is as smooth as possible and that our installer stays small. </p>
<p>What changes do I need to make to my <a href="http://code.google.com/p/videobrowser/source/browse/trunk/MediaBrowser/Setup/Setup.wxs" rel="nofollow">WiX file</a> to support the following scenarios? Code examples would be much appreciated. </p>
<ul>
<li>User has .Net framework 3.0 installed, interactive install. </li>
</ul>
<p><strong>Desired Behavior</strong>: User is prompted with a window that tells her she needs a new version of the framework, if she accepts, dotNetFx35setup.exe (2.7 MB) is downloaded, and then executed. Finally, the installation proceeds. </p>
<ul>
<li>User has .Net framework 3.0 installed, non-interactive install.</li>
</ul>
<p><strong>Background</strong>: To facilitate auto-updates from within media center, we may execute "msiexec.exe /qb /i mediabrowser.msi" if a user elect to upgrade an existing version. </p>
<p><strong>Desired behavior</strong>: User is prompted with a window that tells her she needs a new version of the framework, if she accepts, dotNetFx35setup.exe (2.7 MB) is downloaded, and then executed. Finally, the installation proceeds silently. </p>
<p>Are there any other open source projects that implement something along these lines? </p>
<p><strong>Related question</strong>: Is <a href="http://stackoverflow.com/questions/623213/is-net-3-5-a-reasonable-pre-requisite-for-a-media-center-plugin">.NET 3.5 a reasonable pre-requisite for a media center plugin?</a></p>
http://stackoverflow.com/questions/1793180/checking-for-nulls-on-collections/1793238#17932381Answer by Sam Saffron for Checking for nulls on collectionsSam Saffron2009-11-24T22:01:15Z2009-11-24T22:11:38Z<p>Count will not work on null objects.</p>
<p>Here is some boiler plate code you can use: </p>
<pre><code>Debug.Assert(collection != null);
Debug.Assert(collection.Count > 0);
if (collection == null) {
throw new ArgumentNullException("collection");
}
if (collection.Count == 0) {
throw new ArgumentException("collection should have at least one member");
}
</code></pre>
<p>Asserting is really important and should be practiced by more .Net devs. </p>
<p>Crashing early can be key to writing robust code. If there are any parameters that a method you are writing should NEVER get passed, it may be better to crash at that point as opposed to writing corrupt data to the DB. </p>
<p>You also need a robust logging mechanism in place so you can log all those nasty things that are going on. </p>
http://stackoverflow.com/questions/1938718/itunes-memory-useComment by Sam Saffron on iTunes memory useSam Saffron2009-12-21T07:44:01Z2009-12-21T07:44:01Zmy 3 guesses, people will close this, itunes pages stuff to disk, your are using itunes on a mac cause on windows it suckshttp://stackoverflow.com/questions/1937281/is-ferret-stable-enough-to-use-in-production/1937327#1937327Comment by Sam Saffron on Is Ferret stable enough to use in production?Sam Saffron2009-12-20T22:43:01Z2009-12-20T22:43:01ZActually the github commits are pretty hard evidence (10 commits a year) vs over 300 a year for sphinx <a href="http://www.sphinxsearch.com/downloads.html" rel="nofollow">sphinxsearch.com/downloads.html</a>http://stackoverflow.com/questions/1933866/efficient-ruby-lru-cacheComment by Sam Saffron on Efficient Ruby LRU cacheSam Saffron2009-12-20T11:26:27Z2009-12-20T11:26:27Zfor some ideas see: <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/LinkedHashMap.html" rel="nofollow">java.sun.com/j2se/1.4.2/…</a> also mongodb has capped collection similarly you can do this stuff with redis. assuming you are looking for a built in ruby solution though http://stackoverflow.com/questions/1933866/efficient-ruby-lru-cacheComment by Sam Saffron on Efficient Ruby LRU cacheSam Saffron2009-12-20T11:24:03Z2009-12-20T11:24:03ZAre you trying for minimal memory use or minimal cpu use, how often are you dropping stuff out of the LRU cache? You can either go the scavenger approach or a double linked list with a paired hash.http://stackoverflow.com/questions/1921322/sqlite3-problem-since-rails-2-3-5-updateComment by Sam Saffron on SQLite3 problem since Rails 2.3.5 updateSam Saffron2009-12-17T12:33:08Z2009-12-17T12:33:08Z<a href="http://stackoverflow.com/questions/1350359/snow-leopard-ruby-on-rails-sqlite3-issue" rel="nofollow" title="snow leopard ruby on rails sqlite3 issue">stackoverflow.com/questions/1350359/…</a> my recommendation would be to install rvm, its much better anyway http://stackoverflow.com/questions/1921437/is-it-legal-to-using-mysql-in-commercial-environmentComment by Sam Saffron on Is it legal to using MySQL in commercial environment?Sam Saffron2009-12-17T12:31:01Z2009-12-17T12:31:01Zyes it is , read the license http://stackoverflow.com/questions/1921091/thread-safe-sql-transaction-how-to-lock-a-specific-row-during-a-transaction/1921395#1921395Comment by Sam Saffron on Thread safe sql transaction, how to lock a specific row during a transaction ?Sam Saffron2009-12-17T12:27:29Z2009-12-17T12:27:29Zshoud perhaps expand that an updlock may take a page lock or a row lock depending on all sort of factors. http://stackoverflow.com/questions/1921091/thread-safe-sql-transaction-how-to-lock-a-specific-row-during-a-transaction/1921395#1921395Comment by Sam Saffron on Thread safe sql transaction, how to lock a specific row during a transaction ?Sam Saffron2009-12-17T12:25:50Z2009-12-17T12:25:50Z+1 this is the correct answerhttp://stackoverflow.com/questions/1918398/how-do-you-query-for-comments-stackoverflow-style/1918530#1918530Comment by Sam Saffron on How do you query for comments stackoverflow style?Sam Saffron2009-12-16T23:40:50Z2009-12-16T23:40:50ZI agree with your sentiments here, my implementation would be actually a slight optimization, I would store comment_count in the posts table. on the client side pull out all the posts for rendering, whizz through them and then do a select * from comments where post_id in (id1,id2,id3) - for all posts with more than 0 comments) this makes stuff ultra simple and very efficient for the general case http://stackoverflow.com/questions/1918398/how-do-you-query-for-comments-stackoverflow-styleComment by Sam Saffron on How do you query for comments stackoverflow style?Sam Saffron2009-12-16T23:21:23Z2009-12-16T23:21:23Z@Ponies, sorting of comments is not a trivial (votes, date) it inserts the upvoted comments at the bottom of the list, see comments on this question. http://stackoverflow.com/questions/1918398/how-do-you-query-for-comments-stackoverflow-styleComment by Sam Saffron on How do you query for comments stackoverflow style?Sam Saffron2009-12-16T23:08:25Z2009-12-16T23:08:25Zlets keep it real and assume sql 2005. keep in mind hierarchical queries can be performance hogs, this is a performance oriented question (will retag)http://stackoverflow.com/questions/1918398/how-do-you-query-for-comments-stackoverflow-styleComment by Sam Saffron on How do you query for comments stackoverflow style?Sam Saffron2009-12-16T23:05:28Z2009-12-16T23:05:28Z@Ponies fixed [10 chars]http://stackoverflow.com/questions/1906264/c-how-do-i-generate-a-unique-guidComment by Sam Saffron on C#: How do I generate a unique GUID?Sam Saffron2009-12-15T09:41:33Z2009-12-15T09:41:33Z<a href="http://stackoverflow.com/questions/1720084/how-to-create-guid" rel="nofollow" title="how to create guid">stackoverflow.com/questions/1720084/…</a>http://stackoverflow.com/questions/157998/whats-the-difference-between-sha-and-md5-in-phpComment by Sam Saffron on What's the difference between SHA and MD5 (in PHP)?Sam Saffron2009-12-14T21:43:45Z2009-12-14T21:43:45ZExpanded my answer to include bcrypt which is absolutely what you should be using.http://stackoverflow.com/questions/1841595/secure-password-hashing/1844539#1844539Comment by Sam Saffron on Secure Password HashingSam Saffron2009-12-11T00:54:21Z2009-12-11T00:54:21ZSometimes I wonder if people read my answers before downvoting them