User tj111 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:18:14Z http://stackoverflow.com/feeds/user/12605 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1669707/should-requireonce-some-file-php-appear-anywhere-but-the-top-of-the-file/1669748#1669748 4 Answer by tj111 for Should require_once "some file.php" ; appear anywhere but the top of the file? tj111 2009-11-03T19:52:44Z 2009-11-03T19:52:44Z <p>It comes down to a matter of coding style and opinion. Personally I keep all my <code>require_once</code> statements at the very top of my files so I can easily see which files are included where, nothing worse then some buried include messing with your scripts. However, if you have several large required scripts that are only required for certain functions, then putting the <code>require_once</code> inside a function would be OK from a performance stand-point, just make sure to put a note at the top of the page.</p> <pre><code>&lt;?php //require_once "my_file.php" (see function foo) function foo($param) { require_once "my_file.php"; } </code></pre> http://stackoverflow.com/questions/1628531/console-not-defined-when-i-specifically-check-for-its-existence 0 Console not defined when I specifically check for its existence tj111 2009-10-27T02:54:17Z 2009-10-27T03:04:49Z <p>I'm writing a quick log function to wrap around the native <code>console.log</code> to prevent errors later on in development (like forgotten <code>console.log</code> statements in your code). I'm using the mootools <a href="http://mootools.net/docs/core/Core/Core#defined" rel="nofollow"><code>$defined</code></a> and <a href="http://mootools.net/docs/core/Core/Core#type" rel="nofollow"><code>$type</code></a> functions to check for the existence of a console and the console.log function before calling it. However when I disable firebug I get the following error in firefox.</p> <blockquote> <p>Error: console is not defined<br> Source File: <a href="http://diagnostic.localhost/js/emp.custom.js" rel="nofollow">http://diagnostic.localhost/js/emp.custom.js</a> <br> Line: 6</p> </blockquote> <pre><code>EMP.log = function() { if (DEBUG &amp;&amp; $defined(console) &amp;&amp; $type(console.log) == 'function') { //line 6 var args = Array.prototype.slice.call(arguments); //turn arguments into array console.log.pass(args); } } </code></pre> <p>It seems like using <code>$defined</code> should eliminate this error, so does anyone have any ideas as to what the issue may be?</p> <p>I'm using mootools v1.2.3.</p> <p>EDIT: I've tried the following and they also give them same error:</p> <pre><code>if (DEBUG &amp;&amp; $type(console) == "object" &amp;&amp; $type(console.log) == 'function') { if (DEBUG &amp;&amp; $chk(console) &amp;&amp; $type(console.log) == 'function') { </code></pre> http://stackoverflow.com/questions/1556443/beginner-with-nested-array-question-adding-values-together/1556454#1556454 1 Answer by tj111 for Beginner with nested array question -- adding values together tj111 2009-10-12T19:35:09Z 2009-10-12T19:56:22Z <pre><code>$price = 0; foreach($products as $product) { $price += array_sum($product); } </code></pre> <p>This has the advantage of being more readable than using <code>array_map</code>, but provides the same output.</p> http://stackoverflow.com/questions/1545849/possible-to-force-printer-setup-paper-size-in-javascript/1545895#1545895 6 Answer by tj111 for Possible to force printer setup (paper size) in javascript? tj111 2009-10-09T20:28:09Z 2009-10-11T22:27:55Z <p>You can do this in CSS using the <a href="http://www.w3schools.com/CSS/css%5Fmediatypes.asp" rel="nofollow"><code>@media print</code></a> directive, no js required. You'll have to calculate what sizes relate to a 4x8 index card and do all the positioning yourself, but it will work. <del>Also, since this is CSS2 it won't work in IE6.</del> (see Joel's comments)</p> <pre><code>@media print { body { width: /*width of index card*/ height: /*height of index card*/ } /* etc */ } </code></pre> http://stackoverflow.com/questions/1545432/what-is-the-easiest-way-to-use-the-head-command-of-http-in-php/1545457#1545457 1 Answer by tj111 for What is the easiest way to use the HEAD command of HTTP in PHP? tj111 2009-10-09T18:48:54Z 2009-10-09T18:48:54Z <p>The easiest way to do this is to use <a href="http://php.net/curl" rel="nofollow"><code>curl</code></a> to get just the headers of the page using these options to configure curl before the request.</p> <pre><code>curl_setopt($ch, CURLOPT_HEADER, true); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD'); </code></pre> <p>The exact implementations of using <code>curl</code> in php to get just the http response headers are outlined in detail in this <a href="http://icfun.blogspot.com/2008/07/php-get-server-response-header-by.html" rel="nofollow">blog post</a>.</p> http://stackoverflow.com/questions/1522313/php-mysqlrealescapestring-stripslashes-leaving-multiple-slashes/1522343#1522343 6 Answer by tj111 for PHP mysql_real_escape_string() -> stripslashes() leaving multiple slashes tj111 2009-10-05T20:54:19Z 2009-10-05T21:05:25Z <h1>Best Solution</h1> <p>In your php.ini file, odds are that the <a href="http://us.php.net/magic%5Fquotes" rel="nofollow"><code>magic_quotes_gpc</code></a> directive is set to on. This should be disabled for security reasons. If you don't have access to the php.ini file (eg. on a shared host), you can always accomplish the same using an .htaccess directive (assuming this is an apache server).</p> <p>In your php.ini</p> <pre><code>magic_quotes_gpc Off </code></pre> <p>In an .htaccess file:</p> <pre><code>php_flag magic_quotes_gpc Off </code></pre> <h2>Why is this happening?</h2> <p>The reason this is happening is due to the following course of logic.</p> <ol> <li>A string that needs escaping is sent to the server. <ul> <li><code>This is my string. It's awesome.</code></li> </ul></li> <li>Magic Quotes escapes the apostrophe before it gets to your code. <ul> <li><code>This is my string. It\'s awesome</code></li> </ul></li> <li><code>mysql_real_escape_string</code> now has two characters to escape, the backslash <code>\\</code> as well as the apostrophe <code>\'</code>. <ul> <li><code>This is my string. It\\\'s awesome</code></li> </ul></li> <li>This new super-escaped string is stored in the database.</li> <li>When the string is retrieved from the database, it get's passed to <code>stripslashes</code>. This removes the two escapes added in step 3, but since one of the backslashes has been escaped <code>stripslashes</code> thinks it belongs.<br /> <ul> <li><code>This is my string. It\'s awesome</code></li> </ul></li> </ol> <p>This problem can really get out of hand when you re-submit these strings to the database, as each time the number of backslashes multiplies.</p> <h1>Alternative Solution</h1> <p>A quick-and easy alternative would be to simply remove the slashes added by <code>magic_quotes</code> before passing the string to <code>mysql_real_escape_string</code>. </p> <pre><code>$str = stripslashes($_POST['str']); $str = mysql_real_escape_string($str); </code></pre> http://stackoverflow.com/questions/1522195/how-to-check-if-a-javascript-functions-parameter-was-not-passed-in/1522220#1522220 0 Answer by tj111 for how to check if a javascript functions parameter was not passed in tj111 2009-10-05T20:30:49Z 2009-10-05T20:35:58Z <pre><code>function testa(a,b) { if(typeof a == "undefined") { a = default; } //..continue } </code></pre> <p>Using this method as opposed to <code>a = a || default</code> or <code>if (a == null)</code> is that those methods would assign the default value when you pass a <code>false</code> or <code>null</code> value as the value of 'a'. For example</p> <pre><code> function testa(a,b) { a = a || 15; } function testb(a,b) { if (a == null) { a = 15; } testa(0, 10) //a equals 15, not 0; testb(null, 20) //a equals 15, not null as you wanted </code></pre> http://stackoverflow.com/questions/1521607/check-double-variable-if-it-contains-an-integer-and-not-floating-point/1521649#1521649 4 Answer by tj111 for Check double variable if it contains an integer, and not floating point tj111 2009-10-05T18:25:25Z 2009-10-05T18:49:20Z <p>Assuming you have the cmath <code>&lt;math.h&gt;</code> library, you can check the number against it's <a href="http://www.cppreference.com/wiki/c/math/floor" rel="nofollow">floor</a>. If the number might be negative, make sure you get the <a href="http://www.cppreference.com/wiki/c/math/abs" rel="nofollow">absolute</a> first.</p> <pre><code>bool double_is_int(double trouble) { double absolute = abs( trouble ); return absolute == floor(absolute); } </code></pre> http://stackoverflow.com/questions/1521392/how-to-pass-parameter-to-keyup/1521406#1521406 2 Answer by tj111 for How to pass parameter to $.keyup() ? tj111 2009-10-05T17:40:28Z 2009-10-05T18:09:37Z <p>I believe this is what you want, correct?</p> <pre><code>function validateBody(obj, number) { //do something... } $ojb.keyup(function() { var someNumber = getNumberFromAlgorithm(); validateBody($(this), someNumber) }); </code></pre> http://stackoverflow.com/questions/1521478/submit-button-clicked-via-javascript-doesnt-submit-in-ie6/1521492#1521492 1 Answer by tj111 for Submit button clicked via javascript doesn't "submit" in IE6 tj111 2009-10-05T17:59:41Z 2009-10-05T17:59:41Z <p>Wouldn't it be easier to get a reference to the form element and fire the <code>submit</code> event?</p> <pre><code>var form = document.forms[0]; form.submit(); </code></pre> http://stackoverflow.com/questions/956184/should-web-developers-upgrade-to-internet-explorer-8 2 Should Web Developers upgrade to Internet Explorer 8? tj111 2009-06-05T14:32:52Z 2009-10-05T08:34:23Z <p>I am a web applications developer stuck working on a Windows machine. Today I got an update notification asking me to upgrade Internet Explorer to version 8. I previously had IE 8 installed during the beta, but uninstalled it due to inconsistencies between it's 'compatibility mode' and a stand-alone version of IE 7 (very weird, albeit 'fringe', javascript/css errors). </p> <p>So my question is, have those inconsistencies been worked out by now? If I test a site in compatibility mode, how confident can I be that that's exactly how it will appear/work in IE 7? Do you think it's 'safe' for a web developer to upgrade to IE 8 at this point in time?</p> http://stackoverflow.com/questions/1511567/mysql-date-query-and-displayphp-question/1511656#1511656 0 Answer by tj111 for MYSQL - Date query and display(PHP) question tj111 2009-10-02T20:32:02Z 2009-10-02T20:32:02Z <p>What format are these dates stored in the DB? Assuming they are using MySQL's <a href="http://dev.mysql.com/doc/refman/5.0/en/datetime.html" rel="nofollow">DATE</a> format, its pretty easy to do. You can just use comparison operators on the fields and MySQL will do the work for you in one query. </p> <pre><code>$sql = "SELECT * FROM table WHERE startdate &lt;= $someday AND $someday &lt;= enddate"; </code></pre> http://stackoverflow.com/questions/1488593/how-can-i-use-jquery-load-to-perform-a-get-request-while-passing-extra-parameters/1488628#1488628 3 Answer by tj111 for How can I use jQuery load to perform a GET request while passing extra parameters? tj111 2009-09-28T18:35:23Z 2009-09-28T18:35:23Z <p>According to the documentation you linked:</p> <blockquote> <p>A GET request will be performed by default - but if you pass in any extra parameters in the form of an Object/Map (key/value pairs) then a POST will occur. Extra parameters passed as a string will still use a GET request.</p> </blockquote> <p>So the simple solution is to convert your object to a string before passing it to the function. Unfortunately, the documentation doesn't specify the format the string should be in, but I would guess it would be the same as if you were generating the GET request manually.</p> <pre><code>$("#output").load( "/server_output.html?year=2009&amp;country=Canada" ); </code></pre> http://stackoverflow.com/questions/1462799/html-anchor-block-element-inside-bottom-of-parent-block/1462814#1462814 3 Answer by tj111 for HTML: Anchor block element inside bottom of parent block? tj111 2009-09-22T21:45:25Z 2009-09-22T21:45:25Z <p>Sure, it's pretty easy. Just set the parent <code>div</code> with <code>position:relative</code>. Then, the inner item you want to stick to the bottom, just use <code>position:absolute</code> to stick it to the bottom of the item.</p> <pre><code>&lt;div id="parent"&gt; &lt;div id="child"&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>.</p> <pre><code>#parent { position:relative; } #child { position:absolute; bottom:0; } </code></pre> http://stackoverflow.com/questions/1462643/getting-started-with-javascript/1462682#1462682 2 Answer by tj111 for Getting started with Javascript tj111 2009-09-22T21:20:41Z 2009-09-22T21:20:41Z <p>I think it's very important to understand core javascript before you start using a library, so a good place to get your feet wet is in Mozilla's <a href="https://developer.mozilla.org/en/A%5Fre-introduction%5Fto%5FJavaScript" rel="nofollow"><em>A re-introduction to JavaScript</em></a>. Being an experienced programmer, you shouldn't have to read through pages of tutorials designed for first-time scripters, so that should cover the basics for you.</p> <p>Next I would go through some high-quality tutorials to get a handle on javascript. A good one is <a href="http://eloquentjavascript.net/contents.html" rel="nofollow"><em>Eloquent JavaScript</em></a>, which will really walk you through writing good, syntactic javascript but without all the hudge-pudge of other tutorials. </p> <p>After that I would say you should be fine to start following some YUI tutorials, developing applications, etc. </p> <p>Finally, if your feeling spunky, you can go through John Resig's <a href="http://ejohn.org/apps/learn/" rel="nofollow"><em>Learning Advanced Javascript</a></em>. It goes over alot more advanced topics that set good javascript developers apart.</p> http://stackoverflow.com/questions/1173692/what-is-the-best-api-framework-platform-you-ever-worked-with/1173733#1173733 1 Answer by tj111 for What is the best API/framework/platform you ever worked with? tj111 2009-07-23T18:46:18Z 2009-09-19T23:49:49Z <p><a href="http://en.wikipedia.org/wiki/MooTools" rel="nofollow">MooTools</a> makes for some of the most maintainable (and easiest to write) JavaScript applications you can get.</p> http://stackoverflow.com/questions/1440769/why-does-mysql-always-return-no-data-for-this-query/1440806#1440806 5 Answer by tj111 for Why does MySQL always return no data for this query? tj111 2009-09-17T19:13:04Z 2009-09-17T19:21:29Z <p>It looks to me like your problem is you're enclosing your column names with single quotes. This is causing MySQL to treat it as a string instead of a column name, so you are literally comparing the string 'fieldA' with long string. Remove the quotes from around the column name and you should be good to go.</p> <pre><code>SELECT * FROM tableA WHERE fieldD='A LONG STRING WITH SYMBOLS AND CHARCTERS'; </code></pre> http://stackoverflow.com/questions/1440723/find-file-size-with-jquery/1440772#1440772 0 Answer by tj111 for Find file size with jQuery tj111 2009-09-17T19:07:26Z 2009-09-17T19:07:26Z <p>You can't use javascript to fetch file-information from the server. So you can't use jQuery for this, you'll have to use some sort of server-side scripting to get the file information and display it.</p> http://stackoverflow.com/questions/1440334/pass-the-e-target-to-a-function-thats-called-when-element-is-clicked/1440357#1440357 1 Answer by tj111 for pass the e.target to a function thats called when element is clicked tj111 2009-09-17T17:53:24Z 2009-09-17T17:53:24Z <p>Add <code>e</code> as a parameter for each function you need to pass it too.</p> <pre><code>function showGrid(e){ updateTag(e) } function updateTag(e){ /*how do i get the event.target passed here? */ alert(e.target) } $(".gridViewIcon").click(function(e) { showGrid(e); }); </code></pre> http://stackoverflow.com/questions/1433773/should-an-intranet-web-application-utilize-a-cdn/1433822#1433822 1 Answer by tj111 for Should an intranet web application utilize a CDN tj111 2009-09-16T15:45:03Z 2009-09-16T15:45:03Z <p>Well it depends on several things. </p> <p><strong>Is this intranet just at one location or spread across multiple locations?</strong> If so are those locations in the same state/country/contininent? Obviously the more locations you have and the more distance between them, the more utility a CDN would provide.</p> <p><strong>What server(s) will this be hosted on?</strong> Are the servers used to host this application already bogged down from other running process/sites, etc? The less server resources you have available, the more beneficial a CDN will become, as it will reduce the amount unnecessary server traffic and resources being used.</p> <p><strong>How many people will be using this application simultaneously?</strong> If you are going to have lots of requests coming in every minute/second for static content like images, scripts, etc then more and more of your resources are going to be used delivering that content, slowing down the application as a whole. This one goes hand-in-hand with the above question as well.</p> <p>There's many other things to consider when looking at a CDN, but those are a few of the major points to think about.</p> http://stackoverflow.com/questions/1428507/can-a-php-script-abort-itself-or-detect-abortion/1428564#1428564 3 Answer by tj111 for Can a PHP script abort itself or detect abortion? tj111 2009-09-15T17:33:56Z 2009-09-15T17:33:56Z <p>You can use <a href="http://us2.php.net/manual/en/function.register-shutdown-function.php" rel="nofollow"><code>register_shutdown_function</code></a> to register a function to be called at the end of script execution. You can use this to detect when the script has been terminated and perform a certain set of actions.</p> http://stackoverflow.com/questions/1423294/setting-the-width-of-inline-elements/1423311#1423311 1 Answer by tj111 for Setting the width of inline elements tj111 2009-09-14T19:00:35Z 2009-09-14T19:00:35Z <p>I think it's due to the fact that when you specify position attributes for an "inline" element, the element is no longer being displayed <em>inline</em> and instead is being treated as a block-level element.</p> http://stackoverflow.com/questions/1400854/javascript-function-with-jquery-post-always-returns-undefined/1400889#1400889 1 Answer by tj111 for Javascript Function With JQuery POST Always Returns undefined tj111 2009-09-09T17:07:21Z 2009-09-09T17:07:21Z <p>The problem is that you are returning <code>i</code> outside of the callback function. Basically when you return <code>i</code>, its contents don't exist yet, and won't exist until the server returns the data to your callback function.</p> http://stackoverflow.com/questions/1394408/ajax-length-limitations/1394423#1394423 1 Answer by tj111 for AJAX Length Limitations tj111 2009-09-08T14:45:19Z 2009-09-08T14:45:19Z <p>No, this is no arbitrary byte limit to posts. However sending huge amounts of data up or down from a web application could cause problems with users, especially if they have a capped bandwidth plan. </p> http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/941981#941981 0 Answer by tj111 for Biggest performance improvement you've had with the smallest change? tj111 2009-06-02T21:21:46Z 2009-09-02T23:00:05Z <p>I had a JavaScript based table sorter that would lock up the entire browser from 10 seconds to a minute on each run (pretty large data set). After profiling (and many complaints) I learned that the mootools <code>adopt</code> method was taking up 88% of that time. All it took was the addition of four letters and instantly I got a massive performance improvement (down to about 1.5 seconds per run, much more acceptable).</p> <p>From:</p> <pre><code>this.body.adopt(rows); </code></pre> <p>To:</p> <pre><code>this.body.adopt.pass(rows); </code></pre> http://stackoverflow.com/questions/1363222/using-javascript-with-internet-explorer-how-do-i-clear-memory-without-refreshing/1363235#1363235 1 Answer by tj111 for Using JavaScript with Internet Explorer, how do I clear memory without refreshing the page? tj111 2009-09-01T15:50:31Z 2009-09-01T15:50:31Z <p>Instead of using the delete method, set the variable to <code>null</code>. This seems to be the best way to clear up memory cross-browser (<code>delete</code> is notoriously flaky). It works the same as my other answer <a href="http://stackoverflow.com/questions/520680/ie-and-memory-accumulation-in-javascript/520698#520698">here</a>.</p> <pre><code>alert('deleting'); // &lt;--- memory usage around 500mb x = null; alert('done'); </code></pre> http://stackoverflow.com/questions/1348368/is-it-possible-to-determine-which-php-version-is-most-widely-used-on-paid-webhost/1348395#1348395 3 Answer by tj111 for Is it possible to determine which php version is most widely used on paid webhosting services? tj111 2009-08-28T17:32:01Z 2009-08-28T17:32:01Z <p>Use the <a href="http://php.net/function%5Fexists" rel="nofollow"><code>function_exists</code></a> method to check for which function exists, then use that one. That way you don't have to worry about which version of PHP is being used. It's the same idea as the feature-detection vs browser-detection debate in javascript.</p> http://stackoverflow.com/questions/1348320/best-flash-upload-widget/1348335#1348335 2 Answer by tj111 for Best flash upload widget tj111 2009-08-28T17:17:54Z 2009-08-28T17:17:54Z <p>I know your looking for a flash-based widget, but I can't say enough about the java based <a href="http://jupload.sourceforge.net/" rel="nofollow">jUpload</a>. It is extremely customizable, can chunk-split files to bypass your <code>max_upload_filesize</code> limitations, and can handle multiple files at once. Also has the ability to use the client's native file-picker. Plus it's open-source, which is always plus.</p> http://stackoverflow.com/questions/1348269/nfs-hard-links/1348282#1348282 1 Answer by tj111 for NFS + Hard Links? tj111 2009-08-28T17:01:43Z 2009-08-28T17:01:43Z <p>Hard links cannot span partitions or drives, so I would assume this would also be the case with NFS mounts. </p> <p>Using soft-links instead should work with an NFS mount. I think it should work the same as soft linking between two separate partitions or physical drives.</p> http://stackoverflow.com/questions/1348080/convert-a-positive-number-to-negative-in-c/1348088#1348088 9 Answer by tj111 for Convert a positive number to negative in C# tj111 2009-08-28T16:25:08Z 2009-08-28T16:25:08Z <pre><code>int negInt = 0 - myInt; </code></pre> <p>Or guaranteed to be negative.</p> <pre><code>int negInt = -System.Math.Abs(someInt); </code></pre> http://stackoverflow.com/questions/1717815/i-need-to-learn-c/1717822#1717822 Comment by tj111 on I need to learn C. tj111 2009-11-11T20:26:12Z 2009-11-11T20:26:12Z I have a copy of this book from 1978 (also someone learning C). Would the 1978 version still be relevant? http://stackoverflow.com/questions/1669707/should-requireonce-some-file-php-appear-anywhere-but-the-top-of-the-file/1669748#1669748 Comment by tj111 on Should require_once "some file.php" ; appear anywhere but the top of the file? tj111 2009-11-06T18:57:56Z 2009-11-06T18:57:56Z @Asaph: I agree with what you, and personally wouldn't factor my code in the way I recommended for that very reason. I meant it as a kinda of fallback in case there are <i>serious</i> issues (e.g. performance) with including the file on every call, an issue which I personally have never had. http://stackoverflow.com/questions/1628531/console-not-defined-when-i-specifically-check-for-its-existence/1628555#1628555 Comment by tj111 on Console not defined when I specifically check for its existence tj111 2009-10-27T03:08:28Z 2009-10-27T03:08:28Z Thanks for that. Works great now. http://stackoverflow.com/questions/1628531/console-not-defined-when-i-specifically-check-for-its-existence/1628547#1628547 Comment by tj111 on Console not defined when I specifically check for its existence tj111 2009-10-27T03:05:25Z 2009-10-27T03:05:25Z Thanks. Tried $chk and it still throws the same error. Updated the question. http://stackoverflow.com/questions/1545857/can-someone-explain-partitioning-sharding-splitting-for-me Comment by tj111 on Can someone explain Partitioning / Sharding / Splitting for me? tj111 2009-10-09T20:24:09Z 2009-10-09T20:24:09Z I edited your two questions into one since they are so similar. <a href="http://stackoverflow.com/questions/1545847/what-is-a-good-beginners-guide-for-mysql-partitioning" rel="nofollow" title="what is a good beginners guide for mysql partitioning">stackoverflow.com/questions/1545847/&hellip;</a> http://stackoverflow.com/questions/1545552/how-does-one-round-table-corners-with-js-or-css/1545568#1545568 Comment by tj111 on How does one round TABLE corners with JS or CSS? tj111 2009-10-09T19:33:43Z 2009-10-09T19:33:43Z Did you try it on the <code>&lt;tbody&gt;</code> instead the <code>&lt;table&gt;</code>? http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/634403#634403 Comment by tj111 on What's the most egregious pop culture perversion of programming? tj111 2009-10-08T18:58:29Z 2009-10-08T18:58:29Z Obligatory <a href="http://www.bash.org/?34776" rel="nofollow">bash.org/?34776</a> http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/177813#177813 Comment by tj111 on What's the most egregious pop culture perversion of programming? tj111 2009-10-08T18:52:22Z 2009-10-08T18:52:22Z <a href="http://www.youtube.com/watch?v=mRU1JKHbn7Y" rel="nofollow">youtube.com/watch?v=mRU1JKHbn7Y</a> It's pretty bad. http://stackoverflow.com/questions/398963/what-is-the-worst-web-usability-error-you-have-encountered/1108526#1108526 Comment by tj111 on What is the worst web usability error you have encountered? tj111 2009-10-08T18:07:30Z 2009-10-08T18:07:30Z You easily can (and should) disable this in Firefox. http://stackoverflow.com/questions/1521607/check-double-variable-if-it-contains-an-integer-and-not-floating-point/1521649#1521649 Comment by tj111 on Check double variable if it contains an integer, and not floating point tj111 2009-10-05T18:49:47Z 2009-10-05T18:49:47Z @Alan, good looking out. Changed it. http://stackoverflow.com/questions/1521392/how-to-pass-parameter-to-keyup/1521406#1521406 Comment by tj111 on How to pass parameter to $.keyup() ? tj111 2009-10-05T18:27:10Z 2009-10-05T18:27:10Z Seems like you don't know how to word your questions. http://stackoverflow.com/questions/1521392/how-to-pass-parameter-to-keyup/1521406#1521406 Comment by tj111 on How to pass parameter to $.keyup() ? tj111 2009-10-05T18:11:16Z 2009-10-05T18:11:16Z More like that? I'm still not sure where the number is created, how it exists in the context, etc so I have to make very generalized guesses here. http://stackoverflow.com/questions/1521478/submit-button-clicked-via-javascript-doesnt-submit-in-ie6 Comment by tj111 on Submit button clicked via javascript doesn't "submit" in IE6 tj111 2009-10-05T17:58:55Z 2009-10-05T17:58:55Z Are there any errors in the error console (look for an icon in the bottom left-hand corner of the status bar) after you fire the click event? http://stackoverflow.com/questions/1521392/how-to-pass-parameter-to-keyup/1521406#1521406 Comment by tj111 on How to pass parameter to $.keyup() ? tj111 2009-10-05T17:55:54Z 2009-10-05T17:55:54Z Where is this arbitrary parameter coming from? Can you explain in more detail? http://stackoverflow.com/questions/1511597/why-rawurldecode-doesnt-works Comment by tj111 on Why rawurldecode doesn't works? tj111 2009-10-02T20:28:21Z 2009-10-02T20:28:21Z That string doesn't look like it was URL encoded.