User Russell Leggett - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T19:25:17Zhttp://stackoverflow.com/feeds/user/2828http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1720320/how-to-dynamically-create-css-class-in-javascript-and-apply/1722581#17225811Answer by Russell Leggett for How to dynamically create CSS class in JavaScript and apply?Russell Leggett2009-11-12T14:34:30Z2009-11-12T14:40:20Z<p>YUI has by far the best <a href="http://developer.yahoo.com/yui/stylesheet/" rel="nofollow">stylesheet utility</a> I have seen out there. I encourage you to check it out, but here's a taste:</p>
<pre><code>// style element or locally sourced link element
var sheet = YAHOO.util.StyleSheet(YAHOO.util.Selector.query('style',null,true));
sheet = YAHOO.util.StyleSheet(YAHOO.util.Dom.get('local'));
// OR the id of a style element or locally sourced link element
sheet = YAHOO.util.StyleSheet('local');
// OR string of css text
var css = ".moduleX .alert { background: #fcc; font-weight: bold; } " +
".moduleX .warn { background: #eec; } " +
".hide_messages .moduleX .alert, " +
".hide_messages .moduleX .warn { display: none; }";
sheet = new YAHOO.util.StyleSheet(css);
</code></pre>
<p>There are obviously other much simpler ways of changing styles on the fly such as those suggested here. If they make sense for your problem, they might be best, but there are definitely reasons why modifying css is a better solution. The most obvious case is when you need to modify a large number of elements. The other major case is if you need your style changes to involve the cascade. Using the dom to modify an element will always have a higher priority. Its the sledgehammer approach and is equivalent to using the style attribute directly on the html element. That is not always the desired effect.</p>
http://stackoverflow.com/questions/596467/how-do-i-convert-a-float-to-an-int-in-javascript/1567461#15674611Answer by Russell Leggett for How do I convert a float to an int in Javascript?Russell Leggett2009-10-14T16:30:48Z2009-10-14T16:30:48Z<p>In your case, when you want a string in the end (in order to insert commas), you can also just use the Number.toFixed() function, however, this will perform rounding.</p>
http://stackoverflow.com/questions/1401658/html-overlay-which-allows-clicks-to-fall-through-to-elements-behind-it/1401762#14017620Answer by Russell Leggett for HTML "overlay" which allows clicks to fall through to elements behind itRussell Leggett2009-09-09T19:59:21Z2009-10-02T12:35:30Z<p>My suggestion would be that you could capture the click event with the overlay, hide the overlay, then refire the click event, then display the overlay again. I'm not sure if you'd get a flicker effect though.</p>
<p>[Update] Exactly this problem and exactly my solution just appeared in this post: "<a href="http://www.vinylfox.com/forwarding-mouse-events-through-layers/" rel="nofollow">Forwarding Mouse Events Through Layers</a>". I know its probably a little late for the OP, but for the sake of somebody having this problem in the future, I though I would include it.</p>
http://stackoverflow.com/questions/1462462/javascript-client-side-login-how-to-authenticate-server-side/1462601#14626010Answer by Russell Leggett for Javascript client side login, how to authenticate server side? Russell Leggett2009-09-22T21:07:02Z2009-09-22T21:07:02Z<p>If your authentication is done by javascript without going to the server you are doing it wrong. Any browser code can be tampered with easily. You cannot trust code run in the browser. The best practice would be to send authentication down to the server and authenticate there. Based on that, you can do things like use a token to verify against the server, or even just send the credentials each time.</p>
<p>If you're worried about security when sending to the server, use SSL.</p>
http://stackoverflow.com/questions/1454200/which-is-the-fastest-javascript-engine-and-does-it-really-matter/1454882#14548821Answer by Russell Leggett for Which is the fastest javascript engine, and does it really matter?Russell Leggett2009-09-21T14:43:28Z2009-09-21T14:43:28Z<p>It really depends on your project. If you only use minimal javascript for event handlers and a little bit of ajax/dom operations, you'll likely be fine no matter what. But if you use GWT or some other javascript heavy framework it can matter a great deal.</p>
<p>The direction of web applications is to do less on the server and more in the browser. The software I'm currently writing does all html generation on the client side as well as many other operations. There is a very noticeable difference between fast and slow browsers. Slower browsers still run at acceptable speeds, but chrome, safari, and ff3.5 are extremely fast and responsive. At the moment, I would say that Chrome and Safari seem to be the fastest browser for our app, but at some point it comes down to a lot more than pure js speed. Speed of DOM operation play a very large role as well.</p>
http://stackoverflow.com/questions/1447943/fink-doesnt-list-gtkmm2-40fink doesn't list gtkmm2.4Russell Leggett2009-09-19T06:21:37Z2009-09-21T13:16:24Z
<p>I'm trying to get started with gtkmm, and I'm using a mac. So I tried using fink to get it installed. Looking online, it <a href="http://pdb.finkproject.org/pdb/package.php/gtkmm2.4-dev" rel="nofollow">seems to be up to date</a>, but when I check on the command line</p>
<pre><code>fink list gtkmm
</code></pre>
<p>It only lists gtkmm2. I went ahead and tried that, but it really is the gtkmm 2.0 distribution. I'd really like to be up to date on this, not to mention the hello world example failed, and I think its because I'm not using 2.4.</p>
<p>How do I get fink to find and install gtkmm 2.4? I tried <code>fink selfupdate</code> and <code>apt-get update</code> to make sure that everything was up to date, but with no luck.</p>
http://stackoverflow.com/questions/1447943/fink-doesnt-list-gtkmm2-4/1454456#14544560Answer by Russell Leggett for fink doesn't list gtkmm2.4Russell Leggett2009-09-21T13:16:24Z2009-09-21T13:16:24Z<p>Ok, it looks like this was a fink 101 mistake. I was using the binary distribution of fink, and it was set to pull packages from point release. I guess if you switch to <code>fink selfupdate-cvs</code> or <code>fink selfupdate-rsync</code> it has access to the latest packages, and that was where gtkmm2.4 was.</p>
http://stackoverflow.com/questions/1426846/i-need-opacity-transparency-for-a-img-with-css-ie8/1426900#14269002Answer by Russell Leggett for I need opacity (transparency) for a img with css ie8Russell Leggett2009-09-15T12:30:45Z2009-09-15T12:30:45Z<p>If you're using ie8 in standards mode you need to use:</p>
<pre><code>-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
</code></pre>
http://stackoverflow.com/questions/1404917/groovy-vs-scala-vs-jruby-vs-closure-vs-jython/1405236#14052364Answer by Russell Leggett for Groovy vs Scala [vs JRuby vs Closure vs Jython]Russell Leggett2009-09-10T13:14:22Z2009-09-10T13:14:22Z<p>I would say it depends on your experience and your goals. Groovy would be the easiest transition, and if you don't already know a good dynamic language this would be a good one. You can basically start with Java and then "Groovify" it, and it is the only language with a joint compiler to compile your Groovy and Java all at once. You can easily extend a Java class with Groovy, and then extend that Groovy with Java. Try that in any other JVM language. Given that Groovy was <a href="http://www.springsource.com/newsevents/springsource-acquires-g2one-inc-0" rel="nofollow">acquired by SpringSource</a>, and how well it mixes with Java, I get the feeling its going to become the language used most alongside Java. At least in the short term. Even just as a replacement for xml configurations, it has a lot to offer.</p>
<p>When it comes down to it, Groovy, Jython and JRuby, JavaScript are really all the same. They have some differences in syntax, and some slight feature differences, but in the grand scheme of programming languages, it doesn't amount to much more than personal preference. Of those, if you're a Java programmer, I think Groovy is the best because it was really built to work well with Java and I think there's a real benefit to learning and using it as a tool. JRuby and Jython are really just nice so that you have access to the JVM and Java libraries from a language you prefer.</p>
<p>If you really want to try something new and possibly mind expanding, I would go with Scala or Clojure. Functional programming has a lot of buzz lately, especially because of the benefits in regards to concurrent programming. Both Scala and Clojure are well suited to this domain, though I think Clojure wins here. I think both languages are really well done, and you should probably learn both ;) If I were going to pick one to start with, I would say that Clojure would be simpler to learn completely (its a Lisp, so there's not much in terms of syntax), but I suppose Lisp is one of those easy to learn, difficult to master ind of things.</p>
<p>Scala is the opposite. It is a wealth of syntax. It has so many features, it will take you a long time to explore all of them. However, a lot of people really do see Scala as the future of the JVM. It's the only one that is statically typed. It has good integration with Java (though not as good as Groovy). It has decent IDE support, getting better all the time. And it really is a fundamentally different paradigm from Java. You will expand your brain from using it. You likely won't want to go back to Java afterwards :)</p>
<p>If I were going to pick just one of all of these to learn, I would go with Scala. If you just want to learn one new language now to test the waters, I would go with Groovy.</p>
http://stackoverflow.com/questions/1401776/how-to-configure-firefox-to-run-emacsclientw-on-certain-links/1401849#14018490Answer by Russell Leggett for How to configure firefox to run emacsclientw on certain links?Russell Leggett2009-09-09T20:17:30Z2009-09-09T20:17:30Z<p>Might be a great reason to write your first FF plugin ;)</p>
http://stackoverflow.com/questions/1387433/fastest-way-to-append-html-content-to-a-div-using-javascript/1387475#13874751Answer by Russell Leggett for Fastest way to append HTML content to a div using JavaScriptRussell Leggett2009-09-07T03:47:59Z2009-09-07T03:47:59Z<p>You specifically said that you were appending meaning that you are attaching it to the same parent. Are you doing something like:</p>
<pre><code>myElem.innerHTML += newMessage;
</code></pre>
<p>or</p>
<pre><code>myElem.innerHTML = myElem.innerHTML + newMessage;
</code></pre>
<p>because this is extremely inefficient. It would cause the browser to first do a very very large string concat (which is never good) but then even worse would have to re-parse insert and render everything you had previously appended. Much better than this would be to create a new div object, use innerHTML to put in the message and then call the dom method appendChild to insert the newly created div with the message. Then the browser will only have to insert and render the new message.</p>
http://stackoverflow.com/questions/79307/best-web-hosting-cms-for-my-non-technical-friend1Best web hosting/CMS for my non-technical friendRussell Leggett2008-09-17T02:31:09Z2009-08-12T21:48:43Z
<p>I have a friend who knows nothing about programming or design who runs a small business. She has an ancient web site built in 1997 that has slowly been modified over the years using MS Word until it has become all but unmanageable. It is only a few static pages with a lot of images and links that change on a semi-regular basis, but I don't have time to build it for her, and I certainly don't want to make changes for her later. </p>
<p>So my question is, what is the best option for her available? What is the best combination of hosting and CMS available. Ideally, she should never have to write code, edit code, use ftp, or deal with complicated installations.</p>
http://stackoverflow.com/questions/1258176/how-can-i-poll-a-php-page-using-javascript/1258231#12582310Answer by Russell Leggett for How can I poll a PHP page using javascript?Russell Leggett2009-08-11T02:32:45Z2009-08-11T15:37:02Z<p>XMLHttpRequest is really not that hard, but another thing you can do a form submit using an iframe as the target.</p>
<pre><code><form action="increment_counter.php" target="my-iframe"...
</code></pre>
<p>Just keep the iframe hidden and you should be fine. Technically, the target attribute is deprecated, but its in HTML5 so I wouldn't be too worried.</p>
<p>Of course, XMLHttpRequest really isn't that bad, especially if you're using a js lib.</p>
<p>UPDATE just to clarify, the purpose of the iframe is not to get or use the return, the purpose is so that the page does not refresh by using the target attribute.</p>
http://stackoverflow.com/questions/1155213/how-do-you-escape-parentheses-in-jquery-selector/1155279#11552790Answer by Russell Leggett for How do you escape parentheses in jquery selector?Russell Leggett2009-07-20T18:58:51Z2009-07-20T18:58:51Z<p>I don't use jQuery much, but the problem with your first one is that you're trying to put in text where it should be a selector - then you tried using a selector ":contains", but you then tried to escape the "(". Have you tried $("#fscaTotals td").filter(":contains('(')")? Use contains, but don't try to escape the parentheses.</p>
http://stackoverflow.com/questions/1124965/backend-net-developer-to-frontend-java-developer-in-1-month/1125170#11251701Answer by Russell Leggett for Backend .NET developer to Frontend Java developer in 1 month?Russell Leggett2009-07-14T12:51:26Z2009-07-14T12:51:26Z<p>You could go this a couple of ways. One way is to just look over the Java landscape, look at few different frameworks and find what you like most. The other way of doing it is to try and put together a technology stack that is as close to what you already know as possible, making it the smoothest transition. Obviously, Hibernate would be a drop in replacement for NHibernate. You can keep SQLServer if you want, but Hibernate hides the database pretty well if you go with something else. As for the front-end (which is really where the tough choices start for you), the closest thing to ASP.NET is JSF. I'm not super well versed in it myself and I'm a happier man for it, but I've heard its improved and I would definitely check out Seam if you're doing JSF, because I hear it actually makes it nice to work with.</p>
<p>As an alternative, if you want to go the other route and just find something simple and easy to use, run away from JSF and take a look at Wicket.</p>
<p>Beyond that, I definitely agree with the others - build as much of a disposable prototype as you can in a month! Its a perfect way both to learn Java, and decide your framework.</p>
<p>P.S. You specifically mentioned Java, but I thought I would briefly mention Groovy and Grails. Groovy is a dynamic language for the JVM that integrates extremely well with Java. Grails is a web framework like Rails. If you need to get started FAST, and build something working quickly, I think Grails could probably work well for you. I just don't know if it fits within your requirements.</p>
http://stackoverflow.com/questions/1079785/whats-an-example-of-duck-typing-in-java/1079830#10798301Answer by Russell Leggett for What's an example of duck typing in Java?Russell Leggett2009-07-03T15:19:02Z2009-07-03T15:19:02Z<p>Typically, duck typing is used with dynamically typed languages. You would check at runtime for the existence of methods or properties that are required to fulfill your needs, regardless of inheritance hierarchies.</p>
<p>Other than using reflection, which would get ugly, the closest you can get is by using minimal interfaces that match the criteria of what you would need for duck typing. This <a href="http://rickyclarkson.blogspot.com/2006/07/duck-typing-in-java-and-no-reflection.html" rel="nofollow">blog post</a> does a good job describing the concept. It loses much of the simplicity of duck typing in python or ruby or javascript, but its actually pretty good practice in Java if you're looking for a high level of reusability.</p>
http://stackoverflow.com/questions/1065202/dynamically-load-insecure-content-to-avoid-dialog0Dynamically load insecure content to avoid dialogRussell Leggett2009-06-30T18:24:43Z2009-06-30T18:40:17Z
<p>I'm working on an app that will be using https, but we wanted to be able to use the google search api. They do not have an https version available, so it causes the browser to display an insecure warning dialog. It was suggested that we could dynamically load the script after initial load to avoid the warning. I didn't think that would work. I can try if nobody knows, but I thought it would be faster to just ask.</p>
http://stackoverflow.com/questions/1060463/using-bing-as-local-search1Using Bing as local searchRussell Leggett2009-06-29T20:49:16Z2009-06-29T21:07:26Z
<p>For an ajax app I'm doing, I was using the google local search api to help enter in address info. For example, if the user needs to fill out employment information, typing in the business name would provide a list of matching businesses, then clicking one would fill out all of the address fields. However, we can't use it because of the restrictions on google's api. We have a closed https app which just makes it out of the question.</p>
<p>Because of the https requirement, we have to use the server as a proxy which means a pretty lenient usage restriction. That makes Bing a good choice. The REST api seems like a great way to go, and it works well enough, but with one problem. The center point location needs to be specified as a latitude and longitude. Users will be supplying the information in a zipcode or city/state format. This clearly means geocoding. What is the best route to take? Is there a good way to get around geocoding that I'm missing? Looking at the Bing APIs, it appears that geocoding is offered as a SOAP web service that costs money. If I'm doing that should I just use google maps for geocoding - there's an enterprise version of maps with https? Any other suggestions?</p>
<p>I am using Java on the server and obviously javascript on the front end. It's a javascript heavy app, so a javascript solution would be welcome as well.</p>
http://stackoverflow.com/questions/998312/embed-section-of-html-from-another-site/998527#9985271Answer by Russell Leggett for Embed section of HTML from another site?Russell Leggett2009-06-15T21:36:38Z2009-06-15T21:36:38Z<p>The concept you are describing is roughly what is called a "purple include" or "transclusions". There is a library out there for it, but its not exactly actively developed. Here's a couple <a href="http://ajaxian.com/archives/purple-include-transclusions-you-know-you-want-them" rel="nofollow">ajaxian</a> <a href="http://ajaxian.com/archives/purple-include-19" rel="nofollow">articles</a> on it.</p>
http://stackoverflow.com/questions/878200/java-curve-fitting-library/883957#8839570Answer by Russell Leggett for Java curve fitting libraryRussell Leggett2009-05-19T17:05:27Z2009-05-19T17:05:27Z<p>After more searching into splines, I found this <a href="http://www.cse.unsw.edu.au/~lambert/splines/" rel="nofollow">little bit of Java code</a> for doing them in an applet. The source is provided and looks pretty straightforward. I should be able to adapt it to my needs. It is especially nice because the cubics it generates are objects I can easily use for my own needs and separate it from the paint function.</p>
<p>Thanks "lambert"!</p>
http://stackoverflow.com/questions/878200/java-curve-fitting-library3Java curve fitting libraryRussell Leggett2009-05-18T15:07:24Z2009-05-19T17:05:27Z
<p>I'm hoping to find a simple library that can take a series of 2 dimensional points and give me back a larger series of points that model the curve. Basically, I want to get the effect of curve fitting like this sample from JFreeChart:</p>
<p><img src="http://www.jfree.org/jfreechart/images/XYSplineRendererDemo1a.png" alt="alt text" /></p>
<p>The problem with JFreeChart is that the code does not provide this type of api. I even looked at the source and the algorithm is tightly coupled to the actual drawing.</p>
http://stackoverflow.com/questions/754807/how-to-disable-a-link-in-ie6/756015#7560150Answer by Russell Leggett for How to disable a link in IE6.Russell Leggett2009-04-16T13:00:02Z2009-04-16T13:00:02Z<p>Any click on an anchor tag generates a click event that bubbles up to body. The easiest thing would be to just put a click handler on body that does nothing and returns false if the target element is an anchor.</p>
http://stackoverflow.com/questions/754622/should-i-learn-c-before-learning-javascript/754730#7547303Answer by Russell Leggett for Should I learn C before learning Javascript?Russell Leggett2009-04-16T04:06:49Z2009-04-16T04:06:49Z<p>I actually think that JavaScript is one of the best languages to start programming with. Later, when you you really get it and you want to go deeper, C is something great to know. It gives you a much deeper understanding of how computers really work.</p>
<p>JavaScript really lets you get started fast, see immediate results, and ramp up to more complex concepts very fluidly.</p>
<p>The rest of my answer assumes you know practically nothing about programming - web or otherwise. Maybe you know a little html basics.</p>
<p>Open up a text editor. You can even just start with notepad or something. And put in the following:</p>
<pre><code><html>
<head>
<script>
alert("Hello, World!");
</script>
</head>
<body></body>
</html>
</code></pre>
<p>Save the file as hello.html and open it in a browser. Poof! You've written a program. Doesn't get easier than that. No need to get into the command line or download or build anything. I remember when I first started being frustrated trying to get PHP running on my machine and wishing it was as simple as getting started with JavaScript.</p>
<p>The next step is just to read and explore. Documentation is freely available all over for learning more. I highly recommend anything from <a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">Douglas Crockford</a> and <a href="http://rads.stackoverflow.com/amzn/click/0596101996" rel="nofollow">JavaScript:The Definitive Guide</a>.</p>
<p>A pretty good basic project would be a calculator program, but there's lots of fun things you can do. When you've gotten your feet wet, and you feel a little more confident, explore some other languages. Ruby is a pretty good step from JavaScript. By that point you'll probably know where to go yourself. You may never take the road to learning C. Even if you learn it, you will likely never really have to use it.</p>
http://stackoverflow.com/questions/720228/why-are-vb-net-programmers-looked-down-upon/720251#7202511Answer by Russell Leggett for Why are VB.net programmers looked down upon?Russell Leggett2009-04-06T04:11:32Z2009-04-06T04:11:32Z<p>If you look at the history of VB, it was really geared towards non-programmers, or at least less savvy programmers. Most people using VB, traditionally go for the wysiwyg tools and just fill in some gaps with a little code. These are not people that take pride in coding, as much as they are practical people with less knowledge trying to get the job done. As a language it is simpler (thus the "BASIC" in VB) and therefore looked down on by more knowledgeable programmers.</p>
<p>VB.Net is a big step towards C#/Java type languages, and a move away from previous versions of VB. As such, its really not that big a deal to get started with, even if you want to move into C# later. You will get more documentation and support for C#, though. And its a language you can grow into.</p>
http://stackoverflow.com/questions/709626/ajax-woes-submitting-without-refreshing-i-need-help/710167#7101670Answer by Russell Leggett for ajax woes. Submitting without refreshing. I need help.Russell Leggett2009-04-02T15:19:34Z2009-04-02T15:19:34Z<p>You have two problems. One is that you are telling the form to submit:</p>
<pre><code>document.forms.search.submit();
</code></pre>
<p>That is what is causing your form to submit in the standard, non-xhr way - causing a refresh. Also, because your form does not contain an input element for the id, that is not being sent to the server even with a regular form submission.</p>
<p>I agree with the posters that it would be a good idea to use jQuery or something to do your ajax based submission. Something like <a href="http://docs.jquery.com/Ajax/jQuery.post#urldatacallbacktype" rel="nofollow">this</a> could be used inside of your "AC.chooseFunc" function instead of the form submit.</p>
<p>And yes, if you go ajax entirely, you don't even need a form tag.</p>
http://stackoverflow.com/questions/709947/ajax-using-a-rest-api-without-server-side-framework/710047#7100471Answer by Russell Leggett for AJAX Using a REST API Without Server Side FrameworkRussell Leggett2009-04-02T14:56:02Z2009-04-02T14:56:02Z<p>Its hard to say without actually knowing more about your current setup. This is what your situation sounds like:</p>
<ul>
<li>You already have an app ready to go with all of the business logic contained. Sounds like its written in Java?</li>
<li>You already have the services written and exposed through a REST api using some other standalone framework. Meaning that if you wanted to, you could access the data right now with the browser without any extra work.</li>
<li>You have not yet built the web application, but when you do, it will get all of its content from the REST api using XHR and jquery. I say that, because otherwise, I would think that you would already be using some kind of framework to generate the other content.</li>
</ul>
<p>If I am correct in my assumptions, then I would say that you have no need for an additional framework layer. Grails, RoR, SpringMVC my use ajax, and aid in exposing REST services, but the bulk of what they provide is an easy way to make an application that must generate html on the server, deal with form submissions, and handle sessions in a request/response cycle. It doesn't really sound like you'll be doing any of that, and it will likely make your app more complicated.</p>
<p>If you did at some point need the things that rails etc. provides, I would say that you may not need to use rails to expose the rest apis you have now. You could use rails just for what you need, and continue to use what you have for the REST api.</p>
http://stackoverflow.com/questions/707565/how-do-you-add-css-with-javascript/708160#7081601Answer by Russell Leggett for How do you add CSS with Javascript?Russell Leggett2009-04-02T03:18:54Z2009-04-02T03:18:54Z<p>YUI just recently <a href="http://developer.yahoo.com/yui/stylesheet/" rel="nofollow">added a utility</a> specifically for this.</p>
http://stackoverflow.com/questions/697755/what-is-a-tree-parser-in-antlr-and-am-i-forced-to-write-one/697823#6978233Answer by Russell Leggett for What is a tree parser in ANTLR and am I forced to write one?Russell Leggett2009-03-30T16:00:43Z2009-03-30T16:00:43Z<p>Creating an AST with ANTLR is incorporated into the grammar. You don't have to do this, but it is a really good tool for more complicated requirements. This is a <a href="http://www.antlr.org/wiki/display/ANTLR3/Tree%2Bconstruction" rel="nofollow">tutorial</a> on tree construction you can use.</p>
<p>Basically, with ANTLR when the source is getting parsed, you have a few options. You can generate code or an AST using rewrite rules in your grammar. An <a href="http://en.wikipedia.org/wiki/Abstract%5Fsyntax%5Ftree" rel="nofollow">AST</a> is basically an in memory representation of your source. From there, there's a lot you can do.</p>
<p>There's a lot to ANTLR. If you haven't already, I would recommend getting <a href="http://www.pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">the book</a>.</p>
http://stackoverflow.com/questions/695456/how-do-i-convert-a-function-name-into-a-string/695804#6958041Answer by Russell Leggett for How do I convert a function name into a stringRussell Leggett2009-03-30T01:59:49Z2009-03-30T01:59:49Z<p>As others have pointed out, it is most likely that whatever you're trying to do can be done better a different way. However, if you truly need to find the name of a function, there is one fairly simple way to do this, but it will not work in all cases.</p>
<pre><code>//returns the name of the function func on the object obj
function getFuncName(obj, func){
for(var funcName in obj){
if(obj[funcName] === func){
return funcName;
}
}
}
alert(getFuncName(Object, Object.MyFunc)); //alerts "MyFunc"
</code></pre>
<p>The limitation here, is that you'll need both the object and the function, and the function will have to be iterable - meaning that it can't be a built in function.</p>
http://stackoverflow.com/questions/431117/html2pdf-conversion/679970#6799702Answer by Russell Leggett for HTML2PDF ConversionRussell Leggett2009-03-25T02:05:31Z2009-03-25T02:05:31Z<p>I've used <a href="http://www.princexml.com/" rel="nofollow">Prince XML</a> with Java and it is extremely powerful and easy to use, but it's also commercial.</p>
http://stackoverflow.com/questions/1462462/javascript-client-side-login-how-to-authenticate-server-sideComment by Russell Leggett on Javascript client side login, how to authenticate server side? Russell Leggett2009-09-22T21:02:56Z2009-09-22T21:02:56Z"right now only the browser knows if user is authenticated" - I'm guessing the browser.http://stackoverflow.com/questions/1454200/which-is-the-fastest-javascript-engine-and-does-it-really-matter/1454247#1454247Comment by Russell Leggett on Which is the fastest javascript engine, and does it really matter?Russell Leggett2009-09-21T20:35:49Z2009-09-21T20:35:49ZYeah it sort of depends on how you look at the question. "Does it really matter?" could mean, "Is the JavaScript engine ever a bottleneck," or "Does it make a difference in how I write my code right now?" In terms of the bottleneck perspective - absolutely! Maybe not on a page with very little JavaScript, but with a lot, the speed of the JavaScript is directly tied to the speed of the app. In terms of the "how I write my code", probably won't matter until IE has a fast engine or has no market share. (Unless you don't need to target it for some reason.)http://stackoverflow.com/questions/1401658/html-overlay-which-allows-clicks-to-fall-through-to-elements-behind-it/1401732#1401732Comment by Russell Leggett on HTML "overlay" which allows clicks to fall through to elements behind itRussell Leggett2009-09-09T20:04:10Z2009-09-09T20:04:10ZThis isn't click-jacking, its sort of the opposite. And besides, as long as there are no iframes or cross-domain things going on here, I don't see the problem. I doubt security tools would notice it.http://stackoverflow.com/questions/1401658/html-overlay-which-allows-clicks-to-fall-through-to-elements-behind-it/1401761#1401761Comment by Russell Leggett on HTML "overlay" which allows clicks to fall through to elements behind itRussell Leggett2009-09-09T20:02:38Z2009-09-09T20:02:38Z"Taking your scenario, if you had evil intentions, you could hide everything underneath your "overlay". Then, when a user clicks on a link they think should take them to bankofamerica.com, instead it triggers the hidden link which takes them to myevilsite.com." -- That doesn't even make sense. Why would he need to go to the trouble. He could just use js to go there, why would he need to trigger a hidden link?http://stackoverflow.com/questions/126100/how-to-efficiently-count-the-number-of-keys-properties-of-an-object-in-javascript/1046845#1046845Comment by Russell Leggett on How to efficiently count the number of keys/properties of an object in JavaScript?Russell Leggett2009-08-28T14:49:24Z2009-08-28T14:49:24ZI don't think that's supported by ie, however, if I type keys into the safari web console I get:
function (o) { var a = []; for (k in o) a.push(k); return a; }
I would say thats slower than just doing the count. Plus, it doesn't take into account the hasOwnProperty.http://stackoverflow.com/questions/1032550/how-do-you-do-page-performance-tests/1032589#1032589Comment by Russell Leggett on How do you do page performance tests?Russell Leggett2009-08-10T04:09:45Z2009-08-10T04:09:45Z@Midhat - Tables with computed layout require their entire contents to be laid out and calculated before any portion can be rendered. This is more a matter of perceived performance than actual performance, but it makes a big difference sometimes.http://stackoverflow.com/questions/1173032/how-do-i-create-a-chat-server-that-is-not-driven-by-polling/1173065#1173065Comment by Russell Leggett on How do I create a chat server that is not driven by polling?Russell Leggett2009-07-23T16:54:04Z2009-07-23T16:54:04Z<a href="http://stackoverflow.com/questions/337985/comet-server-push-to-client-on-iphone" rel="nofollow" title="comet server push to client on iphone">stackoverflow.com/questions/337985/…</a>http://stackoverflow.com/questions/1167060/how-can-i-get-an-int-out-of-an-iterator/1167122#1167122Comment by Russell Leggett on How can I get an int[] out of an Iterator?Russell Leggett2009-07-22T18:10:05Z2009-07-22T18:10:05ZYou can't have an ArrayList of primitive ints. It has to be Integers.http://stackoverflow.com/questions/1065202/dynamically-load-insecure-content-to-avoid-dialog/1065224#1065224Comment by Russell Leggett on Dynamically load insecure content to avoid dialogRussell Leggett2009-06-30T18:39:51Z2009-06-30T18:39:51ZI actually completely agree with you, but nevertheless would like to know the answer in case our alternatives do not work out.http://stackoverflow.com/questions/1060463/using-bing-as-local-search/1060532#1060532Comment by Russell Leggett on Using Bing as local searchRussell Leggett2009-06-29T21:03:09Z2009-06-29T21:03:09Zso you're suggesting I do the geocoding on the server because it's limited enough?http://stackoverflow.com/questions/1009407/dealing-with-phobia-of-ruining-your-own-code/1009417#1009417Comment by Russell Leggett on Dealing with "phobia" of ruining (your own) code?Russell Leggett2009-06-17T21:05:17Z2009-06-17T21:05:17ZI think when you start feeling this way is also when you get really paranoid about other people's code you rely on. Like hospitals and planes. How could that stuff possibly work!http://stackoverflow.com/questions/689098/whats-the-most-painful-product-to-develop-against/689157#689157Comment by Russell Leggett on What's the most painful product to develop against?Russell Leggett2009-06-15T13:16:12Z2009-06-15T13:16:12ZHowever, to add an example of how AWFUL this can be. I once worked on a project that used an in-house framework which replaced the database by serializing javabeans to xml and storing them on the filesystem. The "architect" thought it was the height of innovation. (Even though it sometimes took several minutes to fetch data)http://stackoverflow.com/questions/689098/whats-the-most-painful-product-to-develop-against/689157#689157Comment by Russell Leggett on What's the most painful product to develop against?Russell Leggett2009-06-15T13:11:33Z2009-06-15T13:11:33ZEvery development project of sufficient size either has a very high code duplication rate, a meaty abstraction layer over an existing framework (which is practically a framework), or an actual in-house framework.
In most cases, the second choice is probably the best, but it really is a slippery slope from there to in-house framework :) In something like the Ruby world, building a DSL is what we're talking about here.http://stackoverflow.com/questions/878200/java-curve-fitting-library/878215#878215Comment by Russell Leggett on Java curve fitting libraryRussell Leggett2009-05-18T15:43:41Z2009-05-18T15:43:41Zah, so it is. wasn't expecting that!http://stackoverflow.com/questions/878200/java-curve-fitting-library/878215#878215Comment by Russell Leggett on Java curve fitting libraryRussell Leggett2009-05-18T15:28:59Z2009-05-18T15:28:59Zone would think, but I browsed cvs and there are no files there