User Kip - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T02:15:16Zhttp://stackoverflow.com/feeds/user/18511http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/508639/why-must-delegation-to-a-different-constructor-happen-first-in-a-java-constructor8Why must delegation to a different constructor happen first in a Java constructor?Kip2009-02-03T19:52:06Z2009-11-24T19:43:28Z
<p>In a constructor in Java, if you want to call another constructor (or a super constructor), it has to be the first line in the constructor. I assume this is because you shouldn't be allowed to modify any instance variables before the other constructor runs. But why can't you have statements before the constructor delegation, in order to compute the complex value to the other function? I can't think of any good reason, and I have hit some real cases where I have written some ugly code to get around this limitation.</p>
<p>So I'm just wondering:</p>
<ol>
<li>Is there a good reason for this limitation?</li>
<li>Are there any plans to allow this in future Java releases? (Or has Sun definitively said this is not going to happen?)</li>
</ol>
<p><hr></p>
<p>For an example of what I'm talking about, consider some code I wrote which I gave in <a href="http://stackoverflow.com/questions/474535/best-way-to-represent-a-fraction-in-java/474612#474612">this StackOverflow answer</a>. In that code, I have a BigFraction class, which has a BigInteger numerator and a BigInteger denominator. The "canonical" constructor is the <code>BigFraction(BigInteger numerator, BigInteger denominator)</code> form. For all the other constructors, I just convert the input parameters to BigIntegers, and call the "canonical" constructor, because I don't want to duplicate all the work.</p>
<p>In some cases this is easy; for example, the constructor that takes two <code>long</code>s is trivial:</p>
<pre><code> public BigFraction(long numerator, long denominator)
{
this(BigInteger.valueOf(numerator), BigInteger.valueOf(denominator));
}
</code></pre>
<p>But in other cases, it is more difficult. Consider the constructor which takes a BigDecimal:</p>
<pre><code> public BigFraction(BigDecimal d)
{
this(d.scale() < 0 ? d.unscaledValue().multiply(BigInteger.TEN.pow(-d.scale())) : d.unscaledValue(),
d.scale() < 0 ? BigInteger.ONE : BigInteger.TEN.pow(d.scale()));
}
</code></pre>
<p>I find this pretty ugly, but it helps me avoid duplicating code. The following is what I'd like to do, but it is illegal in Java:</p>
<pre><code> public BigFraction(BigDecimal d)
{
BigInteger numerator = null;
BigInteger denominator = null;
if(d.scale() < 0)
{
numerator = d.unscaledValue().multiply(BigInteger.TEN.pow(-d.scale()));
denominator = BigInteger.ONE;
}
else
{
numerator = d.unscaledValue();
denominator = BigInteger.TEN.pow(d.scale());
}
this(numerator, denominator);
}
</code></pre>
<p><hr></p>
<p><strong>Update</strong></p>
<p>There have been good answers, but thus far, no answers have been provided that I'm completely satisfied with, but I don't care enough to start a bounty, so I'm answering my own question (mainly to get rid of that annoying "have you considered marking an accepted answer" message).</p>
<p>Workarounds that have been suggested are:</p>
<ol>
<li>Static factory.
<ul>
<li>I've used the class in a lot of places, so that code would break if I suddenly got rid of the public constructors and went with valueOf() functions.</li>
<li>It feels like a workaround to a limitation. I wouldn't get any other benefits of a factory because this cannot be subclassed and because common values are not being cached/interned.</li>
</ul></li>
<li>Private static "constructor helper" methods.
<ul>
<li>This leads to lots of code bloat.</li>
<li>The code gets ugly because in some cases I really need to compute both numerator and denominator at the same time, and I can't return multiple values unless I return a <code>BigInteger[]</code> or some kind of private inner class.</li>
</ul></li>
</ol>
<p>The main argument against this functionality is that the compiler would have to check that you didn't use any instance variables or methods before calling the superconstructor, because the object would be in an invalid state. I agree, but I think this would be an easier check than the one which makes sure all final instance variables are always initialized in every constructor, no matter what path through the code is taken. The other argument is that you simply can't execute code beforehand, but this is clearly false because the code to compute the parameters to the superconstructor is getting executed <em>somewhere</em>, so it must be allowed at a bytecode level.</p>
<p>Now, what I'd like to see, is some <em>good</em> reason why the compiler couldn't let me take this code:</p>
<pre><code>public MyClass(String s) {
this(Integer.parseInt(s));
}
public MyClass(int i) {
this.i = i;
}
</code></pre>
<p>And rewrite it like this (the bytecode would be basically identical, I'd think):</p>
<pre><code>public MyClass(String s) {
int tmp = Integer.parseInt(s);
this(tmp);
}
public MyClass(int i) {
this.i = i;
}
</code></pre>
<p>The only real difference I see between those two examples is that the "<code>tmp</code>" variable's scope allows it to be accessed after calling <code>this(tmp)</code> in the second example. So maybe a special syntax (similar to <code>static{}</code> blocks for class initialization) would need to be introduced:</p>
<pre><code>public MyClass(String s) {
//"init{}" is a hypothetical syntax where there is no access to instance
//variables/methods, and which must end with a call to another constructor
//(using either "this(...)" or "super(...)")
init {
int tmp = Integer.parseInt(s);
this(tmp);
}
}
public MyClass(int i) {
this.i = i;
}
</code></pre>
http://stackoverflow.com/questions/979057/any-reason-to-clean-up-unused-imports-in-java-other-than-reducing-clutter6Any reason to clean up unused imports in Java, other than reducing clutter?Kip2009-06-11T02:40:46Z2009-11-19T19:33:30Z
<p>Is there any good reason to avoid unused import statements in Java? As I understand it, they are there for the compiler, so lots of unused imports won't have any impacts on the compiled code. Is it just to reduce clutter and to avoid naming conflicts down the line?</p>
<p>(I ask because Eclipse gives a warning about unused imports, which is kind of annoying when I'm developing code because I don't want to remove the imports until I'm pretty sure I'm done designing the class.)</p>
http://stackoverflow.com/questions/1744516/problem-with-jquery-data-function-in-greasemonkey1Problem with jQuery data() function in GreaseMonkeyKip2009-11-16T20:02:18Z2009-11-16T22:24:54Z
<p>I'm trying to use jQuery's <a href="http://docs.jquery.com/Core/data#name" rel="nofollow">data()</a> function to store and retrieve data on an element. I want to retrieve the data stored in a textarea whenever the user enters the space bar<sup>1</sup>. However, everytime I do this I get <code>undefined</code> back from <code>data()</code>.</p>
<p>Now, if I define exactly the same Javascript <em>in the HTML</em>, it works as expected. Is there some "gotcha" to <code>data()</code> that keeps it from working in GreaseMonkey?</p>
<p>Here is the GreaseMonkey script:</p>
<pre><code>(function(){
//boilerplate greasemonkey to wait until jQuery is defined...
function GM_wait()
{
if(typeof unsafeWindow.jQuery == 'undefined') {
window.setTimeout(GM_wait,100);
} else {
var $ = unsafeWindow.jQuery;
$(function() { letsJQuery($); });
}
}
GM_wait();
function letsJQuery($)
{
//store the data initially
$('textarea[name=comment]').data('tst', 'abc');
//retrieve the data on spacebar
$('textarea[name=comment]').live('keypress', function(e) {
if(e.which == 0x20) { //spacebar
alert("the stored data is: " + $(this).data('tst'));
return false;
}
});
}
})();
</code></pre>
<p>And here is my very simple test HTML file:</p>
<pre><code><html>
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
</head>
<body>
<textarea name="comment"></textarea>
</body>
</html>
</code></pre>
<p><hr></p>
<p><sup>1</sup> This is a very simplified version of my problem, of course.</p>
http://stackoverflow.com/questions/1717126/using-select-top-from-one-column-then-sorting-on-a-different-column0Using SELECT TOP from one column, then sorting on a different columnKip2009-11-11T18:17:22Z2009-11-11T18:57:15Z
<p>I'm using SQL Server 2005, and I want to query for the vendors generating the most revenue, sorted by the vendor's name. Below is the query I have tried. The inner subquery gets the 15 largest vendors sorted by revenue, and I try to order <em>those</em> results by the vendor name.</p>
<pre><code>SELECT Revenue, VendorName
FROM (
SELECT TOP 15
SUM(po.POTotal) AS Revenue
, Vendors.VendorName AS VendorName
FROM PurchaseOrders po
INNER JOIN Vendors ON po.Vendor_ID = Vendors.Vendor_ID
WHERE ...
GROUP BY Vendors.VendorName
ORDER BY Revenue DESC
)
ORDER BY VendorName ASC
</code></pre>
<p>But this gives me an error message:</p>
<blockquote>
<p>Msg 156, Level 15, State 1, Line 14<br>
Incorrect syntax near the keyword 'ORDER'.</p>
</blockquote>
<p>Is there another way to do this? I think this might be possible with a view, but I'd prefer not to do it that way.</p>
<p><hr></p>
<p><sup>I apologize if this is a duplicate, I don't even know what to search for to see if this has already been asked.</sup></p>
http://stackoverflow.com/questions/1670038/does-java-have-a-hashmap-with-reverse-lookup8Does Java have a HashMap with reverse lookup?Kip2009-11-03T20:46:40Z2009-11-05T18:23:05Z
<p>I have data that is organized in kind of a "key-key" format, rather than "key-value". It's like a HashMap, but I will need O(1) lookup in both directions. Is there a name for this type of data structure, and is anything like this included in Java's standard libraries? (or maybe Apache Commons?)</p>
<p>I could write my own class that basically uses two mirrored Maps, but I'd rather not reinvent the wheel (if this already exists but I'm just not searching for the right term).</p>
http://stackoverflow.com/questions/763543/in-java-how-do-i-access-the-outer-class-when-im-not-in-the-inner-class0In Java, how do I access the outer class when I'm not in the inner class?Kip2009-04-18T14:43:30Z2009-11-03T23:03:57Z
<p>If I have an instance of an inner class, how can I access the outer class <i>from code that is not in the inner class</i>? I know that within the inner class, I can use <code>Outer.this</code> to get the outer class, but I can't find any external way of getting this.</p>
<p>For example:</p>
<pre><code>public class Outer {
public static void foo(Inner inner) {
//Question: How could I write the following line without
// having to create the getOuter() method?
System.out.println("The outer class is: " + inner.getOuter());
}
public class Inner {
public Outer getOuter() { return Outer.this; }
}
}
</code></pre>
http://stackoverflow.com/questions/1633351/sql-server-2005-nested-recursive-query/1633408#16334084Answer by Kip for SQL Server 2005 - Nested recursive query :(Kip2009-10-27T20:19:16Z2009-10-27T20:19:16Z<p>Try this:</p>
<pre><code>SELECT
e.FirstName,
e.LastName,
e.Company,
(
SELECT COUNT(*)
FROM Files f
JOIN Employees e2 ON f.EmployeeID = e2.id
WHERE e2.CompanyID = e.CompanyID
) as 'FileCount'
FROM
Employees e
</code></pre>
http://stackoverflow.com/questions/1625234/how-to-append-text-to-an-existing-file-in-java/1625263#16252638Answer by Kip for How to append text to an existing file in JavaKip2009-10-26T14:47:47Z2009-10-26T15:00:11Z<p>Are you doing this for logging purposes? If so <a href="http://logging.apache.org/log4j/" rel="nofollow">Apache Log4j</a> is the de facto standard Java logging library.</p>
<p>If you just want something simple, this will work:</p>
<pre><code>try {
PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("outfilename", true)));
out.println("the text");
out.close();
} catch (IOException e) {
//oh noes!
}
</code></pre>
<p>The second parameter to the <code>FileWriter</code> constructor will tell it to append to the file (as opposed to clearing the file). Using a <code>BufferedWriter</code> is recommended for an expensive writer (i.e. a <code>FileWriter</code>), and using a <code>PrintWriter</code> gives you access to <code>println</code> syntax that you're probably used to from <code>System.out</code>. But the <code>BufferedWriter</code> and <code>PrintWriter</code> wrappers are not strictly necessary.</p>
http://stackoverflow.com/questions/1625137/image-resize-quality-java/1625209#16252091Answer by Kip for Image resize quality (Java)Kip2009-10-26T14:39:50Z2009-10-26T14:39:50Z<p>What rendering hint are you using? Usually bicubic resampling will be the best. In the photos you are linking to they are very jaggy, which makes me think you are using nearest neighbor as your hint.</p>
<p>In the <a href="http://www.java2s.com/Code/Java/2D-Graphics-GUI/PictureScaler.htm" rel="nofollow">PictureScaler</a> class that you link to, in the <code>paintComponent</code> method, it uses six different means of resizing the image. Have you tried all six to see which gives the best result?</p>
http://stackoverflow.com/questions/202819/what-is-an-example-of-a-non-relational-database-where-how-are-they-used15What is an example of a non-relational database? Where/how are they used?Kip2008-10-14T21:04:03Z2009-10-25T20:25:16Z
<p>I have been working with relational databases for sometime, but it only recently occurred to me that there must be other types of databases that are <strong>non</strong>-relational.</p>
<p>What are some examples of non-relational databases, and where/how are they used in the real world? Why would you choose to use a non-relational database over relational databases?</p>
<p><strong>Edit</strong>: Two other similar questions have been mentioned in the answers:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/51027/database-system-that-is-not-relational">Database system that is not relational.</a></li>
<li><a href="http://stackoverflow.com/questions/37823/good-reasons-not-to-use-a-relational-database">Good reasons NOT to use a relational database?</a></li>
</ul>
http://stackoverflow.com/questions/1614196/how-can-i-get-an-md5-hash-in-coldfusion0How can I get an MD5 hash in ColdFusion?Kip2009-10-23T15:26:14Z2009-10-23T17:09:48Z
<p>I'm trying to get an MD5 hash of a value in ColdFusion. I tried this code using the <a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions%5Fe-g%5F01.html" rel="nofollow">Encrypt</a> function<sup>1</sup>:</p>
<pre><code><cfscript>
val = 1117;
md5 = Encrypt(val, 0, "MD5", "Hex");
</cfscript>
</code></pre>
<p>But I get an error:</p>
<blockquote>
<p>The MD5 algorithm is not supported by the Security Provider you have chosen.</p>
</blockquote>
<p>How can I choose a different security provider?</p>
<p><hr /></p>
<p><sup>1</sup> Yes, I know that MD5 isn't an <em>encryption</em> algorithm, but the ColdFusion folks don't seem to know that because they list it as a supported algorithm for the Encrypt function. <strong>Edit</strong>: I didn't see the built-in <a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions%5Fh-im%5F01.html#1105551" rel="nofollow">Hash</a> function but I saw the fact that Encrypt lists md5 and sha as supposedly supported algorithms, so I thought (incorrectly it turns out) that this was just how you got a hash in CF.</p>
http://stackoverflow.com/questions/1610121/opera-wii-ajax-jquery-and-asp-net/1610165#16101650Answer by Kip for Opera, Wii, Ajax, Jquery and asp.netKip2009-10-22T21:46:02Z2009-10-22T21:46:02Z<p>Not too familiar with ASP.. could it be that you need to JSON encode the return value? Or does "<code>[WebMethod]</code>" take care of that? Try this:</p>
<pre><code>return "\"hello there\"";
</code></pre>
http://stackoverflow.com/questions/1602586/on-which-operating-systems-or-browsers-are-css-font-family-names-case-sensitive/1603082#16030821Answer by Kip for On which operating systems or browsers are CSS font-family names case-sensitiveKip2009-10-21T19:32:00Z2009-10-22T14:58:23Z<p>My <em>guess</em> is that this would only be a potential problem on Linux/Unix systems, where the file system is case sensitive. I'd be surprised if any Windows browser had a problem with this, since fonts are just files in the C:\Windows\Fonts directory.</p>
<p>You could try making a page with test text in a recognizable font like Courier New, but spell it funny like "CoUrIEr nEW", then go to <a href="http://browsershots.org/" rel="nofollow">http://browsershots.org/</a> where it will generate screenshots from tons of browsers. Be sure to make the font very large too, because the screenshots are small.</p>
<p>Something like this:</p>
<pre><code><html>
<head>
<style type="text/css">
#proper { font: bold 48px "Courier New",Courier; }
#improper { font: bold 48px "CoUrIEr nEW",CoUrIEr; }
</style>
</head>
<body>
<p id="proper">Test1 - proper caps</p>
<p id="improper">Test2 - improper caps</p>
</body>
</html>
</code></pre>
<p>If <em>only one</em> line shows up in Courier, then that browser is case sensitive.</p>
<p><hr /></p>
<p><strong>Edit</strong>: I tested the HTML I posted above in browsershots. I didn't find any browser that didn't work. Dillo 2.1.1 for Ubuntu Linux didn't like either line (maybe that system lacked both Courier New and Courier?), all others showed both lines in Courier or Courier New. There are still mobile browsers that were not tested, though, so you should strive to use proper capitalization just in case.</p>
http://stackoverflow.com/questions/1602303/is-it-possible-for-my-image-watermark-to-be-read-altered-or-removed/1607730#16077301Answer by Kip for Is it possible for my image watermark to be read, altered or removed?Kip2009-10-22T14:41:40Z2009-10-22T14:41:40Z<p>It depends on the type of watermark you're creating. I'm assuming you're talking about an opaque or semitransparent logo or text that is usually placed in a corner of the image.</p>
<p>There is a balancing act here. If the watermark is small enough, users can always just crop it out. But if you make it too large, you make the image unusable. Sometimes this is the intent (for example, look at iStockPhoto.com: they use big watermarks over the center of the image so that you can't use the image without buying it). Other times, you don't want to do this (say you're posting a wallpaper to DeviantArt: you still want people to use the image, but no one's going to use it if the watermark takes up a third of the screen).</p>
<p>If the watermark covers a part of the image that is not too detailed, users who know what they're doing can use the clone brush or other tools to photoshop it out of the image. (The same way I once removed ugly power lines from an otherwise beautiful sunset photo.)</p>
<p>Also, if the watermark is in the same place on all images, and it is transparent enough, sophisticated users can build a filter based on the common pixels from several of your images. In the right circumstances, such a filter can work like magic. (But usually it won't.)</p>
http://stackoverflow.com/questions/1604857/how-to-operate-a-printer-with-php/1604877#16048770Answer by Kip for How to operate a printer with PHP?Kip2009-10-22T03:28:16Z2009-10-22T03:28:16Z<p>If you're talking about a printer that is connected to your server, you could totally do it. But I'm guessing that's not what you mean.</p>
<p>It is possible to use Javascript (<code>window.print()</code>) on a page to make the "print" dialog come up, but the user is always responsible for the actual printing. (Imagine if this <em>wasn't</em> the case. Any random website on the internet could make your printer just start printing whatever it wanted. It would be chaos.)</p>
http://stackoverflow.com/questions/1602836/comparing-5-integers-in-least-number-of-comparisons/1602849#16028495Answer by Kip for Comparing 5 Integers in least number of comparisonsKip2009-10-21T18:54:28Z2009-10-21T19:01:56Z<p>Nope, you're going to require at least <em>n</em>-1 comparisons. Though I'd write it like this:</p>
<pre><code>bool allEqual = (result1 == result2)
&& (result2 == result3)
&& (result3 == result4)
&& (result4 == result5);
</code></pre>
http://stackoverflow.com/questions/1602553/mysql-select-count-group-by-but-maintain-separation/1602630#16026302Answer by Kip for MySQL - select count(*), group by, but maintain separationKip2009-10-21T18:18:58Z2009-10-21T18:18:58Z<p>You can group by more than one thing. Try this:</p>
<pre><code>GROUP BY `v`.`program_id`, `v`.`type`
</code></pre>
http://stackoverflow.com/questions/1597153/security-concerns-with-uploadify/1597450#15974502Answer by Kip for Security concerns with uploadifyKip2009-10-20T21:32:10Z2009-10-20T21:32:10Z<p>Just looked at the code (haven't installed it anywhere), and it certainly looks like this is a security problem. Looking at uploadify.php, I see this:</p>
<pre><code>$targetPath = $_SERVER['DOCUMENT_ROOT'] . $_REQUEST['folder'] . '/';
</code></pre>
<p>Which means that passing "/" would put the file in the document root (i.e. the home directory of your website). Of course, the user could easily (for example) pass in a folder parameter like '../../etc' and a file named 'passwd'. Or, more trivially, he could upload a "logo.jpg" to the document root and, hey, now you've got porn for a site logo!</p>
<p>Of course, even if you sandbox the users, there are still lots of potential problems with allowing a user to arbitrarily upload a file to your server. What if they upload a .php file, then go to that file with their browser? They suddenly have the ability to execute arbitrary code on your server!</p>
<p>If you want to do this, you should force the user's uploads into a restricted directory (the <a href="http://php.net/manual/en/function.realpath.php" rel="nofollow">realpath</a> function will sanitize the path, in case the user created crazy paths with "../.." or whatever), and you should restrict the types of files allowed (i.e. to only ".jpg", ".gif", ".png" or whatever). Even then, a malicious user could DOS you by filling up your disk quota.</p>
http://stackoverflow.com/questions/1572964/is-there-a-y2k12-issue-analogous-to-y2k/1572991#15729917Answer by Kip for Is there a y2k12 issue analogous to y2k?Kip2009-10-15T15:07:27Z2009-10-20T20:55:45Z<p>No.</p>
<p>Raymond Chen gives a pretty good list of <a href="http://blogs.msdn.com/oldnewthing/archive/2005/10/28/486194.aspx" rel="nofollow">special dates in different date systems</a>, none of them involve 2012. (See also his <a href="http://blogs.msdn.com/oldnewthing/archive/2003/09/05/54806.aspx" rel="nofollow">explanation of those date systems</a>.) The only special date I know of that he leaves out is 9999-12-31, the largest datetime in many database systems (at least in MySQL and I think SQL Server).</p>
<p>While I'm sure someone somewhere at some point has decided to write some computer system based on Mayan calendars, there is no widely used system that works that way.</p>
http://stackoverflow.com/questions/1594414/css-not-working-with-php-script/1594563#15945631Answer by Kip for CSS not working with PHP script:Kip2009-10-20T13:19:56Z2009-10-20T13:19:56Z<p>You could try changing the content-type header. Set this at the beginning of style.php:</p>
<pre><code>header('Content-type: text/css');
</code></pre>
http://stackoverflow.com/questions/1589408/getting-latitude-and-longitute-information-from-a-web-visitor/1589463#15894631Answer by Kip for getting latitude and longitute information from a web visitorKip2009-10-19T15:43:32Z2009-10-19T15:43:32Z<p>Here's one: <a href="http://www.ip2location.com/developers.aspx" rel="nofollow">http://www.ip2location.com/developers.aspx</a></p>
<p>Of course, you're only going to get a <em>rough</em> idea of where the user <em>probably</em> is. If you're expecting the kind of accuracy that you see on crime shows you'll be sadly disappointed. :)</p>
http://stackoverflow.com/questions/1589236/how-to-replace-single-quote-with-double-quote-in-sql-query-oracle-10g/1589273#15892735Answer by Kip for How to replace single-quote with double-quote in sql query - oracle 10g ?Kip2009-10-19T15:14:20Z2009-10-19T15:14:20Z<p>This should work:</p>
<pre><code>UPDATE myTable
SET myField = REPLACE(myField, '''', '"');
</code></pre>
http://stackoverflow.com/questions/1588200/coldfusion-career-help/1588698#15886981Answer by Kip for ColdFusion career help.Kip2009-10-19T13:34:57Z2009-10-19T13:34:57Z<p>IMHO, you'd be better off learning c#/.net or J2EE. I work at a company that uses ColdFusion, and I know that when we hire we don't typically expect the candidates to have ColdFusion experience, simply because that would limit the pool of candidates too much. We <em>do</em> ask them to show their web development skills in a language they <em>are</em> familiar with (I wrote a PHP app during my interview process, for example).</p>
<p>For c#/.net and J2EE, there are a lot more jobs, and because there are so many more developers you're less likely to be hired into one of those jobs based on experience in other languages. It is much more likely that your resume will simply be tossed out when applying to one of those jobs, if you don't have any experience in that area.</p>
http://stackoverflow.com/questions/1235460/coldfusion-code-parser1ColdFusion code parser?Kip2009-08-05T20:07:29Z2009-10-18T13:39:58Z
<p>I'm trying to create an app to search my company's ColdFusion codebase. I'd like to be able to do intelligent searches, for example: find where a function is defined (and not hit everywhere the function is called). In order to do this, I'd need to parse the ColdFusion code to identify things like function declarations, function calls, database queries, etc.</p>
<p>I've looked into using lex and yacc, but I've never used them before and the learning curve seems very steep. I'm hoping there is something already out there that I could use. My other option is a mess of difficult-to-maintain regex-spaghetti code, which I want to avoid.</p>
http://stackoverflow.com/questions/1581204/jquery-works-in-firefox-safari-opera-but-not-ie/1581219#15812190Answer by Kip for Jquery works in Firefox, Safari & Opera but not IE?Kip2009-10-17T02:16:29Z2009-10-17T02:16:29Z<p>Is the file you are testing on your local hard drive or on the internet somewhere? Internet Explorer doesn't execute Javascript on local html files, unless you click "Allow blocked content" on the yellow bar that pops up.</p>
http://stackoverflow.com/questions/1577918/blocking-comment-spam-without-using-captcha/1578040#15780400Answer by Kip for Blocking comment spam without using captchaKip2009-10-16T13:27:40Z2009-10-16T13:40:43Z<p>On my blog, I have a kind of compromise captcha: I only use a captcha if the post contains a link. I also use a honeypot input field. So far, this has been <em>nearly</em> 100% effective. Every now and then there will be a spammer that submits something to every form which contains no links (usually something like "nice site!"). I can only assume that these people think I will e-mail them to find out who they are (using the e-mail address that only I see).</p>
http://stackoverflow.com/questions/1577918/blocking-comment-spam-without-using-captcha/1578085#15780852Answer by Kip for Blocking comment spam without using captchaKip2009-10-16T13:36:58Z2009-10-16T13:36:58Z<p>Another common approach is to give the user a simple question ("is fire hot or cold?" "what is 2 plus 7?" etc.). It is a little captcha-<i>like</i>, but it is more accessible to users with vision disabilities using screen readers. I think there must be a WordPress plugin that does this, because I see it very frequently on WordPress blogs.</p>
http://stackoverflow.com/questions/1573445/how-can-i-make-a-regex-to-find-instances-of-the-word-project-not-in-square-bracke/1573587#15735870Answer by Kip for How can I make a regex to find instances of the word Project not in square brackets?Kip2009-10-15T16:40:08Z2009-10-15T17:00:46Z<p><strong>Edit</strong>: Below didn't work because look-behind assertions have to be fixed-length. I am <em>guessing</em> that you want to do this because you want to do a global replace of "Project" with something else. In that case, borrowing rsp's idea of matching a 'Project' that is not followed by an equals sign, this should work:</p>
<pre><code>/Project(?![^=]*\=)/
</code></pre>
<p>Here is some example code:</p>
<pre><code><?php
$str1 = "\$lang['Select Project'] = 'Select Project OK';";
$str2 = "\$lang['Project'] = 'Project';";
$str3 = "\$lang['No Project'] = 'Not Found';";
$str4 = "\$lang['Many Project'] = 'Select Project owner or Project name';";
$regex = '/Project(?![^=]*\=)/';
echo "<pre>\n";
//prints: $lang['Select Project'] = 'Select Assignment OK';
echo preg_replace($regex, 'Assignment', $str1) . "\n";
//prints: $lang['Project'] = 'Assignment';
echo preg_replace($regex, 'Assignment', $str2) . "\n";
//prints: $lang['No Project'] = 'Not Found';
echo preg_replace($regex, 'Assignment', $str3) . "\n";
//prints: $lang['Many Project'] = 'Select Assignment owner or Assignment name';
echo preg_replace($regex, 'Assignment', $str4) . "\n";
</code></pre>
<p><hr /></p>
<p><del>This should work:</p>
<pre><code>/(?<=\=.*)Project/
</code></pre>
<p>That will match only the word "Project" if it appears after an equals sign. This means you could use it in a substitution too, if you want to replace "Project" on the right-hand-side with something else.</del></p>
http://stackoverflow.com/questions/1573053/javascript-function-to-convert-color-names-to-hex-codes/1573122#15731220Answer by Kip for Javascript function to convert color names to hex codesKip2009-10-15T15:28:52Z2009-10-15T15:28:52Z<p>Not that's built-in, as far as I know. It would be kind of a hack, but I think you could create an invisible div, set its CSS background property to the named color, then use JS to get the background color of the div, then delete the div.</p>
http://stackoverflow.com/questions/1572708/is-conversion-to-string-using-int-value-bad-practice/1572805#15728057Answer by Kip for Is conversion to String using ("" + <int value>) bad practice?Kip2009-10-15T14:38:16Z2009-10-15T15:03:05Z<p>There is also <a href="http://java.sun.com/javase/6/docs/api/java/lang/Integer.html#toString%28int%29" rel="nofollow">Integer.toString(int i)</a>, which gives you the option of getting the string as a hex value as well (by passing a second param of 16).</p>
<p><strong>Edit</strong> I just checked the source of String class:</p>
<pre><code>public static String valueOf(int i) {
return Integer.toString(i, 10);
}
</code></pre>
<p>And Integer class:</p>
<pre><code>public static String toString(int i, int radix) {
if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX)
radix = 10;
/* Use the faster version */
if (radix == 10) {
return toString(i);
}
...
</code></pre>
<p>If you call <code>String.valueOf(i)</code>, it calls <code>Integer.toString(i, 10)</code>, which then calls <code>Integer.toString(i)</code>.</p>
<p>So <code>Integer.toString(i)</code> should be <em>very slighty</em> faster than <code>String.valueOf(i)</code>, since you'd be cutting out two function calls. (Although the first function call could be optimized away by the compiler.)</p>
<p><strong>Of course, a readability argument could still be made for <code>String.valueOf()</code>, since it allows you to change the type of the argument (and even handles nulls!), and the performance difference is negligible.</strong></p>
http://stackoverflow.com/questions/1826014/what-does-4j-mean/1826384#1826384Comment by Kip on What does 4j mean?Kip2009-12-01T15:24:58Z2009-12-01T15:24:58ZWhy would this be CW? It asks a direct question which has a single, unambiguous answer.http://stackoverflow.com/questions/1826014/what-does-4j-mean/1826020#1826020Comment by Kip on What does 4j mean?Kip2009-12-01T15:22:42Z2009-12-01T15:22:42ZI'm a native English speaker, and I never made the connection before. I just assumed "log4j" was some weird version label to differentiate it. (Maybe I would have made the connection if I saw more "4j" libraries, but log4j is the only one I've used.)http://stackoverflow.com/questions/1826014/what-does-4j-meanComment by Kip on What does 4j mean?Kip2009-12-01T15:19:56Z2009-12-01T15:19:56Z+1 from me. This is certainly a valid question on this site. It helps people to understand something about libraries just from their names. I'm a native speaker and I never made this connection before.http://stackoverflow.com/questions/1799959/what-does-the-following-javascript-code-doComment by Kip on What does the following javascript code do?Kip2009-11-26T01:39:33Z2009-11-26T01:39:33ZNot sure I understand all the downvotes... you get +1 from me... no question should be too simple for SO!http://stackoverflow.com/questions/1115563/what-is-zip-functional-programming/1798432#1798432Comment by Kip on What is zip (functional programming?)Kip2009-11-25T23:50:03Z2009-11-25T23:50:03Zfyi- this has been flagged as spam 4 times. if it gets two more flags it will be deleted and you'll take a 100 rep penalty. i'd suggest deleting this answer yourself to avoid that. (fwiw i don't think it's such a big deal. it's a joke answer but there's room for some of those every now and then imho.)http://stackoverflow.com/questions/508639/why-must-delegation-to-a-different-constructor-happen-first-in-a-java-constructor/1792054#1792054Comment by Kip on Why must delegation to a different constructor happen first in a Java constructor?Kip2009-11-24T19:40:32Z2009-11-24T19:40:32Zthanks for the well-written response and clear example codehttp://stackoverflow.com/questions/1790626/table-in-jasper-ireportComment by Kip on Table in Jasper IReportKip2009-11-24T15:21:11Z2009-11-24T15:21:11Z@Ben Fransen: it is really a question, but not a programming questionhttp://stackoverflow.com/questions/1756839/how-to-pivot-ienumerablet/1756876#1756876Comment by Kip on How to Pivot IEnumerable<T>Kip2009-11-18T15:47:17Z2009-11-18T15:47:17Zmaybe you should just try being nice to people, idiothttp://stackoverflow.com/questions/1741061/what-is-the-rationale-behind-most-recent-order-for-tab-switchingComment by Kip on What is the rationale behind Most-Recent-Order for tab switching?Kip2009-11-16T16:49:32Z2009-11-16T16:49:32ZThis is no more appropriate on superuser than it is on SO (SuperUser is not your trash bin <a href="http://meta.stackoverflow.com/questions/4679/serverfault-com-is-not-your-trash-bin" rel="nofollow" title="serverfault com is not your trash bin">meta.stackoverflow.com/questions/4679/…</a>). If the question is about how he should <b>design some software he's writing</b>, then the question needs to be worded as such. Right now, it is just taking a poll of what people's preferences are.http://stackoverflow.com/questions/1740698/wpf-datagrid-control-adding-the-most-recent-row-on-top/1740827#1740827Comment by Kip on wpf DataGrid control: adding the most recent row on top.Kip2009-11-16T16:27:46Z2009-11-16T16:27:46Zdon't know, this would be my advice, so you get a +1 from mehttp://stackoverflow.com/questions/1717126/using-select-top-from-one-column-then-sorting-on-a-different-column/1717335#1717335Comment by Kip on Using SELECT TOP from one column, then sorting on a different columnKip2009-11-13T14:34:50Z2009-11-13T14:34:50Zyou can edit your answer to reflect what you meanthttp://stackoverflow.com/questions/1717126/using-select-top-from-one-column-then-sorting-on-a-different-column/1717306#1717306Comment by Kip on Using SELECT TOP from one column, then sorting on a different columnKip2009-11-11T18:56:46Z2009-11-11T18:56:46Zdoesn't work. the secondary sort by vendor name will only happen if two vendors share exactly the same order total (which will rarely happen)http://stackoverflow.com/questions/1717126/using-select-top-from-one-column-then-sorting-on-a-different-column/1717172#1717172Comment by Kip on Using SELECT TOP from one column, then sorting on a different columnKip2009-11-11T18:33:16Z2009-11-11T18:33:16Zthanks this worked too. i'm sticking with the other syntax though, it's a little more clear to mehttp://stackoverflow.com/questions/1717126/using-select-top-from-one-column-then-sorting-on-a-different-column/1717155#1717155Comment by Kip on Using SELECT TOP from one column, then sorting on a different columnKip2009-11-11T18:24:15Z2009-11-11T18:24:15Zthanks! i should have known that. i guess i just needed another set of eyes...http://stackoverflow.com/questions/1689900/coldfusion-xmlformat-not-converting-all-charactersComment by Kip on Coldfusion XMLFormat() not converting all charactersKip2009-11-06T20:45:29Z2009-11-06T20:45:29Zcould you give an example of a character that is not being encoded properly?