User FrankS - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T20:25:28Zhttp://stackoverflow.com/feeds/user/3134http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1819295/sql-update-table-changing-one-column-value-based-on-another-table/1819352#18193520Answer by FrankS for SQL - Update table changing one column value based on another tableFrankS2009-11-30T11:53:20Z2009-11-30T11:53:20Z<p>First of all, if the relation between parent and child is 1:n, why don't you just add that information to the same table? e.g. fieldname "parentid" (if it's empty/null it's only a parent). Benefit: you don't need an additional table and can easily create a hierarchy if needed.</p>
<p>And for the image, I guess you want to display this somewhere in your code, but it should be easier to just modify the SELECT to get the image-url of the parent is no image is given for the child. Benefit: no need to update the table when you get new entries and it would also be possible to for some child entries to have their own image (if needed).</p>
<p>edit: just noticed your new comment about the open-source project part, of course this makes it hard to change the database design. But maybe it's still easier to move some of the problems to the programming side (unless this is handled by the open-source software as well).</p>
http://stackoverflow.com/questions/1243768/disable-axis-log4j-logging-in-jboss0Disable Axis log4j logging in jbossFrankS2009-08-07T09:16:05Z2009-09-10T10:43:40Z
<p>Hi,</p>
<p>I have small application that is uploading pictures to another website via webservice.
My current problem is, that Axis is logging the whole xml message (including the binary data of the picture!) via STDOUT and I can't seem to figure out, how to disable it.</p>
<p>My log4j settings for jboss (jboss-log4j.xml) includes an appender for normal STDOUT Info loggings, and I tried to disable axis with different category settings:</p>
<pre><code><appender name="STDLOG" class="org.jboss.logging.appender.RollingFileAppender">
<errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
<param name="File" value="${jboss.server.log.dir}/myapplication.log"/>
<param name="Append" value="true"/>
<param name="MaxFileSize" value="5MB"/>
<param name="MaxBackupIndex" value="10"/>
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="%d %-5p [%c] (%t) %m%n"/>
</layout>
</appender>
</code></pre>
<p>using this setting for STDOUT:</p>
<pre><code><category name="STDOUT">
<priority value="DEBUG"/>
<appender-ref ref="STDLOG"/>
</category>
</code></pre>
<p>I tried these category settings without any change in the result:</p>
<pre><code><category name="log4j.logger.org.apache.axis" additivity="false">
<priority value="ERROR"/>
</category>
<category name="org.apache.axis">
<priority value="ERROR"/>
</category>
</code></pre>
<p>Some sample log output looks like this:</p>
<pre><code>2009-08-07 10:29:43,911 INFO [STDOUT] (http-127.0.0.1-8080-1) =======================================================
= Elapsed: 2190 milliseconds
= In message: <?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<addVehicleImage xmlns="urn:VMgrWebService">
<id xmlns="">APP-T4QKR3U</id>
<idType xmlns="">chiffre</idType>
<data xmlns="">9j4AAQSkZJRgABAQAAAQABAAD2wBDAAUDBAQEAwUEBAQFB
QUGBww0TDMnrXAfKlLjnNJZcciiAOtqk9NG99qhZJKuyYq5k3G
8P2bVSOpT7rVddRP2Z/yqidRuMMKaO2CXRQNWP2jfOo4S4Bo3W
removed rest of image data...
IBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGe1UqaZJJy0jSHPGQ
2009-08-07 10:29:43,927 INFO [STDOUT] (http-127.0.0.1-8080-1) Upload result: true for image mypicture.JPG
</code></pre>
<p><b>Update</b>
I checked the axis-1.4.jar and there is a file called <em>simplelog.properties</em>:</p>
<pre><code># Logging detail level,
# Must be one of ("trace", "debug", "info", "warn", "error", or "fatal").
org.apache.commons.logging.simplelog.defaultlog=info
</code></pre>
<p>Setting this to error within the jar, or as a category in jboss-log4j.xml didn't help at all.</p>
<p>Anyone any idea how I can turn off the Axis logging or at least set it to ERROR level?</p>
<p>Cheers<br />
Frank</p>
http://stackoverflow.com/questions/1364227/global-state-and-singletons-dependency-injection/1364318#13643181Answer by FrankS for Global State and Singletons Dependency injectionFrankS2009-09-01T19:50:15Z2009-09-01T19:50:15Z<p>If you need PlayerList outside of Game, maybe Game is the wrong class for this? If any other object needs PlayerList, either they need to have the List injected as well, or maybe you should move the list to this class instead of the Game class.</p>
<p>If you have different lifetimes for Game, PlayerList and other Classes, maybe also consider using a Factory to group them. Check this <a href="http://googletesting.blogspot.com/2008/08/where-have-all-singletons-gone.html" rel="nofollow">Google Testing Blog article</a> for details.</p>
http://stackoverflow.com/questions/1341729/interview-dilemma/1341772#13417721Answer by FrankS for interview dilemmaFrankS2009-08-27T15:18:20Z2009-08-27T15:18:20Z<p>It really depends - on the job, the manager and also on the questions that were asked.</p>
<p><strong>Job:</strong></p>
<ul>
<li>what kind of job is it? junior developer, senior developer, support, etc.</li>
</ul>
<p><strong>Manager:</strong></p>
<ul>
<li>What is he looking for? someone who knows where he can find the information or someone who knows all the information without looking it up</li>
</ul>
<p><strong>Questions:</strong></p>
<ul>
<li>what kind of questions have been asked? basic questions about programming concepts or questions about API/methods that can easily be found in the documentation?</li>
</ul>
<p>In general I prefer to ask questions that show me if the candidate has a good understanding of the concepts etc., but I don't want to know if he memorized every single method.</p>
<p>A good article about interviewing and interview questions is the <a href="http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html" rel="nofollow">Guerrilla Guide to Interviewing v3.0</a> by Joel.</p>
http://stackoverflow.com/questions/1300655/whats-alternative-to-singleton/1300730#130073028Answer by FrankS for What's Alternative to SingletonFrankS2009-08-19T15:30:15Z2009-08-22T10:59:15Z<p>The <a href="http://googletesting.blogspot.com" rel="nofollow">Google Testing blog</a> has a series of entries about avoiding Singleton (in order to create testable code). Maybe this can help you:</p>
<ul>
<li><a href="http://googletesting.blogspot.com/2008/05/tott-using-dependancy-injection-to.html" rel="nofollow">Using dependency injection to avoid singletons</a></li>
<li><a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-join-new-project.html" rel="nofollow">Singletons are Pathological Liars</a></li>
<li><a href="http://googletesting.blogspot.com/2008/08/root-cause-of-singletons.html" rel="nofollow">Root Cause of Singletons</a></li>
<li><a href="http://googletesting.blogspot.com/2008/08/where-have-all-singletons-gone.html" rel="nofollow">Where have all the Singletons Gone?</a></li>
</ul>
<p>The last article explains in detail how to move the creation of new objects into a factory, so you can avoid using singletons. Worth reading for sure.</p>
<pre>
In short we move all of the new operators to a factory.
We group all of the objects of similar lifetime into a single factory.
</pre>
http://stackoverflow.com/questions/1311368/which-is-better-on-performance-double-quoted-strings-with-variables-or-single-qu/1311463#13114630Answer by FrankS for Which is better on performance: double quoted strings with variables or single quoted strings with concatenations?FrankS2009-08-21T11:40:19Z2009-08-21T11:40:19Z<p>Here is an older article, last upadted march 2007, but it shows that the performance difference is really low: <em><a href="http://spindrop.us/2007/03/03/php-double-versus-single-quotes/" rel="nofollow">PHP double versus single quotes by Dave Dash</a></em></p>
<p>I recently read another article (can't find it again though), that even stated that there are some circumstances, where double quotes can be faster than single qoutes. Not sure if this is really correct.</p>
<p>So what I would be more concerned about is the readability of your code. If you put the variables inside the quotes it might be harder to read/find if it's a bigger text.</p>
http://stackoverflow.com/questions/1311273/ide-for-php-development-and-drupal/1311277#13112777Answer by FrankS for IDE for PHP development and Drupal?FrankS2009-08-21T10:53:47Z2009-08-21T10:53:47Z<p>There is an article on how to configure eclipse/pdt for drupal on drupal.org: <a href="http://drupal.org/node/75242" rel="nofollow">Configuring Eclipse</a></p>
<p>You may also want to take a look at the <a href="http://drupal.org/node/147789" rel="nofollow">complete list for development tools</a>, as there are a lot of tools listed you may find helpful.</p>
http://stackoverflow.com/questions/1311146/how-to-secure-for-javascript-file/1311172#13111720Answer by FrankS for how to secure for javascript file?FrankS2009-08-21T10:29:49Z2009-08-21T10:29:49Z<p>Not sure what you mean by "secure", but javascripts can be downloaded easily. Obfuscating the javascript code might help a bit, but I general see this as a bad idea, as anyone who really wants to understand your code can do it.</p>
<p>If you don't want others to see your code, maybe you can put some of the logic on server side, using PHP or any other language.</p>
http://stackoverflow.com/questions/1299352/find-likewise-data-from-two-tables-in-mysql/1299533#12995330Answer by FrankS for find likewise data from two tables in mysqlFrankS2009-08-19T12:14:03Z2009-08-20T11:26:08Z<p>This query should do the trick:</p>
<pre><code>UPDATE a SET matched_id =
(SELECT b.id FROM b
WHERE b.title LIKE CONCAT(' % ',a.name,' % ')
OR b.description LIKE CONCAT('% ',a.name,' %')
OR b.title LIKE CONCAT('%',a.group,'%')
OR b.description LIKE CONCAT('%',a.group,'%')
LIMIT 1)
WHERE EXISTS
(SELECT a.id FROM b
WHERE b.title LIKE CONCAT('% ',a.name,' %')
OR b.description LIKE CONCAT('% ',a.name,' %')
OR b.title LIKE CONCAT('%',a.group,'%')
OR b.description LIKE CONCAT('%',a.group,'%')
LIMIT 1)
</code></pre>
<p>Some remarks to this:</p>
<ul>
<li>LIMIT 1 was necessary, as each subquery can and will return more than 1 row</li>
<li>Not 100% sure if the order you want/need is used, you may need some further testing for that and use order by if needed</li>
<li>it may also be better to use an extra table for the groups (to reduce duplicate entries) and maybe one extra mapping table, so that you can map all results from B to A</li>
</ul>
<p><strong>EDIT:</strong>
if names need to match perfectly (unlike girl/girls), you can just add a space in front of the name: '% ',a.name,' %'. If it gets more complicated I would suggest using regular expressions (REGEX). I modified the query with the spaces (for names only), so feel free to try it again.</p>
http://stackoverflow.com/questions/1299283/generating-pdfs-dynamically-in-servlets/1299353#12993533Answer by FrankS for Generating PDF'S dynamically in servlets?FrankS2009-08-19T11:33:28Z2009-08-19T11:33:28Z<p><a href="http://www.lowagie.com/iText/" rel="nofollow">iText</a> and <a href="http://jasperforge.org/plugins/project/project%5Fhome.php?projectname=jasperreports" rel="nofollow">JasperReports</a> are great to create pdf reports via Java.</p>
<p>With <a href="http://jasperforge.org/projects/ireport" rel="nofollow">iReport</a> you can easily create the jasper files needed for this. Very easy to use tool and helped me a lot when I needed to create some pdf reports.</p>
http://stackoverflow.com/questions/1243768/disable-axis-log4j-logging-in-jboss/1299280#12992800Answer by FrankS for Disable Axis log4j logging in jbossFrankS2009-08-19T11:21:07Z2009-08-19T11:21:07Z<p>Ok, after trying to find a better solution, the only real way was to check the old legacy code and turn all System.out calls into real logging statements (much better anyway), and then simply filter the remaining STDOUT messages into a different log file.</p>
<p>One of the main reasons seems to be Jboss itself. <a href="http://www.mail-archive.com/axis-user@ws.apache.org/msg23504.html" rel="nofollow">This discussion</a> from the axis2 mailing list explains why:
Ahh, but you didn't mention you are using jboss! It pretty much forces
you to use their parent log4 config . Ignore the axis2 logging in this
case, and see:</p>
<p>~/jboss/server/default/conf/log4j.xml</p>
<p>There you have to limit the categories. For example, you have:</p>
<pre><code><category name="org.apache">
<priority value="INFO"/>
</category>
</code></pre>
<p>You could leave that as is and just get your logs out of server.log .
</p>
<p>I tried setting the category, without success. I assume this is because of differences between axis and axis2. So the only solution left was to go the good coding way and just don't use STDOUT in your own code ;-)</p>
http://stackoverflow.com/questions/1238628/md5-hash-for-password-string-in-gwt-gwt-ext1md5 hash for password string in GWT/GWT-Ext?FrankS2009-08-06T12:43:32Z2009-08-07T00:14:29Z
<p>Hi everyone,</p>
<p>I am currently trying to modify an existing GWT-Ext application, that is using plain text passwords in its MySql database.</p>
<p>My plan was to use md5 hashes, as the existing passwords can be easily altered with the MySql function and I was expecting to find an easy solution for the GWT-Ext side as well. But as I found out, java.security is not supported by GWT and there doesn't seem to be any other implementation that can be used to change the password string to a md5 hash on client side.</p>
<p>Only "solution" I found so far, is to re implement a md5 method via JSNI as described here:
<a href="http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/ad09475a9944c9f8" rel="nofollow">http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/ad09475a9944c9f8</a></p>
<p>There is an existing user extension for Ext-JS, but I couldn't find anything for GWT-Ext:
<a href="http://extjs.com/forum/showthread.php?p=133516" rel="nofollow">http://extjs.com/forum/showthread.php?p=133516</a></p>
<p>Does anybody know a more elegant/simple way to solve this problem? Maybe I should use something else instead of md5 to make sure the passwords are encrypted?</p>
<p>Cheers
Frank</p>
http://stackoverflow.com/questions/1221010/php-line-breaks-dont-seem-to-work/1221040#12210400Answer by FrankS for PHP line breaks don't seem to workFrankS2009-08-03T07:22:09Z2009-08-03T07:22:09Z<p>As mentioned before, either set it to text/plain or add a HTML break for line breaks:</p>
<p><code>
$content = 'Name: '.$name."</br>\r\n";
</code></p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72784#7278420Answer by FrankS for What development book made the most impact on you as a developer?FrankS2008-09-16T14:17:31Z2009-07-27T19:24:52Z<p>Looking for a real development book, I think <a href="http://en.wikipedia.org/wiki/Design%5FPatterns%5F%28book%29" rel="nofollow">Design Patterns</a> (the Gang of four book) opened my eyes most. I started to get interested in TDD, reading about XP and Unit Testing. This changed my focus and interest in Software Development forever.</p>
http://stackoverflow.com/questions/1187279/what-are-the-best-cities-of-europe-to-pursue-a-career-as-a-software-developer-eng/1187331#118733110Answer by FrankS for What are the best cities of Europe to pursue a career as a Software developer/engineer?FrankS2009-07-27T09:51:05Z2009-07-27T12:19:06Z<p>I can only give some feedback for Germany. Munich is a very good area with a lot of companies around. Same goes for Hamburg.</p>
<p>The Ruhr Area (especially Düsseldorf and Cologne) is also very interesting because of its high density of Universities and other educational and research facilities, thus incenting many hightech industries.</p>
http://stackoverflow.com/questions/182544/sql-to-find-duplicate-entries-within-a-group0SQL to find duplicate entries (within a group)FrankS2008-10-08T12:46:46Z2008-10-08T13:31:12Z
<p>SQL to find duplicate entries (within a group)</p>
<p>I have a small problem and I'm not sure what would be the best way to fix it, as I only have limited access to the database (Oracle) itself.
In our Table "EVENT" we have about 160k entries, each EVENT has a GROUPID and a normal entry has exactly 5 rows with the same GROUPID. Due to a bug we currently get a couple of duplicate entries (duplicate, so 10 rows instead of 5, just a different EVENTID. This may change, so it's just <> 5). We need to filter all the entries of these groups.</p>
<p>Due to limited access to the database we can not use a temporary table, nor can we add an index to the GROUPID column to make it faster.</p>
<p>We can get the GROUPIDs with this query, but we would need a second query to get the needed data</p>
<p><code>
select A."GROUPID"<br>
from "EVENT" A<br>
group by A."GROUPID"<br>
having count(A."GROUPID") <> 5<br>
</code></p>
<p>One solution would be a subselect:</p>
<p><code>
select *<br>
from "EVENT" A<br>
where A."GROUPID" IN (<br>
select B."GROUPID"<br>
from "EVENT" B<br>
group by B."GROUPID"<br>
having count(B."GROUPID") <> 5<br>
)<br>
</code></p>
<p>Without an index on GROUPID and 160k entries, this takes much too long.
Tried thinking about a join that can handle this, but can't find a good solution so far.</p>
<p>Anybody can find a good solution for this maybe?</p>
<p>Small edit:
We don't have 100% duplicates here, as each entry still has a unique ID and the GROUPID is not unique either (that's why we need to use "group by") - or maybe I just miss an easy solution for it :)</p>
<p>Small example about the data (I don't want to delete it, just find it)</p>
<p><code>
EVENTID | GROUPID | TYPEID<br>
123456 123 12<br>
123457 123 145<br>
123458 123 2612<br>
123459 123 41<br>
123460 123 238<br>
<br>
234567 123 12<br>
234568 123 145<br>
234569 123 2612<br>
234570 123 41<br>
234571 123 238<br>
</code><br>
It has some more columns, like timestamp etc, but as you can see already, everything is identical, besides the EVENTID.</p>
<p>We will run it more often for testing, to find the bug and check if it happens again.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/133854#1338540Answer by FrankS for Essential Programming ToolsFrankS2008-09-25T15:03:15Z2008-09-25T15:03:15Z<p>Best Regular Expression Editor I know for Windows is <a href="http://www.ultrapico.com/Expresso.htm" rel="nofollow">Expresso</a>.
It has a designer and even more important, an automated analyzer, that can easily be used for documentation of complex regexp snytax.</p>
<p>For merging I also use <a href="http://www.sourcegear.com/diffmerge/" rel="nofollow">SourceGear DiffMerge</a>. And the rest of the tools includes a good Text Editor and a good IDE.</p>
http://stackoverflow.com/questions/85099/what-criteria-should-be-used-to-judge-and-compare-java-applications1What criteria should be used to judge and compare Java applications?FrankS2008-09-17T16:34:55Z2008-09-17T16:59:08Z
<p>I have to support a Java Programming Challenge for students and we have to come up with some technical criteria to judge their java application.
What is the best way to compare and judge an application, based on the code and the documentation?</p>
<p>Edit to give more details about the challenge:
The students are supposed to develop an application of their choice, based on JavaME for one of our devices (Multi-Function-Printer). The app will run on the device and should make use of the functions provided by our SDK/J and will be judged from marketing and support (my department). They will use an emulator for the first step and will be provided with a real device if they qualify for the finals.</p>
http://stackoverflow.com/questions/82064/a-regex-for-version-number-parsing/82237#822370Answer by FrankS for A regex for version number parsingFrankS2008-09-17T11:39:44Z2008-09-17T12:05:47Z<p>Keep in mind regexp are greedy, so if you are just searching within the version number string and not within a bigger text, use ^ and $ to mark start and end of your string.
The regexp from Greg seems to work fine (just gave it a quick try in my editor), but depending on your library/language the first part can still match the "*" within the wrong version numbers. Maybe I am missing something, as I haven't used Regexp for a year or so.</p>
<p>This should make sure you can only find correct version numbers:</p>
<p>^(\*|\d+(\.\d+)*(\.\*)?)$</p>
<p>edit: actually greg added them already and even improved his solution, I am too slow :)</p>
http://stackoverflow.com/questions/42805/hello-world-what-did-your-first-ever-computer-program-do/81487#814870Answer by FrankS for Hello world: what did your first ever computer program do ?FrankS2008-09-17T09:33:29Z2008-09-17T09:33:29Z<p>I started programming by modifying Games on the C64, which were written in Basic. Like giving myself $10000 instead of $100 for the start.
After that I created some small quiz games myself in Basic. Pretty basic stuff and really ugly code, but well, I was still at school at that time and about 11 years old I guess.</p>
http://stackoverflow.com/questions/80892/get-methods-one-vs-many/80960#809600Answer by FrankS for Get Methods: One vs ManyFrankS2008-09-17T07:58:59Z2008-09-17T07:58:59Z<p>If you rewrite the question you can end up asking:</p>
<p>"SELECT name FROM ... "<br>
"SELECT SSN FROM ... "<br>
"SELECT email FROM ... "<br>
vs.<br>
"SELECT * FROM ..."</p>
<p>And I guess the answer to this is easy and everyone knows it.</p>
<p>What happens if you change the Employee class? E.g.: You have to remove the email and add a new filter like department. With the second solution you have a huge risk of not noticing any errors if you just change the order of the int identifier "constants".
With the first solution you will always notice if you are using the method in some long forgotten classes you would otherwise forget to modify to the new identifier.</p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/80921#809210Answer by FrankS for What is the single most effective thing you did to improve your programming skills?FrankS2008-09-17T07:50:39Z2008-09-17T07:50:39Z<p>Working with people who are smarter than I (not that hard) and being curious about how thy do stuff. Reading a lot helps, but you have to be able to find your own way on how to solve things.</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72731#727310Answer by FrankS for What development book made the most impact on you as a developer?FrankS2008-09-16T14:13:57Z2008-09-16T14:13:57Z<p><a href="http://en.wikipedia.org/wiki/The_Mythical_Man-Month/" rel="nofollow">The Mythical Man-Month</a> here as well. Despite being an old book, a lot of the stuff in there is still true and only new development methods like agile, xp, tdd may change some of this finally. It explains in detail why adding new developers to a late project will make the project even later. It will not improve your coding skills, but after being a developer for a few years, this will open your eyes for sure and explain a lot of the problems you have faced before.</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/61984#619842Answer by FrankS for Is there a simple, elegant way to define Singletons in Python?FrankS2008-09-15T07:47:20Z2008-09-15T07:47:20Z<p>There are also some interesting articles on the Google Testing blog, discussing why singleton are/may be bad and are an anti-pattern:</p>
<p><a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-join-new-project.html" rel="nofollow">Singletons are Pathological Liars</a>
<a href="http://googletesting.blogspot.com/2008/08/where-have-all-singletons-gone.html" rel="nofollow">Where Have All the Singletons Gone?</a>
<a href="http://googletesting.blogspot.com/2008/08/root-cause-of-singletons.html" rel="nofollow">Root Cause of Singletons</a></p>
http://stackoverflow.com/questions/59040/what-free-program-for-learning-how-to-type-would-you-recommend/59061#590612Answer by FrankS for What free program for learning how to type would you recommend?FrankS2008-09-12T14:00:24Z2008-09-12T14:00:24Z<p>I don't know any good/free tool, but there are a couple of nice websites, where you can (try to) improve your typing skills.</p>
<p>One example is <a href="http://speedtest.10-fast-fingers.com/" rel="nofollow">speedtest</a></p>
http://stackoverflow.com/questions/58640/great-programming-quotes/58718#5871831Answer by FrankS for Great programming quotesFrankS2008-09-12T11:22:32Z2008-09-12T11:22:32Z<p>If the code and the comments disagree, then both are probably wrong.</p>
<p>Another good website: <a href="http://www.sysprog.net/quotwrit.html" rel="nofollow">"Quotes about Tech Writing"</a></p>
http://stackoverflow.com/questions/34312/simple-test-vs-phpunit/34343#343430Answer by FrankS for Simple test vs PHPunitFrankS2008-08-29T10:38:51Z2008-08-29T10:38:51Z<p>I haven't checked Simple Test for a while, last time it had an eclipse plugin, which is a major factor for me, but it hasn't been updated for a long time.
Sebastian Bergmann is still very actively working on PHPUnit, but it still lacks a good plugin for eclipse - but it is included for the new Zend Studio.</p>
http://stackoverflow.com/questions/1243768/disable-axis-log4j-logging-in-jboss/1404545#1404545Comment by FrankS on Disable Axis log4j logging in jbossFrankS2009-09-10T12:33:52Z2009-09-10T12:33:52Zhi, as I mentioned below, I already changed the config so I am not too bothered with it anymore. I still checked for any configuration file, but no success. Do you know if LogHandler.writeToConsol=true is the default setting? This would explain the behaviour.http://stackoverflow.com/questions/1299352/find-likewise-data-from-two-tables-in-mysql/1299533#1299533Comment by FrankS on find likewise data from two tables in mysqlFrankS2009-08-24T10:43:41Z2009-08-24T10:43:41Zadding another OR should not be a problem, accepting and taking away the accept just because you can't add a simple modification on your own is a bit sad. This query should fit your needs you specified in the question and it is very easy to adopt to your new needs. As I also stated in the answer, if it gets too complicated, check REGEX.http://stackoverflow.com/questions/1315485/simple-uml-drawing-tool-for-windows-that-supports-eiffel/1315509#1315509Comment by FrankS on Simple UML Drawing Tool for Windows That Supports EiffelFrankS2009-08-22T08:44:10Z2009-08-22T08:44:10Z@the_drow they just started? ArgoUML is around for years already, the first release is from 2002 - <a href="http://argouml-downloads.tigris.org/" rel="nofollow">argouml-downloads.tigris.org</a>http://stackoverflow.com/questions/1315485/simple-uml-drawing-tool-for-windows-that-supports-eiffel/1315509#1315509Comment by FrankS on Simple UML Drawing Tool for Windows That Supports EiffelFrankS2009-08-22T08:38:57Z2009-08-22T08:38:57ZI was thinking about recommending ArgoUML as well, but this does not fit his needs, as he wants a tool where he can enter code. This is not possible in ArgoUML (at least I just tried it and can't find a way at all)http://stackoverflow.com/questions/1313903/simple-approach-to-work-with-mysql-from-phpComment by FrankS on Simple approach to work with MySQL from PHPFrankS2009-08-21T19:51:17Z2009-08-21T19:51:17Zthis looks like he just wanted to show his way of using mysql in PHP, not sure why thoughhttp://stackoverflow.com/questions/1299352/find-likewise-data-from-two-tables-in-mysql/1299533#1299533Comment by FrankS on find likewise data from two tables in mysqlFrankS2009-08-21T10:38:08Z2009-08-21T10:38:08ZDid this solve your problem now?http://stackoverflow.com/questions/1300655/whats-alternative-to-singleton/1300775#1300775Comment by FrankS on What's Alternative to SingletonFrankS2009-08-19T15:50:57Z2009-08-19T15:50:57ZActually the article is quite good, and it does not say you should use static methods instead. Instead he states that static methods are just singletons as well and at the end he recommends using the factory method pattern:
"I'll close by saying that if you still feel the need to use Singleton objects, consider using the Factory Method pattern instead. ..."http://stackoverflow.com/questions/1300655/whats-alternative-to-singleton/1300730#1300730Comment by FrankS on What's Alternative to SingletonFrankS2009-08-19T15:48:48Z2009-08-19T15:48:48ZThanks, didn't notice the typohttp://stackoverflow.com/questions/1299352/find-likewise-data-from-two-tables-in-mysqlComment by FrankS on find likewise data from two tables in mysqlFrankS2009-08-19T11:50:01Z2009-08-19T11:50:01ZThe problem still remains, where do you want to put the IDs if you found a match? and what happens if you find more than one matching ID? (will happen easily for the groups).http://stackoverflow.com/questions/1299352/find-likewise-data-from-two-tables-in-mysqlComment by FrankS on find likewise data from two tables in mysqlFrankS2009-08-19T11:39:27Z2009-08-19T11:39:27ZIf I understand you correctly, you want to insert B.id into a new/not listed field from table A?http://stackoverflow.com/questions/1243768/disable-axis-log4j-logging-in-jboss/1244559#1244559Comment by FrankS on Disable Axis log4j logging in jbossFrankS2009-08-07T13:52:29Z2009-08-07T13:52:29ZI checked the axis jar, but it only included a file called simplelog.properties, I will add this to the question. Chaning this didn't help though.
As for additivity, it was a left over from c&p and cimplification, I removed it as well.
I will take a look into the system property as well.http://stackoverflow.com/questions/1243768/disable-axis-log4j-logging-in-jbossComment by FrankS on Disable Axis log4j logging in jbossFrankS2009-08-07T10:20:13Z2009-08-07T10:20:13Zusing axis-1.4.jarhttp://stackoverflow.com/questions/1238628/md5-hash-for-password-string-in-gwt-gwt-ext/1242229#1242229Comment by FrankS on md5 hash for password string in GWT/GWT-Ext?FrankS2009-08-07T07:59:20Z2009-08-07T07:59:20ZVery interesting idea, and never thought of that before. Doesn't really fit in the current solution, but I will keep it in mind for future reference, thanks :-)http://stackoverflow.com/questions/1238628/md5-hash-for-password-string-in-gwt-gwt-ext/1240259#1240259Comment by FrankS on md5 hash for password string in GWT/GWT-Ext?FrankS2009-08-06T21:27:57Z2009-08-06T21:27:57Zgood point about the rainbow attacks, didn't knew about this before. I also solved it by doing the encryption on the server side, but the idea was, that I wanted to encrypt the password, before sending it to the server, as we currently only use http and no https.http://stackoverflow.com/questions/1187279/what-are-the-best-cities-of-europe-to-pursue-a-career-as-a-software-developer-eng/1187331#1187331Comment by FrankS on What are the best cities of Europe to pursue a career as a Software developer/engineer?FrankS2009-07-27T14:42:31Z2009-07-27T14:42:31Z@Mastermind good point about Stuttgart in general, it used to be a good high tech area with HP etc. around. Not sure how it is currently, maybe you can give some input on that.