User Shadow_x99 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T19:54:54Zhttp://stackoverflow.com/feeds/user/244http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1486895/distributed-caching2Distributed CachingShadow_x992009-09-28T13:00:27Z2009-11-10T02:26:56Z
<p>I am looking for a java distributed caching solution. We would like features likes:</p>
<ul>
<li>Distributed </li>
<li>Auto-Discovery</li>
<li>Redundancy</li>
<li>Non-Centralized</li>
</ul>
<p>We've analyzed a framework like TerraCotta which seems to be everything we would ever want from a caching framework... However, there seems to be a central caching node(s) that is required which become our single-point-of-failure.</p>
<p>Any ideas other than rolling out our own solution?</p>
http://stackoverflow.com/questions/219245/converting-a-string-to-hex-in-sql1Converting a String to HEX in SQLShadow_x992008-10-20T17:33:53Z2009-10-28T14:53:28Z
<p>I'm looking for a way to transform a genuine string into it's hexadecimal value in SQL. I'm looking something that is Informix-friendly but I would obviously prefer something database-neutral </p>
<p>Here is the select I am using now:</p>
<pre><code>SELECT SomeStringColumn from SomeTable
</code></pre>
<p>Here is the select I would like to use:
SELECT hex( SomeStringColumn ) from SomeTable</p>
<p>Unfortunately nothing is that simple... Informix gives me that message:
<em>Character to numeric conversion error</em></p>
<p>Any idea?</p>
http://stackoverflow.com/questions/521729/automating-qa-on-flex-application9Automating QA on Flex ApplicationShadow_x992009-02-06T19:11:35Z2009-09-29T14:13:14Z
<p>I have a Flex Application that needs to be tested and our QA department is really adament on using some form of automated-testing tools like HP's QuickTest Pro (QTP). However, QTP requires that you write some custom code if you wish to automate some home-made components... Unfortunately, we have some 3rd-party components which we do not have the source code so we can't really the custom code without having the 3rd-party component's source code.</p>
<p>Is there any existing framework and/or tools that would allow me to automate testing without having to write custom code that could be used by a non-programmer (i.e. A QA guy which has no idea what a pointer is)</p>
<p>I've taken a quick-look at Flex-Monkey (A free open-source software) which seems to be a promising project, but it's still in it's infancy and I need something soon (i.e. Yesterday)</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/970486/how-do-you-transition-from-coder-to-software-professional/970648#9706482Answer by Shadow_x99 for How do you transition from coder to software professional?Shadow_x992009-06-09T15:07:26Z2009-06-09T15:07:26Z<p>Here are my 3 personal rules (Still in evolution though... Still looking for a 4th). Enjoy!</p>
<p><strong>Rule #1 - Know your stuff.</strong> </p>
<p>If it means doing a lot of extra non-paid hours learning tons of stuff (including going back to school for a Master). Do It!</p>
<p><strong>Rule #2 - Never get caught unprepared.</strong> </p>
<p>If you are to build credibility with your employer, knowing your stuff is not enough, you've got to look as if you got all the answers. You can't stutter or hesitate, you got to inspire confidence.</p>
<p><strong>Rule #3 - Take calculated risks.</strong></p>
<p>Sometimes inspiring confidence and knowing your stuff is not enough... You got to take a shot for the team by taking a calculated risk and showing to everybody (includings the guys that just told the big bad boss that it was impossible) that it is possible and that you've just done it.</p>
http://stackoverflow.com/questions/50179/an-ide-for-d10An IDE for DShadow_x992008-09-08T17:08:10Z2008-11-11T00:59:39Z
<p>Does anyone know of an IDE for the D Programming Language?</p>
http://stackoverflow.com/questions/25969/sql-insert-into-values-select-from5SQL Insert into ... values ( SELECT ... FROM ... )Shadow_x992008-08-25T12:45:56Z2008-09-28T03:18:41Z
<p>I am trying to insert into a table using the input from another table. Although this is entirely feasible for many database engines, I always seem to struggle to remember the correct syntax for the SQL-Engine of the day (MySQL, Oracle, SQLServer, Informix, DB2).</p>
<p>I've been wondering if there is a silver-bullet syntax coming from an SQL Standards (For example, SQL92) that would allow me to insert the values without worrying about the underlying database.</p>
http://stackoverflow.com/questions/57331/what-are-the-most-commonly-used-anti-patterns/57365#573653Answer by Shadow_x99 for What are the most commonly used anti-patterns?Shadow_x992008-09-11T19:09:39Z2008-09-11T19:09:39Z<p>Singletonitis: That got to be the most used pattern in Java. </p>
http://stackoverflow.com/questions/57108/are-there-any-technical-advantages-on-mainframe-or-any-other-legacy-systems/57346#573461Answer by Shadow_x99 for Are there any Technical Advantages on Mainframe (or any other legacy systems)?Shadow_x992008-09-11T18:59:38Z2008-09-11T18:59:38Z<p>Mainframe Software is <strong>Reliable</strong></p>
<p>I worked (as a consultant) for a major NY Bank for about 2 years and never ever try to make the guy who pay the bills throw away 20 years in man/hours out of the window while he can continue to invest in software that just works. It's a classic <em>escalation of commitment</em> where they will not revoke a decision because they already invested millions (if not billions) into it.</p>
<p>The only shadow on the horizon is the fact that old-school programmers will eventually retire and young pup like me do not learn that <strong>old & boring</strong> stuff anymore.</p>
http://stackoverflow.com/questions/57234/what-net-framework-version-should-i-ship-with-2-3-3-5/57320#573200Answer by Shadow_x99 for What .NET Framework version should I ship with; 2, 3, 3.5?Shadow_x992008-09-11T18:45:30Z2008-09-11T18:45:30Z<p>I agree that you should with what your App needs, but you should also prepare for what your apps will need <em>in the future</em>.</p>
<p>If you have a few spare cycles, you could migrate a separate branch of your apps in your SCM which is running with the 3.5 Runtime and when you actually need to upgrade, you have a working branch (Assuming that you keep it up-to-date with some bi-weekly merge).</p>
http://stackoverflow.com/questions/50179/an-ide-for-d/50186#5018610Answer by Shadow_x99 for An IDE for DShadow_x992008-09-08T17:11:23Z2008-09-08T17:16:58Z<p>The <em>Poseidon</em> IDE project is an IDE that is aimed for the D Language </p>
<p>The <em>Descent</em> plugin aims to bring D to Eclipse.</p>
<p>I also heard of a plugin for the XCode IDE (Although you have to own a Mac)</p>
http://stackoverflow.com/questions/50066/impressions-of-d/50158#501581Answer by Shadow_x99 for Impressions of D?Shadow_x992008-09-08T17:02:07Z2008-09-08T17:02:07Z<p>We definitely need to find/create a good IDE for the D Programming Language... Until it gets a good IDE, it will be a marginal programming language.</p>
http://stackoverflow.com/questions/29516/template-engines-for-spring-framework/44275#442751Answer by Shadow_x99 for Template Engines for Spring FrameworkShadow_x992008-09-04T17:39:57Z2008-09-04T17:39:57Z<p>It all goes down to what you need. For my current project, I am making an heavy use of FreeMarker because it was the framework that was tailored for the job I had to do. There is no silver bullets: You have to try them and choose one for yourself (And your team).</p>
<p>I've heard some nice reviews about Stripes from my colleagues who are actually doing some Web-Related Development.</p>
http://stackoverflow.com/questions/44224/how-to-start-learning-java-for-use-with-oracle-rdbms/44251#442513Answer by Shadow_x99 for How to start learning JAVA for use with Oracle RDBMS?Shadow_x992008-09-04T17:32:20Z2008-09-04T17:32:20Z<p>You're question is a little bit too vague in order to give a proper answer... </p>
<p>If you plan to query the Oracle Database from an External Java Program (Either within a Swing Application or an Application Server) then you need to learn 2 core APIs:</p>
<ul>
<li><p>JDBC (Java Database Connectivity)</p></li>
<li><p>JPA (Java Persistence API)</p></li>
</ul>
<p>JDBC is the core API that allows a Java Program to interact with any RDBMS so you should at least know how it works so whenever you have to dig into low-level code, you will actually know what's happening.</p>
<p>JPA is the latest Java API for Persistence which basically allows one to map Plain Old Java Object (AKA PoJo) to RDBMS Table Structures. There are multiple known implementation available but I would recommend Hibernate or TopLink as good starting points.</p>
<p>After that, you can start to dig into other known frameworks like the Spring Framework for some other RDBMS related APIs.</p>
http://stackoverflow.com/questions/40480/is-java-pass-by-reference/40505#405050Answer by Shadow_x99 for Is Java pass by reference?Shadow_x992008-09-02T20:20:25Z2008-09-02T20:20:25Z<p>If you create a method which receives an int for example and change the value within the method, the caller will not see the value you've just assigned.</p>
<pre><code>int value = 1;
invokeSomeMethod( value ); // value get assigned with value 9
System.out.println( value ); // value printed will be 1
</code></pre>
<p>However, you can still an object which encapsulate a primitive value</p>
<pre><code>SomeObject obj = new SomeObject();
obj.setValue(1);
invokeSomeMethod( obj ); // obj.setValue(9) is invoked here
System.out.println( obj.getValue() ); // value printed will be 9
</code></pre>
<p>So Java is not by reference when dealing with first-level objects (like primitives) but for real objects, you can actually change it's internal values (using getter/setter) and the caller's object will be affected.</p>
http://stackoverflow.com/questions/25614/which-java-dom-wrapper-is-the-best-or-most-popular/25983#259831Answer by Shadow_x99 for Which Java DOM Wrapper is the Best or Most Popular?Shadow_x992008-08-25T12:54:53Z2008-08-25T12:54:53Z<p>It all depends on the feature set. If you want to benefit from an XSL Transformation Engine (Like Xalan) or an XPath Engine (Like Jaxen or Saxon) I would recommend sticking to the more popular framework available like Apache Xerces, JDOM.</p>
<p>After that, it's all a matter of taste. I personnally use a W3C compliant ( org.w3c.* ) like Apache Xerces because they are common enough, reasonably fast and well supported by the Java Community.</p>
<p>Of course, if you need blinding speed and do not care about XPath, XQuery or XSL, you can surely find yourself something that is much faster and/or resource-hungry. (i.e. A StAX Implementation)</p>
http://stackoverflow.com/questions/25969/sql-insert-into-values-select-from/25971#2597112Answer by Shadow_x99 for SQL Insert into ... values ( SELECT ... FROM ... )Shadow_x992008-08-25T12:47:54Z2008-08-25T12:47:54Z<p>Here is an SQL Statement that seems to be quite representative of what should work on any RDBMS and achieve the result. However, due to my incapacity to install all RDBMS software and test this query, I cannot be sure.</p>
<p>If this is wrong in an RDBMS, please notify me.</p>
<p>The SQL:</p>
<pre><code>INSERT INTO table1 ( column1 )
SELECT col1
FROM table2
</code></pre>
http://stackoverflow.com/questions/9097/where-should-a-veteran-c-programmer-start-in-order-to-master-java/18720#187200Answer by Shadow_x99 for Where should a veteran C programmer start in order to master Java ?Shadow_x992008-08-20T20:19:00Z2008-08-20T20:19:00Z<p>Any C/C++ Programmer that have to switch to Java will actually find the language quite natural (especially if you happens to understand Object-Oriented Programming Concepts).</p>
<p>However, I would recommend to buy (or download) Bruce Eckel book named "Thinking in Java" that is a very nice intro that should help you understand the basic concepts/libs... After that, you will have to learn the numerous libraries available to you.</p>
<p>Learning Java is not about syntax, it's about third-parties libs that you will most probably need</p>
http://stackoverflow.com/questions/3881/illegalargumentexception-or-nullpointerexception-for-a-null-parameter/8132#81320Answer by Shadow_x99 for IllegalArgumentException or NullPointerException for a null parameter?Shadow_x992008-08-11T19:43:49Z2008-08-11T19:43:49Z<p>The accepted practice if to use the <em>IllegalArgumentException( String message )</em> to declare a parameter to be invalid and give as much detail as possible... So to say that a parameters was found to be null while exception non-null, you would do something like this:</p>
<pre><code>if( variable == null )
throw new IllegalArgumentException("The object 'variable' cannot be null");
</code></pre>
<p>You have virtually no reason to implicitly use the "NullPointerException". The NullPointerException is an exception thrown by the Java Virtual Machine when you try to execute code on null reference (Like <em>toString()</em>).</p>
http://stackoverflow.com/questions/672/which-build-configuration-management-tool/2529#25296Answer by Shadow_x99 for Which Build-/Configuration Management Tool?Shadow_x992008-08-05T16:22:14Z2008-08-05T16:22:14Z<p><strong>Java</strong></p>
<p>Maven2 and/or Ant</p>
<p>Ant is great, it is the de-facto standard for Java Projects (Honestly, everybody used it once in their Java Life) but it does have a great flaw: Dependencies. It doesn't do any dependencies management (Which is OK)</p>
<p>Maven2 is great, because you can still use your bits of Ant Scripts but it add dependencies management which is what Maven2 is all about (It can do much more, but dependencies is the #1 reason you want Maven)</p>
<p><strong>C/C++</strong></p>
<p>I personally recommend CMake (The same build management tool used for KDE) since it is cross-platform, very easy to learn and support artifact generation for the most commonly used IDE (Eclipse CDT, XCode, Visual Studio, etc.)</p>
<p><strong>.NET</strong></p>
<p>I have no opinion here... Never used .NET</p>http://stackoverflow.com/questions/123/csv-file-to-xml/939#9390Answer by Shadow_x99 for CSV File to XMLShadow_x992008-08-04T01:07:07Z2008-08-04T01:07:07Z<p>There is nothing I know of that can do this without you at least writing a little bit of code... You will need 2 separate library:</p>
<ul>
<li>A CSV Parser Framework </li>
<li>An XML Serialization Framework</li>
</ul>
<p>The CSV parser I would recommend (unless you want to have a little bit of fun to write your own CSV Parser) is OpenCSV (A SourceForge Project for parsing CSV Data)</p>
<p>The XML Serialization Framework should be something that can scale in case you want to transform large (or huge) CSV file to XML: I recommend is the Sun Java Streaming XML Parser Framework (See <a href="https://sjsxp.dev.java.net/" rel="nofollow">here</a>) which allows pull-parsing AND serialization.</p>http://stackoverflow.com/questions/237/distributed-source-control-options/934#9340Answer by Shadow_x99 for Distributed source control optionsShadow_x992008-08-04T00:59:04Z2008-08-04T00:59:04Z<p>I've used GIT on my trusty Cygwin Installation for a while now and it's very nice. If you have the option to install Cygwin, I suggest to install GIT as well and try it on your own...</p>http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts/933#9330Answer by Shadow_x99 for What is the meaning of the type safety warning in certain Java generics casts?Shadow_x992008-08-04T00:56:48Z2008-08-04T00:56:48Z<p>If you want to read more information about Generics and their commonly known uselessness I'd suggest you go to the to this <a href="http://www.clintonbegin.com/2008/02/clintons-java-5-rant.html" rel="nofollow">blog</a></p>http://stackoverflow.com/questions/687/keyboard-for-programmers/914#9142Answer by Shadow_x99 for Keyboard for programmersShadow_x992008-08-04T00:27:43Z2008-08-04T00:27:43Z<p>I've been using MS Natural keyboards for ages: Impressive.</p>
<p>The feel is very natural (no pun intented) to me and I've adopted it everywhere I worked (Usually by bringing my own keyboard instead of the Dell Generic Keyboard). There are some other keyboard that are equally interesting, but once you've found what you like most, why bother to change?</p>
<p>My advice is to get to your nearest computer store and try everything they have on display and choose one. Or you can believe me right away and order a MS Natural lol...</p>
<p>PS: I have no affiliation with Microsoft... Just happen to like that particular keyboard.</p>http://stackoverflow.com/questions/899/best-subversion-client-for-mac-os/907#9070Answer by Shadow_x99 for Best subversion client for Mac OSShadow_x992008-08-04T00:23:06Z2008-08-04T00:23:06Z<p>If you are using an Eclipse, there is a more 'Eclipse-Approved' plugin which is Subversive. Subversive aim to be the CSV equivalent for the Eclipse Platform in regard to SVN. I've been using it for more than 6 months now and it's very stable, very easy to use (As easy as CVS at least) from within Eclipse.</p>
<p>For XCode, I know that there is a built-in integration with Subversion, but I never used it myself... I am not working on Macs currently professionnally (Although I'd love to).</p>http://stackoverflow.com/questions/219245/converting-a-string-to-hex-in-sql/219321#219321Comment by Shadow_x99 on Converting a String to HEX in SQLShadow_x992008-10-20T18:14:00Z2008-10-20T18:14:00ZUnfortunately, you're solution would only work if the string is indeed a number which is not my case...