User zaca - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T18:17:18Zhttp://stackoverflow.com/feeds/user/3031http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/179162/hashtable-implementation-for-delphi-5/179181#1791812Answer by zaca for Hashtable implementation for Delphi 5zaca2008-10-07T15:58:46Z2008-10-07T15:58:46Z<ul>
<li><a href="http://www.benya.com/code/collections/hashtable.html" rel="nofollow">http://www.benya.com/code/collections/hashtable.html</a></li>
<li><a href="http://delphi.blue-aura.co.uk/forum/showthread.php?t=816" rel="nofollow">http://delphi.blue-aura.co.uk/forum/showthread.php?t=816</a></li>
</ul>
http://stackoverflow.com/questions/166657/do-you-have-your-own-dnut-ndt-do-not-use-this-never-do-that-list/166741#1667411Answer by zaca for Do you have your own DNUT/NDT ("Do Not Use This/Never Do That") list?zaca2008-10-03T13:07:21Z2008-10-03T13:07:21Z<p>Do not use:</p>
<ul>
<li><a href="http://portal.acm.org/citation.cfm?id=1241518&coll=ACM&dl=ACM&CFID=11218690&CFTOKEN=24551268" rel="nofollow">Goto</a> </li>
<li><a href="http://msdn.microsoft.com/en-us/vcsharp/aa336815.aspx" rel="nofollow">fall-through</a></li>
</ul>
http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/140975#1409756Answer by zaca for Best programming novel to take on holidayzaca2008-09-26T17:56:09Z2008-09-26T17:56:09Z<p><a href="http://en.wikipedia.org/wiki/Brave_New_World" rel="nofollow">Brave new Word.</a><br />
You are a Alpha, Beta, Gamma, Delta... or Epsilon? </p>
http://stackoverflow.com/questions/76083/parsing-sql-in-net/76139#761392Answer by zaca for Parsing SQL in .NET zaca2008-09-16T19:43:09Z2008-09-16T19:43:09Z<p>Try <a href="http://www.wangz.net/gsqlparser/" rel="nofollow">General SQL Parser</a></p>
http://stackoverflow.com/questions/38068/generics-in-java/38118#381182Answer by zaca for Generics in Javazaca2008-09-01T16:26:14Z2008-09-01T16:26:14Z<p>Use <a href="http://en.wikipedia.org/wiki/Abstract_factory_pattern" rel="nofollow">Factory Pattern</a> for creation of Generics:</p>
<p>Method Sample:</p>
<pre><code>public Map<String, Integer> createGenMap(){
return new HashMap<String,Integer>();
}
</code></pre>
http://stackoverflow.com/questions/37823/good-reasons-not-to-use-a-relational-database/37859#378593Answer by zaca for Good reasons NOT to use a relational database?zaca2008-09-01T12:20:55Z2008-09-01T12:32:01Z<p>Try Prevayler:
<a href="http://www.prevayler.org/wiki/" rel="nofollow">http://www.prevayler.org/wiki/</a>
Prevayler is alternative to RDBMS. In the site have more info.</p>
http://stackoverflow.com/questions/34215/what-are-the-best-alternatives-to-notepad/34495#344953Answer by zaca for What are the best alternatives to notepad?zaca2008-08-29T15:50:02Z2008-08-29T15:50:02Z<p>pspad :www.pspad.com</p>
http://stackoverflow.com/questions/179162/hashtable-implementation-for-delphi-5/179181#179181Comment by zaca on Hashtable implementation for Delphi 5zaca2008-10-07T17:56:50Z2008-10-07T17:56:50ZNo. I use TList,TStringList or TClientDataSet + BinarySearch in case of huge amount of data.
http://stackoverflow.com/questions/166657/do-you-have-your-own-dnut-ndt-do-not-use-this-never-do-that-list/166741#166741Comment by zaca on Do you have your own DNUT/NDT ("Do Not Use This/Never Do That") list?zaca2008-10-03T14:01:33Z2008-10-03T14:01:33ZYes...goto and fall-through can be great tools, but
"with great power comes great responsibility" .http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132580#132580Comment by zaca on Good excuses NOT to use version controlzaca2008-09-25T12:03:05Z2008-09-25T12:03:05ZAnything But SourceSafe: <a href="http://www.codinghorror.com/blog/archives/000660.html" rel="nofollow">codinghorror.com/blog/archives/…</a> http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132580#132580Comment by zaca on Good excuses NOT to use version controlzaca2008-09-25T12:02:22Z2008-09-25T12:02:22ZBest answer !!!!