User Justice - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T18:38:05Zhttp://stackoverflow.com/feeds/user/12349http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1914472/rails-reuse-logic-in-views-javascript-and-model/1914649#19146490Answer by Justice for [Rails] reuse logic in views (javascript) and modelJustice2009-12-16T13:27:31Z2009-12-16T13:27:31Z<p>Keep the two implementations together.</p>
<pre><code>class BusinessDaysCalculator < MultiTierLogic
def ruby
#whatever
end
def js
"/*whatever*/"
end
end
</code></pre>
http://stackoverflow.com/questions/882215/rendering-json-objects-using-a-django-template-after-an-ajax-call/882254#8822541Answer by Justice for Rendering JSON objects using a Django template after an Ajax call..Justice2009-05-19T11:47:12Z2009-12-11T12:58:15Z<p>Templates are for the purpose of <em>presentation</em>. Responding with data in format X (JSON, <a href="http://en.wikipedia.org/wiki/JSON#JSONP" rel="nofollow">JSONP</a>, XML, <a href="http://en.wikipedia.org/wiki/YAML" rel="nofollow">YAML</a>, *ml, etc.) is not presentation, so you don't need templates. Just serialize your data into format X and return it in an HttpResponse.</p>
http://stackoverflow.com/questions/1876810/can-you-have-too-much-of-dynamic-in-dynamic-languages/1877213#18772130Answer by Justice for Can you have too much of “dynamic” in dynamic languages?Justice2009-12-09T21:59:19Z2009-12-09T21:59:19Z<p>There are two dominant types of object-oriented languages.</p>
<p>The languages in the <strong>Simula 67</strong> family, such as C++ and Java, favor statically-typed variables, compilers and linkers, and method vtables.</p>
<p>The languages in the <strong>Smalltalk</strong> family, such as Ruby, favor dynamically-typed variables, interpretation, and message-passing instead of function-pointer-tables.</p>
<p>Both are object-oriented, but very different takes on the concept of object-orientation.</p>
http://stackoverflow.com/questions/1871244/nhibernate-one-to-many-relationship-without-bidirectional-association/1871259#18712590Answer by Justice for NHibernate one-to-many relationship without bidirectional associationJustice2009-12-09T02:31:01Z2009-12-09T02:31:01Z<p>The situation you describe is very much intended by and supported by NHibernate.</p>
http://stackoverflow.com/questions/1861047/nhibernate-should-i-encode-inputs/1861083#18610830Answer by Justice for NHibernate: Should I encode inputs?Justice2009-12-07T16:24:52Z2009-12-07T16:24:52Z<p>A <code>Customer</code> instance is simply an object within your domain model. That is all it is. NHibernate is simply there behind the scenes - it is a window through which you may access your domain model.</p>
<p>NHibernate makes sure that your domain model is persisted correctly. It does this without you needing to do much of anything, such as encoding the string properties on your objects.</p>
<p>Additionally, if you are creating a new <code>Customer</code> instance, and you wish to inform NHibernate of the new instance, then you should use the API method <code>ISession.Save</code>, rather than <code>ISession.SaveOrUpdate</code>. The API method <code>ISession.Save</code> will save the new instance into the domain model (and, transparently, into the database).</p>
http://stackoverflow.com/questions/1854640/goto-why-does-it-still-exist/1854668#185466813Answer by Justice for Goto: Why does it still exist?Justice2009-12-06T07:40:42Z2009-12-06T07:40:42Z<p><code>goto</code> is a primitive instruction in the major computer architectures, where it is better known as <code>jmp</code> (on Intel architectures - other architectures will have different names). This instruction, along with the conditional variations like <code>jnz</code> (jump, if the value in the condition register is nonzero, to ...), forms the basis for all structured control flow semantics in higher-order languages (if-elses, loops, functions).</p>
<p>The C language, often characterized as <em>a portable Assembly</em>, tends to give the programmer the ability to do the same things he might do in Assembly.</p>
http://stackoverflow.com/questions/1835896/asp-net-rijndael-encryption-error-specified-key-is-not-a-valid-size-for-this-al/1835909#18359092Answer by Justice for ASP.NET Rijndael Encryption Error - Specified key is not a valid size for this algorithm. Justice2009-12-02T21:21:57Z2009-12-02T21:21:57Z<p><code>C3CA193570B26E5C3CBB50FD805A0E23BAFFABA135E82C41517EEDCB9B7C90AC</code> is hex code for a 256-bit-long bitstream.</p>
<p>But <code>Encoding.UTF8.GetBytes</code> does not turn hex code into the corresponding bytes in the way you were thinking.</p>
<p>Because you had 64 characters in that string, you get 64 bytes of UTF-8 bytes. That's a 512-bit-long bitstream.</p>
http://stackoverflow.com/questions/616904/ihttpmodule-to-switch-between-http-and-https-in-asp-net/1830522#18305220Answer by Justice for IHTTPModule to switch between HTTP and HTTPS in ASP.NETJustice2009-12-02T03:41:19Z2009-12-02T03:41:19Z<p>Just use SSL throughout your site, for all pages and for all images/scripts/stylesheets. That just makes everything oh-so-simple. IE and Firefox will no longer complain, you will no longer have crazy modules trying to guess whether any given request should be redirected, etc.</p>
http://stackoverflow.com/questions/1828878/mocking-an-nhibernate-isession-with-moq/1830225#18302251Answer by Justice for Mocking an NHibernate ISession with MoqJustice2009-12-02T02:06:36Z2009-12-02T02:06:36Z<p>Rather than mocking the <code>Session</code>, one might consider setting up a different <code>Configuration</code> for unit-tests. This unit-testing <code>Configuration</code> uses a fast, in-process database like SQLite or Firebird. In the fixture setup, you create a new test database completely from scratch, run the scripts to set up the tables, and create a set of initial records. In the per-test setup, you open a transaction and in the post-test teardown, you rollback the transaction to restore the database to its previous state. In a sense, you are not mocking the <code>Session</code>, because that gets tricky, but you are mocking the actual database.</p>
http://stackoverflow.com/questions/1828143/need-a-better-language-frameworks-doing-restful-webservices/1828161#18281610Answer by Justice for Need a better language/frameworks doing RESTful webservicesJustice2009-12-01T19:01:18Z2009-12-01T19:01:18Z<blockquote>
<p>Ruby on Rails (doesn't scale the way I like)</p>
</blockquote>
<p>Generally speaking, Ruby on Rails can scale well (now, anyway; the past is the past).</p>
<p>What kind of scalability does your system require and does Rails not offer?</p>
<p>In all other aspects of your requirements aside from static typing, Rails seems to be the industry leader.</p>
http://stackoverflow.com/questions/1827293/restful-urls-for-a-search-service-with-an-arbitrary-number-of-filtering-criteria/1827335#18273351Answer by Justice for RESTful URLs for a search service with an arbitrary number of filtering criteriaJustice2009-12-01T16:30:52Z2009-12-01T18:56:05Z<p>In the REST style of the Web:</p>
<ul>
<li>The <em>path</em> component of the request-uri identifies a particular resource.</li>
<li>The <em>query-string</em> component of the request-uri identifies any particular filters or alterations done when presenting that resource.</li>
<li>The <em>Accept</em> header identifies a particular content-type in which the given resource, filtered as specified, should be presented.</li>
<li>The <em>Accept-Language</em> header identifies a particular language in which the given resource, filtered as specified, should be presented.</li>
</ul>
<p>So to answer your question:</p>
<pre><code>GET /species?searchType=sciname&sciname=mola+mola&maxdepth=100&mindepth=0
</code></pre>
<p>is perfectly appropriate.</p>
http://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1826940#18269403Answer by Justice for Is there ever a good reason to use eval() ?Justice2009-12-01T15:32:15Z2009-12-01T15:32:15Z<p>Yes - when there is no other way to accomplish the given task with a reasonable level of clarity and within a reasonable number of lines of code.</p>
<p>This eliminates 99% of cases where <code>eval</code> is used, across the board in all languages and contexts.</p>
http://stackoverflow.com/questions/1823633/high-performance-encryption-in-adobe-air-flash/1823948#18239480Answer by Justice for high performance encryption in adobe air / flashJustice2009-12-01T04:12:08Z2009-12-01T04:12:08Z<p>Use SSL rather than Flash crypto to encrypt the content as it is transported over the Internet.</p>
http://stackoverflow.com/questions/1821649/how-can-i-force-nhibernate-transaction-to-fail/1821914#18219142Answer by Justice for How can i force Nhibernate transaction to fail ?Justice2009-11-30T19:34:54Z2009-11-30T19:41:17Z<p>Throw an exception:</p>
<pre><code>using(var sess = sf.OpenSession())
using(var tx = sess.BeginTransaction())
throw new Exception();
</code></pre>
<p>Close the connection:</p>
<pre><code>using(var sess = sf.OpenSession())
using(var tx = sess.BeginTransaction())
sess.Connection.Close();
</code></pre>
<p>Rollback the transaction:</p>
<pre><code>using(var sess = sf.OpenSession())
using(var tx = sess.BeginTransaction())
tx.Rollback();
</code></pre>
http://stackoverflow.com/questions/1817334/library-redefines-null/1817375#1817375-1Answer by Justice for Library redefines NULLJustice2009-11-30T00:55:21Z2009-11-30T00:55:21Z<p>Yes, you do just need to cast appropriately:</p>
<pre><code>Generic(std::string name, Json::Value *config, int type,
LCDBase *lcd = (LCDBase *)NULL);
</code></pre>
http://stackoverflow.com/questions/1817261/haskell-question-about-function/1817267#18172673Answer by Justice for Haskell question about functionJustice2009-11-30T00:20:31Z2009-11-30T00:41:36Z<p>The expression</p>
<pre><code>take n a == take n $ reverse a
</code></pre>
<p>gets parsed as</p>
<pre><code>(take n a == take n) $ (reverse a)
</code></pre>
<p>because the <code>$</code> operator has precedence <code>0</code>, lower even than the <code>==</code> operator.</p>
<p>You need the expression:</p>
<pre><code>take n a == (take n $ reverse a)
</code></pre>
<p>Also, please respect the Haskell and use <code>length a</code> rather than <code>length (a)</code>. You should also use <code>length a `div` 2</code> rather than <code>length a / 2</code>. The function <code>div</code> is integer division, resulting in an integer.</p>
http://stackoverflow.com/questions/1816119/using-modrewrite-how-do-i-force-https-for-certain-paths-and-http-for-all-othe/1816297#18162971Answer by Justice for Using 'mod_rewrite' how do I force HTTPS for certain paths and HTTP for all others?Justice2009-11-29T18:25:51Z2009-11-29T18:25:51Z<p>The general rule of good security is: if <em>some</em> of your site requires HTTPS, then <em>all</em> of your site requires HTTPS. If you will be using HTTPS in the payment section, then your landing page should be HTTPS as well.</p>
http://stackoverflow.com/questions/1813746/should-i-put-custom-code-inside-microsofts-bcl-fcl-namespaces/1813840#18138401Answer by Justice for Should I put custom code inside Microsoft's BCL/FCL namespaces?Justice2009-11-28T21:33:23Z2009-11-28T21:33:23Z<p>The concept of opening up a standard namespace and adding your own stuff to it is very well accepted as common practice in other languages and communities. For example, Prototype.js adds useful methods to JavaScript arrays, while Ruby on Rails lets you write things like <code>4.days.ago</code> (<code>4.score.and.seven.years.ago</code> is coming, I'm told) by opening up the core datetime classes and popping in its own methods.</p>
<p>This practice, however, is <em>not accepted</em> in the C# world. This world is very different from the loosey-dynamicy JavaScript and Rails worlds. So don't do it in C#.</p>
http://stackoverflow.com/questions/1806024/how-to-use-the-jquery-not-selector/1806052#18060521Answer by Justice for How to use the jQuery :not selector.Justice2009-11-26T23:03:39Z2009-11-26T23:03:39Z<p>Try <code>:not(:eq(...))</code>.</p>
<pre><code>$(this).find('h2 a').click(function() {
$('.expand-collapse:eq(' + numberFix + ')' ).show('fast');
$('.expand-collapse:not(:eq(' + numberFix + '))' ).hide('fast');
return false;
});
</code></pre>
http://stackoverflow.com/questions/1805317/performance-tuning-cakephp-application/1805579#18055790Answer by Justice for Performance tuning CakePHP applicationJustice2009-11-26T20:47:27Z2009-11-26T20:47:27Z<blockquote>
<p>The problem is, that I haven't been yet able to create working development instance</p>
</blockquote>
<p>This is the issue you need to solve. Get that app running agnostically to its environment (e.g., ensure that all environment configuration lies in one file, and that that file contains only environment configuration). Once you solve this, you can hack away at everything you like in development.</p>
http://stackoverflow.com/questions/1779814/whats-the-best-possible-name-for-a-backup-server-in-a-development-environment/1779863#17798630Answer by Justice for What's the best possible name for a backup server in a development environment?Justice2009-11-22T20:23:02Z2009-11-22T20:23:02Z<p>Perhaps, <code>cryo</code>.</p>
<p>"Cryonics is the low-temperature preservation of humans and animals that can no longer be sustained by contemporary medicine until resuscitation may be possible in the future." (<a href="http://en.wikipedia.org/wiki/Cryonics" rel="nofollow">Wikipedia</a>)</p>
http://stackoverflow.com/questions/1779551/haskell-too-many-where-clauses-any-alternate-suggestions/1779588#17795883Answer by Justice for Haskell too many where clauses, any alternate suggestionsJustice2009-11-22T18:51:19Z2009-11-22T19:00:13Z<pre><code>noDups :: [[a]] -> Bool
noDups = and . checkDup
where
--checkDup
checkDup [] = []
checkDup (x:xs) = checkRow x ++ checkDup xs
--alternatively
checkDup xs = concat $ map checkRow xs
--alternatively
checkDup = concat . map checkRow
--alternatively
checkDup = concatMap checkRow
--checkRow
checkRow [] = []
checkRow (x:xs) = [x /= y | y <- xs] ++ checkRow xs
</code></pre>
http://stackoverflow.com/questions/1772326/why-dont-statements-that-dont-do-anything-throw-an-exception-or-warn-the-devel/1772382#1772382-1Answer by Justice for Why don't statements that don't do anything throw an exception (or warn the developer)?Justice2009-11-20T18:26:31Z2009-11-20T18:26:31Z<blockquote>
<p>I've been bitten a couple of times by</p>
</blockquote>
<p>jumping to conclusions, not by</p>
<blockquote>
<p>statements in VB.NET ... that ... don't actually do anything</p>
</blockquote>
<p>but that are actually very well documented.</p>
http://stackoverflow.com/questions/1746507/authoritative-position-of-duplicate-http-get-query-keys/1746566#17465661Answer by Justice for Authoritative position of duplicate HTTP GET query keys Justice2009-11-17T04:21:42Z2009-11-17T12:12:29Z<p>There <em>is no spec</em> on this. You may do what you like.</p>
<p>Typical approaches include: first-given, last-given, array-of-all, string-join-with-comma-of-all.</p>
<p>Suppose the raw request is:</p>
<pre><code>GET /blog/posts?tag=ruby&tag=rails HTTP/1.1
Host: example.com
</code></pre>
<p>Then there are various options for what <code>request.query['tag']</code> should yield, depending on the language or the framework:</p>
<pre><code>request.query['tag'] => 'ruby'
request.query['tag'] => 'rails'
request.query['tag'] => ['ruby', 'rails']
request.query['tag'] => 'ruby,rails'
</code></pre>
http://stackoverflow.com/questions/1746369/is-forcing-complex-passwords-more-important-than-salting/1746430#17464301Answer by Justice for Is forcing complex passwords "more important" than salting?Justice2009-11-17T03:39:06Z2009-11-17T03:39:06Z<p>Use sophisticated techniques like salthash to keep your users' private information safe.</p>
<p>But don't obstruct your users. Offer suggestions, but don't get in their way.</p>
<p>It's up to your users to pick good passwords. It's up to you to suggest how to pick good passwords, and to accept any password given and keep the user's information as safe as the password given permits.</p>
http://stackoverflow.com/questions/1746177/ruby-how-to-know-if-script-is-on-3rd-retry/1746232#17462320Answer by Justice for ruby: how to know if script is on 3rd retry ?Justice2009-11-17T02:32:48Z2009-11-17T02:32:48Z<pre><code>class Integer
def times_try
n = self
begin
n -= 1
yield
rescue
raise if n < 0
retry
end
end
end
begin
3.times_try do
#some routine
end
rescue
puts 'no dice!'
end
</code></pre>
http://stackoverflow.com/questions/1745114/comprehensive-information-about-hash-salts/1745263#17452632Answer by Justice for Comprehensive information about hash saltsJustice2009-11-16T22:26:05Z2009-11-16T22:26:05Z<ol>
<li><p>No. Using salts correctly will multiply the time it takes for an attacker to crack all the passwords in your database by a factor of millions. Putting salts in another table will add 30 seconds to the time it takes for an attacker to get the salts too.</p></li>
<li><p>Yes. It is not a bad idea to use both a global key and a per-user salt.</p></li>
<li><p>A salt is, or should be, a cryptographic key. Make it long and random. Database size is not an issue. The salt, like any cryptographic key, can be 128 bits or 16 bytes (32 bytes when stored in hex format).</p></li>
<li><p>Your computer should have cryptographically strong pseudo-RNG. Check the security or crypto APIs for your language.</p></li>
</ol>
http://stackoverflow.com/questions/1739892/what-communites-today-embody-the-hacker-ethic/1739920#17399200Answer by Justice for What communites today embody the "Hacker Ethic"?Justice2009-11-16T03:39:42Z2009-11-16T03:39:42Z<p>Open-source....</p>
http://stackoverflow.com/questions/1736630/sql-constraint-minvalue-maxvalue/1736649#17366494Answer by Justice for SQL constraint minvalue / maxvalue?Justice2009-11-15T05:08:33Z2009-11-15T05:36:37Z<p>SQL Server syntax for <a href="http://technet.microsoft.com/en-us/library/ms179491.aspx" rel="nofollow">the <code>check</code> constraint</a>:</p>
<pre><code>create table numbers (
number int not null
check(number >= 1234 and number <= 4523),
...
)
create table numbers (
number int not null,
check(number >= 1234 and number <= 4523),
...
)
create table numbers (
number int not null,
constraint number_range_check
check(number >= 1234 and number <= 4523),
...
)
</code></pre>
http://stackoverflow.com/questions/1736483/starting-with-an-empty-tree-what-is-the-complexity-of-inserting-into-red-black-t/1736493#17364931Answer by Justice for Starting with an empty tree, what is the complexity of inserting into Red Black Tree in big-O notation?Justice2009-11-15T03:41:20Z2009-11-15T03:41:20Z<p>The time-complexity of inserting a single element into an RB-tree is <code>O(log n)</code> where <code>n</code> is the current size of the tree.</p>
<p>The time-complexity of inserting <code>n</code> elements into an empty RB-tree is, therefore, <code>O(n log n)</code>.</p>
<p>The time-complexity of inserting <code>10</code> elements into an empty RB-tree is constant, or <code>O(1)</code>. Because the tree starts empty, and because the number of elements being inserted is fixed, there are no variable elements here.</p>
http://stackoverflow.com/questions/1914472/rails-reuse-logic-in-views-javascript-and-model/1914649#1914649Comment by Justice on [Rails] reuse logic in views (javascript) and modelJustice2009-12-16T16:37:56Z2009-12-16T16:37:56ZI made up a hypothetical <code>MultiTierLogic</code> class.http://stackoverflow.com/questions/1876013/why-are-foreign-keys-more-used-in-theory-than-in-practice/1876062#1876062Comment by Justice on Why are foreign keys more used in theory than in practice?Justice2009-12-10T14:11:23Z2009-12-10T14:11:23Z<code>select * from book as b inner join disc as d on b.num_sold = d.num_sold</code> - a join <i>sans</i> foreign keys.http://stackoverflow.com/questions/1871244/nhibernate-one-to-many-relationship-without-bidirectional-association/1871259#1871259Comment by Justice on NHibernate one-to-many relationship without bidirectional associationJustice2009-12-09T04:28:38Z2009-12-09T04:28:38ZSo try using <code><set inverse="true" /></code> in the mapping for the parent's collection-of-children.http://stackoverflow.com/questions/1828878/mocking-an-nhibernate-isession-with-moq/1830225#1830225Comment by Justice on Mocking an NHibernate ISession with MoqJustice2009-12-02T03:02:41Z2009-12-02T03:02:41ZUnfortunately, the NHibernate <code>Session</code> is very complicated when it comes to related objects, deferred loading, caching, and all the other things that NHibernate does. So I would just skip trying to mock it and instead try to mock the database. It's easy for NHibernate to generate a schema-creation script for any given database system from your mappings and then for you to execute that script to create an empty database with your schema on fixture-setup. From my own experience with NHibernate and from observing what frameworks like Rails do, this is essentially the only way to go.http://stackoverflow.com/questions/1827293/restful-urls-for-a-search-service-with-an-arbitrary-number-of-filtering-criteria/1827335#1827335Comment by Justice on RESTful URLs for a search service with an arbitrary number of filtering criteriaJustice2009-12-01T20:08:25Z2009-12-01T20:08:25ZYes, it may not be necessary. I didn't want to get into that simply because the most important part was to explain the way one requests a resource, and how one requests the resource to be filtered, in the REST style.http://stackoverflow.com/questions/1827293/restful-urls-for-a-search-service-with-an-arbitrary-number-of-filtering-criteria/1827335#1827335Comment by Justice on RESTful URLs for a search service with an arbitrary number of filtering criteriaJustice2009-12-01T18:56:29Z2009-12-01T18:56:29ZChanged to <code>/species</code>, because this apparently a bio-related app.http://stackoverflow.com/questions/1823536/does-using-non-sql-databases-obviate-the-need-for-guarding-against-sql-injection/1823568#1823568Comment by Justice on Does using non-SQL databases obviate the need for guarding against "SQL injection"?Justice2009-12-01T02:05:16Z2009-12-01T02:05:16Z"JavaScript Injection" is "XSS" or "Cross-Site Scripting."http://stackoverflow.com/questions/1816119/using-modrewrite-how-do-i-force-https-for-certain-paths-and-http-for-all-othe/1816297#1816297Comment by Justice on Using 'mod_rewrite' how do I force HTTPS for certain paths and HTTP for all others?Justice2009-11-30T17:16:21Z2009-11-30T17:16:21ZI wouldn't be too worried about performance until you actually start having problems. Compared to parsing PHP scripts, opening database connections, rendering templates, etc., the overhead from an optimized SSL library is minimal. And yes, the security benefit is that: <i>your site is trustworthy as soon as the user visits it</i>.http://stackoverflow.com/questions/1816119/using-modrewrite-how-do-i-force-https-for-certain-paths-and-http-for-all-othe/1816297#1816297Comment by Justice on Using 'mod_rewrite' how do I force HTTPS for certain paths and HTTP for all others?Justice2009-11-30T13:39:14Z2009-11-30T13:39:14ZThe regular part of your site cannot be <i>trusted</i> if it is not delivered over HTTPS. One attack vector is to MIM if the regular part of the site is not delivered over HTTPS and rewrite the links to the payment part to an attack site. So the links are delivered by your site, but nevertheless are not trusted - they can be rewritten by an attacker.http://stackoverflow.com/questions/648899/a-question-about-cross-domain-subdomain-ajax-request/648985#648985Comment by Justice on A question about cross-domain (subdomain) ajax request.Justice2009-11-30T12:00:10Z2009-11-30T12:00:10ZThis technique is known as JSONP. The major JavaScript frameworks have this capability in their AJAX libraries.http://stackoverflow.com/questions/63998/hidden-features-of-ruby/224276#224276Comment by Justice on Hidden features of RubyJustice2009-11-30T03:52:49Z2009-11-30T03:52:49Z<code>MyClass = Class.new Array do; def hi; 'hi'; end; end</code> seems to be equivalent to <code>class MyClass < Array; def hi; 'hi'; end; end</code>.http://stackoverflow.com/questions/546241/best-orm-tool-for-oracle-with-4000-tables/546279#546279Comment by Justice on Best ORM tool for Oracle with 4000 tablesJustice2009-11-30T03:03:40Z2009-11-30T03:03:40ZHibernate's entire purpose it to permit the developer to create a pure Java object model, and to construct things behind the scenes such that the objects are automatically persisted to a database, correctly and performantly, without any direct programmer intervention into the persistence mechanism. Hibernate is a great choice if you want to deal in objects, transparently persisted. Oracle is a great choice if you don't care about object-oriented domain models, transparently persisted.http://stackoverflow.com/questions/1816722/nhibernate-to-dynamically-create-alter-delete-tablesComment by Justice on NHibernate to dynamically create/alter/delete tablesJustice2009-11-30T00:22:38Z2009-11-30T00:22:38ZWhy do people do these things? This is like the opposite of what NHibernate is intended for.http://stackoverflow.com/questions/1813746/should-i-put-custom-code-inside-microsofts-bcl-fcl-namespaces/1813840#1813840Comment by Justice on Should I put custom code inside Microsoft's BCL/FCL namespaces?Justice2009-11-28T22:21:38Z2009-11-28T22:21:38ZF# is a statically-typed functional/oo programming language. JavaScript and Ruby are both dynamically-typed oo/functional programming languages. They are similar in many ways, and different in many ways. Nevertheless, F# cannot be characterized as "dynamic."http://stackoverflow.com/questions/1780833/coldfusion9-and-scripted-components-and-hql-syntaxComment by Justice on ColdFusion9 and scripted components and hql syntaxJustice2009-11-23T02:38:39Z2009-11-23T02:38:39ZWhy are you trying to query from a view with Hibernate?