User FerranB - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:14:46Z http://stackoverflow.com/feeds/user/40441 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1104714/tips-for-developing-on-winforms-thinking-on-a-future-web-developing 1 Tips for developing on WinForms thinking on a future Web developing FerranB 2009-07-09T15:40:23Z 2009-11-26T10:04:29Z <p>We are developing/mantaining an enterprise application which for historical reasons and development speedup it was targered for WinForms.</p> <p>Now we are thinking that sooner or later (more sooner than later) that application will need to be Web based. </p> <p>Thinking on the "to-Web" movement. Which are the most important things we have to consider? Something like, thing on MVP parading (or others), determine now the kind of platform/framework you are going to use, ...</p> <p>Any experience on migration from winforms to web? Any suggestion to take care?</p> <p><strong>Aclaration</strong>: In our scenario the application would be nice NOW to be Web based but we are realistics. I agree that not all the applications have to be Web based (this is the main reason we developed with WinForms!). But sometimes the requirements changes and, in our scenario, we want to offer that application as <a href="http://en.wikipedia.org/wiki/Software%5Fas%5Fa%5Fservice" rel="nofollow">SaaS</a>.</p> http://stackoverflow.com/questions/1800698/query-to-check-index-on-a-table/1800711#1800711 0 Answer by FerranB for query to check index on a table FerranB 2009-11-25T23:39:41Z 2009-11-25T23:48:26Z <p>On Oracle:</p> <ul> <li><p>Determine all indexes on table:</p> <p>SELECT index_name FROM user_indexes WHERE table_name = :table</p></li> <li><p>Determine columns indexes and columns on index:</p> <p>SELECT index_name , column_position , column_name FROM user_ind_columns WHERE table_name = :table ORDER BY index_name, column_order</p></li> </ul> <p>References:</p> <ul> <li><a href="http://download.oracle.com/docs/cd/E11882%5F01/server.112/e10820/statviews%5F1099.htm#i1577532" rel="nofollow">ALL_IND_COLUMNS</a></li> <li><a href="http://download.oracle.com/docs/cd/E11882%5F01/server.112/e10820/statviews%5F1105.htm#i1578369" rel="nofollow">ALL_INDEXES</a></li> </ul> http://stackoverflow.com/questions/419441/need-palm-desktop-datebook-dat-file-format/1790153#1790153 0 Answer by FerranB for Need Palm Desktop datebook.dat file format FerranB 2009-11-24T13:41:57Z 2009-11-24T13:41:57Z <p>Look <a href="http://webcalendar.cvs.sourceforge.net/viewvc/webcalendar/webcalendar/tools/palm%5Fdatebook.pl?revision=1.8&amp;view=markup" rel="nofollow">here</a>, there is a very good reader on perl on which you can see the format.</p> http://stackoverflow.com/questions/426396/how-much-memory-does-a-c-net-object-use 4 How much memory does a C#/.NET object use? FerranB 2009-01-08T23:00:46Z 2009-10-30T14:25:51Z <p>I'm developing an application which currently have hundreds of objects created. </p> <p>Is it possible to determine (or approximate) the memory allocated by an object (class instance)? </p> http://stackoverflow.com/questions/1624465/interfaces-with-different-getter-and-setter-for-the-same-propertie 3 Interfaces with different getter and setter for the same propertie FerranB 2009-10-26T12:15:23Z 2009-10-26T16:57:11Z <p>I've made the following declaration for interfaces:</p> <pre><code>public interface IBasic { int Data { get; } } public interface IChangeable : IBasic { int Data { set; } } </code></pre> <p>The compiler says that <code>IChangeable.Data</code> hides <code>IBasic.Data</code>. It's reasonable. The alternative I've found is:</p> <pre><code>public interface IBasic { int Data { get; } } public interface IChangeable : IBasic { void ChangeData(int value); } </code></pre> <p>There is any way to define setter and getters for the same property on different hierarchy on interfaces? Or there are any alternatives to this approach?</p> http://stackoverflow.com/questions/1600597/question-about-foreach-and-delegates 3 Question about foreach and delegates FerranB 2009-10-21T12:48:42Z 2009-10-21T15:45:45Z <p>Suppose the following code:</p> <pre><code>foreach(Item i on ItemCollection) { Something s = new Something(); s.EventX += delegate { ProcessItem(i); }; SomethingCollection.Add(s); } </code></pre> <p>Of course, this is wrong because all the delegates points to the same Item. The alternative is:</p> <pre><code>foreach(Item i on ItemCollection) { Item tmpItem = i; Something s = new Something(); s.EventX += delegate { ProcessItem(tmpItem); }; SomethingCollection.Add(s); } </code></pre> <p>In this case all the delegates point to their own Item.</p> <p>What about this approach? There is any other better solution?</p> http://stackoverflow.com/questions/378525/which-is-the-best-kind-of-documentation-for-end-users 2 Which is the best kind of documentation for end-users? FerranB 2008-12-18T17:15:00Z 2009-10-21T11:23:11Z <p>Documenting for end-users is hard because read documentation sucks if you don't use to do it. And if you want to push the end-users to use it, you need to look for the easiest way.</p> <p>I guess that the best way to document is using screen recordings. Do you agree? Do you think there are better one?</p> http://stackoverflow.com/questions/509303/alternatives-to-oracle-application-express 2 Alternatives to Oracle application express? FerranB 2009-02-03T22:50:11Z 2009-10-20T15:02:22Z <p>I've using <a href="http://www.oracle.com/technology/products/database/application_express/index.html" rel="nofollow">Oracle Application Express</a> (apex) which is the most fast database application builder for the web that I've seen. </p> <p>Oracle Apex is like Microsoft Access for desktop and Oracle databases.</p> <p>Any one knows about alternatives? </p> <p><strong>EDIT:</strong> For alternative I mean "There is any tool comparing this one?". Of course there are a lot of frameworks but I've not seen other as fast as Apex.</p> http://stackoverflow.com/questions/577234/python-extend-for-a-dictionary 4 Python "extend" for a dictionary FerranB 2009-02-23T10:59:32Z 2009-10-12T02:27:52Z <p>Which is the best way to extend a dictionary with another one? For instance:</p> <pre><code>&gt;&gt;&gt; a = { "a" : 1, "b" : 2 } &gt;&gt;&gt; b = { "c" : 3, "d" : 4 } &gt;&gt;&gt; a {'a': 1, 'b': 2} &gt;&gt;&gt; b {'c': 3, 'd': 4} </code></pre> <p>I'm looking for any operation to obtain this avoiding <code>for</code> loop:</p> <pre><code>{ "a" : 1, "b" : 2, "c" : 3, "d" : 4 } </code></pre> <p>I wish to do something like:</p> <pre><code>a.extend(b) # This does not work </code></pre> http://stackoverflow.com/questions/1539292/how-events-like-canceleventargs-can-be-used 1 How events like CancelEventArgs can be used? FerranB 2009-10-08T17:25:04Z 2009-10-08T17:29:44Z <p>Ho can the event <a href="http://System.ComponentModel.CancelEventArgs" rel="nofollow"><code>System.ComponentModel.CancelEventArgs</code></a> be used? Suppose we have the following code:</p> <pre><code> public event CancelEventHandler EventTest = delegate { }; public void MakeSomethingThatRaisesEvent() { CancelEventArgs cea = new CancelEventArgs(); EventTest(this, cea); if (cea.Cancel) { // Do something } else { // Do something else } } </code></pre> <p>What happens if more than one delegate is registered on the event? There is any way to get the results of all the subscribers? </p> <p>This is used on Winforms (at least) sometimes. If not possible to get all values, they suppose only one subscriber to the event?</p> http://stackoverflow.com/questions/762528/how-to-automatically-convert-vs2003-classes-to-partial-designer-cs-files 1 How to automatically convert VS2003 classes to partial Designer.cs files? FerranB 2009-04-17T23:09:12Z 2009-10-07T18:00:02Z <p>I'm upgrading a project from Visual Studio 2003 to 2008 and wish to automatically generate <code>XXX.Designer.cs</code> files and update the corresponging <code>XXX.cs</code> original one.</p> <p>Any automatic way to do it?</p> <p><strong>UPDATE</strong>: I'm refering on WinForms. Of course, I know the old-style works but i'm lookgn for the way to go to the new style without a hand-made way. </p> http://stackoverflow.com/questions/1528534/how-to-check-if-an-object-its-exactly-a-class-not-a-derived-one 2 How to check if an object its *exactly* a class, not a derived one? FerranB 2009-10-06T22:59:40Z 2009-10-07T05:10:17Z <p>There is any way to determine if an object is <em>exactly</em> a class and not a derived one of that?</p> <p>For instance:</p> <pre><code>class A : X { } class B : A { } </code></pre> <p>I can do something like this:</p> <pre><code>bool isExactlyA(X obj) { return (obj is A) &amp;&amp; !(obj is B); } </code></pre> <p>Of course if there are more derived classes of <code>A</code> I'd have to add <em>and</em> conditions.</p> http://stackoverflow.com/questions/1467004/how-to-access-the-picasa-desktop-database 1 How to access the Picasa (desktop) database? FerranB 2009-09-23T16:06:50Z 2009-10-07T04:39:26Z <p>Is there any way to read the Picasa database? </p> <p>What is the format of the Picasa database?</p> <p>Are there any APIs to access the database?</p> http://stackoverflow.com/questions/1528534/how-to-check-if-an-object-its-exactly-a-class-not-a-derived-one/1528553#1528553 2 Answer by FerranB for How to check if an object its *exactly* a class, not a derived one? FerranB 2009-10-06T23:03:44Z 2009-10-06T23:03:44Z <p>I see...</p> <pre><code>control.GetType() == typeof(Label) </code></pre> http://stackoverflow.com/questions/593054/how-to-continue-execution-when-mobile-device-sleeps 1 How to continue execution when mobile device sleeps? FerranB 2009-02-27T00:08:45Z 2009-10-06T10:43:47Z <p>I'm developing an application that needs to execute until a count down. When the handled turns off the screen, the countdown halts. How can I continue the execution when this situation happens?</p> http://stackoverflow.com/questions/578676/what-is-the-best-way-to-upgrade-from-eclipse-3-3-to-3-4-or-future-releases/1452304#1452304 0 Answer by FerranB for What is the best way to upgrade from Eclipse 3.3 to 3.4 (or future releases) FerranB 2009-09-20T23:24:10Z 2009-09-20T23:24:10Z <p>Read this eclipse <a href="http://wiki.eclipse.org/FAQ%5FHow%5Fdo%5FI%5Fupgrade%5FEclipse%3F" rel="nofollow">FAQ</a> question.</p> http://stackoverflow.com/questions/1441904/building-command-line-applications/1441989#1441989 0 Answer by FerranB for Building command line applications FerranB 2009-09-18T00:11:05Z 2009-09-18T00:11:05Z <p>Take a look to:</p> <ul> <li><a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> which is a very good and easy parser which also generates code on <a href="http://www.antlr.org/wiki/display/ANTLR3/Code+Generation+Targets" rel="nofollow">C++</a>.</li> <li>You can take a look to <a href="http://naturalcli.sourceforge.net/" rel="nofollow">Natural CLI</a> (java) to get inspired. (Disclaimer: i'm the developer of that project).</li> </ul> http://stackoverflow.com/questions/319242/is-eclipse-visual-editor-dead 6 Is eclipse visual editor dead? FerranB 2008-11-25T23:23:34Z 2009-09-13T22:46:29Z <p>The Eclipse <a href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.ve" rel="nofollow">Visual Editor</a> project seems to be dead, no commits, no updates. Any one know what is happening?</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/958513#958513 -2 Answer by FerranB for What is your best programmer joke? FerranB 2009-06-05T23:04:02Z 2009-08-16T03:41:15Z <blockquote> <pre><code>-Hello girl, what is your name? -Ruth. -Root, nice. And what is your password? </code></pre> </blockquote> http://stackoverflow.com/questions/441275/how-to-embed-a-java-control-on-a-c-winforms-control 2 How to embed a Java control on a C# winforms control? FerranB 2009-01-13T23:16:18Z 2009-08-11T23:42:33Z <p>Can I put a Java control (SWT, Swing, ...) on a C# control? </p> <p>I know it's possible with web controls but I don't like this way.</p> http://stackoverflow.com/questions/1228910/whats-wrong-with-this-firstvalue-query 1 What's wrong with this FIRST_VALUE query? FerranB 2009-08-04T17:39:11Z 2009-08-06T17:24:31Z <p>The query is the following:</p> <pre><code>with t as ( select 450 id, null txt , 3488 id_usr from dual union all select 449 , null , 3488 from dual union all select 79 , 'A' , 3488 from dual union all select 78 , 'X' , 3488 from dual ) select id , txt , id_usr , first_value(txt ignore nulls) over (partition by id_usr order by id desc) first_one from t </code></pre> <p>And returns:</p> <pre><code>ID TXT D_USR FIRST_ONE 450 3488 449 3488 79 A 3488 A 78 X 3488 A </code></pre> <p>This was the expected:</p> <pre><code>ID TXT ID_USR FIRST_ONE 450 3488 A 449 3488 A 79 A 3488 A 78 X 3488 A </code></pre> <p>What's wrong and why?</p> http://stackoverflow.com/questions/1228748/differences-between-two-analytic-queries 1 Differences between two analytic queries FerranB 2009-08-04T17:07:57Z 2009-08-04T17:31:53Z <p>Which are the diferrences between the following two queries? Both returns different rows:</p> <pre><code>with ordered_table as ( select * from table order by column1 ) select first_value(column2 ignore nulls) over (partition by column3) from ordered_table; </code></pre> <p>and</p> <pre><code>select first_value(column2 ignore nulls) over (partition by column3 order by column1) from table; </code></pre> <p>Note: I'll try to provide a test-case but I think that for someone having the concepts clear is not needed.</p> http://stackoverflow.com/questions/1204769/does-net-has-an-exception-that-similar-to-delphis-eabort/1204827#1204827 0 Answer by FerranB for Does .NET has an Exception that similar to Delphi's EAbort ? FerranB 2009-07-30T06:39:46Z 2009-07-30T06:39:46Z <p>The only one I know is <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadabortexception.aspx" rel="nofollow">ThreadAbortException</a> which is "<em>The exception that is thrown when a call is made to the Abort method.</em>"</p> http://stackoverflow.com/questions/367290/how-many-hours-days-do-you-work-on-a-day-week 1 How many hours (days) do you work on a day (week)? FerranB 2008-12-15T01:52:34Z 2009-07-29T04:35:32Z <p>I try to work just the 40 hours on a week to try to be compatible with personal things (some of them also related with computers). But sometimes is so difficult.</p> <p>For me is interesting to know:</p> <ul> <li>How many hours your are working on a day?</li> <li>How many days you are woking on a week?</li> <li>Do you have start and finish time or your don't watch you clock?</li> </ul> http://stackoverflow.com/questions/1164390/help-constructing-an-oracle-sql-with-condition/1167725#1167725 0 Answer by FerranB for Help Constructing an Oracle SQL with Condition FerranB 2009-07-22T19:40:40Z 2009-07-22T19:40:40Z <p>The best thing to do this is with stored procedures. If you have other sql commands or what ever, then use transactions: run as stored procedures as you want intercalated with data that does not come from database, the commit (or rollback).</p> <p>If something changes the stored procedures becomes invalid on text-sql does not happens, you have to wait to unit-tests o runtime error. We use generated code that makes very easy to call stored procedures (class.method).</p> <p><strong>DISCLAIMER</strong>: I'm not an stored procedure fanatic. I use Stored Procedures and ORM as best fits on each moment. It depends on the case.</p> http://stackoverflow.com/questions/1161857/how-to-rollback-oraclebulkcopy-inserted-rows/1162108#1162108 0 Answer by FerranB for How to rollback OracleBulkCopy() inserted rows? FerranB 2009-07-21T22:36:43Z 2009-07-21T22:36:43Z <p>Have you tried to set <code>OracleBulkCopyOptions.UseInternalTransaction</code> instead of <code>OracleBulkCopyOptions.Default</code> to see if the exception <code>InvalidOperationException</code> is raised as the <a href="http://download.oracle.com/docs/html/E10927%5F01/OracleBulkCopyOptionsEnumeration.htm#CHDEHFFF" rel="nofollow">documentation</a> claims? </p> http://stackoverflow.com/questions/1155519/error-connecting-to-oracle-from-visual-studio/1162013#1162013 0 Answer by FerranB for Error connecting to Oracle from Visual Studio FerranB 2009-07-21T22:07:30Z 2009-07-21T22:07:30Z <p>Try to install the <a href="http://www.oracle.com/technology/tech/windows/odpnet/index.html" rel="nofollow">Oracle Developer Tools for Visual Studio</a>. It's free but you need to register, also free.</p> http://stackoverflow.com/questions/1160218/is-odp-net-required-for-oracle-11g-client/1161937#1161937 0 Answer by FerranB for Is ODP.NET required for Oracle 11g Client? FerranB 2009-07-21T21:46:35Z 2009-07-21T21:46:35Z <p>I think the message <em>"System.Data.OracleClient requires Oracle client software version 8.1.7 or greater"</em> it's similar to <em>"Oracle client not installed, installed but not found or installed but it's needed 8.1.7 or greater"</em>.</p> <p>Check on regedit if the values are right under the key:</p> <pre><code> HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_OraOdac11g_home1 </code></pre> <p>Where <code>OraOdac11g_home1</code> depends on the Oracle Home name for your installation.</p> <p>Also, try to connect through Visual Studio to see if its possible.</p> http://stackoverflow.com/questions/1142889/planning-for-oracle-takeover-of-sun-farewell-mysql/1143652#1143652 2 Answer by FerranB for planning for oracle takeover of sun - farewell mysql? FerranB 2009-07-17T14:32:47Z 2009-07-21T13:33:59Z <p>Some tips:</p> <ul> <li>Oracle have two Open Source Databases: <a href="http://www.oracle.com/database/berkeley-db/index.html" rel="nofollow">Berkeley DB</a> and now MySQL. Then MySQL is not the first one.</li> <li>Oracle have a lot of <a href="http://oss.oracle.com/" rel="nofollow">Open Source Projects</a> and free software. And there are oracle developers that contribute to Open Source comunity. For instance, as you can see <a href="http://news.cnet.com/8301-13505%5F3-10288910-16.html?part=rss&amp;subj=news&amp;tag=2547-1%5F3-0-5" rel="nofollow">here</a>, is the fifth company contributing on linux kernel, when Sun is the 11th.</li> <li>The market for Oracle is other that the MySQL.</li> </ul> <p>Then... Don't worry because it's not interesting for them to close MySQL. Anyway, If something is wrong, magically the community will create a fork of MySQL because GPL license.</p> http://stackoverflow.com/questions/1137896/update-large-number-of-rows-in-oracle/1140151#1140151 -1 Answer by FerranB for Update large number of rows in Oracle FerranB 2009-07-16T20:36:56Z 2009-07-20T16:53:55Z <p><strong>Reconsider the update!</strong> </p> <p>It have a very high cost to do an update when is for a lot of rows. Take a look to <a href="http://stackoverflow.com/questions/644975/deleting-a-lot-of-data-in-oracle/644983#644983">this other answer</a> from mine on another question.</p> <ol> <li>Create a new table TC with a select with a JOIN on both tables TA and TB. </li> <li>Rename TA to TX</li> <li>Rename the result table TC to TA.</li> </ol> http://stackoverflow.com/questions/1624465/interfaces-with-different-getter-and-setter-for-the-same-propertie/1624486#1624486 Comment by FerranB on Interfaces with different getter and setter for the same propertie FerranB 2009-10-26T12:56:32Z 2009-10-26T12:56:32Z I want to allow the implementor of <code>IChangeable</code> to have the <code>get</code> and <code>set</code>. http://stackoverflow.com/questions/1624465/interfaces-with-different-getter-and-setter-for-the-same-propertie/1624486#1624486 Comment by FerranB on Interfaces with different getter and setter for the same propertie FerranB 2009-10-26T12:36:08Z 2009-10-26T12:36:08Z In this approach, which is the way to assign value to Foo.Data? http://stackoverflow.com/questions/1624465/interfaces-with-different-getter-and-setter-for-the-same-propertie Comment by FerranB on Interfaces with different getter and setter for the same propertie FerranB 2009-10-26T12:27:12Z 2009-10-26T12:27:12Z @Simon: I've showed a simplification of the problem. On my real problem, The IBasic declares more things. http://stackoverflow.com/questions/1600597/question-about-foreach-and-delegates/1601753#1601753 Comment by FerranB on Question about foreach and delegates FerranB 2009-10-26T11:53:01Z 2009-10-26T11:53:01Z And it's not better to show a compiler warning instead of change the behaviour? http://stackoverflow.com/questions/1614233/is-there-an-autmatic-modification-time-stamp-type-for-oracle-columns/1614349#1614349 Comment by FerranB on Is there an autmatic modification time stamp type for Oracle columns? FerranB 2009-10-25T00:02:02Z 2009-10-25T00:02:02Z @David: The created and time are very easy to remember: use a not null constraint. http://stackoverflow.com/questions/1539292/how-events-like-canceleventargs-can-be-used/1539313#1539313 Comment by FerranB on How events like CancelEventArgs can be used? FerranB 2009-10-08T17:37:14Z 2009-10-08T17:37:14Z It's very easy that the subscribers use code as e.Cancel = (condition), then you cannot suppose that everyone is going to respect this. http://stackoverflow.com/questions/1539292/how-events-like-canceleventargs-can-be-used/1539299#1539299 Comment by FerranB on How events like CancelEventArgs can be used? FerranB 2009-10-08T17:31:54Z 2009-10-08T17:31:54Z Just this! Thanks http://stackoverflow.com/questions/1528534/how-to-check-if-an-object-its-exactly-a-class-not-a-derived-one/1528695#1528695 Comment by FerranB on How to check if an object its *exactly* a class, not a derived one? FerranB 2009-10-07T10:35:51Z 2009-10-07T10:35:51Z This is for .net 3.x http://stackoverflow.com/questions/1528534/how-to-check-if-an-object-its-exactly-a-class-not-a-derived-one/1528542#1528542 Comment by FerranB on How to check if an object its *exactly* a class, not a derived one? FerranB 2009-10-06T23:04:27Z 2009-10-06T23:04:27Z typeof requires a type not a class http://stackoverflow.com/questions/1228910/whats-wrong-with-this-firstvalue-query/1228961#1228961 Comment by FerranB on What's wrong with this FIRST_VALUE query? FerranB 2009-08-06T15:52:56Z 2009-08-06T15:52:56Z &quot;When you specify IGNORE NULLS, the function, well, ignores NULLs.&quot; Yes, but only to determine the FIRST_VALUE not the windowing. This have no sense for this question. The problem is that, as you say, the windowing started on current row not on all the partition rows. http://stackoverflow.com/questions/1228910/whats-wrong-with-this-firstvalue-query/1228961#1228961 Comment by FerranB on What's wrong with this FIRST_VALUE query? FerranB 2009-08-04T17:58:19Z 2009-08-04T17:58:19Z Do you mean that the &quot;ignore nulls&quot; clause is not for determinig the &quot;first_value&quot; but it's for the windowing? http://stackoverflow.com/questions/1193066/how-to-write-a-net-application-that-works-with-both-sqlserver-and-oracle-now-th/1193589#1193589 Comment by FerranB on How to write a .Net application that works with both SqlServer and Oracle (now that System.Data.OracleClient is deprecated) FerranB 2009-07-28T17:45:23Z 2009-07-28T17:45:23Z This does not work because the Oracle.DataAccess.dll calls to the OCI.ddl on ORACLE_HOME\bin http://stackoverflow.com/questions/1161857/how-to-rollback-oraclebulkcopy-inserted-rows/1162108#1162108 Comment by FerranB on How to rollback OracleBulkCopy() inserted rows? FerranB 2009-07-22T17:02:21Z 2009-07-22T17:02:21Z I know. I said about a test to see if all is working fine. as the documentation says, if you have UseInternalTransaction and use BeginTransaction an exception is raised. If the exception is not raised may be the trouble is that the transaction is not started. http://stackoverflow.com/questions/1161973/learning-about-hidden-features Comment by FerranB on Learning about Hidden Features FerranB 2009-07-21T22:43:25Z 2009-07-21T22:43:25Z To the voter to close: duplicated of which one? http://stackoverflow.com/questions/1161973/learning-about-hidden-features Comment by FerranB on Learning about Hidden Features FerranB 2009-07-21T22:42:15Z 2009-07-21T22:42:15Z Which is that book, just for curiosity ;-)