User PhiLho - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:56:32Z http://stackoverflow.com/feeds/user/15459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1805324/how-to-use-web-fonts-legally/1805409#1805409 0 Answer by PhiLho for How to use web-fonts legally? PhiLho 2009-11-26T19:51:54Z 2009-11-26T19:51:54Z <p>It is not a commercial/free issue only. You have other things to take in account. Some font licenses allows embedding (in a document, for example) while others don't. AINAL but I think some commercial fonts allowing embedding might prohibit a person holding a document to reuse the distributed font.</p> <p>Note that most fonts (at least the commercial ones) have license metadata: you can see it with an hex editor, or some appropriate reader. I used to install a Microsoft shell extension adding font information tab(s) to the properties of the file. A useful tool.</p> http://stackoverflow.com/questions/1713751/using-java-pdfbox-library-to-write-russian-pdf/1713910#1713910 0 Answer by PhiLho for Using Java PDFBox library to write Russian PDF PhiLho 2009-11-11T08:57:21Z 2009-11-11T08:57:21Z <p>Perhaps the Russian encoding class need to be written, it should look like the <a href="http://svn.eu.apache.org/repos/asf/incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/encoding/WinAnsiEncoding.java" rel="nofollow" title="WinAnsiEncoding.java">WinAnsiEncoding</a> one, I suppose.<br> Now, I have no idea what to put there!</p> <p>Or, if that's not what you do already, perhaps you should encode your source file in UTF-8 and use a default encoding.<br> I saw some messages related to issues with extracting Russian text from existing PDF files (using PDFBox of course) but I don't know if output is related.<br> You can also write to the PDFBox mailing list.</p> http://stackoverflow.com/questions/214862/equivalent-of-firebugs-copy-xpath-in-internet-explorer/215091#215091 2 Answer by PhiLho for Equivalent of Firebug's "Copy Xpath" in Internet Explorer? PhiLho 2008-10-18T14:19:16Z 2009-11-09T10:31:13Z <p>I would use bookmarklets. I have one XPath related, but I don't know if it works in IE. I gotta go but I will test it and give it if it works on IE.</p> <p>Two bookmarklet sites for Web developers from my bookmarks: <a href="http://subsimple.com/bookmarklets/collection.asp" rel="nofollow" title="My bookmarklets">Subsimple's bookmarklets</a> and <a href="https://www.squarefree.com/bookmarklets/" rel="nofollow" title="Bookmarklets Home">Squarefree's Bookmarklets</a>. Lot of useful things there...</p> <p>[EDIT] OK, I am back. The bookmarklet I had was for FF only, and wasn't optimal. I finally rewrote it, although using ideas from the original one. Can't find back where I found it.</p> <p>Expanded JS:</p> <pre><code>function getNode(node) { var nodeExpr = node.tagName; if (nodeExpr == null) // Eg. node = #text return null; if (node.id != '') { nodeExpr += "[@id='" + node.id + "']"; // We don't really need to go back up to //HTML, since IDs are supposed // to be unique, so they are a good starting point. return "/" + nodeExpr; } // We don't really need this //~ if (node.className != '') //~ { //~ nodeExpr += "[@class='" + node.className + "']"; //~ } // Find rank of node among its type in the parent var rank = 1; var ps = node.previousSibling; while (ps != null) { if (ps.tagName == node.tagName) { rank++; } ps = ps.previousSibling; } if (rank &gt; 1) { nodeExpr += '[' + rank + ']'; } else { // First node of its kind at this level. Are there any others? var ns = node.nextSibling; while (ns != null) { if (ns.tagName == node.tagName) { // Yes, mark it as being the first one nodeExpr += '[1]'; break; } ns = ns.nextSibling; } } return nodeExpr; } var currentNode; // Standard (?) if (window.getSelection != undefined) currentNode = window.getSelection().anchorNode; // IE (if no selection, that's BODY) else currentNode = document.selection.createRange().parentElement(); if (currentNode == null) { alert("No selection"); return; } var path = []; // Walk up the Dom while (currentNode != undefined) { var pe = getNode(currentNode); if (pe != null) { path.push(pe); if (pe.indexOf('@id') != -1) break; // Found an ID, no need to go upper, absolute path is OK } currentNode = currentNode.parentNode; } var xpath = "/" + path.reverse().join('/'); alert(xpath); // Copy to clipboard // IE if (window.clipboardData) clipboardData.setData("Text", xpath); // FF's code to handle clipboard is much more complex // and might need to change prefs to allow changing the clipboard content. // I omit it here as it isn't part of the original request. </code></pre> <p>You have to select the element and activate the bookmarklet to get its XPath.</p> <p>Now, the bookmarklet versions (thanks to <a href="http://subsimple.com/bookmarklets/jsbuilder.htm" rel="nofollow" title="Bookmarklet Builder">Bookmarklet Builder</a>):</p> <p>IE<br> (I had to break it in two parts, because IE doesn't like very long bookmarklets (max size varies depending on IE versions!). You have to activate the first one (function def) then the second one. Tested with IE6.)</p> <pre><code>javascript:function getNode(node){var nodeExpr=node.tagName;if(!nodeExpr)return null;if(node.id!=''){nodeExpr+="[@id='"+node.id+"']";return "/"+nodeExpr;}var rank=1;var ps=node.previousSibling;while(ps){if(ps.tagName==node.tagName){rank++;}ps=ps.previousSibling;}if(rank&gt;1){nodeExpr+='['+rank+']';}else{var ns=node.nextSibling;while(ns){if(ns.tagName==node.tagName){nodeExpr+='[1]';break;}ns=ns.nextSibling;}}return nodeExpr;} javascript:function o__o(){var currentNode=document.selection.createRange().parentElement();var path=[];while(currentNode){var pe=getNode(currentNode);if(pe){path.push(pe);if(pe.indexOf('@id')!=-1)break;}currentNode=currentNode.parentNode;}var xpath="/"+path.reverse().join('/');clipboardData.setData("Text", xpath);}o__o(); </code></pre> <p>FF</p> <pre><code>javascript:function o__o(){function getNode(node){var nodeExpr=node.tagName;if(nodeExpr==null)return null;if(node.id!=''){nodeExpr+="[@id='"+node.id+"']";return "/"+nodeExpr;}var rank=1;var ps=node.previousSibling;while(ps!=null){if(ps.tagName==node.tagName){rank++;}ps=ps.previousSibling;}if(rank&gt;1){nodeExpr+='['+rank+']';}else{var ns=node.nextSibling;while(ns!=null){if(ns.tagName==node.tagName){nodeExpr+='[1]';break;}ns=ns.nextSibling;}}return nodeExpr;}var currentNode=window.getSelection().anchorNode;if(currentNode==null){alert("No selection");return;}var path=[];while(currentNode!=undefined){var pe=getNode(currentNode);if(pe!=null){path.push(pe);if(pe.indexOf('@id')!=-1)break;}currentNode=currentNode.parentNode;}var xpath="/"+path.reverse().join('/');alert(xpath);}o__o(); </code></pre> http://stackoverflow.com/questions/1673970/how-to-display-blob-datatype-from-database-to-pdf/1674065#1674065 1 Answer by PhiLho for How to display blob datatype from database to pdf PhiLho 2009-11-04T14:23:57Z 2009-11-04T14:23:57Z <p>I wonder why you want to do such wrapping, it is just doing things more difficult for the user.</p> <p>But well, you want to look at the iText library, I think.</p> http://stackoverflow.com/questions/1667430/java-2dim-table-for-iteration/1667645#1667645 0 Answer by PhiLho for Java 2dim table for-iteration PhiLho 2009-11-03T14:26:16Z 2009-11-03T14:26:16Z <p>setNumber isn't a very good name (would name it checkNumber, or canSetNumber, for example). 'set' should be used for methods having side effect (setting a value in an object).</p> <p>You should ensure you actually set the number in cells array, it might be a cause why you can set several times in the same row.</p> http://stackoverflow.com/questions/1667481/compare-two-lists-for-updates-deletions-and-additions/1667587#1667587 0 Answer by PhiLho for Compare two lists for updates, deletions and additions PhiLho 2009-11-03T14:17:29Z 2009-11-03T14:17:29Z <p>If there is a standard way, I don't know it...<br /> I looked at <a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html" rel="nofollow" title="Collections">Collections</a> but only saw disjoint() (that's already an information...) and indexOfSubList() (not sure if it is useful at all).<br /> I also looked at <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/index.html?http%3A//google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/package-summary.html" rel="nofollow" title="GC API documentation (1.0-RC3)">Google Collections</a> and if there is, apparently, not such facility, there are some useful tools there, like <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Collections2.html" rel="nofollow" title="Collections2">Collections2</a>'s filter() function which can help if you make a proper Predicate.</p> <p>[EDIT] I missed the removeAll and retainAll methods of Collection... I don't delete this answer, even if a bit pathetic, as it is somehow complementary of the other answers... (I think Google Collections is at least worth mentioning!)</p> http://stackoverflow.com/questions/1648449/java-multithreading/1648667#1648667 0 Answer by PhiLho for java multithreading PhiLho 2009-10-30T08:49:28Z 2009-10-30T08:49:28Z <p>Something like <a href="http://www.koders.com/default.aspx?s=Thread&amp;search.x=0&amp;search.y=0&amp;la=Java&amp;li=%2A&amp;scope=" rel="nofollow" title="Koders Code Search: Thread">this search</a>, perhaps refined a bit, might help you in your quest... :-)</p> http://stackoverflow.com/questions/1648595/how-to-create-a-patch-file-on-windows/1648629#1648629 1 Answer by PhiLho for How to create a patch file on windows? PhiLho 2009-10-30T08:35:27Z 2009-10-30T08:35:27Z <p>The UnxUtils package offers lot of useful Unix tools for Windows, with a minimal impact on Windows installation (unzip, add location to path, use it).<br /> It has a diff.exe</p> http://stackoverflow.com/questions/1646889/java-command-line-option-using-symbol/1647070#1647070 0 Answer by PhiLho for Java command line option using @ symbol. PhiLho 2009-10-29T22:59:16Z 2009-10-29T22:59:16Z <p>It is a quite common practice/convention, but I believe you have to implement it yourself (ie. get the filename, open it, read and parse it...).</p> http://stackoverflow.com/questions/1635881/eclipse-doesnt-recognize-lua-files-after-installing-the-lua-plugin/1636039#1636039 0 Answer by PhiLho for Eclipse doesn't recognize lua files after installing the lua plugin PhiLho 2009-10-28T09:16:20Z 2009-10-28T09:16:20Z <p>I love these kind of questions because they provide an opportunity to do a test I postponed until now...</p> <p>So I downloaded the plugin package, and followed the instructions: closed Eclipse, put two jar files in the plugin folder, put the open-ldb.exe elsewhere, restarted Eclipse.<br /> I created a generic project, added a generic file linked to an existing Lua file. When I opened the file, it was automatically identified as such, with a moon icon and correct syntax highlighting.<br /> Using Eclipse 3.5.1 on Windows XP, BTW.</p> <p>Now, I have an issue, the debugger won't start for me, I get a</p> <blockquote> <p>Unable to connect to PDA VM<br /> Connection refused: connect</p> </blockquote> <p>error, not sure why (path to exe file is correct, I have another error when it is wrong). </p> <p>But at least I have the Lua files recognized without problem.<br /> I think you might want to check that in Preferences > General > Editors > File Associations, *.lua is defined and associated to the Lua editor.</p> http://stackoverflow.com/questions/1623672/copying-plain-text-from-a-wysiwygi-to-a-normal-textarea/1624765#1624765 0 Answer by PhiLho for Copying plain text from a WYSIWYGI to a normal textarea? PhiLho 2009-10-26T13:25:09Z 2009-10-26T13:25:09Z <p>That's because what you see isn't a textarea but an iframe with a full HTML page inside.<br /> There is a hidden textarea, but it doesn't seem to be updated in real time.</p> <p>The method given by Rew should work (for Firefox, that's contentDocument) but it returns HTML code (generated by the widget), not plain text.<br /> You might want to use body.plainText (instead of body.innerHTML) on Firefox, not sure for other browsers.</p> <p>Alternatively, check your widget's API to see if they don't offer such plain text access.</p> http://stackoverflow.com/questions/1623802/php-to-pdf-or-php-to-jpeg-library-or-function/1624509#1624509 0 Answer by PhiLho for php to pdf or php to jpeg library or function ? PhiLho 2009-10-26T12:26:14Z 2009-10-26T12:26:14Z <p>As said, GD is a fine library to generate Jpeg images.<br /> To answer your secondary questions as comments, it won't fetch data from SQL, that's the role of the PHP code surrounding the GD drawing calls.<br /> GD, and the various PDF libraries (FPDF is quite well known and used, UFPDF and TCPDF are alternatives to manage Unicode chars, ) are more like drawing libraries, they don't handle HTML rendering, you have to position the characters, specify their style, etc.</p> <p>Ah, dompdf have been mentioned too, looking again at it, I see it is an HTML to PDF library, which is closer of what you are looking for. Except it uses PDFLib which is a commercial, binary (last time I checked) library, hard to install on a shared server. But it can also use CPDF which seems easier to use (but slower).</p> http://stackoverflow.com/questions/70169/how-to-highlight-source-code-in-html/1618376#1618376 0 Answer by PhiLho for How to highlight source code in HTML? PhiLho 2009-10-24T16:04:33Z 2009-10-24T16:04:33Z <p>Personally, I prefer offline tools: I don't see the point of parsing the code (particularly large ones) over and over, for each served page, or even worse, on each browser (for JS libraries), because as pointed above, these libraries often lag (you often see raw source before it is formatted).</p> <p>There are a number of tools to do this job, some pointed above. I just use the export feature of my favorite editor (SciTE) because it just respects the choices of color I carefully set up... :-) And it can output XML, PDF, RTF and LaTeX too.</p> http://stackoverflow.com/questions/1617081/setting-input-field-using-bookmarklet/1618255#1618255 0 Answer by PhiLho for Setting input field using bookmarklet PhiLho 2009-10-24T15:22:58Z 2009-10-24T15:22:58Z <pre><code>javascript: var f = document.getElementById("textEmail"); f.value = "Tagada"; void(0); </code></pre> http://stackoverflow.com/questions/1617233/how-can-i-open-a-webpage-and-run-a-javascript-function-from-a-java-app/1617460#1617460 0 Answer by PhiLho for How can I open a webpage and run a javascript function from a Java app PhiLho 2009-10-24T09:16:12Z 2009-10-24T09:16:12Z <p>Your question is a bit ambiguous, as we don't know the position of the Java program.<br /> If that's a Java applet inside your page, you should look at Java&lt;->JavaScript interaction, it works well.<br /> If you need a separate Java program to control a browser, like sending a bookmarklet in the address bar (as one of your tags suggests), it is a bit harder (depends on target browser), perhaps look at the Robot class.</p> http://stackoverflow.com/questions/1617271/monitoring-java-from-within-java/1617455#1617455 2 Answer by PhiLho for Monitoring Java from within Java PhiLho 2009-10-24T09:12:54Z 2009-10-24T09:12:54Z <p>Look also at VisualVM, shipped with latest Java releases.</p> http://stackoverflow.com/questions/1609947/regex-for-replacing-a-single-quote-with-two-single-quotes/1609969#1609969 2 Answer by PhiLho for Regex for replacing a single-quote with two single-quotes PhiLho 2009-10-22T21:10:14Z 2009-10-22T21:15:16Z <blockquote> <p>JS's string.replace uses RegEx</p> </blockquote> <p>Not necessarily:</p> <pre><code>var str = "O'Reilly's books"; alert(str.replace("'", "''", 'g')); </code></pre> <p><a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/String/replace" rel="nofollow" title="replace">MDC's String replace</a> reference:</p> <blockquote> <p>The pattern can be a string or a RegExp</p> </blockquote> <p>Mmm, my code above doesn't seem to work on IE6, so that will be:</p> <pre><code>str.replace(/'/g, "''") </code></pre> <p>like the others said, but using regexes for such simple operation is overkill.</p> http://stackoverflow.com/questions/1603665/javascript-for-mp3-playback/1609955#1609955 0 Answer by PhiLho for JavaScript for MP3 playback PhiLho 2009-10-22T21:08:11Z 2009-10-22T21:08:11Z <p>No.<br /> As others wrote, you cannot do that in a portable way, particularly on IE, which would need some plugin to play sounds.<br /> JavaScript isn't really suited to manipulate binary data, anyway, and is quite limited to access computer's hardware, so it has to ask the browser, if possible, to do the job itself.</p> http://stackoverflow.com/questions/1607086/help-with-regular-expression/1607199#1607199 3 Answer by PhiLho for Help with Regular Expression PhiLho 2009-10-22T13:28:32Z 2009-10-22T13:28:32Z <p>Put the digits of each number in two arrays, sort the arrays, find out if they hold the same digits at the same indices.</p> <p>RegExes are not the right tool for this task.</p> http://stackoverflow.com/questions/1599163/is-there-a-non-geek-reason-to-start-learning-android/1599292#1599292 3 Answer by PhiLho for Is there a "non-geek" reason to start learning Android? PhiLho 2009-10-21T07:37:43Z 2009-10-21T07:37:43Z <p>I saw an article on the topic, but alas I don't have a reference at hand.</p> <p>Somehow, it is a bet. Perhaps it is too early right now, but at least, the market is almost virgin. The iPhone market is a bit saturated, it might be harder to make a "killer, million making" application now...</p> <p>You can make Android development a hobby right now, and perhaps turn to full time job if it skyrockets... I have read that's what some successful iPhone developers did... :-)</p> http://stackoverflow.com/questions/1599176/what-are-first-class-objects-in-java-and-c/1599264#1599264 1 Answer by PhiLho for What are first-class objects in Java and C#? PhiLho 2009-10-21T07:29:32Z 2009-10-21T07:29:32Z <p>Frankly, I have no idea of what a "first-class object" is...<br /> But I first found usage of a similar idiom in Lua documentation and mailing list, saying that functions are first-class citizens, or first-class values.</p> <p>I let one of the authors of Lua to explain what it is: <a href="http://www.lua.org/pil/6.html" rel="nofollow" title="Programming in Lua : 6">Programming in Lua : 6 - More about Functions</a> </p> <blockquote> <p>It means that, in Lua, a function is a value with the same rights as conventional values like numbers and strings. Functions can be stored in variables (both global and local) and in tables, can be passed as arguments, and can be returned by other functions.</p> </blockquote> <p>Somehow, this definition applies to objects in Java: you can store them in variables, in arrays, use them as function parameters and return them, use them as key of HashMap and other collections, etc.<br /> Not sure if that's how the term is used for objects, but at least it makes sense... :-)</p> <p>In a language like C, objects have to be made from scratch, using some tricks (re-creating C++, somehow...), so they are not first-class: you have to pass pointers around to manipulate them.</p> http://stackoverflow.com/questions/1588929/is-there-a-concise-way-to-test-get-parameter-combinations-in-php/1589068#1589068 -1 Answer by PhiLho for Is there a concise way to test GET parameter combinations in PHP? PhiLho 2009-10-19T14:41:40Z 2009-10-19T14:48:36Z <p>Not sure if it is clearer, but at least it is a bit more concise... :-)</p> <pre><code>$cats = str_replace('all', '', "${_GET['type']},${_GET['age']}"); $cats = preg_replace('/^,|,$/', '', $cats); </code></pre> <p>[EDIT] Give a simpler version...</p> http://stackoverflow.com/questions/1588052/gui-program-problem-with-tabbedpanes/1588141#1588141 1 Answer by PhiLho for GUI program, problem with tabbedpanes PhiLho 2009-10-19T11:21:05Z 2009-10-19T11:21:05Z <p>Bryan gave good advices, I will just add that ergonomics isn't an exact science, although experience helps there.<br /> Tabs are nice, eg. to separate settings, or group in a same panel (toolbox for example) different sets of tools (layers, colors, brushes...).<br /> But they might not be adapted to all workflows. But we are lacking information about the role of the Display tab. Is it supposed to list all crimes in a table? Can't the table, if any, be below the controls?</p> <p>As hinted by Bryan, it is better to design the GUI, then to test it, like would do a real user. Do you find the workflow easy to understand? (make somebody else to test it!) Does the usage feels natural? Is it fast to use?<br /> Then you can adjust the design in light of these observations.</p> http://stackoverflow.com/questions/1548194/how-to-get-the-htmls-input-element-of-file-type-to-only-accept-pdf-files/1548255#1548255 1 Answer by PhiLho for How to get the HTML's input element of "file" type to only accept pdf files? PhiLho 2009-10-10T15:39:40Z 2009-10-10T15:39:40Z <p>It can be useful to prevent the distracted user to make an involuntary bad choice, but in any case, you have to do the check on the server side anyway.<br /> The best way is to be clear in the upload page. After that, if the user stupidly upload a big file with the wrong type, that's their loss of time, no?</p> http://stackoverflow.com/questions/1547169/best-application-program-you-have-developed-written-in-assembly-language-so-far/1548087#1548087 0 Answer by PhiLho for Best application/program you have developed/written in assembly language so far? PhiLho 2009-10-10T14:24:33Z 2009-10-10T14:24:33Z <p>I coded quite some quantity of assembly language for 8-bit microprocessors and micro-controllers.</p> <p>I started on these first boards, with only the microprocessor (6800 IIRC), some peripheral circuits, a handful of 8-segment LED display and an hexa keyboard...<br /> We coded the assembly, generated the hex codes by hand (looking in a printed table) and computing the jump offsets by hand, then inputing all these codes on the hex keyboard... :-)<br /> Of course, the fun, beside doing the assignment, was to do some extra work, like making the LEDs to light up in sequence... :-D<br /> And of course, if you cut the power down, you loose the code (later I had a board able to save code on a cassette tape...).</p> <p>Later, I owned an Apple //e, with a 6502 processor (like the Commodore 4016 I owned before). I wrote a little assembly routine to make a three-screen drawing (which I drew with a joystick!) to scroll smoothly. Hey, I even won the second price of a contest of the time with this code! (First price was a MSX computer, second one was a printer, I was SO happy to have the second price! :-D)</p> <p>One of my most remarkable assembly language work was done on a micro-controller, which was... controlling the hardware of a radio-altimeter (stuff sending radar signal to ground and analyzing resulting time to go back to see how close the plan is from the ground; critical for landing). So my code was real-time, measuring electric signals, communicating with the airplane (showing some primitive alphanumeric menu) via Arinc, etc. It was also monitoring the two other, different CPUs, each computing the altitude with a different algorithm, one written in assembly language two, the other in C. If they found very different values, my CPU was holding data, declaring the device as faulty.<br /> All this for Boeing and Airbus, following very strict procedures and documentation, using a cross-compiler (on Sun stations), etc.<br /> I learned a lot in this project, very enjoyable, even if a bit obscure (in exposure). Hey, perhaps you flied on a plane using my software... :-D</p> http://stackoverflow.com/questions/1542220/ascii-graphics-library/1542764#1542764 2 Answer by PhiLho for ASCII "graphics" library? PhiLho 2009-10-09T09:21:30Z 2009-10-09T09:21:30Z <p>I suppose you can use curses (and derivatives like <a href="http://en.wikipedia.org/wiki/Ncurses" rel="nofollow" title="ncurses">ncurses</a>).</p> http://stackoverflow.com/questions/1542275/how-to-disable-a-dlls-console-output/1542746#1542746 0 Answer by PhiLho for How to disable a .DLL's console output? PhiLho 2009-10-09T09:17:41Z 2009-10-09T09:17:41Z <p>Perhaps you can just change the logging options. Found <a href="http://lists.samba.org/archive/samba/1998-December/010046.html" rel="nofollow">http://lists.samba.org/archive/samba/1998-December/010046.html</a> message showing it can be controlled.</p> http://stackoverflow.com/questions/1538332/how-should-i-name-my-class-functions-member-variables-and-static-variables/1538962#1538962 2 Answer by PhiLho for How should I name my class, functions, member variables and static variables? PhiLho 2009-10-08T16:31:00Z 2009-10-08T16:31:00Z <p>Like the others, I prefer isNull() (or IsNull(), depending on your language/coding conventions).</p> <p>Why? Beside it is a widely accepted convention, it sounds nice when you read the code:</p> <pre><code>if (isNull()) // or if (foo.isInitialized()) </code></pre> <p>and so on. Almost natural English... :-) Compare to the alternatives!<br /> Like iWerner, I would avoid negative form for making identifiers (variables, methods) names.<br /> Another common convention is to start method/function names with a verb. Now, Sun did not follow this convention in the early days of Java (hence the length() and size() methods, for example) but it even deprecates some of these old names in favor of the verb rule.</p> http://stackoverflow.com/questions/1538755/how-to-convert-string-object-to-boolean-object/1538920#1538920 1 Answer by PhiLho for how to convert String object to Boolean Object PhiLho 2009-10-08T16:23:24Z 2009-10-08T16:23:24Z <p>Beside the excellent answer of KLE, we can also make something more flexible:</p> <pre><code>boolean b = string.equalsIgnoreCase("true") || string.equalsIgnoreCase("t") || string.equalsIgnoreCase("yes") || string.equalsIgnoreCase("y") || string.equalsIgnoreCase("sure") || string.equalsIgnoreCase("aye") || string.equalsIgnoreCase("oui") || string.equalsIgnoreCase("vrai"); </code></pre> <p>(inspired by zlajo's answer... :-))</p> http://stackoverflow.com/questions/1520821/extend-a-line-segment-to-bounding-box/1525487#1525487 0 Answer by PhiLho for Extend a line segment to bounding box PhiLho 2009-10-06T13:10:08Z 2009-10-06T13:10:08Z <p>Funny, last night, I realized that my solution was a bit too generic for the given problem... It is nice to have a generic solution, but for testing against vertical and horizontal lines only, the formulas can be much simpler.</p> <p>So I wrote a simplified version and came here to show it... to see that the first answer, accepted answer, just stated that! I overlooked the hint, jumping at the more generic solution...</p> <p>Anyway, as this can be of interest to other visitors, here is the alternative version:</p> <pre><code>void FindIntersections() { // Test against the sides of the BB PVector pT = IntersectHorizontalSegment(yMin, xMin, xMax); PVector pB = IntersectHorizontalSegment(yMax, xMin, xMax); PVector pL = IntersectVecticalSegment(xMin, yMin, yMax); PVector pR = IntersectVecticalSegment(xMax, yMin, yMax); int i = 0; // Eliminates the non-intersecting solutions if (pT != null) pointsI[i++] = pT; if (pB != null) pointsI[i++] = pB; if (pL != null) pointsI[i++] = pL; if (pR != null) pointsI[i++] = pR; } PVector IntersectHorizontalSegment(float y, float xMin, float xMax) { float d = pointA.y - pointB.y; if (d == 0) return null; // Horizontal line doesn't intersect horizontal segment (unless they have same y) float x = -(pointA.x * pointB.y - pointA.y * pointB.x - y * (pointA.x - pointB.x)) / d; println("X: " + x); if (x &lt; xMin || x &gt; xMax) return null; // Not in segement return new PVector(x, y); } PVector IntersectVecticalSegment(float x, float yMin, float yMax) { float d = pointA.x - pointB.x; if (d == 0) return null; // Vertical line doesn't intersect vertical segment (unless they have same x) float y = (pointA.x * pointB.y - pointA.y * pointB.x - x * (pointA.y - pointB.y)) / d; println("Y: " + y); if (y &lt; yMin || y &gt; yMax) return null; // Not in segement return new PVector(x, y); } </code></pre> <p>It does less object creations, which is a good thing. In a program calling intensively these routines, I would even avoid object creation altogether (passing around an object for results), as garbage collection can slow down a lot applications where framerate is important (having visible incidence).</p> http://stackoverflow.com/questions/245655/2d-cel-shading-in-javafx/446540#446540 Comment by PhiLho on 2D Cel-Shading in JavaFX PhiLho 2009-11-23T15:17:10Z 2009-11-23T15:17:10Z Yes, I understand. It might be interesting to have a Lighting effect with a cell-shading rendering (after all Lighting is pseudo-3D) but it belongs to JavaFX implementation more than JavaFX coding. http://stackoverflow.com/questions/1713702/ultimate-png-fix Comment by PhiLho on Ultimate png fix? PhiLho 2009-11-11T09:50:16Z 2009-11-11T09:50:16Z Somehow, I agree with comments above. While I reckon IE6 must still be supported (alas), for a button, you probably use transparency mostly for rounded corner or similar. So not supporting transparency here is a minor issue. If we make sites ugly (yes functional!) for IE6 users, maybe they will migrate someday (if they know how to do it! -- or are allowed to do it). :-) http://stackoverflow.com/questions/214862/equivalent-of-firebugs-copy-xpath-in-internet-explorer/215091#215091 Comment by PhiLho on Equivalent of Firebug's "Copy Xpath" in Internet Explorer? PhiLho 2009-11-09T10:32:58Z 2009-11-09T10:32:58Z @Photodeus: Oops! Obviously you are the first one to test the FF version... I had a typo, a ps instead of ns (in ns=ps.nextSibling). Fixed in the answer. Thanks for reporting. http://stackoverflow.com/questions/1687756/how-to-write-formula-in-excel-for-my-requirement Comment by PhiLho on How to write formula in Excel for my requirement PhiLho 2009-11-06T15:54:07Z 2009-11-06T15:54:07Z @Jason Tholstrup: not sure, but the description at least looks like an algorithm, so somehow it is programming related... :-) http://stackoverflow.com/questions/1673970/how-to-display-blob-datatype-from-database-to-pdf/1673988#1673988 Comment by PhiLho on How to display blob datatype from database to pdf PhiLho 2009-11-04T14:19:45Z 2009-11-04T14:19:45Z I believe anand wants to wrap some image file (unspecified format...) into the PDF format (unknown reason!), not to output a PDF blob taken from a database. Unless I misunderstood. http://stackoverflow.com/questions/1668210/what-is-the-best-way-to-determine-duplicate-credit-card-numbers-without-storing-t/1668235#1668235 Comment by PhiLho on What is the best way to determine duplicate credit card numbers without storing them? PhiLho 2009-11-03T16:10:39Z 2009-11-03T16:10:39Z There are heated discussions about that on SO, but apparently you can safely store the salt along with the salted information, as long as salt is varied (would need a rainbow table per salt). http://stackoverflow.com/questions/1666334/opening-a-tiff-image-in-ie Comment by PhiLho on opening a tiff image in IE PhiLho 2009-11-03T10:28:22Z 2009-11-03T10:28:22Z BMP are opened by IE only because it is the native Windows image format. Any other non-Web image format is unlikely to be opened by a browser. http://stackoverflow.com/questions/1649429/is-there-any-mistake-in-this-java-code/1649510#1649510 Comment by PhiLho on Is there any mistake in this Java code? PhiLho 2009-10-30T12:43:09Z 2009-10-30T12:43:09Z Nicely analyzed. Somehow, you also show the limit of simplified code used for quick demo purpose, which works in their limited environment but are wrong in real use. Similar to these snippets omitting to close streams in finally for conciseness and so on. http://stackoverflow.com/questions/1649435/regular-expression-to-limit-number-of-characters-to-10 Comment by PhiLho on Regular expression to limit number of characters to 10 PhiLho 2009-10-30T12:36:02Z 2009-10-30T12:36:02Z The {} and the + do the same thing (counting), thus they are redundant, hence the error. http://stackoverflow.com/questions/1646889/java-command-line-option-using-symbol/1646908#1646908 Comment by PhiLho on Java command line option using @ symbol. PhiLho 2009-10-29T22:58:39Z 2009-10-29T22:58:39Z In what shell? Not XP's cmd one at least, and never saw in regular Dos either. http://stackoverflow.com/questions/268424/when-and-why-should-you-store-data-in-the-windows-registry/268448#268448 Comment by PhiLho on When - and why - should you store data in the Windows Registry? PhiLho 2009-10-29T22:50:42Z 2009-10-29T22:50:42Z Indeed, I didn't said it was &quot;best practice&quot;, but common practice... :) The folders in application data /are/ best practice, particularly for big data, but also because they are easier to back up. http://stackoverflow.com/questions/1271658/why-java-imageio-flattens-jpeg-colors/1271739#1271739 Comment by PhiLho on Why Java ImageIO flattens JPEG colors PhiLho 2009-10-29T09:02:14Z 2009-10-29T09:02:14Z @ketorin: you asked &quot;why&quot;, not &quot;how to avoid this problem&quot;. Since you find the answer is good (and I agree), you should accept this answer. And perhaps ask another question about the &quot;how&quot;... :-) http://stackoverflow.com/questions/1635881/eclipse-doesnt-recognize-lua-files-after-installing-the-lua-plugin/1635979#1635979 Comment by PhiLho on Eclipse doesn't recognize lua files after installing the lua plugin PhiLho 2009-10-28T09:39:07Z 2009-10-28T09:39:07Z @RCIX: I drag and dropped a random file into Eclipse, and I have this ERROR message. Looks like files must be in a project to be correctly handled. http://stackoverflow.com/questions/1629801/javascript-to-close-ie6-ie7-ie8-and-firefox-without-confirmation-box Comment by PhiLho on Javascript to close IE6, IE7, IE8 and Firefox without confirmation box? PhiLho 2009-10-27T13:50:49Z 2009-10-27T13:50:49Z I would hate to lost all my tabs because of a rogue JavaScript code! Fortunately, browsers forbid this operation, at least on main window(s). Such way of doing things is sooo XXth century! (when browser windows shown only one page...) http://stackoverflow.com/questions/1629824/searching-for-using-javascript Comment by PhiLho on Searching for '\' using javascript PhiLho 2009-10-27T13:45:01Z 2009-10-27T13:45:01Z Don't forget to accept one answer (the first correct or the most useful for you).