User jakemcgraw - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T10:26:15Zhttp://stackoverflow.com/feeds/user/302http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1787893/number-of-memcache-connections-never-drops-keeps-growing5Number of memcache connections never drops, keeps growingjakemcgraw2009-11-24T04:59:00Z2009-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#18130951Answer by jakemcgraw for What's the simplest way to do cross-browser rounded borders in HTML/CSS?jakemcgraw2009-11-28T17:11:41Z2009-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#17685341Answer by jakemcgraw for Why does the balance become 1.00 whenever the sql command below is executed no matter what value of $cost is?jakemcgraw2009-11-20T05:34:34Z2009-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#17684532Answer by jakemcgraw for Getting word count for all files within a folderjakemcgraw2009-11-20T05:07:36Z2009-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><?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";
?>
</code></pre>
http://stackoverflow.com/questions/1708597/disabling-ajaxsetup-defaults-for-some-ajax-calls/1708624#17086240Answer by jakemcgraw for Disabling ajaxSetup Defaults for some AJAX Callsjakemcgraw2009-11-10T15:04:28Z2009-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-jquery15Is there an "exists" function for jQueryjakemcgraw2008-08-27T19:49:41Z2009-11-08T06:55:58Z
<p>So I know that you can do:</p>
<pre><code>if ($(selector).length>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#16753590Answer by jakemcgraw for PHP Mysql joins across databasesjakemcgraw2009-11-04T17:22:58Z2009-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#16309470Answer by jakemcgraw for MySQL: are the consistency/data loss/query optimization issues I read about "that bad"?jakemcgraw2009-10-27T13:52:14Z2009-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#16258702Answer by jakemcgraw for JavaScript bookmarklet and URL encodingjakemcgraw2009-10-26T16:47:14Z2009-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>&doctype=Inline&charset=detect+automatically&ss=1&group=0&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)+'&doctype=Inline&charset=detect+automatically&ss=1&group=0&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#16253001Answer by jakemcgraw for How to insert a margin at the right and left of the page?jakemcgraw2009-10-26T14:54:03Z2009-10-26T14:54:03Z<p>Assuming a page structure like so:</p>
<pre><code><!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css" />
</head>
<body>
<div id="main">
</div>
</body>
</html>
</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#16251691Answer by jakemcgraw for PHP and cURL cookiesjakemcgraw2009-10-26T14:33:21Z2009-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--> foo.com --cURL-LOGIN--> bar.com
bar.com --bar.com-COOKIE--> foo.com --foo.com-COOKIE--> client
client --foo.com-COOKIE--> 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#15415390Answer by jakemcgraw for Jquery autocompletejakemcgraw2009-10-09T02:31:09Z2009-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#15076082Answer by jakemcgraw for UTC within Sitejakemcgraw2009-10-02T03:23:06Z2009-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#14780380Answer by jakemcgraw for Should I care about JavaScript engine speed when using jQuery?jakemcgraw2009-09-25T15:33:30Z2009-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#13962020Answer by jakemcgraw for using jquery, how to change an image when hovering links?jakemcgraw2009-09-08T20:35:37Z2009-09-08T20:35:37Z<p>Given the following HTML:</p>
<pre><code><ul>
<li><a href="#" id="link1">Link Number 1</a></li>
<li><a href="#" id="link2">Link Number 2</a></li>
<li><a href="#" id="link3">Link Number 3</a></li>
<li><a href="#" id="link4">Link Number 4</a></li>
<li><a href="#" id="link5">Link Number 5</a></li>
</ul>
<ul>
<li><img src="image1.jpg" /></li>
<li><img src="image2.jpg" /></li>
<li><img src="image3.jpg" /></li>
<li><img src="image4.jpg" /></li>
<li><img src="image5.jpg" /></li>
</ul>
</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#13656330Answer by jakemcgraw for Use regex/php to read text inside quotationsjakemcgraw2009-09-02T02:53:37Z2009-09-02T02:53:37Z<pre><code><?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#12572651Answer by jakemcgraw for jQuery: Getting the two last list items? jakemcgraw2009-08-10T21:17:56Z2009-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#11787530Answer by jakemcgraw for LAMP: Set Document Root for Specific Directoryjakemcgraw2009-07-24T16:31:57Z2009-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#11672291Answer by jakemcgraw for Do any URL Shortening services with link tracking have a https accessible url?jakemcgraw2009-07-22T18:28:06Z2009-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#11376241Answer by jakemcgraw for How can I write a PHP program without using many if statements ?jakemcgraw2009-07-16T13:33:23Z2009-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><?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><?php
class Controller
{
public function handleRequest($action = null)
{
if (null !== $action) {
// Do something
} else {
// Do something else
}
}
}
$controller = new Controller;
$controller->handleRequest($_REQUEST['action']);
</code></pre>
http://stackoverflow.com/questions/1125139/does-the-order-of-cases-matter-in-php-switch-statements/1125180#1125180-2Answer by jakemcgraw for Does the order of cases matter in PHP switch statements?jakemcgraw2009-07-14T12:52:42Z2009-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#11103361Answer by jakemcgraw for Use variables or "inject" jquery selectors when chaining?jakemcgraw2009-07-10T15:42:58Z2009-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#11067341Answer by jakemcgraw for How to parse XML in order to extract data from MySQL Database.jakemcgraw2009-07-09T22:19:11Z2009-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#9423941Answer by jakemcgraw for How to Use Same Models in Different Modules in Zend Framework?jakemcgraw2009-06-02T23:19:09Z2009-06-04T15:34:33Z<p>I just built this custom Action Helper for the problem you describe:</p>
<pre><code><?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->getRequest()->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->getDispatcher()->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->getModuleDirectory($module) . '/models';
}
// Load paths
$this->_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->_loader->load($model);
return new $class;
}
/**
* Proxy to getModel()
*
* @param string $model
* @return object
*/
public function direct($model)
{
return $this->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><?php
class IndexController extends Zend_Controller_Action
{
public function indexAction()
{
$model = $this->_helper->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-3Answer by jakemcgraw for Action View Helper in Zend - Work around?jakemcgraw2009-06-02T20:33:20Z2009-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#9116011Answer by jakemcgraw for Charting package that can handle huge amounts of datajakemcgraw2009-05-26T16:34:19Z2009-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-api1Injecting jQuery into a page fails when using Google AJAX Libraries APIjakemcgraw2009-05-08T15:01:06Z2009-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('<div>jQuery Rocks!</div>');
};
// 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 && (!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><html>
<head>
<title>This is my page</title>
</head>
<body>
<h1>This is my page.</h1>
<script src="http://my-domain.com/inject-jquery.js"></script>
</body>
</html>
</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#8994761Answer by jakemcgraw for How can I convert this working JAVASCRIPT code to JQUERYjakemcgraw2009-05-22T19:02:37Z2009-05-22T19:02:37Z<pre><code><script language="javascript" type="text/javascript">
$(function(){
if ('<% = HasPasswordAlreadyChanged %>' == '1') {
$("#sNav").find("a").attr("disabled","disabled").click(function(){return false;});
}
});
</script>
</code></pre>
http://stackoverflow.com/questions/357219/whats-your-favourite-character/895213#89521314Answer by jakemcgraw for What's your favourite character?jakemcgraw2009-05-21T21:15:29Z2009-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#8801121Answer by jakemcgraw for Writing a REGEX to match the src, height and width attributes of an img tagjakemcgraw2009-05-18T22:22:45Z2009-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><img(?:(\s*(src|height|width)\s*=\s*"([^"]+)"\s*)+|[^>]+?)*>
</code></pre>
http://stackoverflow.com/questions/357219/whats-your-favourite-character/895213#895213Comment by jakemcgraw on What's your favourite character?jakemcgraw2009-10-28T14:03:04Z2009-10-28T14:03:04Zclearly I'm a newf** since I broke rules 1 & 2http://stackoverflow.com/questions/1630862/mysql-are-the-consistency-data-loss-query-optimization-issues-i-read-about-that/1630947#1630947Comment by jakemcgraw on MySQL: are the consistency/data loss/query optimization issues I read about "that bad"?jakemcgraw2009-10-27T15:50:23Z2009-10-27T15:50:23ZActually 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#1625169Comment by jakemcgraw on PHP and cURL cookiesjakemcgraw2009-10-26T14:49:41Z2009-10-26T14:49:41ZFor subdomains, after capturing the cookie from cURL, using the options I suggested, you should use set_cookie with a domain of: ".domain.com", where domain is the longest common subdomain.http://stackoverflow.com/questions/1507570/utc-within-site/1507608#1507608Comment by jakemcgraw on UTC within Sitejakemcgraw2009-10-02T14:59:50Z2009-10-02T14:59:50ZDepends 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#1365631Comment by jakemcgraw on Use regex/php to read text inside quotationsjakemcgraw2009-09-02T02:55:22Z2009-09-02T02:55:22Znot global :,-(http://stackoverflow.com/questions/1257233/jquery-getting-the-two-last-list-items/1257254#1257254Comment by jakemcgraw on jQuery: Getting the two last list items? jakemcgraw2009-08-10T21:18:51Z2009-08-10T21:18:51ZAdd as an answer :Phttp://stackoverflow.com/questions/1215845/javascript-regex-surround-and-http-with-anchor-tags-inComment by jakemcgraw on Javascript Regex: surround @_____, #_____, and http://______ with anchor tags in one pass?jakemcgraw2009-08-01T04:49:19Z2009-08-01T04:49:19ZWhat determines the href value?http://stackoverflow.com/questions/1137632/getting-an-error-in-this-queryComment by jakemcgraw on Getting an error in this Queryjakemcgraw2009-07-16T13:36:15Z2009-07-16T13:36:15ZWhat error? Can we get a database schema? Do your function parameters contain any single quotes?http://stackoverflow.com/questions/1124953/multiple-ajax-requests-kill-sessionComment by jakemcgraw on Multiple ajax requests kill sessionjakemcgraw2009-07-14T12:59:14Z2009-07-14T12:59:14ZAre 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#1110336Comment by jakemcgraw on Use variables or "inject" jquery selectors when chaining?jakemcgraw2009-07-12T13:48:11Z2009-07-12T13:48:11ZExactly 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#899476Comment by jakemcgraw on How can I convert this working JAVASCRIPT code to JQUERYjakemcgraw2009-05-28T04:12:13Z2009-05-28T04:12:13ZSo, mark it as the correct answer :Phttp://stackoverflow.com/questions/886371/generating-objects-in-php-using-rest/908917#908917Comment by jakemcgraw on Generating objects in PHP using REST jakemcgraw2009-05-26T17:18:19Z2009-05-26T17:18:19ZSimpleXML 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#879815Comment by jakemcgraw on Any good lightweight date/time picker for web with good UI ?jakemcgraw2009-05-18T21:19:06Z2009-05-18T21:19:06ZI 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#853621Comment by jakemcgraw on Backward-counting day display in phpjakemcgraw2009-05-12T16:33:41Z2009-05-12T16:33:41ZX = 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#840576Comment by jakemcgraw on Injecting jQuery into a page fails when using Google AJAX Libraries APIjakemcgraw2009-05-08T16:11:24Z2009-05-08T16:11:24ZMuch more direct method, do you know if there is a static URL on Google's servers that points to the latest jQuery?