User Ricardo Cabral - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:14:47Zhttp://stackoverflow.com/feeds/user/18741http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170652/whats-the-best-net-library-for-parsing-and-generating-excel-spreadsheets6What's the best .NET library for parsing and generating Excel spreadsheets?Ricardo Cabral2008-10-04T17:07:13Z2009-10-26T22:34:44Z
<p>Open-source or not. What's your experience using it? How's the learning curve?</p>
http://stackoverflow.com/questions/385401/maven-replacement1Maven replacement?Ricardo Cabral2008-12-22T02:24:27Z2009-07-30T20:54:30Z
<p>What would you suggest as a replacement to the Maven Java build toolset? Just plain Ant scripts? SCons?</p>
http://stackoverflow.com/questions/156205/how-do-you-add-recommendations-to-your-ecommerce-site/312654#3126541Answer by Ricardo Cabral for How do you add recommendations to your ecommerce site?Ricardo Cabral2008-11-23T15:57:21Z2008-11-23T15:57:21Z<p>There is an entire research area in computer science devoted to this subject. I'd suggest reading <a href="http://scholar.google.com/scholar?q=recommendation+engine&hl=en&lr=&btnG=Search" rel="nofollow">some articles</a>.</p>
http://stackoverflow.com/questions/54179/what-should-be-considered-when-building-a-recommendation-engine/312643#3126431Answer by Ricardo Cabral for What should be considered when building a Recommendation Engine?Ricardo Cabral2008-11-23T15:48:39Z2008-11-23T15:48:39Z<p>There is an entire research area in computer science devoted to this subject. I'd suggest reading <a href="http://scholar.google.com/scholar?q=recommendation+engine&hl=en&lr=&btnG=Search" rel="nofollow">some articles</a>.</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/312554#3125543Answer by Ricardo Cabral for What is your best programmer joke?Ricardo Cabral2008-11-23T14:11:43Z2008-11-23T14:11:43Z<p><a href="http://freeworld.thc.org/root/phun/unmaintain.html" rel="nofollow">How To Write Unmaintainable Code</a> contains tons of it.</p>
http://stackoverflow.com/questions/312461/starting-working-with-eclipse-rcp/312541#3125411Answer by Ricardo Cabral for Starting working with Eclipse RCPRicardo Cabral2008-11-23T13:57:26Z2008-11-23T13:57:26Z<p>Good side: getting your head around all the API and it's requirements is really hard but certainly pays off later as you notice your code becoming better well structured and maintainable. One reason is that you are forced to adhere to all the best practices about developing rich and complex desktop applications.</p>
<p>Bad side: it's pretty easy to over-engineer your application, so be careful.</p>
<p>I believe the book you mentioned is the best one so far as most of the foundation is there. My advice after reading this book is to download (better yet, setup your CVS Repository Browser) the Eclipse and its related projects source code from CVS and use it as a guideline on how to solve specific problems. Apart from trial and error, that's the best way to figure out the "Eclipse RCP" way of implementing complex apps. One way to use and learn from this huge amount of example (and most of the time well written) source code is to think about a specific functionality on the Eclipse IDE or its subprojects that does something similar to what you want to implement and go look at its source code.</p>
http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/170683#17068319Answer by Ricardo Cabral for What rare programming tools do you use?Ricardo Cabral2008-10-04T17:21:13Z2008-10-04T17:21:13Z<p><a href="http://www.graphviz.org/" rel="nofollow">graphviz</a> as an aid for visually understanding complex dependencies among modules, classes, packages etc.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/170675#17067510Answer by Ricardo Cabral for Great programming quotesRicardo Cabral2008-10-04T17:17:42Z2008-10-04T17:17:42Z<p>From my <a href="http://www.google.com/notebook/public/13971387429774074224/BDQyESwoQv_76lOoi" rel="nofollow">personal compilation</a>:</p>
<p>“New technologies aren’t adopted because they are great, new, and disruptive; they are adopted only if the user’s crisis solved by the technology is greater than the perceived pain of adoption.” </p>
<p>Any problem in computer science can be solved with another layer of indirection. But that usually will create another problem.
- David Wheeler (1927 - 2004)</p>
<p>"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live" - Martin Golding</p>
<p>In my experience, one of the most significant problems in software development is assuming. If you assume a method will passed the right parameter value, the method will fail.
– Paul M. Duvall</p>
<p>Programming languages are like girlfriends: The new one is better because <em>you</em> are better.
– Derek Sivers</p>
<p>The sooner we start coding fewer frameworks and more programs the sooner we’ll become better programmers.
– Warped Java Guy
Elementary Java Solutions </p>
<p>Starting a startup is hard, but having a 9 to 5 job is hard too, and in some ways a worse kind of hard.
– Paul Graham
The Future of Web Startups </p>
<p>In essence, let the market design the product.
– Paul Graham
The Future of Web Startups </p>
<p>A startup now can be just a pair of 22 year old guys. A company like that can move much more easily than one with 10 people, half of whom have kids.
– Paul Graham
The Future of Web Startups </p>
<p>Startups almost never get it right the first time. Much more commonly you launch something, and no one cares. Don’t assume when this happens that you’ve failed. That’s normal for startups. But don’t sit around doing nothing. Iterate.
– Paul Graham
How Not to Die </p>
<p>The key to performance is elegance, not battalions of special cases.
– Jon Bentley and Doug McIlroy </p>
<p>You’ll spend far more time babysitting old technologies than implementing new ones.
– Jason Hiner
IT Dirty Secrets </p>
<p>To Iterate is Human, to Recurse, Divine.
– James O. Coplien </p>
<p>No one hates software more than software developers.
– Jeff Atwood
Hanselminutes Podcast 74 </p>
<p>I was a C++ programmer before I started designing Ruby. I programmed in C++ exclusively for two or three years. And after two years of C++ programming, it still surprised me.
– Matz
The Philosophy of Ruby </p>
<p>Good architecture is necessary to give programs enough structure to be able to grow large without collapsing into a puddle of confusion.
– Douglas Crockford
The Elements of JavaScript Style </p>
<p>Programming is difficult. At its core, it is about managing complexity. Computer programs are the most complex things that humans make. Quality is illusive and elusive.
– Douglas Crockford
The Elements of JavaScript Style </p>
<p>Code reuse is the Holy Grail of Software Engineering.
– Douglas Crockford
The Elements of JavaScript Style </p>
<p>The structure of software systems tend to reflect the structure of the organization that produce them.
– Douglas Crockford
The Elements of JavaScript Style </p>
<p>The definition of Hell is working with dates in Java, JDBC, and Oracle. Every single one of them screw it up.
– Dick Wall
CommunityOne 2007: Lunch with the Java Posse </p>
<p>I went to school to learn how to program software applications, which inevitably have bug defects. There was no course at my university on testing, debugging, profiling, or optimization. These things you have to learn on your own, usually in a tight deadline.
– Juixe TechKnow </p>
<p>To most Java developers, Ruby/Rails is like a mistress. Ruby/Rails is young, new, and exciting; but eventually we go back to old faithful, dependable, and employable Java with some new tricks and idioms and we are the better programmer for it.
– Juixe TechKnow </p>
<p>You might as well pay your customers 50K because they are just your QA.
– Juixe TechKnow </p>