User jakemcgraw - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T10:26:15Z http://stackoverflow.com/feeds/user/302 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1787893/number-of-memcache-connections-never-drops-keeps-growing 5 Number of memcache connections never drops, keeps growing jakemcgraw 2009-11-24T04:59:00Z 2009-12-08T15:53:33Z <p>We've set up three memcache servers for our web application.</p> <p>Two are doing fine, handling tens of thousands of reads and writes, all while maintaining no more than 12 connections each (according to <a href="http://code.google.com/p/memcache-top/" rel="nofollow">memcache-top</a>). </p> <p>We have a third memcache server which is responsible for storing administrative client session data (using <a href="http://us3.php.net/manual/en/memcache.examples-overview.php#memcache.examples-overview" rel="nofollow">PHPs built in memcache session handler</a>) and some random application data. For some reason the number of connections on this box never goes down, only increasing over time. For example, we recently restarted the server and an hour later memcache-top records ~300 connections. </p> <p>The code base uses a mixture of persistent connections and dynamic connections, but I have been unable to come up with a simple example for recreating the situation where connections never die. This third memcache server actually hosts the least active portion of our web application, as you can see from memcache-top:</p> <pre><code>memcache-top v0.6 (default port: 11211, color: on, refresh: 3 seconds) INSTANCE USAGE HIT % CONN TIME EVICT/s READ/s WRITE/s memcache1:11211 15.7% 83.5% 10 1.2ms 0.0 24.9K 34.5K memcache2:11211 15.8% 81.3% 10 1.0ms 0.0 19.1K 31.6K memcache3:11211 0.1% 0.0% 354 1.1ms 0.0 4 321 AVERAGE: 10.5% 55.0% 124 1.1ms 0.0 14.7K 22.1K TOTAL: 0.6GB/ 6.0GB 374 3.2ms 0.0 44.0K 66.4K </code></pre> <p>So my question is: Why do the connections for this memcache instance never die?</p> http://stackoverflow.com/questions/1813076/whats-the-simplest-way-to-do-cross-browser-rounded-borders-in-html-css/1813095#1813095 1 Answer by jakemcgraw for What's the simplest way to do cross-browser rounded borders in HTML/CSS? jakemcgraw 2009-11-28T17:11:41Z 2009-11-28T17:11:41Z <p><a href="http://famspam.com/facebox" rel="nofollow">Facebox</a> uses tables, it's pretty much the easiest way to do it and support IE(6|7|8). Otherwise, I'd use <a href="http://www.css3.info/preview/rounded-border/" rel="nofollow">border-radius</a> and deliver some non-rounded corners to IE(6|7|8), which is what Google did for the longest time.</p> http://stackoverflow.com/questions/1768523/why-does-the-balance-become-1-00-whenever-the-sql-command-below-is-executed-no-ma/1768534#1768534 1 Answer by jakemcgraw for Why does the balance become 1.00 whenever the sql command below is executed no matter what value of $cost is? jakemcgraw 2009-11-20T05:34:34Z 2009-11-20T05:47:10Z <p>You've forgotten to put in <strong>WHERE</strong> clause:</p> <pre><code>UPDATE account SET balance=balance-'$cost' WHERE username='steven' LIMIT 1; </code></pre> <p>What is happening in your query</p> <pre><code>UPDATE account SET balance=balance-'$cost' AND username='steven'; </code></pre> <p>According to <a href="http://dev.mysql.com/doc/refman/5.0/en/operator-precedence.html" rel="nofollow">MySQL Operator Precedence</a>, the substraction takes place first, which, for the example you gave, will return a positive number:</p> <pre><code>UPDATE account SET balance=(balance-'$cost') AND username='steven'; UPDATE account SET balance=(1700) AND username='steven'; </code></pre> <p>Then, the assignment (=) of username to 'steven' takes place, which returns 'steven':</p> <pre><code>UPDATE account SET balance=(1700) AND (username='steven'); UPDATE account SET balance=(1700) AND ('steven'); </code></pre> <p>Then, the (AND) boolean operator kicks in, converts both the positive number and the string to boolean values, both TRUE, and then ANDs them, which will return TRUE:</p> <pre><code>UPDATE account SET balance=((1700) AND ('steven')); UPDATE account SET balance=(TRUE AND TRUE); UPDATE account SET balance=(TRUE); </code></pre> <p>Finally, since balance is a floating point number, TRUE gets converted into a number, which defaults to to 1.0:</p> <pre><code>UPDATE account SET balance=(TRUE); UPDATE account SET balance=1; </code></pre> <p>This will affect all records, not just the one for username 'steve'.</p> http://stackoverflow.com/questions/1768429/getting-word-count-for-all-files-within-a-folder/1768453#1768453 2 Answer by jakemcgraw for Getting word count for all files within a folder jakemcgraw 2009-11-20T05:07:36Z 2009-11-20T05:07:36Z <p>Assuming the <strong>doc</strong> files are plaintext and don't contain additional markup, you can use the following script to count all of the words in all of the files:</p> <pre><code>&lt;?php $dirname = '/path/to/file/'; $files = glob($dirname.'*'); $total = 0; foreach($files as $path) { $count = str_word_count(file_get_contents($path)); print "\n$path has $count words\n"; $total += $count; } print "Total words: $total\n\n"; ?&gt; </code></pre> http://stackoverflow.com/questions/1708597/disabling-ajaxsetup-defaults-for-some-ajax-calls/1708624#1708624 0 Answer by jakemcgraw for Disabling ajaxSetup Defaults for some AJAX Calls jakemcgraw 2009-11-10T15:04:28Z 2009-11-10T15:04:28Z <p>Use the <strong>$.ajax()</strong> call to override the defaults established in $.ajaxSetup().</p> http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery 15 Is there an "exists" function for jQuery jakemcgraw 2008-08-27T19:49:41Z 2009-11-08T06:55:58Z <p>So I know that you can do:</p> <pre><code>if ($(selector).length&gt;0) { // Do something } </code></pre> <p>But is there a more elegant method?</p> http://stackoverflow.com/questions/1675333/php-mysql-joins-across-databases/1675359#1675359 0 Answer by jakemcgraw for PHP Mysql joins across databases jakemcgraw 2009-11-04T17:22:58Z 2009-11-04T17:22:58Z <p>Just use SQL</p> <pre><code>SELECT col1, col2 FROM foo f LEFT JOIN db2.bar b ON b.col1 = f.col1 </code></pre> http://stackoverflow.com/questions/1630862/mysql-are-the-consistency-data-loss-query-optimization-issues-i-read-about-that/1630947#1630947 0 Answer by jakemcgraw for MySQL: are the consistency/data loss/query optimization issues I read about "that bad"? jakemcgraw 2009-10-27T13:52:14Z 2009-10-27T16:28:34Z <p>No, the issues you mention are NOT a big deal. See <a href="http://google.com" rel="nofollow">Google</a> and <a href="http://facebook.com" rel="nofollow">Facebook</a> as two examples of companies that are using MySQL to accomplish Herculean tasks you'll only ever dream of encountering. </p> <p>I use the following rules when running a MySQL to prevent headaches down the line:</p> <ol> <li><p>Take daily, weekly, monthly snapshots of database. More often than not the problems you'll run in to have nothing to do with MySQL, instead it's a boneheaded developer running:</p> <p>DELETE FROM mytable; # Where is the WHERE?</p></li> <li><p>Use InnoDB by default, the only reason to use MyISAM is for full text search.</p></li> <li><p>Get your database schema under source control.</p></li> </ol> http://stackoverflow.com/questions/1625816/javascript-bookmarklet-and-url-encoding/1625870#1625870 2 Answer by jakemcgraw for JavaScript bookmarklet and URL encoding jakemcgraw 2009-10-26T16:47:14Z 2009-10-26T16:47:14Z <p>Two Errors:</p> <ol> <li><p>You need to access the "href" member of the location object:</p> <p>window.location.<strong>href</strong> = <a href="http://foo.com" rel="nofollow">http://foo.com</a></p></li> <li><p>You have invalid JavaScript:</p> <p>javascript:location = '<a href="http://validator.w3.org/check?uri=" rel="nofollow">http://validator.w3.org/check?uri=</a>' +escape(location)<strong>PLUS SIGN AND QUOTE MISSING HERE</strong>&amp;doctype=Inline&amp;charset=detect+automatically&amp;ss=1&amp;group=0&amp;user-agent=W3C_Validator/1.654';</p></li> </ol> <p>I recommend using this:</p> <pre><code>javascript:(function(){window.location.href='http://validator.w3.org/check?uri='+escape(window.location.href)+'&amp;doctype=Inline&amp;charset=detect+automatically&amp;ss=1&amp;group=0&amp;user-agent=W3C_Validator/1.654';})() </code></pre> http://stackoverflow.com/questions/1625253/how-to-insert-a-margin-at-the-right-and-left-of-the-page/1625300#1625300 1 Answer by jakemcgraw for How to insert a margin at the right and left of the page? jakemcgraw 2009-10-26T14:54:03Z 2009-10-26T14:54:03Z <p>Assuming a page structure like so:</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;link type="text/css" rel="stylesheet" href="style.css" /&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="main"&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Then <strong>style.css</strong> should look like:</p> <pre><code>* {margin:0;} div#main { width:800px; margin:0 auto; } </code></pre> http://stackoverflow.com/questions/1625111/php-and-curl-cookies/1625169#1625169 1 Answer by jakemcgraw for PHP and cURL cookies jakemcgraw 2009-10-26T14:33:21Z 2009-10-26T14:44:33Z <p>Check out the <a href="http://www.php.net/manual/en/function.curl-setopt.php" rel="nofollow">documentation</a> for the following cURL options:</p> <pre><code>CURLOPT_COOKIE CURLOPT_COOKIEFILE CURLOPT_COOKIEJAR </code></pre> <p><strong>EDIT</strong></p> <p>After reading your question more thoroughly, I'm afraid to tell you there is NO way to write the cookies to the client browser unless you redirect the client to the site you are attempting authorize them on. Browser cookies operate on a security model known as <a href="http://en.wikipedia.org/wiki/Same%5Forigin%5Fpolicy" rel="nofollow" title="Same Origin Policy">Same Origin Policy</a>. This basically means that domains can only issue cookies for their OWN domains and may not issue cookies for others domains. In your particular case:</p> <pre><code>client --CONTACTS--&gt; foo.com --cURL-LOGIN--&gt; bar.com bar.com --bar.com-COOKIE--&gt; foo.com --foo.com-COOKIE--&gt; client client --foo.com-COOKIE--&gt; bar.com (Will not work) </code></pre> <p>Basically, foo.com CAN NOT create cookies on the client for bar.com! </p> http://stackoverflow.com/questions/1541529/jquery-autocomplete/1541539#1541539 0 Answer by jakemcgraw for Jquery autocomplete jakemcgraw 2009-10-09T02:31:09Z 2009-10-09T02:31:09Z <p>Have you tried:</p> <pre><code>$("#elem1").autocomplete("source1.php").addClass("class1"); $("#elem2").autocomplete("source2.php").addClass("class2"); $("#elem3").autocomplete("source3.php").addClass("class3"); </code></pre> http://stackoverflow.com/questions/1507570/utc-within-site/1507608#1507608 2 Answer by jakemcgraw for UTC within Site jakemcgraw 2009-10-02T03:23:06Z 2009-10-02T03:23:06Z <p>The GMT offset of a given client is available within the browser via the <strong>Date</strong> class:</p> <pre><code>var today = new Date(); var offset = -(today.getTimezoneOffset()/60); </code></pre> <p>Via <a href="http://www.24hourapps.com/2009/03/javascript-gmtutc-timezone-offset.html" rel="nofollow">http://www.24hourapps.com/2009/03/javascript-gmtutc-timezone-offset.html</a></p> http://stackoverflow.com/questions/1477921/should-i-care-about-javascript-engine-speed-when-using-jquery/1478038#1478038 0 Answer by jakemcgraw for Should I care about JavaScript engine speed when using jQuery? jakemcgraw 2009-09-25T15:33:30Z 2009-09-25T15:33:30Z <p>Yes you should be concerned, but luckily, the jQuery Team is just as concerned:</p> <p><a href="http://www.slideshare.net/jeresig/recent-changes-to-jquerys-internals" rel="nofollow">Recent Changes to jQuery Internals (Check out last two slides)</a></p> http://stackoverflow.com/questions/1396159/using-jquery-how-to-change-an-image-when-hovering-links/1396202#1396202 0 Answer by jakemcgraw for using jquery, how to change an image when hovering links? jakemcgraw 2009-09-08T20:35:37Z 2009-09-08T20:35:37Z <p>Given the following HTML:</p> <pre><code>&lt;ul&gt; &lt;li&gt;&lt;a href="#" id="link1"&gt;Link Number 1&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" id="link2"&gt;Link Number 2&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" id="link3"&gt;Link Number 3&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" id="link4"&gt;Link Number 4&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" id="link5"&gt;Link Number 5&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;&lt;img src="image1.jpg" /&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="image2.jpg" /&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="image3.jpg" /&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="image4.jpg" /&gt;&lt;/li&gt; &lt;li&gt;&lt;img src="image5.jpg" /&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Use the following JavaScript (with jQuery):</p> <pre><code>$(function(){ $(".images img").hide(); $(".links a").hover(function(){ $(".images img").hide(); $("#image"+/(\d+)$/.exec(this.id)[1]).show(); }, function(){ $(".images img").hide(); }); }); </code></pre> http://stackoverflow.com/questions/1365620/use-regex-php-to-read-text-inside-quotations/1365633#1365633 0 Answer by jakemcgraw for Use regex/php to read text inside quotations jakemcgraw 2009-09-02T02:53:37Z 2009-09-02T02:53:37Z <pre><code>&lt;?php $string = 'This User "The Title Of The Post"'; preg_match_all('/"([^"]+)"/', $string, $matches); var_dump($matches); </code></pre> http://stackoverflow.com/questions/1257233/jquery-getting-the-two-last-list-items/1257265#1257265 1 Answer by jakemcgraw for jQuery: Getting the two last list items? jakemcgraw 2009-08-10T21:17:56Z 2009-08-10T21:17:56Z <pre><code>$(function(){ $("li:gt("+($("li").length-3)+")").addClass("special"); }); </code></pre> http://stackoverflow.com/questions/1178710/lamp-set-document-root-for-specific-directory/1178753#1178753 0 Answer by jakemcgraw for LAMP: Set Document Root for Specific Directory jakemcgraw 2009-07-24T16:31:57Z 2009-07-24T16:31:57Z <p>You're going to need to define a baseUrl that is available throughout your application. If the client is getting antzy to see your work, tell them to register a subdomain to throw it on.</p> http://stackoverflow.com/questions/1163226/do-any-url-shortening-services-with-link-tracking-have-a-https-accessible-url/1167229#1167229 1 Answer by jakemcgraw for Do any URL Shortening services with link tracking have a https accessible url? jakemcgraw 2009-07-22T18:28:06Z 2009-07-22T18:28:06Z <p>Try out <a href="http://woo.ly" rel="nofollow">woo.ly</a> URL shortening service it supports shortened URLs created using SSL:</p> <p><a href="http://developer.woo.ly/s/developer" rel="nofollow">http://developer.woo.ly/s/developer</a></p> http://stackoverflow.com/questions/1137541/how-can-i-write-a-php-program-without-using-many-if-statements/1137624#1137624 1 Answer by jakemcgraw for How can I write a PHP program without using many if statements ? jakemcgraw 2009-07-16T13:33:23Z 2009-07-16T13:33:23Z <p>Have you looked into using <a href="http://php.net/oop" rel="nofollow">OOP</a>, thereby utilizing reusable object methods instead of 10's of conditional statements? For example, say you have a PHP script that will do different things depending on whether or not a $_REQUEST variable is available, normally you might do:</p> <pre><code>&lt;?php if (isset($_REQUEST['action'])) { // Do something } else { // Do something else } </code></pre> <p>instead with OOP you could represent your script like so:</p> <pre><code>&lt;?php class Controller { public function handleRequest($action = null) { if (null !== $action) { // Do something } else { // Do something else } } } $controller = new Controller; $controller-&gt;handleRequest($_REQUEST['action']); </code></pre> http://stackoverflow.com/questions/1125139/does-the-order-of-cases-matter-in-php-switch-statements/1125180#1125180 -2 Answer by jakemcgraw for Does the order of cases matter in PHP switch statements? jakemcgraw 2009-07-14T12:52:42Z 2009-07-14T12:52:42Z <p>Your switch statement is equivalent to:</p> <pre><code>if ($op == 'after_update') { // Do stuff } else if ($op == 'login') { // Do stuff } </code></pre> <p>Performance difference between switching the statements is negligible. </p> http://stackoverflow.com/questions/1110296/use-variables-or-inject-jquery-selectors-when-chaining/1110336#1110336 1 Answer by jakemcgraw for Use variables or "inject" jquery selectors when chaining? jakemcgraw 2009-07-10T15:42:58Z 2009-07-10T15:42:58Z <p>Either one is fine, you're talking about the performance of variable assignment, quite possibly the fastest feature in any language. The difference between:</p> <pre><code>var a = 1; var b = 2; return a + b; </code></pre> <p>versus:</p> <pre><code>return 1 + 2; </code></pre> <p>Should be close to nil for all modern day languages.</p> http://stackoverflow.com/questions/1106569/how-to-parse-xml-in-order-to-extract-data-from-mysql-database/1106734#1106734 1 Answer by jakemcgraw for How to parse XML in order to extract data from MySQL Database. jakemcgraw 2009-07-09T22:19:11Z 2009-07-09T22:19:11Z <p>Everything you need is already baked into PHP:</p> <ol> <li>Use <a href="http://us3.php.net/simplexml" rel="nofollow">SimpleXML</a> to process the XML file into something meaningful.</li> <li><p>Use the method described at <a href="http://us.php.net/manual/en/function.mysql-list-fields.php" rel="nofollow">php.net/mysql_list_fields</a> to retrieve valid column names:</p> <p> <p>mysql_query("SHOW COLUMNS FROM $tableName");</p></li> <li><p>Once you have validated the requested database fields, create your SQL query.</p></li> </ol> http://stackoverflow.com/questions/259456/how-to-use-same-models-in-different-modules-in-zend-framework/942394#942394 1 Answer by jakemcgraw for How to Use Same Models in Different Modules in Zend Framework? jakemcgraw 2009-06-02T23:19:09Z 2009-06-04T15:34:33Z <p>I just built this custom Action Helper for the problem you describe:</p> <pre><code>&lt;?php class My_Controller_Action_Helper_GetModel extends Zend_Controller_Action_Helper_Abstract { /** * @var Zend_Loader_PluginLoader */ protected $_loader; /** * Initialize plugin loader for models * * @return void */ public function __construct() { // Get all models across all modules $front = Zend_Controller_Front::getInstance(); $curModule = $front-&gt;getRequest()-&gt;getModuleName(); // Get all module names, move default and current module to // back of the list so their models get precedence $modules = array_diff( array_keys($front-&gt;getDispatcher()-&gt;getControllerDirectory()), array('default', $curModule) ); $modules[] = 'default'; if ($curModule != 'default') { $modules[] = $curModule; } // Generate namespaces and paths for plugin loader $pluginPaths = array(); foreach($modules as $module) { $pluginPaths[ucwords($module)] = $front-&gt;getModuleDirectory($module) . '/models'; } // Load paths $this-&gt;_loader = new Zend_Loader_PluginLoader($pluginPaths); } /** * Load a model class and return an object instance * * @param string $model * @return object */ public function getModel($model) { $class = $this-&gt;_loader-&gt;load($model); return new $class; } /** * Proxy to getModel() * * @param string $model * @return object */ public function direct($model) { return $this-&gt;getModel($model); } } </code></pre> <p>So in your Bootstrap.php:</p> <pre><code>Zend_Controller_Action_HelperBroker::addPrefix('My_Controller_Action_Helper'); </code></pre> <p>And in any of your controllers:</p> <pre><code>&lt;?php class IndexController extends Zend_Controller_Action { public function indexAction() { $model = $this-&gt;_helper-&gt;getModel('SomeModel'); } } </code></pre> <p>And this will allow your access to models in any controller across all modules.</p> http://stackoverflow.com/questions/941216/action-view-helper-in-zend-work-around/941756#941756 -3 Answer by jakemcgraw for Action View Helper in Zend - Work around? jakemcgraw 2009-06-02T20:33:20Z 2009-06-02T20:33:20Z <p>Whenever I've had to work around an issue I couldn't directly address using a native Zend Framework component, I've reached for my trusty solve all: JavaScript. I suggest you take a look at the <a href="http://jqueryui.com/" rel="nofollow">jQuery tabs plugin</a>.</p> http://stackoverflow.com/questions/910978/charting-package-that-can-handle-huge-amounts-of-data/911601#911601 1 Answer by jakemcgraw for Charting package that can handle huge amounts of data jakemcgraw 2009-05-26T16:34:19Z 2009-05-26T16:34:19Z <blockquote> <ul> <li>Ability to handle many thousands of data points</li> </ul> </blockquote> <p>Consider using a caching mechanism for fast value retrieval, the standard for LAMP is <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a>, though I've been playing around with <a href="http://github.com/antirez/redis/tree/master" rel="nofollow">redis</a> for great performance.</p> <p>Also, you may want to take advantage of pre-rendered charts to save on data retrieval, consider the <a href="http://code.google.com/apis/chart/" rel="nofollow">Google Charts API</a>.</p> <blockquote> <ul> <li>Ability to allow users to pan and zoom</li> </ul> </blockquote> <p>Everyone, including SO, if using <a href="http://code.google.com/p/flot/" rel="nofollow">flot</a> for dynamic JavaScript charts.</p> <blockquote> <ul> <li>Ability to do live update of the charts (i.e. to reflect new data)</li> </ul> </blockquote> <p>You may be able to accomplish this by rendering flot graphs on an interval. Definitely consider utilizing some form of caching so that your app doesn't sap performance on your data source.</p> http://stackoverflow.com/questions/840240/injecting-jquery-into-a-page-fails-when-using-google-ajax-libraries-api 1 Injecting jQuery into a page fails when using Google AJAX Libraries API jakemcgraw 2009-05-08T15:01:06Z 2009-05-26T16:20:20Z <p>I'd like to inject jQuery into a page using the Google AJAX Libraries API, I've come up with the following solution:</p> <p><strong><a href="http://my-domain.com/inject-jquery.js" rel="nofollow">http://my-domain.com/inject-jquery.js</a>:</strong></p> <pre><code>;((function(){ // Call this function once jQuery is available var func = function() { jQuery("body").prepend('&lt;div&gt;jQuery Rocks!&lt;/div&gt;'); }; // Detect if page is already using jQuery if (!window.jQuery) { var done = false; var head = document.getElementsByTagName('head')[0]; var script = document.createElement("script"); script.src = "http://www.google.com/jsapi"; script.onload = script.onreadystatechange = function(){ // Once Google AJAX Libraries API is loaded ... if (!done &amp;&amp; (!this.readyState || this.readyState == "loaded" || this.readyState == "complete")) { done = true; // ... load jQuery ... window.google.load("jquery", "1", {callback:function(){ jQuery.noConflict(); // ... jQuery available, fire function. func(); }}); // Prevent IE memory leaking script.onload = script.onreadystatechange = null; head.removeChild(script); } } // Load Google AJAX Libraries API head.appendChild(script); // Page already using jQuery, fire function } else { func(); } })()); </code></pre> <p>The script would then be included in a page on a separate domain:</p> <p><strong><a href="http://some-other-domain.com/page.html" rel="nofollow">http://some-other-domain.com/page.html</a>:</strong></p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;This is my page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;h1&gt;This is my page.&lt;/h1&gt; &lt;script src="http://my-domain.com/inject-jquery.js"&gt;&lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>In Firefox 3 I get the following error:</p> <pre><code>Module: 'jquery' must be loaded before DOM onLoad! jsapi (line 16) </code></pre> <p>The error appears to be specific to the Google AJAX Libraries API, as I've seen others use a jQuery bookmarklet to inject jQuery into the current page. My question:</p> <ul> <li>Is there a method for injecting the Google AJAX Libraries API / jQuery into a page regardless of the onload/onready state?</li> </ul> http://stackoverflow.com/questions/899432/how-can-i-convert-this-working-javascript-code-to-jquery/899476#899476 1 Answer by jakemcgraw for How can I convert this working JAVASCRIPT code to JQUERY jakemcgraw 2009-05-22T19:02:37Z 2009-05-22T19:02:37Z <pre><code>&lt;script language="javascript" type="text/javascript"&gt; $(function(){ if ('&lt;% = HasPasswordAlreadyChanged %&gt;' == '1') { $("#sNav").find("a").attr("disabled","disabled").click(function(){return false;}); } }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/357219/whats-your-favourite-character/895213#895213 14 Answer by jakemcgraw for What's your favourite character? jakemcgraw 2009-05-21T21:15:29Z 2009-05-21T21:15:29Z <pre><code> ▲ ▲ ▲ </code></pre> <p>Only winrars can triforce.</p> http://stackoverflow.com/questions/880062/writing-a-regex-to-match-the-src-height-and-width-attributes-of-an-img-tag/880112#880112 1 Answer by jakemcgraw for Writing a REGEX to match the src, height and width attributes of an img tag jakemcgraw 2009-05-18T22:22:45Z 2009-05-18T22:22:45Z <p>I didn't have a chance to test it, but maybe this will work for you (note that I didn't use named matches):</p> <pre><code>&lt;img(?:(\s*(src|height|width)\s*=\s*"([^"]+)"\s*)+|[^&gt;]+?)*&gt; </code></pre> http://stackoverflow.com/questions/357219/whats-your-favourite-character/895213#895213 Comment by jakemcgraw on What's your favourite character? jakemcgraw 2009-10-28T14:03:04Z 2009-10-28T14:03:04Z clearly I'm a newf** since I broke rules 1 &amp; 2 http://stackoverflow.com/questions/1630862/mysql-are-the-consistency-data-loss-query-optimization-issues-i-read-about-that/1630947#1630947 Comment by jakemcgraw on MySQL: are the consistency/data loss/query optimization issues I read about "that bad"? jakemcgraw 2009-10-27T15:50:23Z 2009-10-27T15:50:23Z Actually both Google and Facebook DO use it, that was my point see: <a href="http://blog.facebook.com/blog.php?post=7899307130" rel="nofollow">blog.facebook.com/blog.php?post=7899307130</a> and <a href="http://www.mysql.com/customers/view/?id=555" rel="nofollow">mysql.com/customers/view/?id=555</a> My company also uses, we process ~8,000 transactions per minute. http://stackoverflow.com/questions/1625111/php-and-curl-cookies/1625169#1625169 Comment by jakemcgraw on PHP and cURL cookies jakemcgraw 2009-10-26T14:49:41Z 2009-10-26T14:49:41Z For subdomains, after capturing the cookie from cURL, using the options I suggested, you should use set_cookie with a domain of: &quot;.domain.com&quot;, where domain is the longest common subdomain. http://stackoverflow.com/questions/1507570/utc-within-site/1507608#1507608 Comment by jakemcgraw on UTC within Site jakemcgraw 2009-10-02T14:59:50Z 2009-10-02T14:59:50Z Depends on what you're trying to accomplish, you can remove the minus sign if you like. http://stackoverflow.com/questions/1365620/use-regex-php-to-read-text-inside-quotations/1365631#1365631 Comment by jakemcgraw on Use regex/php to read text inside quotations jakemcgraw 2009-09-02T02:55:22Z 2009-09-02T02:55:22Z not global :,-( http://stackoverflow.com/questions/1257233/jquery-getting-the-two-last-list-items/1257254#1257254 Comment by jakemcgraw on jQuery: Getting the two last list items? jakemcgraw 2009-08-10T21:18:51Z 2009-08-10T21:18:51Z Add as an answer :P http://stackoverflow.com/questions/1215845/javascript-regex-surround-and-http-with-anchor-tags-in Comment by jakemcgraw on Javascript Regex: surround @_____, #_____, and http://______ with anchor tags in one pass? jakemcgraw 2009-08-01T04:49:19Z 2009-08-01T04:49:19Z What determines the href value? http://stackoverflow.com/questions/1137632/getting-an-error-in-this-query Comment by jakemcgraw on Getting an error in this Query jakemcgraw 2009-07-16T13:36:15Z 2009-07-16T13:36:15Z What error? Can we get a database schema? Do your function parameters contain any single quotes? http://stackoverflow.com/questions/1124953/multiple-ajax-requests-kill-session Comment by jakemcgraw on Multiple ajax requests kill session jakemcgraw 2009-07-14T12:59:14Z 2009-07-14T12:59:14Z Are you sure you're actually setting the session in PHP? If yes, perhaps you're resetting the session cookie? Could you provide some sample code? http://stackoverflow.com/questions/1110296/use-variables-or-inject-jquery-selectors-when-chaining/1110336#1110336 Comment by jakemcgraw on Use variables or "inject" jquery selectors when chaining? jakemcgraw 2009-07-12T13:48:11Z 2009-07-12T13:48:11Z Exactly my point, feel free to mark it as the correct answer if you like ;-) http://stackoverflow.com/questions/899432/how-can-i-convert-this-working-javascript-code-to-jquery/899476#899476 Comment by jakemcgraw on How can I convert this working JAVASCRIPT code to JQUERY jakemcgraw 2009-05-28T04:12:13Z 2009-05-28T04:12:13Z So, mark it as the correct answer :P http://stackoverflow.com/questions/886371/generating-objects-in-php-using-rest/908917#908917 Comment by jakemcgraw on Generating objects in PHP using REST jakemcgraw 2009-05-26T17:18:19Z 2009-05-26T17:18:19Z SimpleXML automatically generates objects from your XML strings, I would highly suggest this route. http://stackoverflow.com/questions/879783/any-good-lightweight-date-time-picker-for-web-with-good-ui/879815#879815 Comment by jakemcgraw on Any good lightweight date/time picker for web with good UI ? jakemcgraw 2009-05-18T21:19:06Z 2009-05-18T21:19:06Z I agree, timepickr is overkill for what is probably best represented using three select lists: [HH][MM][AM|PM] or just [HH][MM]. http://stackoverflow.com/questions/853585/backward-counting-day-display-in-php/853621#853621 Comment by jakemcgraw on Backward-counting day display in php jakemcgraw 2009-05-12T16:33:41Z 2009-05-12T16:33:41Z X = full days until event, if he wanted to make it a little more complicated, he could set a conditional to detect when less than a day remains and echo out a different string. http://stackoverflow.com/questions/840240/injecting-jquery-into-a-page-fails-when-using-google-ajax-libraries-api/840576#840576 Comment by jakemcgraw on Injecting jQuery into a page fails when using Google AJAX Libraries API jakemcgraw 2009-05-08T16:11:24Z 2009-05-08T16:11:24Z Much more direct method, do you know if there is a static URL on Google's servers that points to the latest jQuery?