User Daniel X Moore - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T15:49:58Zhttp://stackoverflow.com/feeds/user/68210http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/896078/how-does-the-putspecialobject-opcode-in-the-rubyvm-work0How does the putspecialobject opcode in the RubyVM work?Daniel X Moore2009-05-22T01:49:36Z2009-08-30T11:51:14Z
<p>I'm working on an implementation of the RubyVM and I've searched all over for some documentation on the opcodes, but to no avail.</p>
<p>If anyone knows specifically how the <code>putspecialobject</code> opcode works, or even just a link to some fullish documentation I'd much appreciate it!</p>
http://stackoverflow.com/questions/1025292/how-can-you-validate-the-presence-of-a-belongs-to-association-with-rails/1025481#1025481-1Answer by Daniel X Moore for How can you validate the presence of a belongs to association with Rails?Daniel X Moore2009-06-22T04:41:55Z2009-06-22T22:41:46Z<p>Instead of validating the presence of the article's id you could validate the presence of the article.</p>
<pre><code>validates_presence_of :article
</code></pre>
<p>Then when you are creating your comment:</p>
<pre><code>article.comments.build :article => article
</code></pre>
http://stackoverflow.com/questions/996151/how-can-i-learn-to-really-design-software/1014868#10148680Answer by Daniel X Moore for How can I learn to REALLY design software?!Daniel X Moore2009-06-18T20:00:49Z2009-06-18T20:00:49Z<p>Examine the design and interfaces of frameworks or APIs that you feel are well designed. Look at what parts of the API are strong and what are weak as well as the trade-offs involved. After learning what other developers are doing right and why, those tools will be available to you when you design your next piece of software.</p>
<p>Specifically, I learned a lot about the value of a plug-in architecture from my experience using jQuery.</p>
<p>Also watch videos and talks given by leaders in various fields.</p>
<p><a href="http://video.google.com/videoplay?docid=-474821803269194441&ei=6ps6SqXOOoHWqAOq3ZzlBA&q=john%2Bresig&hl=en" rel="nofollow">John Resig on API design (1hr)</a></p>
<p><a href="http://www.youtube.com/watch?v=-hidvElQ0xE" rel="nofollow">Ira Glass on good taste (5 min)</a></p>
http://stackoverflow.com/questions/885909/how-can-i-execute-javascript-function-before-page-load/886219#8862191Answer by Daniel X Moore for How can I execute Javascript function before Page load?Daniel X Moore2009-05-20T05:07:15Z2009-05-20T05:07:15Z<p><a href="http://en.wikipedia.org/wiki/Unobtrusive%5FJavaScript" rel="nofollow">Unobtrusive JavaScript</a> may be of interest. Allowing your pages to degrade gracefully will simplify development. Design for no JavaScript initially and enhance the experience. This may not be an option if your application is extremely JavaScript intensive and absolutely requires it to function. In that case using the noscript tag to inform your users that they need JavaScript enabled would be a good idea.</p>
<p>Also, look at x0n's comments. Here a reference to help understand the <a href="http://msdn.microsoft.com/en-us/library/ms178473.aspx" rel="nofollow">HTTP request life cycle</a>.</p>
http://stackoverflow.com/questions/194846/is-there-any-kind-of-hashcode-function-in-javascript/885944#8859443Answer by Daniel X Moore for Is there any kind of hashCode function in javascript?Daniel X Moore2009-05-20T02:51:59Z2009-05-20T04:03:36Z<p>The easiest way to do this is to give each of your objects it's own unique toString method.</p>
<pre><code>(function() {
var id = 0;
/*global MyObject */
MyObject = function() {
this.objectId = '<#MyObject:' + (id++) + '>';
this.toString= function() {
return this.objectId;
};
};
})();
</code></pre>
<p>I had the same problem and this solved it perfectly for me with minimal fuss, and was a lot easier that re-implementing some fatty Java style <code>Hashtable</code> and adding <code>equals()</code> and <code>hashCode()</code> to your object classes. Just make sure that you don't also stick a string '<#MyObject:12> into your hash or it will wipe out the entry for your exiting object with that id.</p>
<p>Now all my hashes are totally chill. I also just posted a blog entry a few days ago about <a href="http://strd6.com/?p=276" rel="nofollow">this exact topic</a>.</p>
http://stackoverflow.com/questions/201183/how-do-you-determine-equality-for-two-javascript-objects/886053#8860531Answer by Daniel X Moore for How do you determine equality for two JavaScript objects?Daniel X Moore2009-05-20T03:48:14Z2009-05-20T03:48:14Z<p>The default equality operator in JavaScript for Objects yields true when they refer to the same location in memory.</p>
<pre><code>var x = {};
var y = {};
var z = x;
x === y; // => false
x === z; // => true
</code></pre>
<p>If you require a different equality operator you'll need to add an <code>equals(other)</code> method, or something like it to your classes and the specifics of your problem domain will determine what exactly that means.</p>
<p>Here's a playing card example:</p>
<pre><code>function Card(rank, suit) {
this.rank = rank;
this.suit = suit;
this.equals = function(other) {
if(other.rank == this.rank && other.suit == this.suit) {
return true;
} else {
return false;
}
};
}
var queenOfClubs = new Card(12, "C");
var kingOfSpades = new Card(13, "S");
queenOfClubs.equals(kingOfSpades); // => false
kingOfSpades.equals(new Card(13, "S")); // => true
</code></pre>
http://stackoverflow.com/questions/535959/greasemonkey-how-can-i-create-an-object-of-a-class-which-defined-in-the-remote-p/609525#6095251Answer by Daniel X Moore for GreaseMonkey: How can I create an object of a class which defined in the remote page?Daniel X Moore2009-03-04T07:11:24Z2009-04-28T05:58:46Z<p>Here's how to do it:</p>
<pre><code>var _foo = eval('(' + unsafeWindow.foo.toSource() + ')');
var x = new _foo();
</code></pre>
<p>This workaround may be required due to the different security zones or sandboxing that Greasemonkey does, though I'm not entirely sure.</p>
http://stackoverflow.com/questions/564342/jquery-ui-dialog-throw-errors-when-invoked-from-greasemonkey1jQuery UI Dialog Throw Errors When Invoked from GreasemonkeyDaniel X Moore2009-02-19T07:57:36Z2009-04-27T03:24:18Z
<p>I'm getting this awkward error any time I try and create a dialog from
Greasemonkey... I believe it has to do with the limitations of
XPCNativeWrapper https://developer.mozilla.org/en/XPCNativeWrapper#Limitations_of_XPCNativeWrapper
, though I am not 100% sure.</p>
<p>None of the core jQuery methods that I've used have caused errors
(append, css, submit, keydown, each, ...).</p>
<p>It is possible that this could be an error in Greasemonkey or due to
the interaction between Greasemonkey and jquery ui, but I am really
interested in figuring out how to get them to work together.</p>
<pre><code>// ==UserScript==
// @name Dialog Test
// @namespace http://strd6.com
// @description jquery-ui-1.6rc6 Dialog Test
// @include *
//
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
// @require http://strd6.com/stuff/jqui/jquery-ui-personalized-1.6rc6.min.js
// ==/UserScript==
$(document).ready(function() {
$('<div title="Test">SomeText</div>').dialog();
});
</code></pre>
<p>Error:
[Exception... "Component is not available" nsresult: "0x80040111
(NS_ERROR_NOT_AVAILABLE)" location: "JS frame ::
file:///home/daniel/.mozilla/firefox/.../components/greasemonkey.js ::
anonymous :: line 347" data: no]
[Break on this error] if (line) {</p>
<p>Firefox version:
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) Gecko/2009020911
Ubuntu/8.04 (hardy) Firefox/3.0.6</p>
<p>Update: The focus() method from the standard jQuery library also throws the same error: </p>
<pre><code>$('body').focus();
</code></pre>
<p>Maybe the UI is calling the focus method at some point?</p>
<p>Any help will be greatly appreciated!</p>
http://stackoverflow.com/questions/538600/what-rails-plugins-are-good-stable-and-really-enhance-your-code/718279#7182791Answer by Daniel X Moore for What rails plugins are good, stable and *really* enhance your code?Daniel X Moore2009-04-05T03:18:18Z2009-04-05T03:18:18Z<p>For me, <a href="http://haml.hamptoncatlin.com/" rel="nofollow">Haml</a> is excellent. It's not for everyone but if it clicks with you you'll love it. Set aside 30 min and give it a shot. It reduces the clutter in my views by about 50%.</p>
<p>It's easy to install using Rails 2.1+'s gem dependencies :</p>
<pre><code># environment.rb
config.gem 'haml'
</code></pre>
<p>Then:</p>
<pre><code>rake gems:install
</code></pre>
http://stackoverflow.com/questions/684078/getting-all-nodes-between-the-current-node-and-another-without-current/686981#6869810Answer by Daniel X Moore for Getting all nodes between the current node and another without current()?Daniel X Moore2009-03-26T18:20:19Z2009-03-26T18:20:19Z<p>You can use jQuery or another JavaScript framework to make working with the DOM easier.</p>
<p>Example:</p>
<pre><code>// ==UserScript==
// @name MyScript
// @namespace http://example.com
// @description Example
// @include *
//
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
// ==/UserScript==
$('h2[some crazy attributes...]').each(function() {
// Do something
});
</code></pre>
<p>Check out the jQuery reference for more info on selecting and traversing DOM elements via XPath attributes.</p>
<p><a href="http://docs.jquery.com/Selectors" rel="nofollow">jQuery Selectors</a></p>
<p><a href="http://docs.jquery.com/Traversing" rel="nofollow">jQuery Traversal</a></p>
<p><a href="http://docs.jquery.com/Traversing/next#expr" rel="nofollow">jQuery next()</a></p>
<p><a href="http://docs.jquery.com/Traversing/nextAll#expr" rel="nofollow">jQuery nextAll()</a></p>
http://stackoverflow.com/questions/232053/debugging-greasemonkey-like-scripts/564018#5640181Answer by Daniel X Moore for Debugging greasemonkey-like scriptsDaniel X Moore2009-02-19T05:10:29Z2009-03-15T20:08:33Z<p>I've created an interactive console for debugging Greasemonkey scripts. It requires Google Gears, but it includes a persistent history of commands that were typed.</p>
<p><strong>UPDATE</strong>: <a href="http://strd6.com/?p=211" rel="nofollow">Here's a link</a> to a blog post describing using GreasyThug to debug a GM script. It's got a step by step procedure to replicate an error and devise a solution.</p>
http://stackoverflow.com/questions/608856/magic-numbers-vs-named-constants/613537#613537-1Answer by Daniel X Moore for Magic numbers vs named constantsDaniel X Moore2009-03-05T04:08:12Z2009-03-09T20:34:41Z<p>Work at the highest level of abstraction available.</p>
<p>Ruby ActiveSupport Example</p>
<pre><code>3.months.ago
1.year.from_now
</code></pre>
<p>The same principle can be applied to other less flexible languages as well, Java will allow you to do something like:</p>
<pre><code>TimeHelper.months().ago(3);
</code></pre>
<p>If you don't have objects in your language you can do this:</p>
<pre><code>$x = strtotime('now + 1 hour');
$y = strtotime('now + 1 day');
$z = strtotime('now + 1 week');
</code></pre>
<p>A lot less room for misinterpretation. Why fiddle with things below the problem domain if you don't have to?</p>
http://stackoverflow.com/questions/621299/what-is-the-easiest-way-i-can-create-a-beep-sound-from-a-ruby-program3What is the easiest way I can create a 'beep' sound from a Ruby program?Daniel X Moore2009-03-07T04:21:58Z2009-03-07T04:27:46Z
<p>I'm making a small ruby command line script and I wanted to know what the simplest way to have the program emit a beep is.</p>
http://stackoverflow.com/questions/4943/is-it-a-good-idea-to-put-easter-eggs-in-applications/615811#6158111Answer by Daniel X Moore for Is it a good idea to put Easter Eggs in applications?Daniel X Moore2009-03-05T17:44:39Z2009-03-05T17:44:39Z<p>Yes, fun and creativity is good for the brain. It's also a good way to check if your workplace has lost it's soul.</p>
<p>There are caveats though. If you're making software for a client who has no sense of humor and will flip out then probably not. Also, if it breaks something or is distasteful to some audiences then it's a no-go as well.</p>
<p>I added JavaScript snow to our company's external ecommerce site and internal intranet app for Christmas and Christmas Eve.</p>
http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/615774#6157740Answer by Daniel X Moore for What Easter Eggs have you placed in code?Daniel X Moore2009-03-05T17:34:17Z2009-03-05T17:34:17Z<p>I added JavaScript snow to display on the commerce portion of our commerce web-application for Christmas and Christmas Eve.</p>
http://stackoverflow.com/questions/613697/generate-a-different-range-in-ruby-i-e-all-possible-0-9a-za-z3/613861#6138613Answer by Daniel X Moore for Generate a different range in Ruby i.e. all possible /[0-9A-Za-z]{3}/Daniel X Moore2009-03-05T07:19:46Z2009-03-05T16:57:03Z<p>Ruby Facets provides a cartesian product method for enumerable. </p>
<pre><code># File lib/core/facets/array/product.rb, line 21
def product(*enums, &block)
enums.unshift self
result = [[]]
while [] != enums
t, result = result, []
b, *enums = enums
t.each do |a|
b.each do |n|
result << a + [n]
end
end
end
if block_given?
result.each{ |e| block.call(e) }
else
result
end
end
</code></pre>
<p>You could include facets or add the method to Enumerable. Once you've got it your question becomes easier:</p>
<pre><code>alpha_numerics = ('0'..'9').to_a + ('a'..'z').to_a + ('A'..'Z').to_a
list = alpha_numerics.product(alpha_numerics, alpha_numerics).map{ |triplet|
triplet.join ''}
</code></pre>
http://stackoverflow.com/questions/610163/somewhere-to-get-inspiration-pair-up-the-creative-with-the-tech/613887#6138871Answer by Daniel X Moore for Somewhere to get inspiration - Pair up the creative with the techDaniel X Moore2009-03-05T07:37:00Z2009-03-05T07:37:00Z<p>I have the exact same situation, I've made a Cask of Amontillado text adventure and many other "amazing" things, but I have trouble finding other interesting and dedicated (and available) people to collaborate with.</p>
<p>Keep working on your networking, online and offline. It's hard to find people that can click with your personality and passion, but when you do the good times never end.</p>
<p>User groups are good to get to physically meet people in your area. Another thing to try would be to email or connect with other coders who have similar interests online: through Stack Overflow, blogs, or Twitter.</p>
http://stackoverflow.com/questions/392789/are-you-taking-up-perl-and-what-got-you-into-it/613527#6135270Answer by Daniel X Moore for Are you taking up Perl and what got you into it?Daniel X Moore2009-03-05T03:59:54Z2009-03-05T03:59:54Z<p>I considered learning Perl last year. </p>
<p>It was the only technologies that I actively decided not to learn. This is nothing directly against the language itself, it just seemed that I would be coming to the party 10 years too late. It is very useful for the shell scripting tasks that it was designed for but for me personally I prefer languages with a stronger coherence.</p>
<p>Perl 6 seems like it's on indefinite hiatus and even when it arrives I don't believe that it will make the language profoundly more compelling. </p>
<p>Also, Larry Wall scares me.</p>
<p>For my situation Perl wasn't the right choice and thats why.</p>
http://stackoverflow.com/questions/598572/launch-an-app-to-record-keep-with-greasemonkey/609348#6093482Answer by Daniel X Moore for launch an app to record keep with greasemonkeyDaniel X Moore2009-03-04T05:40:07Z2009-03-04T17:39:17Z<p>I recommend using a webserver to gather the data. You can set up a domain or IP to send the data to. Just for starting out you could even run on localhost if you need to.</p>
<p>The advantage is that, once created, the same architecture can be used from different PCs, so that any computer you run the script from can share the results.</p>
<p><strong>Update:</strong>
To communicate with your server you will need to use <a href="http://diveintogreasemonkey.org/api/gm%5Fxmlhttprequest.html" rel="nofollow">GM_xmlhttpRequest</a>. I know of one library that adds an abstraction layer to make using GM_xmlhttpRequest easier: Speakeasy.js. It is a relatively unknown lightweight ActiveResource like interface for sending and retrieving data from a RESTful webserver. <a href="http://userscripts.org/scripts/show/42544" rel="nofollow">Here's an example</a> of a Greasemonkey script that communicates with a webserver on every page load. It loads annotations and displays them on the page.</p>
<p>Here's an adapted version close to your needs:</p>
<pre><code>// ==UserScript==
// @name Demo Script
// @namespace http://example.com
// @description Sample
// @include *
//
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
// @require http://strd6.googlecode.com/svn/trunk/gm_util/d_money.js
// @require http://strd6.googlecode.com/svn/trunk/gm_util/speakeasy.js
//
// ==/UserScript==
error = D$.error;
log = D$.log;
D$.debug(false);
Speakeasy
.generateResource('result')
.configure({
baseUrl: 'http://localhost:3000/'
})
;
// Attach all annotations for this page from remote server
var href = window.location.href;
currentUrl = href.substring(href.indexOf('://') + 3);
log(currentUrl);
var result1 = 'something'; // Insert your function to get your result data
var result2 = 'something else'; // Insert your function to get your result data
Speakeasy.result.create({
data: {
url: currentUrl,
result1: result1,
result2: result2
}
});
</code></pre>
<p>You can quickly create a Rails site or use whatever backend you are familiar with.</p>
http://stackoverflow.com/questions/447744/greasemonkey-change-text-in-a-webpage/609708#6097080Answer by Daniel X Moore for Greasemonkey: Change text in a webpage?Daniel X Moore2009-03-04T08:34:15Z2009-03-04T08:34:15Z<pre><code>// ==UserScript==
// @name MyScript
// @namespace http://example.com
// @description Example
// @include *
//
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
// ==/UserScript==
var shouldHide = false;
$.each($('strong'), function() {
if(shouldHide) {
this.hide();
} else {
this.text = "New Text";
}
});
</code></pre>
http://stackoverflow.com/questions/365028/a-little-help-with-dom-manip-and-greasemonkey/609691#6096910Answer by Daniel X Moore for A little help with DOM manip and GreaseMonkeyDaniel X Moore2009-03-04T08:25:44Z2009-03-04T08:25:44Z<p>Writing JavaScript without a library is a hell I can never return to.</p>
<p>Here is a script skeleton that enables jQuery:</p>
<pre><code>// ==UserScript==
// @name MyScript
// @namespace http://example.com
// @description Example
// @include *
//
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
// ==/UserScript==
var menuNode = $('#tabMenu');
if (menuNode!=null)
{
// extract username from URL; matches /ev and /ev/favourites
var username = document.location.pathname.split("/")[1];
// create the link
var link = $('<a id="replies_search_tab">@Replies Search</a>');
link.href = 'http://search.twitter.com/search?q=to:'+username;
// create the list element
var li = $('<li />');
// add link to the proper location
li.append(link);
menuNode.append(li);
}
</code></pre>
http://stackoverflow.com/questions/266002/reading-the-value-of-an-input-using-xpath-then-using-in-greasemonkey/609403#6094030Answer by Daniel X Moore for Reading the value of an input using XPath, then using in GreasemonkeyDaniel X Moore2009-03-04T06:08:07Z2009-03-04T06:08:07Z<p>One possibility is to include jQuery in your scripts. This will provide a simpler syntax for accessing elements.</p>
<pre><code>// ==UserScript==
// @name MyScript
// @namespace http://example.com
// @description Example
// @include *
//
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
// ==/UserScript==
var input = $("input[type='hidden'][name='var']");
if (input) {
alert("Found: " + input.val());
} else {
alert("Not found.");
}
</code></pre>
http://stackoverflow.com/questions/512819/how-to-get-a-greasemonkey-script-to-listen-for-elements-with-a-specific-class-bei/609374#6093740Answer by Daniel X Moore for How to get a GreaseMonkey script to listen for elements with a specific class being inserted into a pageDaniel X Moore2009-03-04T05:53:02Z2009-03-04T05:53:02Z<p>You can use <a href="http://www.manticmoo.com/articles/jeff/programming/javascript/domnodeinserted-event-and-domnodeinsertedintodocument-event.php" rel="nofollow">DOMNodeInserted</a></p>
<p>This event is fired whether using DOM methods (appendChild et al) or innerHTML, and is fired in Opera as well, so it won't break portability of your userscript (if you care). Check out <a href="http://www.quirksmode.org/dom/events/tests/DOMtree.html" rel="nofollow">http://www.quirksmode.org/dom/events/tests/DOMtree.html</a></p>
<p>If you specify an argument for the function that is being called on DOMNodeInserted, that argument's 'target' property will be the node that a node is being inserted into. So, you could check the nodeType of that to see if it is the type you are looking for. DOMNode also has a className property you could check on. <a href="http://www.howtocreate.co.uk/tutorials/javascript/domstructure" rel="nofollow">http://www.howtocreate.co.uk/tutorials/javascript/domstructure</a></p>
http://stackoverflow.com/questions/604304/can-a-greasemonkey-script-override-adblock-filters/609336#6093360Answer by Daniel X Moore for Can a Greasemonkey script override AdBlock filters?Daniel X Moore2009-03-04T05:29:51Z2009-03-04T05:29:51Z<p>What type of elements are you trying to access? Most of the page elements should still be available, just with 'display: none;'.</p>
<p>I use jQuery in my Greasemonkey scripts and it is able to get the alt text from an image after I have disabled it with ABP.</p>
<pre><code>$('#s1 + img')[0].alt
=> Rohm and Haas Paint Quality Institute
</code></pre>
<p>If you provide some more specific information I may be able to provide a more specific solution.</p>
<p>Accessing iframes that are blocked may be harder but doable. Again, more specifics will help me answer.</p>
http://stackoverflow.com/questions/579196/getting-the-last-revision-number-in-svn/579238#5792383Answer by Daniel X Moore for Getting the last revision number in SVN?Daniel X Moore2009-02-23T20:40:25Z2009-02-26T04:51:34Z<pre><code><?php
$url = 'your repository here';
$output = `svn info $url`;
echo "<pre>$output</pre>";
?>
</code></pre>
<p>You can get the output in xml like so:</p>
<pre><code>$output = `svn info $url --xml`;
</code></pre>
<p>If there is an error then the output will be directed to stderr. To capture stderr in your output use thusly: </p>
<pre><code>$output = `svn info $url 2>&1`;
</code></pre>
http://stackoverflow.com/questions/578154/programmaticly-creating-divs-and-problems-arise/579336#5793361Answer by Daniel X Moore for Programmaticly creating <DIV>s and problems ariseDaniel X Moore2009-02-23T21:01:08Z2009-02-23T21:01:08Z<p>Instead of creating the inner html from strings you can create it with jQuery and add event listeners like so:</p>
<pre><code>$("<div></div>")
.click(function(e) {
selectTarget(i, who);
})
.appendTo(container);
</code></pre>
http://stackoverflow.com/questions/564342/jquery-ui-dialog-throw-errors-when-invoked-from-greasemonkey/568272#5682720Answer by Daniel X Moore for jQuery UI Dialog Throw Errors When Invoked from GreasemonkeyDaniel X Moore2009-02-20T04:23:03Z2009-02-20T04:23:03Z<p>Here is one workaround, but there are still other less dramatic problems involved.</p>
<pre><code>// ==UserScript==
// @name Dialog Test
// @namespace http://strd6.com
// @description jquery-ui-1.6rc6 Dialog Test
// @include *
//
// @resource jQuery http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js
// @resource jQueryUI http://strd6.com/stuff/jqui/jquery-ui-personalized-1.6rc6.min.js
// ==/UserScript==
// Inject jQuery into page... gross hack... for now...
(function() {
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
var jQuery = GM_getResourceText('jQuery');
var jQueryUI = GM_getResourceText('jQueryUI');
script.innerHTML = jQuery + jQueryUI;
head.appendChild(script);
$ = unsafeWindow.$;
})();
$(document).ready(function() {
$('<div title="Test">SomeText</div>').dialog();
});
</code></pre>
<p>The problems having now stem from $ being in the unsafeWindow context, so certain GM methods cannot be called from the unsafe context (like GM_getValue when inside $.each). There's got to be a way to get to the root of this and have jQueryUI work from within Greasemonkey. I'm 90% certain that it's an XPCNativeWrapper issue, so there should be an simple workaround by changing some code in the dialog plugin.</p>
http://stackoverflow.com/questions/359494/javascript-vs-does-it-matter-which-equal-operator-i-use/371472#371472Comment by Daniel X Moore on Javascript === vs == : Does it matter which "equal" operator I use?Daniel X Moore2009-06-22T23:43:15Z2009-06-22T23:43:15ZNot always true. With gzip compression, the difference would be almost negligible. http://stackoverflow.com/questions/974979/how-can-i-simply-merge-a-hash-into-a-new-oneComment by Daniel X Moore on how can I simply merge a hash into a new one?Daniel X Moore2009-06-12T03:21:19Z2009-06-12T03:21:19ZProbably for some WSDL interface to SugarCRM, amirite?http://stackoverflow.com/questions/160863/whats-a-good-minimal-server-side-javascript-framework/161055#161055Comment by Daniel X Moore on What's a good Minimal Server-Side Javascript Framework?Daniel X Moore2009-05-27T00:10:44Z2009-05-27T00:10:44ZYour link to Synergy is brokenhttp://stackoverflow.com/questions/194846/is-there-any-kind-of-hashcode-function-in-javascript/194906#194906Comment by Daniel X Moore on Is there any kind of hashCode function in javascript?Daniel X Moore2009-05-24T22:46:55Z2009-05-24T22:46:55ZThis will fail if you add the same object twice. It will think that it is different.http://stackoverflow.com/questions/608856/magic-numbers-vs-named-constants/613537#613537Comment by Daniel X Moore on Magic numbers vs named constantsDaniel X Moore2009-05-05T21:14:24Z2009-05-05T21:14:24ZHow many calendar applications have you specify your appointments to the second?http://stackoverflow.com/questions/714068/how-do-you-organize-javascript-verbosenessComment by Daniel X Moore on How do you organize Javascript verboseness?Daniel X Moore2009-04-22T20:24:12Z2009-04-22T20:24:12ZjQuery works in Grease Monkey, and greatly reduces tedium.http://stackoverflow.com/questions/675120/inspect-javascript-calls-for-gmails-buttons/677924#677924Comment by Daniel X Moore on inspect javascript calls for gmail's buttonsDaniel X Moore2009-03-24T23:18:16Z2009-03-24T23:18:16ZWhat if the event is added as a listener?http://stackoverflow.com/questions/622497/do-you-think-functional-language-is-good-for-applications-that-have-a-lot-of-busi/622520#622520Comment by Daniel X Moore on Do you think functional language is good for applications that have a lot of business rules but very few computation?Daniel X Moore2009-03-07T21:45:55Z2009-03-07T21:45:55ZPlease expand on your reasoning. What are the compelling reasons to use "Enterprise Platforms" for "Enterprise Apps" other than they share "Enterprise" in the name.http://stackoverflow.com/questions/58595/should-i-learn-c-or-java/424872#424872Comment by Daniel X Moore on Should I learn C# or Java?Daniel X Moore2009-03-07T03:26:36Z2009-03-07T03:26:36ZYou may want to expand on your argument about MS-lock in and some concrete evidence why it can be bad.http://stackoverflow.com/questions/613697/generate-a-different-range-in-ruby-i-e-all-possible-0-9a-za-z3/613861#613861Comment by Daniel X Moore on Generate a different range in Ruby i.e. all possible /[0-9A-Za-z]{3}/Daniel X Moore2009-03-05T16:58:21Z2009-03-05T16:58:21ZIt's not strictly necessary, but it adds consistency. Edited, thanks!http://stackoverflow.com/questions/608856/magic-numbers-vs-named-constants/613537#613537Comment by Daniel X Moore on Magic numbers vs named constantsDaniel X Moore2009-03-05T06:50:34Z2009-03-05T06:50:34ZThat doesn't mean that you can't apply the same principles, even in Java you can do something like TimeHelper.months().ago(3) and have it return whatever makes sense to add to your date/time.http://stackoverflow.com/questions/604304/can-a-greasemonkey-script-override-adblock-filtersComment by Daniel X Moore on Can a Greasemonkey script override AdBlock filters?Daniel X Moore2009-03-04T05:32:50Z2009-03-04T05:32:50ZWhat are the specifics of the element you are trying to access and what properties are you trying to access from it?http://stackoverflow.com/questions/579196/getting-the-last-revision-number-in-svn/579238#579238Comment by Daniel X Moore on Getting the last revision number in SVN?Daniel X Moore2009-02-25T05:09:22Z2009-02-25T05:09:22ZIf there is an error then the output will be directed to stderr. To capture stderr in your output use thusly: $output = <code>svn info $url 2>&1</code>;