Justice
|
Registered User
|
|
2h |
answered | SSL certificates with unknown domain name |
|
11h |
comment |
Making a Ruby server work on port 80 Is there already something (Apache) listening on port 80? |
|
11h |
answered | Setting Far Future Expires Header In Code - ASP.NET |
|
1d |
answered | In a Coldfusion cfc, what is the scope name for variables set outside of a function? |
|
2d |
comment |
[Rails] reuse logic in views (javascript) and model I made up a hypothetical MultiTierLogic class. |
|
2d |
answered | [Rails] reuse logic in views (javascript) and model |
|
Dec 10 |
comment |
Why are foreign keys more used in theory than in practice?select * from book as b inner join disc as d on b.num_sold = d.num_sold - a join sans foreign keys. |
|
Dec 9 |
answered | Can you have too much of “dynamic” in dynamic languages? |
|
Dec 9 |
comment |
NHibernate one-to-many relationship without bidirectional association So try using <set inverse="true" /> in the mapping for the parent's collection-of-children. |
|
Dec 9 |
answered | NHibernate one-to-many relationship without bidirectional association |
|
Dec 7 |
accepted | NHibernate: Should I encode inputs? |
|
Dec 7 |
answered | NHibernate: Should I encode inputs? |
|
Dec 7 |
revised |
Ocaml Implementation added 4 characters in body |
|
Dec 7 |
awarded | ● Enlightened |
|
Dec 6 |
awarded | ● Nice Answer |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
accepted | Goto: Why does it still exist? |
|
Dec 6 |
awarded | ● Nice Answer |
|
Dec 6 |
answered | Goto: Why does it still exist? |
|
Dec 3 |
awarded | ● Nice Answer |
|
Dec 2 |
accepted | ASP.NET Rijndael Encryption Error - Specified key is not a valid size for this algorithm. |
|
Dec 2 |
answered | ASP.NET Rijndael Encryption Error - Specified key is not a valid size for this algorithm. |
|
Dec 2 |
answered | IHTTPModule to switch between HTTP and HTTPS in ASP.NET |
|
Dec 2 |
comment |
Mocking an NHibernate ISession with Moq Unfortunately, the NHibernate Session 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. |
|
Dec 2 |
answered | Mocking an NHibernate ISession with Moq |
|
Dec 1 |
accepted | Is there ever a good reason to use eval() ? |
|
Dec 1 |
comment |
RESTful URLs for a search service with an arbitrary number of filtering criteria Yes, 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. |
|
Dec 1 |
answered | Need a better language/frameworks doing RESTful webservices |
|
Dec 1 |
comment |
RESTful URLs for a search service with an arbitrary number of filtering criteria Changed to /species, because this apparently a bio-related app. |
|
Dec 1 |
revised |
RESTful URLs for a search service with an arbitrary number of filtering criteria added 1 characters in body |
|
Dec 1 |
answered | RESTful URLs for a search service with an arbitrary number of filtering criteria |
|
Dec 1 |
answered | Is there ever a good reason to use eval() ? |
|
Dec 1 |
answered | high performance encryption in adobe air / flash |
|
Dec 1 |
comment |
Does using non-SQL databases obviate the need for guarding against “SQL injection”? "JavaScript Injection" is "XSS" or "Cross-Site Scripting." |
|
Nov 30 |
revised |
How can i force Nhibernate transaction to fail ? added 148 characters in body |
|
Nov 30 |
answered | How can i force Nhibernate transaction to fail ? |
|
Nov 30 |
comment |
Using ‘mod_rewrite’ how do I force HTTPS for certain paths and HTTP for all others? I 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: your site is trustworthy as soon as the user visits it. |
|
Nov 30 |
comment |
Using ‘mod_rewrite’ how do I force HTTPS for certain paths and HTTP for all others? The regular part of your site cannot be trusted 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. |
|
Nov 30 |
comment |
A question about cross-domain (subdomain) ajax request. This technique is known as JSONP. The major JavaScript frameworks have this capability in their AJAX libraries. |
|
Nov 30 |
accepted | How to use the jQuery :not selector. |
|
Nov 30 |
revised |
why does my site take so long to load? deleted 6 characters in body |
|
Nov 30 |
comment |
Hidden features of RubyMyClass = Class.new Array do; def hi; 'hi'; end; end seems to be equivalent to class MyClass < Array; def hi; 'hi'; end; end. |
|
Nov 30 |
revised |
Library redefines NULL edited title |
|
Nov 30 |
comment |
Best ORM tool for Oracle with 4000 tables Hibernate'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. |
|
Nov 30 |
accepted | Haskell question about function |
|
Nov 30 |
answered | Library redefines NULL |
|
Nov 30 |
revised |
Haskell question about function added 85 characters in body; added 66 characters in body |
|
Nov 30 |
comment |
NHibernate to dynamically create/alter/delete tables Why do people do these things? This is like the opposite of what NHibernate is intended for. |
|
Nov 30 |
answered | Haskell question about function |
|
Nov 29 |
revised |
jQuery attr method failing to add attribute. edited body; edited body |
