User FerranB - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T20:14:46Zhttp://stackoverflow.com/feeds/user/40441http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1104714/tips-for-developing-on-winforms-thinking-on-a-future-web-developing1Tips for developing on WinForms thinking on a future Web developingFerranB2009-07-09T15:40:23Z2009-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#18007110Answer by FerranB for query to check index on a tableFerranB2009-11-25T23:39:41Z2009-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#17901530Answer by FerranB for Need Palm Desktop datebook.dat file formatFerranB2009-11-24T13:41:57Z2009-11-24T13:41:57Z<p>Look <a href="http://webcalendar.cvs.sourceforge.net/viewvc/webcalendar/webcalendar/tools/palm%5Fdatebook.pl?revision=1.8&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-use4How much memory does a C#/.NET object use?FerranB2009-01-08T23:00:46Z2009-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-propertie3Interfaces with different getter and setter for the same propertieFerranB2009-10-26T12:15:23Z2009-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-delegates3Question about foreach and delegatesFerranB2009-10-21T12:48:42Z2009-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-users2Which is the best kind of documentation for end-users? FerranB2008-12-18T17:15:00Z2009-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-express2Alternatives to Oracle application express?FerranB2009-02-03T22:50:11Z2009-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-dictionary4Python "extend" for a dictionaryFerranB2009-02-23T10:59:32Z2009-10-12T02:27:52Z
<p>Which is the best way to extend a dictionary with another one? For instance:</p>
<pre><code>>>> a = { "a" : 1, "b" : 2 }
>>> b = { "c" : 3, "d" : 4 }
>>> a
{'a': 1, 'b': 2}
>>> 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-used1How events like CancelEventArgs can be used?FerranB2009-10-08T17:25:04Z2009-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-files1How to automatically convert VS2003 classes to partial Designer.cs files?FerranB2009-04-17T23:09:12Z2009-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-one2How to check if an object its *exactly* a class, not a derived one?FerranB2009-10-06T22:59:40Z2009-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) && !(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-database1How to access the Picasa (desktop) database?FerranB2009-09-23T16:06:50Z2009-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#15285532Answer by FerranB for How to check if an object its *exactly* a class, not a derived one?FerranB2009-10-06T23:03:44Z2009-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-sleeps1How to continue execution when mobile device sleeps?FerranB2009-02-27T00:08:45Z2009-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#14523040Answer by FerranB for What is the best way to upgrade from Eclipse 3.3 to 3.4 (or future releases)FerranB2009-09-20T23:24:10Z2009-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#14419890Answer by FerranB for Building command line applicationsFerranB2009-09-18T00:11:05Z2009-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-dead6Is eclipse visual editor dead?FerranB2008-11-25T23:23:34Z2009-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-2Answer by FerranB for What is your best programmer joke?FerranB2009-06-05T23:04:02Z2009-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-control2How to embed a Java control on a C# winforms control?FerranB2009-01-13T23:16:18Z2009-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-query1What's wrong with this FIRST_VALUE query?FerranB2009-08-04T17:39:11Z2009-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-queries1Differences between two analytic queriesFerranB2009-08-04T17:07:57Z2009-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#12048270Answer by FerranB for Does .NET has an Exception that similar to Delphi's EAbort ?FerranB2009-07-30T06:39:46Z2009-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-week1How many hours (days) do you work on a day (week)? FerranB2008-12-15T01:52:34Z2009-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#11677250Answer by FerranB for Help Constructing an Oracle SQL with ConditionFerranB2009-07-22T19:40:40Z2009-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#11621080Answer by FerranB for How to rollback OracleBulkCopy() inserted rows?FerranB2009-07-21T22:36:43Z2009-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#11620130Answer by FerranB for Error connecting to Oracle from Visual StudioFerranB2009-07-21T22:07:30Z2009-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#11619370Answer by FerranB for Is ODP.NET required for Oracle 11g Client? FerranB2009-07-21T21:46:35Z2009-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#11436522Answer by FerranB for planning for oracle takeover of sun - farewell mysql?FerranB2009-07-17T14:32:47Z2009-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&subj=news&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-1Answer by FerranB for Update large number of rows in OracleFerranB2009-07-16T20:36:56Z2009-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#1624486Comment by FerranB on Interfaces with different getter and setter for the same propertieFerranB2009-10-26T12:56:32Z2009-10-26T12:56:32ZI 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#1624486Comment by FerranB on Interfaces with different getter and setter for the same propertieFerranB2009-10-26T12:36:08Z2009-10-26T12:36:08ZIn 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-propertieComment by FerranB on Interfaces with different getter and setter for the same propertieFerranB2009-10-26T12:27:12Z2009-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#1601753Comment by FerranB on Question about foreach and delegatesFerranB2009-10-26T11:53:01Z2009-10-26T11:53:01ZAnd 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#1614349Comment by FerranB on Is there an autmatic modification time stamp type for Oracle columns?FerranB2009-10-25T00:02:02Z2009-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#1539313Comment by FerranB on How events like CancelEventArgs can be used?FerranB2009-10-08T17:37:14Z2009-10-08T17:37:14ZIt'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#1539299Comment by FerranB on How events like CancelEventArgs can be used?FerranB2009-10-08T17:31:54Z2009-10-08T17:31:54ZJust this! Thankshttp://stackoverflow.com/questions/1528534/how-to-check-if-an-object-its-exactly-a-class-not-a-derived-one/1528695#1528695Comment by FerranB on How to check if an object its *exactly* a class, not a derived one?FerranB2009-10-07T10:35:51Z2009-10-07T10:35:51ZThis is for .net 3.xhttp://stackoverflow.com/questions/1528534/how-to-check-if-an-object-its-exactly-a-class-not-a-derived-one/1528542#1528542Comment by FerranB on How to check if an object its *exactly* a class, not a derived one?FerranB2009-10-06T23:04:27Z2009-10-06T23:04:27Ztypeof requires a type not a classhttp://stackoverflow.com/questions/1228910/whats-wrong-with-this-firstvalue-query/1228961#1228961Comment by FerranB on What's wrong with this FIRST_VALUE query?FerranB2009-08-06T15:52:56Z2009-08-06T15:52:56Z"When you specify IGNORE NULLS, the function, well, ignores NULLs." 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#1228961Comment by FerranB on What's wrong with this FIRST_VALUE query?FerranB2009-08-04T17:58:19Z2009-08-04T17:58:19ZDo you mean that the "ignore nulls" clause is not for determinig the "first_value" 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#1193589Comment by FerranB on How to write a .Net application that works with both SqlServer and Oracle (now that System.Data.OracleClient is deprecated)FerranB2009-07-28T17:45:23Z2009-07-28T17:45:23ZThis does not work because the Oracle.DataAccess.dll calls to the OCI.ddl on ORACLE_HOME\binhttp://stackoverflow.com/questions/1161857/how-to-rollback-oraclebulkcopy-inserted-rows/1162108#1162108Comment by FerranB on How to rollback OracleBulkCopy() inserted rows?FerranB2009-07-22T17:02:21Z2009-07-22T17:02:21ZI 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-featuresComment by FerranB on Learning about Hidden FeaturesFerranB2009-07-21T22:43:25Z2009-07-21T22:43:25ZTo the voter to close: duplicated of which one?http://stackoverflow.com/questions/1161973/learning-about-hidden-featuresComment by FerranB on Learning about Hidden FeaturesFerranB2009-07-21T22:42:15Z2009-07-21T22:42:15ZWhich is that book, just for curiosity ;-)