User Manrico Corazzi - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T03:51:30Zhttp://stackoverflow.com/feeds/user/4690http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1723099/outsourcing-program-development-and-retain-privacy/1723134#17231343Answer by Manrico Corazzi for Outsourcing program development and retain privacyManrico Corazzi2009-11-12T15:38:42Z2009-11-12T15:38:42Z<p>In many cases this is a design problem. If your code is reasonably decoupled and your requirements are well described you can let the outsider developers work against mocks/stubs. The problem is that having a clean, decoupled design, a well documented requirement, a set of unit tests and mocks/stubs requires a lot of time, a very scarce resource. </p>
http://stackoverflow.com/questions/1722208/regular-expressions-in-c/1722233#17222331Answer by Manrico Corazzi for regular expressions in c#Manrico Corazzi2009-11-12T13:39:14Z2009-11-12T13:39:14Z<p>What about finding the index of the first delimiter, the index of the second delimiter and "cropping" the string in between? Sounds way simpler, might be as much effective as.</p>
http://stackoverflow.com/questions/1714448/program-architecturing-steps/1714487#17144871Answer by Manrico Corazzi for Program architecturing stepsManrico Corazzi2009-11-11T11:04:52Z2009-11-11T11:18:27Z<p>I would say "whathever you are confortable with".</p>
<p>If tou are using a relational model you will have to bridge the gap with the OO world anyway (using ORM for example).</p>
<p>I usually start working with the database, but the overall class diagram for the system could improve the database design phase greatly.</p>
<p>The methodology is a very important thing to consider as well. An agile approach and TDD would handle the intense changes in the schema better, so you can go back and add/remove tables, fields (or classes) with ease, and use both the strategies whenever you feel like it.</p>
http://stackoverflow.com/questions/1613260/collection-item-knows-about-collection-it-is-contained-does-this-smell/1613324#16133241Answer by Manrico Corazzi for Collection item knows about collection it is contained - does this smell?Manrico Corazzi2009-10-23T13:12:46Z2009-10-23T13:12:46Z<p>It's not uncommon for an item in a collection to know its whereabouts... think linked lists or trees. If you don't want the tag to know the whole list you might add a reference to its related tags only.</p>
http://stackoverflow.com/questions/1601777/hibernate-on-oracle-and-sqlserver0Hibernate on Oracle AND SQLServerManrico Corazzi2009-10-21T15:51:10Z2009-10-22T03:10:08Z
<p>I'm introducing a DAO layer in our application currently working on SQL Server because I need to port it to Oracle. </p>
<p>I'd like to use Hibernate and write a factory (or use dependency injection) to pick the correct DAOs according to the deployment configuration. What are the best practices in this case? Should I have two packages with different hibernate.cfg.xml and *.hbm.xml files and pick them accordingly in my factory? Is there any chance that my DAOs will work correctly with both DBMS without (too much) hassle?</p>
http://stackoverflow.com/questions/80609/merge-xml-documents6Merge XML documentsManrico Corazzi2008-09-17T06:50:01Z2009-10-21T07:49:48Z
<p>I need to "merge" two XML documents, overwriting the overlapsed attributes and elements. For instance if I have <strong>document1</strong>:</p>
<pre><code><mapping>
<key value="assigned">
<a/>
</key>
<whatever attribute="x">
<k/>
<j/>
</whatever>
</mapping>
</code></pre>
<p>and <strong>document2</strong>:</p>
<pre><code><mapping>
<key value="identity">
<a/>
<b/>
</key>
</mapping>
</code></pre>
<p>I want to merge the two like this:</p>
<pre><code><mapping>
<key value="identity">
<a/>
<b/>
</key>
<whatever attribute="x">
<k/>
<j/>
</whatever>
</mapping>
</code></pre>
<p>I prefer <strong>Java</strong> or <strong>XSLT</strong>-based solutions, <strong>ant</strong> will do fine, but if there's an easy way to do that in <strong>Rake</strong>, <strong>Ruby</strong> or <strong>Python</strong> please don't be shy :-)</p>
<p><strong>EDIT:</strong> actually I find I'd rather use an automated tool/script, even <a href="http://stackoverflow.com/questions/58640/great-programming-quotes#62125">writing it by myself</a>, because manually merging some 30 XML files is a bit unwieldy... :-(</p>
http://stackoverflow.com/questions/1595498/a-difference-in-style-idictionary-vs-dictionary/1595535#15955351Answer by Manrico Corazzi for A difference in style: IDictionary vs DictionaryManrico Corazzi2009-10-20T15:37:46Z2009-10-20T15:37:46Z<p>Using interfaces means that "dictionary" in the following code might be any implementation of IDictionary. </p>
<pre><code>Dictionary1 dictionary = new Dictionary1();
dictionary.operation1(); // if operation1 is implemented only in Dictionary1() this will fail for every other implementation
</code></pre>
<p>It's best seen when you hide the construction of the object:</p>
<pre><code>IDictionary dictionary = DictionaryFactory.getDictionary(...);
</code></pre>
http://stackoverflow.com/questions/1593524/is-it-possible-to-save-a-word-file-in-mysql-database-and-to-view-the-content-as/1593638#15936380Answer by Manrico Corazzi for Is it possible to save a word file in MYSQL database and to view the content "AS IT LOOKS" in the Browser.Manrico Corazzi2009-10-20T10:12:41Z2009-10-20T10:32:34Z<p>You may stream the content in the body of the request as an attachment setting the correct MIME Type. If the user's client is configured to handle the content type it will show (after asking for permissions).
<a href="http://php.net/manual/en/function.mime-content-type.php" rel="nofollow">PHP MIME Content Type</a></p>
http://stackoverflow.com/questions/1573121/mysql-fill-field-by-other-fields/1573135#15731350Answer by Manrico Corazzi for mysql - fill field by other fieldsManrico Corazzi2009-10-15T15:31:19Z2009-10-15T15:52:54Z<p>Try</p>
<pre><code>update tableName set birthdate = month + "/" + day + "/" + year;
</code></pre>
http://stackoverflow.com/questions/1570718/mysql-cant-see-column-in-php-ok-as-sql-statement/1570880#15708800Answer by Manrico Corazzi for MySQL can't see column in PHP. Ok as SQL statement. Manrico Corazzi2009-10-15T07:50:44Z2009-10-15T07:57:05Z<p>Just a blind guess... are you sure that the <strong>mysql_query</strong> statement replaces the placeholders with the actual variable values as "echo" does?
Try:</p>
<pre><code>mysql_query ("INSERT INTO users (company_name, fname, lname, salt, email, date_added, password)
VALUES ('" . $CompanyName . "', '" . $fname . "', '" . $lname . "', '" . $salt. "', '" . $email . "', '" . $mysqldate . "', '" . $encrypted . "')")
or die(mysql_error());
</code></pre>
http://stackoverflow.com/questions/63090/surrogate-vs-natural-business-keys14Surrogate Vs. Natural/Business KeysManrico Corazzi2008-09-15T13:55:44Z2009-09-28T18:39:41Z
<p>Here we go again, the old argument still arises... we'd better have a business key as a primary key, or we'd rather have a surrogate id (i.e. an SQL Server identity) with a unique constraint on the business key field? Please, provide examples or proof to support your theory.</p>
http://stackoverflow.com/questions/1405872/sso-between-liferay-5-2-and-php-through-cas0SSO between Liferay 5.2 and PHP through CASManrico Corazzi2009-09-10T15:08:07Z2009-09-10T16:52:51Z
<p>I'm trying to use CAS for SSO between Liferay and a PHP webapp.</p>
<p>I installed <a href="http://www.jasig.org/" rel="nofollow">JASIG</a> CAS webapp, created a certificate with keytools and configured Liferay through its administrative GUI (Setting>Authentication>CAS tab) as follows:</p>
<p><img src="http://img89.imageshack.us/img89/3536/lrcasconf.png" alt="Liferay CAS configuration" /></p>
<p>When I click on "Sign in" in Liferay menu I'm forwarded to the CAS login page (with the "dirty trick" username==password: I did not configure LDAP, as I'm going to explain below) and then I'm redirected to Liferay again, but I'm not logged in: I see the LR login form again. So I guess that is not working.</p>
<p>The PHP web application , on the other hand, seems to work flawlessly.</p>
<p>So my questions are:</p>
<ol>
<li>is there something wrong in my LR
configuration? </li>
<li>is the LDAP
mandatory? I'd rather have Liferay
do the master authentication
provider and signalling to CAS that
the user is indeed legit, and then
use CAS to propagate the ticket to
the other webapp; do I have to
develop some CAS plugin to make it
work this way?</li>
</ol>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114454#1144548Answer by Manrico Corazzi for What are Code Smells? What is the best way to correct them?Manrico Corazzi2008-09-22T12:03:14Z2009-08-28T17:43:02Z<p><strong>Conditional spree</strong></p>
<p>Complex behaviour implemented by intricated <em>if...then...elseif...</em> blocks or long <em>switch...case</em> copy/pasted all over the class(es). </p>
<p>Suggested refactoring: <a href="http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html" rel="nofollow">Replace Conditional with Polymorphism</a>.</p>
<p><em>NOTE:</em> overusing this strategy is also "code smell".</p>
<p><em>NOTE2:</em> I love the Kent Beck quotation from one of his books on Extreme Programming.</p>
<blockquote>
<p>If it smells change it (Grandma Beck
on childrens rearing).</p>
</blockquote>
<p>(or something like that, I don't have the book handy right now).</p>
<p><strong>EDIT</strong>: For a comprehensive list have you considered <a href="http://www.codinghorror.com/blog/archives/000589.html" rel="nofollow">this post on Coding Horror</a>?</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114542#11454283Answer by Manrico Corazzi for What are Code Smells? What is the best way to correct them?Manrico Corazzi2008-09-22T12:27:39Z2009-08-28T17:12:12Z<p><strong>Overengineered design</strong></p>
<p>This is common when introducing ten thousands frameworks and then handling everything indirectly, even for very simple chores. </p>
<p>So you have an ORM and a MVC framework, and several different layers in your application: DAO, BO, Entities, Renderers, Factories, at least a couple of contexts, interfaces crawl all over your packages, you have adapters even for two classes, proxies, delegate methods... to the point that there isn't even a single class which does not <strong>extend</strong> or <strong>implement</strong> something else.</p>
<p>In this case you'd better prune some dead branches: remove interfaces wherever they don't provide useful class interchangeability, remove man-in-the-middle classes, specialize too generic methods, throw in some generics/templates where you wrote your own classes that are only wrappers for collections and don't really add any value to your design.</p>
<p><em>NOTE:</em> of course this does not apply to larger, ever changing applications where the layers and the intermediate objects are really useful to decouple stuff that otherwise would be handled by <em>shotgun surgery</em>.</p>
http://stackoverflow.com/questions/156989/how-to-make-programming-more-comfortable/157041#1570412Answer by Manrico Corazzi for How to make programming more comfortable?Manrico Corazzi2008-10-01T10:38:15Z2009-08-20T08:31:38Z<p>Consider working standing with a stand-up desk.</p>
http://stackoverflow.com/questions/1199352/smart-way-to-shorten-long-strings-with-javascript/1199374#11993740Answer by Manrico Corazzi for smart way to shorten long strings with javascriptManrico Corazzi2009-07-29T10:48:46Z2009-07-29T10:48:46Z<p>With a quick googling I found <a href="http://snipplr.com/view/16108/truncate-a-string-to-a-set-length-breaking-at-word-boundaries/" rel="nofollow">this</a>... Can do?</p>
http://stackoverflow.com/questions/167154/logic-database-or-application-2-constraints-check6Logic: Database or Application/2 (constraints check)Manrico Corazzi2008-10-03T14:31:45Z2009-07-23T14:33:01Z
<p>This is a specific version of <a href="http://stackoverflow.com/questions/119540/business-logic-database-or-application-layer">this question</a>.<br/>
I want to check if I am inserting a duplicate row. Should I check it programmatically in my application layer:</p>
<pre><code>if (exists(obj))
{
throw new DuplicateObjectException();
}
HibernateSessionFactory.getSession().save(obj);
</code></pre>
<p>or should I catch the exception thrown by the database layer and triggered when I violate the contraint?</p>
<pre><code>try
{
HibernateSessionFactory.getSession().save(obj);
}
catch(ConstraintViolationException e)
{
throw new DuplicateObjectException();
}
</code></pre>
<p><strong>EDIT:</strong> In other words: though the constraint is there to remain (it's good database design anyway, and I can't be sure my app will be the only one accessing the table) shall I rely on the constraint and handle the exception its violation will raise, or I'd better check anyway?</p>
<p><strong>EDIT2:</strong> Of course I do check+insert within a transaction, locking the table to ensure no other process is writing another record in the meantime</p>
http://stackoverflow.com/questions/1063033/jsf-navigation1JSF: navigationManrico Corazzi2009-06-30T10:48:24Z2009-07-02T14:37:36Z
<p>I have to warn you: the question may be rather silly, but I can't seem to wrap my head around it right now.</p>
<p>I have two managed beans, let's say A and B:</p>
<pre><code>class A
{
private Date d8; // ...getters & setters
public String search()
{
// search by d8
}
}
class B
{
private Date d9; //...getters & setters
public String insert()
{
// insert a new item for date d9
}
}
</code></pre>
<p>and then I have two JSP pages, <strong>pageA.jsp</strong> (the search page) and <strong>pageB.jsp</strong> (the input page).
What I would like to do is placing a <strong>commandbutton</strong> in <strong>pageB</strong> so to open the search page <strong>pageA</strong> passing the parameter <strong>d9</strong> somehow, or navigating to <strong>pageA</strong> directly after <strong>b.insert()</strong>. What I would like to do is showing the search result after the insertion.</p>
<p>Maybe it's just that I can't see the clear, simple solution, but I'd like to know what the best practice might be here, also...</p>
<p>I though of these possible solutions:</p>
<ol>
<li>including **A** in **B** and linking the command button with **b.a.search**</li>
<li>passing **d9** as a **hiddenInput** and adding a new method **searchFromB** in **A** (ugly!)</li>
<li>collapsing the two beans into one</li>
</ol>
http://stackoverflow.com/questions/1073164/write-to-error-log-with-local-time-information-and-a-line-break-at-the-end/1073178#10731781Answer by Manrico Corazzi for Write to error log with local time information and a line break at the endManrico Corazzi2009-07-02T08:36:25Z2009-07-02T08:36:25Z<p>As for "2" I suspect that is because you are using the HTML formatting line break <strong><br/></strong> instead of the file line break <strong>\n</strong>. Maybe that's worth a try.</p>
http://stackoverflow.com/questions/1000445/transaction-like-style-of-programming-or-the-wise-exception-handling/1000500#10005001Answer by Manrico Corazzi for Transaction-like style of programming or the wise exception handlingManrico Corazzi2009-06-16T09:44:16Z2009-06-16T09:44:16Z<p>In general I do:</p>
<pre><code>transactionalJob1()
transaction_begin()
doJob1()
transaction_end()
exception:
log
transaction_rollback()
transactionalJob2()
transaction_begin()
doJob2()
transaction_end()
exception:
log
transaction_rollback()
transactionalJob1And2()
transaction_begin()
doJob1()
doJob2()
transaction_end()
exception:
transaction_rollback()
</code></pre>
<p>If your language of choice supports template methods you may wrap it all up.</p>
http://stackoverflow.com/questions/265680/aspectj-parameter-in-a-pointcut1AspectJ: parameter in a pointcutManrico Corazzi2008-11-05T16:21:27Z2009-06-10T09:06:42Z
<p>I'm using AspectJ to advice all the public methods which do have an argument of a chosen class. I tried the following:</p>
<pre><code>pointcut permissionCheckMethods(Session sess) :
(execution(public * *(.., Session)) && args(*, sess));
</code></pre>
<p>This is working wonderfully for methods with at least 2 arguments:</p>
<pre><code>public void delete(Object item, Session currentSession);
</code></pre>
<p>but it does not work with methods like:</p>
<pre><code>public List listAll(Session currentSession);
</code></pre>
<p>How may I change my pointcut to advice both methods executions? In other words: I expected the ".." wildcard to represent "zero or more arguments", but it looks like it means instead "one or more"...</p>
http://stackoverflow.com/questions/956464/how-to-create-username-from-email-address-provided-php/956497#9564971Answer by Manrico Corazzi for how to create username from email address provided - PHPManrico Corazzi2009-06-05T15:28:14Z2009-06-05T16:00:56Z<p>Something like:</p>
<pre><code>$username = left($email, stripos($email, '@'));
</code></pre>
<p>should do. You may want to learn <a href="http://it.php.net/regex" rel="nofollow">regular expressions</a> for these kinds of task.</p>
<p>Then you add the counter:</p>
<pre><code>function countOccurrences($name)
{
$con = mysql_connect(___, ___, ___);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db(___, $con);
$result = mysql_query("
SELECT COUNT(*) AS countOccurrences
FROM users
WHERE username LIKE '" . mysql_real_escape_string($name, $con) . "%'
");
$row = mysql_fetch_array($result);
$number = $row['countOccurrences'];
mysql_close($con);
return $number;
}
</code></pre>
<p>and then:</p>
<pre><code>$countUsers = countOccurrences($username);
if ($countUsers>0)
{
$username = $username . $countUsers;
}
</code></pre>
<p><strong>IMPORTANT:</strong> Consider using the whole email as username: you don't want <em>gordon@flash.net</em> to be considered equal to <em>gordon@clash.com</em></p>
<p><strong>NOTE:</strong> example code counts gordon, gordon1, gordon2 but gordonbah, gordonq, gordonxxx too</p>
<p><strong>NOTE:</strong> this is pretty rough, and should not be considered best PHP practice; it's just to give the general idea</p>
http://stackoverflow.com/questions/956112/programmatic-htmldocument-generation-using-java/956162#9561620Answer by Manrico Corazzi for Programmatic HTMLDocument generation using JavaManrico Corazzi2009-06-05T14:30:09Z2009-06-05T14:30:09Z<p>You may want to build some Element object with a render() method, and then assemble them in a tree structure; with a visit algorhytm you may then proceed to set the values and then render the whole thing.</p>
<p>PS: have you considered some templating engine like <a href="http://freemarker.org/" rel="nofollow">freemarker</a>?</p>
http://stackoverflow.com/questions/956095/unit-testing-for-invalid-enum-value/956121#9561210Answer by Manrico Corazzi for Unit testing for invalid enum valueManrico Corazzi2009-06-05T14:22:04Z2009-06-05T14:22:04Z<p>You'd rather refactor this using <a href="http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html" rel="nofollow">Replace Conditional with Polymorphism</a>.</p>
<p>Writing a test case for these lines will prove that the "if...then...else" statement is returning the correct modeObject, but I wouldn't spend much time on it. It may not be completely pointless, though: if you plan to add new modes the test will ensure that they would be handled as expected, expecially if there's going to be some cut & paste involved (it's not unusual to paste the code and fail to modify it accordingly).</p>
<p>That's what I would do: I'd write the test case(s), then refactor to have a hierarchy of classes handling the modes, and then re-run the tests to make sure I didn't break anything. Sounds like a plan?</p>
http://stackoverflow.com/questions/945191/caching-strategy-for-queried-data/945242#9452420Answer by Manrico Corazzi for Caching Strategy for queried dataManrico Corazzi2009-06-03T14:52:42Z2009-06-03T14:52:42Z<p>I don't advice custom caching strategy. Caching is hard. According to your platform of choice you might want to chose a third-party caching library/tool. </p>
http://stackoverflow.com/questions/886744/how-install-multiple-jdk-on-windows/886757#8867575Answer by Manrico Corazzi for How install multiple JDK on Windows?Manrico Corazzi2009-05-20T08:15:04Z2009-05-20T08:52:13Z<p>You may install different JDKs easily: just specify different folders.</p>
<p>You can setup the installed JDKs in Eclipse <strong>Window/Preferences/Installed JREs</strong></p>
<p>You can pick the JDK and Java version for every single project in <strong>Project/Properties/Java Compiler</strong></p>
http://stackoverflow.com/questions/848306/in-existing-code-i-have-found-the-money-transfer-procedure-which-isnt-wrapped-in/848315#8483152Answer by Manrico Corazzi for In existing code I have found the money transfer procedure which isn't wrapped in transaction, should I panic?Manrico Corazzi2009-05-11T14:15:40Z2009-05-11T14:15:40Z<p>A <a href="http://en.wikipedia.org/wiki/Transaction%5Fprocessing" rel="nofollow">transactional approach to database operations</a> approaches - among the others - two kinds of problems: </p>
<ol>
<li>it provides protection from concurrent access</li>
<li>it provides a rollback mechanism</li>
</ol>
<p>I don't see how any check might replace these two...</p>
http://stackoverflow.com/questions/848168/mystring-update-results-in-an-empty-mystring/848216#8482160Answer by Manrico Corazzi for myString = "UPDATE " results in an empty myStringManrico Corazzi2009-05-11T13:53:51Z2009-05-11T13:53:51Z<p>Just a blind guess... are you sure you are typing the second "myString" correctly?</p>
<p>Beacuse il you don't (ex. </p>
<pre><code>Debug.print "'" & mySting & "'"
</code></pre>
<p>) Access won't complain but it will create an empty variable...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/785345#7853451Answer by Manrico Corazzi for What is the best comment in source code you have ever encountered?Manrico Corazzi2009-04-24T10:39:23Z2009-04-24T10:39:23Z<p>In a bunch of poorly cut & pasted source code for a content management web app:</p>
<pre><code>// load image 1 - JPEG 240x320
img = f1.getImage();
if (check(img))
{
load(img, Constants.JPEG_240x320);
}
// load image 2 - JPEG 128x128
img = f2.getImage();
if (check(img))
{
load(img, Constants.JPEG_128x128);
}
...
// load image 13 - GIF 256x256
img = f13.getImage();
if (check(img))
{
load(img, Constants.GIF256x256);
}
// loaded all of the motherfucking images
</code></pre>
<p>note: roughly translated from italian :-)</p>
http://stackoverflow.com/questions/780567/how-can-i-extend-java-code-generated-by-jaxb-cxf-or-hibernate-tools/780692#7806924Answer by Manrico Corazzi for How can I extend Java code generated by JAXB, CXF or Hibernate tools?Manrico Corazzi2009-04-23T07:41:02Z2009-04-23T13:24:24Z<p>As for Hibernate you may tweak the template files used in code generation to change their behaviour. If you want to tweak the HIbernate Tools you can edit, for example: <strong><em>dao/daohome.ftl</em></strong> </p>
<p>You may even add fields to the "toString()" output editing the <strong><em>.hbm.xml</em></strong> files</p>
<pre><code>...
<property name="note" type="string">
<meta attribute="use-in-tostring">true</meta>
<column name="note" />
</property>
...
</code></pre>
<p>Both for logging and validation you may consider using <a href="http://en.wikipedia.org/wiki/AspectJ" rel="nofollow">AOP with AspectJ</a> (I don't recommend messing with the generated code, since you might want to build that from scratch many times over).</p>
http://stackoverflow.com/questions/1723099/outsourcing-program-development-and-retain-privacy/1723134#1723134Comment by Manrico Corazzi on Outsourcing program development and retain privacyManrico Corazzi2009-11-12T15:51:33Z2009-11-12T15:51:33ZThat depends on how strict is the "contract" (as in "design by contract") you provide to your outsourcers, and the quality of the tests you set up... but anyway planning things so that the components are indipendent can arise so many problems that you give it up all the same, in the end.http://stackoverflow.com/questions/1720778/python-list-of-strings-to-javaComment by Manrico Corazzi on Python - List of Strings to JavaManrico Corazzi2009-11-12T08:43:41Z2009-11-12T08:43:41ZUhm... your code is a bit confusing as you initialize the Object getNames, then "overwrite" it with an hashmap, then use another different object altogether, "getName" (without the "s"); if you want to print the list you have to iterate through ithttp://stackoverflow.com/questions/1613295/how-to-talk-about-a-business-intelligence-project-to-a-clientComment by Manrico Corazzi on How to talk about a business intelligence project to a client?Manrico Corazzi2009-10-23T13:26:12Z2009-10-23T13:26:12ZBusiness Intelligence is an oxymoron :-)http://stackoverflow.com/questions/1611854/change-base-href-using-javascriptComment by Manrico Corazzi on Change base href using javascriptManrico Corazzi2009-10-23T07:50:03Z2009-10-23T07:50:03ZIn fact it works. I tested it with Firefox 3.5.3 and Web Developer extension (View Generated Source Code). Could you please provide more informations?http://stackoverflow.com/questions/1607885/adding-some-logic-to-sql-query/1607913#1607913Comment by Manrico Corazzi on Adding some logic to SQL queryManrico Corazzi2009-10-22T15:16:26Z2009-10-22T15:16:26Zops... of course :-)http://stackoverflow.com/questions/1599331/arrays-of-structs-need-adviceComment by Manrico Corazzi on arrays of structs need adviceManrico Corazzi2009-10-21T08:04:49Z2009-10-21T08:04:49ZWhat do you mean "safely"? Since you are throwing away the data you may be careless... unless you are talking about memory leaks. Please provide code snippets or explain more profusely.http://stackoverflow.com/questions/1595498/a-difference-in-style-idictionary-vs-dictionary/1595535#1595535Comment by Manrico Corazzi on A difference in style: IDictionary vs DictionaryManrico Corazzi2009-10-21T07:57:51Z2009-10-21T07:57:51ZWhat I meant was that using the interface forces you to think in "generic" terms, enforcing the decoupling of the classes (in my example the method using Dictionary1 has to be familiar with the inner structure of the class, not with the interface)http://stackoverflow.com/questions/1592944/what-is-a-programming-language-which-is-appropriate-with-data-classification-projComment by Manrico Corazzi on What is a programming language which is appropriate with data classification projectManrico Corazzi2009-10-20T07:32:10Z2009-10-20T07:32:10ZMaybe you'd better provide some more information: size of the data sets you are going to handle, operating system, some examples of the operations you might want to implement, some links to examples...http://stackoverflow.com/questions/1592928/setup-file-for-window-applicationComment by Manrico Corazzi on setup file for window applicationManrico Corazzi2009-10-20T07:13:28Z2009-10-20T07:13:28ZWhich setup tools did you use? With "setup file" you mean ".msi"?http://stackoverflow.com/questions/1573121/mysql-fill-field-by-other-fields/1573135#1573135Comment by Manrico Corazzi on mysql - fill field by other fieldsManrico Corazzi2009-10-16T10:20:56Z2009-10-16T10:20:56ZThanks martin, jacobhttp://stackoverflow.com/questions/1570718/mysql-cant-see-column-in-php-ok-as-sql-statement/1570834#1570834Comment by Manrico Corazzi on MySQL can't see column in PHP. Ok as SQL statement. Manrico Corazzi2009-10-15T07:56:02Z2009-10-15T07:56:02ZGood point, but if the query cut and pasted into an SQL client works there should not be a case sensitiveness problem...http://stackoverflow.com/questions/156989/how-to-make-programming-more-comfortable/157041#157041Comment by Manrico Corazzi on How to make programming more comfortable?Manrico Corazzi2009-08-20T08:31:12Z2009-08-20T08:31:12ZI have a friend with backaches who tried a standing desk and told me it actually helped him. I tried once, only for a few hours, and I must admit it's more comfortable than I would have thought.http://stackoverflow.com/questions/1063033/jsf-navigation/1065323#1065323Comment by Manrico Corazzi on JSF: navigationManrico Corazzi2009-07-02T08:33:54Z2009-07-02T08:33:54ZWell, I guess I should've planned the coding better in advance, but I will try this "passing the parameters" workaround and see if it just keeps the application working. I still don't get (and don't like) JSF... :(http://stackoverflow.com/questions/1063033/jsf-navigation/1063173#1063173Comment by Manrico Corazzi on JSF: navigationManrico Corazzi2009-07-02T08:32:29Z2009-07-02T08:32:29ZI will try this. Though I don't like the idea of working around the JSF mechanics, I think that just may be the only way. http://stackoverflow.com/questions/1063033/jsf-navigation/1063058#1063058Comment by Manrico Corazzi on JSF: navigationManrico Corazzi2009-07-02T08:31:17Z2009-07-02T08:31:17ZWell, I got the general idea behind JSF. This is a special case, though: I want two beans to exchange parameters, not the plain vanilla usual flow.