User friol - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:13:05Z http://stackoverflow.com/feeds/user/23034 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/175854/what-is-the-funniest-bug-youve-ever-experienced 21 What is the funniest bug you've ever experienced? friol 2008-10-06T19:40:26Z 2009-11-17T18:37:50Z <p>I remember testing a geographical data normalizer written in Java that had concurrency problems. So, when you tried to normalize a city (say "Rome") and another guy did that too (say "New york"), you would get the other guy's data normalized ("NEW YORK") instead of your query.</p> <p>What's the bug that mostly made you smile in your career?</p> http://stackoverflow.com/questions/254535/stunning-graphic-effects-with-javascript 29 Stunning graphic effects with javascript friol 2008-10-31T18:58:04Z 2009-10-23T05:06:20Z <p>Seeing the <a href="http://maettig.com/code/javascript/3d_dots.html" rel="nofollow">full javascript rotating 3d cube</a>, I was wondering,</p> <p>What are the most stunning javascript-only effects you've ever seen?</p> http://stackoverflow.com/questions/214930/alternatives-to-toad 14 Alternatives to Toad friol 2008-10-18T11:33:02Z 2009-09-29T20:27:08Z <p>Hello.</p> <p>I'm currently using <a href="http://www.toadsoft.com/" rel="nofollow">Toad</a> for my day-to-day work on our databases (queries, updates, small scripts, browsing of db objects, etc.).</p> <p>My question is: since my version of Toad is old and buggy, which are the (possibly free, but not necessarily) alternatives to Toad?</p> <p>The database versions we are using are 10g and 9i.</p> <p>Thanks a lot.</p> http://stackoverflow.com/questions/1353948/restart-daily-or-100-uptime-for-enterprise-applications/1414937#1414937 1 Answer by friol for Restart daily or 100% uptime for enterprise applications? friol 2009-09-12T11:50:23Z 2009-09-12T11:50:23Z <p>Sorry, but I'm not getting the point or this question is totally pointless.</p> <p>An application, <em>any</em> application, should be designed, IMO, to stay up unless it's needed. If an application/platform needs to be restarted daily, then it has memory leaks, or bugs, or it's, in general, poorly written.</p> <p>The point "don't make it stay up too long, otherwise you'd risk nobody will ever remember how to turn it up again" is quite laughable. I do Application Management (Operations) as my daily job, and I've never seen an application staying up for more than one month. After that period, you have to cope with OS maintainance, db patching, software upgrades, etc.</p> <p>So, to summarize: write applications that can stay up as long as it's needed.</p> http://stackoverflow.com/questions/1083658/jagged-array-in-c/1083672#1083672 8 Answer by friol for jagged array in c friol 2009-07-05T08:21:38Z 2009-07-05T09:23:23Z <p>In <strong>C++</strong> (not compiled, and probably there's a more compact syntax):</p> <pre><code>std::vector&lt;std::vector&lt;int&gt; &gt; myArray; myArray.push_back(std::vector&lt;int&gt;()); myArray.push_back(std::vector&lt;int&gt;()); myArray[0].push_back(0); myArray[0].push_back(1); myArray[1].push_back(1); myArray[1].push_back(2); myArray[1].push_back(3); </code></pre> <p>So now you can access the elements with, for example, myArray[0][0], etc.</p> http://stackoverflow.com/questions/705598/more-difficult-to-build-emulator-or-compiler/1081756#1081756 1 Answer by friol for More difficult to build: Emulator or compiler? friol 2009-07-04T07:51:35Z 2009-07-04T07:51:35Z <p>Writing an emulator for a known emulated platform is not that hard (you can also use a pre-made CPU emulator and gain some development time).</p> <p>Writing an emulator for unknown emulated hardware is <strong>much harder</strong>, and shifts the difficulty to fields different from code-development: maths, cryptoanalysis, security protocols, etc. And, as a developer, you gotta have <strong>patience</strong> for the trial-and-error involved in the process.</p> <p>As an example, just think of how much time <a href="http://en.wikipedia.org/wiki/Capcom%5FSystem%5F2" rel="nofollow">CPS2</a> emulation required (CPS2 ROMs were encrypted).</p> http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product 5 Log management&analysis Open Source product friol 2009-06-24T21:55:55Z 2009-07-03T13:14:25Z <p>My company is searching for an Open Source product that could do log management and analysis (edit: we'd use the product to handle <strong>custom</strong> log files - the ones generated by our applications, <strong>not</strong> standard logs)</p> <p>We've had demos for some proprietary products (for example, <a href="http://www.sensage.com/products/sensage-40.php" rel="nofollow">Sensage</a> or HP's <a href="https://h10078.www1.hp.com/cda/hpms/display/main/hpms%5Fcontent.jsp?zn=bto&amp;cp=1-11-15-25%5E2872%5F4000%5F100%5F%5F" rel="nofollow">Transaction Vision</a>), but we'd like to find an Open Source alternative.</p> <p>Requirements are:</p> <ul> <li>The product should be able to collect logs from various machines (Solaris, Windows, etc.)</li> <li>It should handle substantially big logfiles (even 500Mb per logfile)</li> <li>It should handle different logfiles per day (for example, 24 logfiles a day with different names)</li> <li>It should be able to store only the relevant informations from each logfile (for example, some fields, in a configurable way)</li> <li>It should be able to handle multi-line records in logfiles (for example, xml)</li> <li>Preferred method of storage for log records is an Oracle or MySQL database (not exotic indexing systems) (edit: after seeing <a href="http://www.splunk.com/" rel="nofollow">Splunk</a> in action, other forms of data storage are acceptable too)</li> <li>It should handle quasi-realtime parsing and analysis of log files (10 or 20 minutes of delay is acceptable)</li> </ul> <p>I know it seems too much and too specific for an Open Source system, but maybe Open Source could surprise us again.</p> http://stackoverflow.com/questions/1018663/automatic-assignment-of-tickets-with-trac 0 Automatic assignment of tickets with Trac friol 2009-06-19T15:42:15Z 2009-06-19T19:59:01Z <p>Hello, I'm using <strong>Trac</strong> (v0.11), and I'd like to:</p> <ol> <li>automatically assign a ticket to someone, as it's opened, basing on certain rules<br/></li> <li>hide the "assign to" and "CC" fields from the "new ticket" screen</li> </ol> <p>How can I do that (scripting, workflows, etc.)?<br/> Thanks</p> http://stackoverflow.com/questions/1018663/automatic-assignment-of-tickets-with-trac/1018753#1018753 1 Answer by friol for Automatic assignment of tickets with Trac friol 2009-06-19T16:00:42Z 2009-06-19T19:59:01Z <p>Point 1 is solved using <strong>Components</strong>, standard Trac entities that can be associated to an automatic assignee of the Ticket.</p> <p>Point 2 is solved by the powerful <a href="http://trac-hacks.org/wiki/BlackMagicTicketTweaksPlugin" rel="nofollow">BlackMagicTicketTweaks</a> plugin (it hides, disables or changes the name of fields on the Ticket form).</p> http://stackoverflow.com/questions/972652/how-to-code-a-simple-versioning-system/990514#990514 10 Answer by friol for How to code a simple versioning system ? friol 2009-06-13T11:03:16Z 2009-06-13T11:03:16Z <p><h2>Database schema</h2><br/></p> <p>To keep it exremely simple, I would choose the following database design. I'm separating the "<em>file</em>" (same as a filesystem file) concept from the "<em>document</em>" (the gerarchic group of documents) concept.</p> <p><strong>User</strong> entity:</p> <ul> <li>userId</li> <li>userName</li> </ul> <p><strong>Group</strong> entity:</p> <ul> <li>groupId</li> <li>groupName</li> </ul> <p><strong>File</strong> entity:</p> <ul> <li>fileId (a sequence)<br/></li> <li>fileName (the name the user gives to the file)<br/></li> <li>filesystemFullPath</li> <li>uploadTime </li> <li>uploaderId (id of the uploader User)</li> <li>ownerGroupId</li> </ul> <p><strong>Document</strong> entity:</p> <ul> <li>documentId<br/></li> <li>parentDocumentId<br/></li> <li>fileId<br/></li> <li>versionNumber<br/></li> <li>creationTime<br/></li> <li>isApproved</li> </ul> <p>Every time a new file is uploaded, a "File" record is created, and also a new "Document". If it's the first time that file is uploaded, parentDocumentId for that document would be NULL. Otherwise, the new document record would point to the first version.</p> <p>The "isApproved" field (boolean) would handle the document being a draft or an approved revision. <br/>You get the latest draft of a document simply ordering descending by version number or upload time.</p> <p><h2>Hints</h2><br/></p> <p>From how you describe the problem, you should analyze better those aspects, before moving to database schema design:</p> <ul> <li>which is the role of the "group" entity? </li> <li>how are groups/users/files related?</li> <li>what if two users of different groups try to upload the same document?</li> <li>will you need folders? (probably you will; my solution is still valid, giving a type, "folder" or "document", to the "document" entity)</li> </ul> <p>Hope this helps.</p> http://stackoverflow.com/questions/506538/what-are-some-good-posters-youd-find-in-a-programmers-room/523667#523667 20 Answer by friol for What are some good posters you'd find in a programmer's room? friol 2009-02-07T12:14:21Z 2009-06-07T20:05:46Z <p>This one:</p> <p><img src="http://moansch.net/uploads/bluescreen.jpg"></p> http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962616#962616 20 Answer by friol for What is the worst programming language you ever worked with? friol 2009-06-07T19:24:34Z 2009-06-07T19:24:34Z <p>The <a href="http://www.ss64.com/nt/" rel="nofollow">.bat files scripting language</a> on DOS/Windows. God only knows how un-powerful is this one, specially if you compare it to the Unix shell languages (that aren't so powerful either, but way better nonetheless).</p> <p>Just try to concatenate two strings or make a for loop. Nah.</p> http://stackoverflow.com/questions/936381/is-there-an-oracle-wrapper-for-python-that-supports-xmltype-columns/946854#946854 0 Answer by friol for Is there an Oracle wrapper for Python that supports xmltype columns? friol 2009-06-03T20:00:08Z 2009-06-03T20:00:08Z <p>I managed to do this with cx_Oracle.</p> <p>I used the sys.xmltype.createxml() function in the statement that inserts the rows in a table with XMLTYPE fields; then I used prepare() and setinputsizes() to specify that the bind variables I used for XMLTYPE fields were of cx_Oracle.CLOB type.</p> http://stackoverflow.com/questions/936381/is-there-an-oracle-wrapper-for-python-that-supports-xmltype-columns 1 Is there an Oracle wrapper for Python that supports xmltype columns? friol 2009-06-01T19:36:17Z 2009-06-03T20:00:08Z <p>It seems cx_Oracle doesn't.</p> <p>Any other suggestion for handling xml with Oracle and Python is appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/429117/where-can-i-see-others-upcoming-hobby-or-business-projects/943349#943349 0 Answer by friol for Where can I see other's upcoming hobby or business projects? friol 2009-06-03T06:31:30Z 2009-06-03T06:31:30Z <p>I like <a href="http://freshmeat.net/" rel="nofollow">Freshmeat</a> a lot.</p> http://stackoverflow.com/questions/799469/do-consulting-companies-focus-on-code-quality/935875#935875 0 Answer by friol for Do consulting companies focus on code quality? friol 2009-06-01T17:41:38Z 2009-06-01T17:41:38Z <p>I've been employed in a consulting firm with practices that <em>tried</em> to improve code quality, such as:</p> <ul> <li>Formalization of functional and technical requirements (not strictly related to code quality, but having a written requirement improves your software production cycle, whatever 37 signals can <a href="http://www.37signals.com/svn/archives/001050.php" rel="nofollow">say</a> about that)</li> <li>Peer reviews of code</li> <li>Formalized integration tests</li> <li>QPI/software metrics, based also on previous software projects the company had</li> </ul> <p>I can say without doubt that our resulting products were more performing, robust and bugfree than other firms working for the same customer. </p> http://stackoverflow.com/questions/929592/how-can-i-compile-c-c-code-in-php-on-the-windows-platform/929603#929603 3 Answer by friol for How can I compile C/C++ code in PHP on the Windows platform? friol 2009-05-30T11:48:40Z 2009-05-30T11:48:40Z <p>Do a .bat file that:</p> <ul> <li>runs the vcvars32.bat file that comes with Visual Studio</li> <li>runs "cl.exe yourprogram.c"</li> </ul> <p>Then launch that .bat file from PHP. (dunno how you would do that btw)</p> http://stackoverflow.com/questions/870109/can-we-worry-less-about-ie-6-issues-since-there-seems-to-be-upgrade-push/870162#870162 1 Answer by friol for can we worry less about IE 6 issues since there seems to be upgrade push? friol 2009-05-15T18:27:51Z 2009-05-15T18:27:51Z <p>Look at the <a href="http://www.w3schools.com/browsers/browsers%5Fstats.asp" rel="nofollow">browser usage statistics</a> at w3school. Even if ie6 usage is decreasing, and even if w3school represents only a part of the Internet users, 15% of users on that site is still using IE6.</p> <p>Obviously, statistics for your own sites may be over or below that percentage.</p> http://stackoverflow.com/questions/869765/which-editors-are-recommended-for-writing-ruby-or-ruby-on-rails-code/869790#869790 5 Answer by friol for Which editors are recommended for writing Ruby or Ruby on Rails code? friol 2009-05-15T16:59:33Z 2009-05-15T16:59:33Z <p>See this question: <a href="http://stackoverflow.com/questions/59968/best-editor-for-ruby">http://stackoverflow.com/questions/59968/best-editor-for-ruby</a>.</p> http://stackoverflow.com/questions/868968/what-programming-concept-technique-has-boosted-your-productivity/869771#869771 0 Answer by friol for What programming concept/technique has boosted your productivity? friol 2009-05-15T16:55:51Z 2009-05-15T16:55:51Z <p>Try to learn to see things from the user's standpoint. For example:</p> <ul> <li>learn how to write meaningful error messages</li> <li>learn how to produce usable applications</li> <li>learn some basic speed-optimization techniques</li> </ul> <p>Remember that the user sees your application, not your code.</p> http://stackoverflow.com/questions/845355/do-programming-language-compilers-first-translate-to-assembly-or-directly-to-mach/845363#845363 1 Answer by friol for Do programming language compilers first translate to assembly or directly to machine code? friol 2009-05-10T13:51:25Z 2009-05-10T13:51:25Z <p>Visual C++ has a <a href="http://msdn.microsoft.com/en-us/library/367y26c6%28VS.80%29.aspx" rel="nofollow">switch</a> to output assembly code, so I think it generates assembly code before outputting machine code.</p> http://stackoverflow.com/questions/845324/text-packing-algorithm/845359#845359 0 Answer by friol for Text packing algorithm friol 2009-05-10T13:48:07Z 2009-05-10T13:48:07Z <p>Looks similar to the <a href="http://en.wikipedia.org/wiki/Knapsack%5Fproblem" rel="nofollow">Knapsack problem</a>, which is NP-complete, so there is not a "definitive" algorithm.</p> http://stackoverflow.com/questions/842638/whats-the-standard-minimum-resolution-i-should-support-with-a-website/842864#842864 0 Answer by friol for What's the standard "minimum" resolution I should support with a website? friol 2009-05-09T07:25:58Z 2009-05-09T07:25:58Z <p>I'd take a look at those statistics: <a href="http://www.w3schools.com/browsers/browsers%5Fdisplay.asp" rel="nofollow">http://www.w3schools.com/browsers/browsers_display.asp</a>.</p> <p>As of January 2009, only 4% of people visiting W3Schools are using 800x600 as resolution. The remaining, are using at least 1024x768.</p> <p>Beware of how much of that 4% could be part of you users, though.</p> http://stackoverflow.com/questions/817170/should-i-create-a-blog-in-rails-or-use-something-that-already-exists/817224#817224 0 Answer by friol for Should I create a blog in rails or use something that already exists? friol 2009-05-03T14:36:15Z 2009-05-03T14:36:15Z <p>Probably there are tons of those.</p> <p>For example, <a href="http://www.restafari.org/" rel="nofollow">Rastafari</a>, or <a href="http://www.enkiblog.com/" rel="nofollow">Enkiblog</a>.</p> http://stackoverflow.com/questions/255794/queues-against-tables-in-messaging-systems 3 Queues against Tables in messaging systems friol 2008-11-01T17:20:59Z 2009-04-29T17:51:47Z <p>I've been experiencing the good and the bad sides of messaging systems in <strong>real production environments</strong>, and I must admit that a well organized table or schema of tables simply beats every time any other form of messaging queue, because:</p> <ol> <li>Data are permanently stored on a table. I've seen so many java (jms) applications that lose or vanish messages on their way for uncaught exceptions or other bugs.</li> <li>Queues tend to fill up. Db storage is virtually infinite, instead.</li> <li>Tables are easily accessible, while you have to use esotic instruments to read from a queue.</li> </ol> <p>What's your opinion on each approach?</p> http://stackoverflow.com/questions/703102/enterprise-level-employee-planning-scheduling-tool 3 Enterprise level employee/planning/scheduling tool friol 2009-03-31T21:16:06Z 2009-04-18T11:53:55Z <p>Hi everybody.</p> <p><em>(I ask this here, waiting for the IT Admin StackOverflow to become reality!)</em></p> <p>The IT Operations Dept of our company (media, about 4000 employees), is searching for a scheduling/planning tool.</p> <p>Our requirements are:</p> <ul> <li>It should be Open Source software (highly preferred)</li> <li>It will be used by about 100 concurrent users, and the interface should be web based (highly preferred)</li> <li>It should have the ability to do employee level-planning (vacations, on call availability, scheduling, training, etc.) (mandatory)</li> <li>It should have the ability to schedule and track events (like Systems patching, maintenance, hardware upgrading, etc.) (mandatory)</li> <li>It may be used for other tasks, like budget planning&amp;review, project scheduling, etc. (optional)</li> </ul> <p>What product could meet the above requirements, in your experience?</p> <p>Many thanks.</p> http://stackoverflow.com/questions/735699/how-do-you-store-third-party-libraries-in-your-source-control/735740#735740 0 Answer by friol for How do you store third party libraries in your source control? friol 2009-04-09T20:02:40Z 2009-04-09T20:02:40Z <p>You don't need to store third party libraries in your source control repository. Those libraries (think of SDL, libcurl, etc.) should always be available on the web. <br/>Just two raccomandations:</p> <ul> <li>make sure to state clearly in your code which version of the library you should compile against</li> <li>be sure that that specific version is always available on the web</li> </ul> http://stackoverflow.com/questions/735535/dangerous-learning-multiple-languages-at-the-same-time/735718#735718 2 Answer by friol for Dangerous learning multiple languages at the same time? friol 2009-04-09T19:57:22Z 2009-04-09T19:57:22Z <p>If your brain can handle it, why not.</p> <p>In some occasion (like yours, web development), you need to use more languages together.</p> http://stackoverflow.com/questions/717861/project-euler-problem-28-algorithm/717927#717927 0 Answer by friol for Project Euler problem 28 Algorithm friol 2009-04-04T22:16:41Z 2009-04-04T22:16:41Z <p>Numbers on the spiral corners are each one part of a different sequence.</p> <p>For example, numbers on the upper right corner are powers of odd numbers (9=3*3, 25=5*5).</p> <p>Find the sequences for the other corners, and add the numbers plus the 1 in the center, and you'll have the result.</p> http://stackoverflow.com/questions/135777/a-stringtoken-parser-which-gives-google-search-style-did-you-mean-suggestions/716938#716938 1 Answer by friol for A StringToken Parser which gives Google Search style "Did you mean:" Suggestions friol 2009-04-04T11:36:57Z 2009-04-04T11:36:57Z <p>The <a href="http://code.google.com/intl/it/apis/soapsearch/reference.html#1%5F3" rel="nofollow">Google SOAP Search APIs</a> do that.</p> http://stackoverflow.com/questions/482574/whats-the-advantage-of-using-c-over-c-or-is-there-one/482593#482593 Comment by friol on What's the advantage of using C over C++ or is there one? friol 2009-10-11T12:35:24Z 2009-10-11T12:35:24Z Writing a full application in C &quot;because it will be easier to read the resulting assembly code&quot; is a weak reason, IMO. Tipically, you'll need to optimize (and mess with the resulting assembly code) at maximum 10% of the program, if the type of application is bound on performances. You don't need to mess with assembly language on the rest of the applications. http://stackoverflow.com/questions/1083813/what-old-or-obsolete-software-do-you-miss-most/1083831#1083831 Comment by friol on What old or obsolete software do you miss most? friol 2009-07-07T17:18:17Z 2009-07-07T17:18:17Z Sure. But I, as a power-user, wouldn't call MS-DOS something that &quot;I miss&quot;. About embedded systems, I don't see how those &quot;outweight&quot; PCs. http://stackoverflow.com/questions/1083813/what-old-or-obsolete-software-do-you-miss-most/1083851#1083851 Comment by friol on What old or obsolete software do you miss most? friol 2009-07-05T12:19:43Z 2009-07-05T12:19:43Z Yeah, but you'd have to stick with 1993 dated C++ standard... http://stackoverflow.com/questions/1083813/what-old-or-obsolete-software-do-you-miss-most/1083831#1083831 Comment by friol on What old or obsolete software do you miss most? friol 2009-07-05T12:18:25Z 2009-07-05T12:18:25Z Single-task and bound to a character-interface? Who needs DOS in 2009 :) http://stackoverflow.com/questions/1083658/jagged-array-in-c/1083672#1083672 Comment by friol on jagged array in c friol 2009-07-05T10:04:11Z 2009-07-05T10:04:11Z you're right, thanks. http://stackoverflow.com/questions/1083652/how-can-i-add-padding-to-html-dropdownlist Comment by friol on How can I add padding to html dropdownlist? friol 2009-07-05T08:40:15Z 2009-07-05T08:40:15Z what are you trying to do? why do you want to pad the select options? http://stackoverflow.com/questions/705598/more-difficult-to-build-emulator-or-compiler/705622#705622 Comment by friol on More difficult to build: Emulator or compiler? friol 2009-07-04T07:54:41Z 2009-07-04T07:54:41Z You are not considering CPU JIT recompilers (used in emulators). http://stackoverflow.com/questions/705598/more-difficult-to-build-emulator-or-compiler/708137#708137 Comment by friol on More difficult to build: Emulator or compiler? friol 2009-07-04T07:53:55Z 2009-07-04T07:53:55Z Emulating an unknown platform requires knowing maths, encryption algos, network/disk protocols etc. I wouldn't say it requires less theory than a compiler. http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product/1070763#1070763 Comment by friol on Log management&analysis Open Source product friol 2009-07-03T21:01:51Z 2009-07-03T21:01:51Z At the end, we'll try to test Splunk for a while and see if it's worth buying its license. http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product/1072436#1072436 Comment by friol on Log management&analysis Open Source product friol 2009-07-02T19:39:02Z 2009-07-02T19:39:02Z a fast and flexible log parser, a GUI and a backup mechanism with a perl script? I don't want to be the one to do that :) http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product/1070763#1070763 Comment by friol on Log management&analysis Open Source product friol 2009-07-01T19:24:17Z 2009-07-01T19:24:17Z as I said before, great product, but it's not opensource. http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product/1065199#1065199 Comment by friol on Log management&analysis Open Source product friol 2009-06-30T18:50:22Z 2009-06-30T18:50:22Z We already have a tool to handle alarms (HP Openview). Am I wrong or syslog-ng would handle only syslog events? http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product/1042588#1042588 Comment by friol on Log management&analysis Open Source product friol 2009-06-30T18:33:03Z 2009-06-30T18:33:03Z Splunk comes 99% closer to what we're searching. Only downside: it's not opensource. http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product/1064268#1064268 Comment by friol on Log management&analysis Open Source product friol 2009-06-30T18:32:17Z 2009-06-30T18:32:17Z I've given a quick glance, but: does it support only some specific formats of logfiles? We're searching for a tool that could handle our applications' log files (that are custom). http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product/1042588#1042588 Comment by friol on Log management&analysis Open Source product friol 2009-06-25T21:06:49Z 2009-06-25T21:06:49Z Seems a good product, but, if I read well, all our applications would have to be modified, in order to feed logs to logFaces. That's not what we are searching, it would be too much of an overhaul.