User contagious - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T08:22:32Zhttp://stackoverflow.com/feeds/user/50http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/203/best-filesystem-to-use-for-desktop-linux9Best Filesystem to use for Desktop Linux?contagious2008-08-01T19:45:42Z2009-12-03T17:58:24Z
<p>I'm going to be building a fancy new desktop soon, and I want to experiment with file systems. I know that ext3 is the most common for linux, but what about ext4, or zfs? Are their any pros or cons to certain ones? </p>
<p>I won't be doing anything spectacularly off the wall, just using it as my main box. It is a good possibility that it will double as my web server, though.</p>
http://stackoverflow.com/questions/1817640/php-using-operator-without-an-array/1817650#18176500Answer by contagious for PHP: using => operator without an arraycontagious2009-11-30T03:00:24Z2009-11-30T03:00:24Z<p>well, specifically, the '=>' operator denotes the key, value pair inside an array, so there's really <strong>no reason</strong> to use it outside the array constructor.</p>
<p>that said, it is used inside things like a 'foreach' loop to grab the key and value for each item in an array</p>
<pre><code>foreach ($arr as $key=>$val)
</code></pre>
http://stackoverflow.com/questions/969849/automatic-keystroke-to-stay-logged-in1automatic keystroke to stay logged incontagious2009-06-09T12:40:42Z2009-11-23T22:28:44Z
<p>I have a web based email application that logs me out after 10 minutes of inactivity ("For security reasons"). I would like to write something that either a) imitates a keystroke b) pings an ip or c) some other option every 9 minutes so that I stay logged in. I am on my personal laptop in an office with a door, so I'm not too worried about needing to be logged out.</p>
<p>I have written a small python script to ping an ip and then sleep for 9 minutes, and this works dandy, but I would like something that I could include in my startup applications. I don't know if this means I need to compile something into an exe, or can I add this python script to startup apps?</p>
http://stackoverflow.com/questions/1295717/alternatives-to-adding-dynamically-generated-inline-javascript/1295744#12957440Answer by contagious for Alternatives to adding dynamically generated inline JavaScriptcontagious2009-08-18T18:44:22Z2009-11-19T16:10:01Z<p>I'm not sure I understand the question. Are you trying to add dynamic JavaScript arrays from the server side and inject it into the page? </p>
<p>If so, wouldn't it be easier to use some Ajax and return some JSON?</p>
http://stackoverflow.com/questions/1716901/getting-referer-from-auth-in-cakephp0getting referer from auth in cakePHPcontagious2009-11-11T17:46:49Z2009-11-11T21:29:58Z
<p>I have a link on the main page that is only accessible if they are logged in. However, if this link is clicked, I want to show a custom error message on the login page (a custom 'Message.auth'). </p>
<p>i.e. I want (pseudo code)</p>
<pre><code>if (referer == '/users/reserve'){
Message.auth = 'Please log in to reserve tickets';
}
else {
Message.auth = 'Please log in to access that page';
}
</code></pre>
<p>Where would I put this bit of code?</p>
http://stackoverflow.com/questions/1704933/jwysiwyg-or-jhtmlarea-within-a-jquery-ui-tab/1704949#17049492Answer by contagious for JWYSIWYG or jHtmlArea within a Jquery Ui Tabcontagious2009-11-10T00:42:07Z2009-11-10T00:42:07Z<p>because you're injecting the things you're trying to htmlarea-ize into the DOM after the page loads, you have to put your <code>$("textarea").htmlarea()</code> inside the callback function of the ajax call.</p>
http://stackoverflow.com/questions/1679020/jquery-how-to-prevent-further-animating-to-the-left-when-style-left-0-or-0px/1679080#16790801Answer by contagious for Jquery: How to prevent further animating to the left when style: left == 0 or 0px?contagious2009-11-05T08:20:19Z2009-11-09T03:38:48Z<p>first of all, shouldn't the if statement be INSIDE the click event? I don't see how this would execute at all, or at most once.</p>
<p>also, your first if statement will always be true. what you want is </p>
<pre><code>if ($("#ajax-matched-results").css('left') == '0' || $("#ajax-matched-results").css('left') == '0px')
</code></pre>
<p>also, i'm not 100% sure that the "-=547px" and such will work as expected either. do you want to increment them by that value every time it is clicked, or do you want to set them to that value. I'm going to assume you want to increment it every time.</p>
<p>Here is more or less what you should have:</p>
<pre><code>$(function(){
// this actually eliminates the need for the above if statement
// assuming you only have one thing you're going to animate
var position = 0;
// move object right 547px regardless of current position
$('#scrollRight-results').click(function(){
// animate regardless?
// unless you're setting right side bounds as well
position += 547;
$('id').animate({'left': position}, 'slow');
});
// move object left 547px if not already at 0
$('#scrollLeft-results').click(function(){
if (position != 0){
position -= 547;
$('id').animate({'left': position}, 'slow');
}
});
})
</code></pre>
http://stackoverflow.com/questions/1685936/consistency-in-get/1685951#16859512Answer by contagious for Consistency in $_GETcontagious2009-11-06T07:19:52Z2009-11-06T16:24:43Z<p>you could always just do <code>$_SERVER['REQUEST_URI'].'&yourstuff=whateves';</code> I guess you could wrap that in a function if you really wanted to.</p>
<p>the above includes everything before the file name. if you want ONLY the get requests you can do:</p>
<pre><code>$new_req = "?";
foreach ($_GET as $key=>$val){
$new_req .= "&".$key."=".$val;
}
$new_req .= $your_new_value;
</code></pre>
http://stackoverflow.com/questions/1658844/is-the-regex-a-z-valid-and-if-yes-then-is-it-the-same-as-a-za-z/1658853#16588532Answer by contagious for is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]contagious2009-11-02T00:05:30Z2009-11-02T00:05:30Z<p>i'm not sure about other languages' implementations, but in php you can do </p>
<pre><code>"/[a-z]/i"
</code></pre>
<p>and it will case insensitive. There is probably something similar for other languages.</p>
http://stackoverflow.com/questions/1635556/detect-the-cursor-location/1635595#16355950Answer by contagious for Detect the cursor locationcontagious2009-10-28T07:11:43Z2009-10-28T07:11:43Z<p>you could probably detect if any of the textarea, etc is not filled out/emtpy/unset. if all of them are filled out properly, send the form.</p>
http://stackoverflow.com/questions/1563654/quoting-constants-in-php-this-is-a-myconstant1quoting constants in php: "this is a MY_CONSTANT"contagious2009-10-14T00:16:51Z2009-10-14T01:18:34Z
<p>I want to use a constant in php, but i also want to put it inside double quotes like a variable. Is this at all possible?</p>
<pre><code>define("TESTER", "World!");
echo "Hello, TESTER";
</code></pre>
<p>obviously outputs "Hello, TESTER", but what I really want is something like:</p>
<pre><code>$tester = "World!";
echo "Hello, $tester";
</code></pre>
<p>ouputs "Hello, World!".</p>
http://stackoverflow.com/questions/1563459/how-to-get-all-option-values-in-select-by-jquery/1563465#15634650Answer by contagious for How to get all "option" values in "select" by Jquery?contagious2009-10-13T23:14:30Z2009-10-13T23:14:30Z<p>This will iterate through all the options and give you their values. then you can either append them to an array, or manipulate them individually.</p>
<pre><code>$('#group_select option').each(function(){
$(this).val()
}
</code></pre>
http://stackoverflow.com/questions/1556624/problem-making-request-to-server-with-jquery/1556649#15566490Answer by contagious for Problem making request to server with Jquerycontagious2009-10-12T20:19:28Z2009-10-12T20:19:28Z<p>it's because even though it's not TECHNICALLY cross domain, javascript thinks it is, and won't let you do it.</p>
http://stackoverflow.com/questions/1556597/using-jquery-fancybox-or-lightbox-to-display-a-contact-form/1556614#15566141Answer by contagious for Using jQuery Fancybox or Lightbox to display a contact formcontagious2009-10-12T20:14:07Z2009-10-12T20:14:07Z<p>you'll probably want to look into <a href="http://jqueryui.com/demos/dialog/" rel="nofollow">jquery-ui dialog</a>. it's highly customizable and can be made to work exactly like lightbox/fancybox and supports everything you would need for a contact form from a regular link.</p>
<p>there is even an <a href="http://jqueryui.com/demos/dialog/#modal-form" rel="nofollow">example with a form</a>. </p>
http://stackoverflow.com/questions/1555913/what-causes-a-query-string-when-requesting-jquery-e-g-jquery-1-3-2-min-js12/1555932#15559321Answer by contagious for What causes a query string when requesting jQuery? e.g. /jquery-1.3.2.min.js?_=12553...contagious2009-10-12T17:40:49Z2009-10-12T17:40:49Z<p>looks like the number after is a unix time. i don't know why this would be automatically appended tho.</p>
<p>possibly some way of getting around browser cache? forcing a reload of the js basically?</p>
http://stackoverflow.com/questions/1533199/only-select-a-single-element-that-is-inside-the-same-element-jquery-selectors/1533256#15332560Answer by contagious for Only select a single element that is inside the same element | jQuery selectorscontagious2009-10-07T18:02:10Z2009-10-07T18:02:10Z<p>you can use jQuery's $.closest(".showMe") function.</p>
http://stackoverflow.com/questions/1501769/php-dont-run-code-on-refresh/1501781#15017811Answer by contagious for PHP Don't run code on refreshcontagious2009-10-01T03:39:25Z2009-10-01T03:39:25Z<p>if they counter is being incremented only when the user logs in, only increment it in the portion of the code that logs them in (sets cookies, session vars, etc), no need to worry about page reloads.</p>
<p>otherwise there is no way to detect a new 'visit' by a user vs. a page reload. you could set a time frame in which they could refresh the page and not have the counter incremented.</p>
http://stackoverflow.com/questions/1493719/ie6-jquery-troubleshooting-tips-requested/1493822#14938221Answer by contagious for IE6 JQuery Troubleshooting tips requestedcontagious2009-09-29T17:07:16Z2009-09-29T17:07:16Z<p>a) always be sure that any console.log() calls are commented out/removed. this has been the bane of my existence for cross browser "it-works-here-but-not-there" issues.</p>
<p>b) IE6 is funky with ajax. sometimes it doesn't like the $.post() call, but will allow $.ajax("post"....) call.</p>
<p>c) try firebug lite to help debugging in IE. although, the developer's toolbar helps a bit.</p>
<p>d) ajax calls will not work outside your domain. i.e. if you are on example.com and you are trying to call to otherdomain.com, it will silently fail. i'm not 100% sure about subdomains.</p>
http://stackoverflow.com/questions/1488237/php-mysql-insert-return-value-with-one-query-execution/1488252#14882522Answer by contagious for PHP MySQL INSERT return value with one query executioncontagious2009-09-28T17:16:32Z2009-09-28T17:16:32Z<p>INSERT just returns true or false. to actually return something useful, you will need a SELECT or similar query. there is no result to fetch with INSERT.</p>
http://stackoverflow.com/questions/1488162/jquery-refresh-div-after-another-jquery-action/1488213#14882130Answer by contagious for jQuery: Refresh div after another jquery action??contagious2009-09-28T17:07:56Z2009-09-28T17:07:56Z<p>almost all jquery functions have the ability to use callback functions. these are called whenever the original action is finished executing. so this can be used with any function, not just ajax.</p>
http://stackoverflow.com/questions/1479875/php-function-that-returns-the-names-of-all-columns-in-a-certain-table-as-an-arra/1479895#14798954Answer by contagious for PHP function that returns the names of all columns in a certain table, as an arraycontagious2009-09-25T22:57:56Z2009-09-25T22:57:56Z<p>you could also do </p>
<pre><code>$query = mysql_query("SELECT * FROM `table`");
$result = mysql_fetch_assoc($query);
$keys = array_keys($result);
</code></pre>
<p><code>$keys</code> will now contain all of the column names because they were the array keys in the <code>$result</code> array.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages33Coding in Other (Spoken) Languagescontagious2008-10-14T20:45:17Z2009-09-25T12:20:55Z
<p>Something i've always wondered, and I can't find any mention of it anywhere online. When a shop from, say Japan, writes code, would I be able to read it in english? Or do languages, like C, php, anything, have Japanese translations that they write?</p>
<p>I guess what i'm asking is does every single coder in the world know enough english to use the exact same reserved words I do?</p>
<p>Would this code:</p>
<pre><code>If (i < size){
switch
case 1:
print "hi there"
default:
print "no, thank you"
} else {
print "yes, thank you"
}
</code></pre>
<p>display the exact same as I'm seeing it right now in english, or would some other non-english-speaking person see the words "if", "switch", "case", "default", "print", and "else" in their native language?</p>
<p>EDIT - yes, this is serious. I didn't know if different localiztions of a language have different keywords. or if there are even different localizations at all.</p>
http://stackoverflow.com/questions/1467581/how-to-generate-unique-id-in-mysql/1467593#1467593-2Answer by contagious for how to generate unique id in MySQL ?contagious2009-09-23T17:53:17Z2009-09-23T17:53:17Z<p>is it not possible to just use an auto_increment in a db table?</p>
http://stackoverflow.com/questions/1409225/changing-a-css-class-itself-from-javascript/1409267#14092670Answer by contagious for Changing a CSS class itself from Javascriptcontagious2009-09-11T06:20:15Z2009-09-11T06:20:15Z<p>your best bet for easy cross-browser compatibility is to use a library like <a href="http://jquery.com/" rel="nofollow">jQuery</a>. With jQuery you can simply do:</p>
<pre><code><script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="javascript/text">
$(function(){
$('.className').click(function(){
$(this).css("property", "setting");
})
})
</script>
</code></pre>
http://stackoverflow.com/questions/1385689/problem-with-ie7-link-over-jquery/1386006#13860060Answer by contagious for Problem with IE7 link over jquerycontagious2009-09-06T16:05:43Z2009-09-06T16:05:43Z<p>IE gets funky with z-indexes if you don't put a 'position:' property in there.</p>
http://stackoverflow.com/questions/1376207/two-divs-50-each-make-middle-draggable-to-make-bigger-or-smaller/1376299#13762990Answer by contagious for Two divs 50% each. Make middle draggable to make bigger or smallercontagious2009-09-03T22:26:10Z2009-09-03T22:26:10Z<p>Insead of doing css percentages, I would find the width of the window, split it in half (minus bar width), and set pixel widths. this makes it easier to change when the bar is moved.</p>
http://stackoverflow.com/questions/1348382/using-jquery-to-only-show-one-of-a-pair-of-elements/1348396#13483960Answer by contagious for Using jQuery to only show one of a pair of elementscontagious2009-08-28T17:32:16Z2009-08-28T17:32:16Z<p>I would organize your html so that you could use siblings() and toggle().</p>
http://stackoverflow.com/questions/1320334/javascript-onclick-event-requiring-two-clicks-b-c-of-onmouseover-handler/1320342#13203420Answer by contagious for Javascript: onClick event requiring two clicks b/c of onMouseOver handlercontagious2009-08-24T03:21:50Z2009-08-24T03:21:50Z<p>try having the onMouseOver event return true.</p>
http://stackoverflow.com/questions/1308720/javascript-wont-parse-gmt-date-time-format/1308772#13087720Answer by contagious for JavaScript won't parse GMT Date/Time Formatcontagious2009-08-20T20:58:38Z2009-08-20T20:58:38Z<p>it must be a string that is recognizable by the parse() function. </p>
<p><a href="http://www.devguru.com/technologies/javascript/10585.asp" rel="nofollow">http://www.devguru.com/technologies/javascript/10585.asp</a> look at the dateString param</p>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/3779#37791Answer by contagious for What good technology podcasts are out there?contagious2008-08-06T18:07:16Z2009-08-20T19:49:09Z<p>This isn't necessarily something you can pop on your iPod and just chill to, but <a href="http://diggnation.com" rel="nofollow">Diggnation</a> is a hillarious video podcast with Kevin Rose and Alex Albrecht. </p>
<p>They talk about "some of the top stories on the user-submitted news site digg.com". This doesn't really have much in the way of software development (though sometimes a story pops up with that), but is great for entertainment value.</p>
http://stackoverflow.com/questions/1843756/easiest-way-to-create-a-confirmation-message-with-jquery-javascriptComment by contagious on Easiest way to create a confirmation message with jQuery/JavaScript?contagious2009-12-04T00:52:42Z2009-12-04T00:52:42Zdid you put it in a $(document).ready(){}?http://stackoverflow.com/questions/1745199/php-http-handlingComment by contagious on PHP http handlingcontagious2009-11-16T22:16:55Z2009-11-16T22:16:55Z...just don't echo/return anything?http://stackoverflow.com/questions/1716901/getting-referer-from-auth-in-cakephp/1718218#1718218Comment by contagious on getting referer from auth in cakePHPcontagious2009-11-14T21:05:40Z2009-11-14T21:05:40Zalso, i had some strange issues with /tmp/cache when using the Session->write. It's easier to use <code>setflash("", 'default', array(), 'auth')</code> to do this.http://stackoverflow.com/questions/1716901/getting-referer-from-auth-in-cakephp/1718218#1718218Comment by contagious on getting referer from auth in cakePHPcontagious2009-11-14T20:40:34Z2009-11-14T20:40:34Zi actually had to use a preg_match on the redirect, because there is usually stuff after the reserve, but that was the key. thanks.http://stackoverflow.com/questions/1701942/jquery-ui-dialog-opens-only-onceComment by contagious on jquery ui dialog opens only oncecontagious2009-11-09T15:57:56Z2009-11-09T15:57:56Zsome code would be awesome. generally, don't forget to make sure that you're not causing any errors when/while closing.http://stackoverflow.com/questions/1679020/jquery-how-to-prevent-further-animating-to-the-left-when-style-left-0-or-0px/1679080#1679080Comment by contagious on Jquery: How to prevent further animating to the left when style: left == 0 or 0px?contagious2009-11-09T11:07:24Z2009-11-09T11:07:24Zyup, you'd just put it in the scrollRight-results part.http://stackoverflow.com/questions/1699117/access-variable-from-scope-of-another-functionComment by contagious on Access variable from scope of another function?contagious2009-11-09T04:43:51Z2009-11-09T04:43:51Zshort answer: you don't.http://stackoverflow.com/questions/1679020/jquery-how-to-prevent-further-animating-to-the-left-when-style-left-0-or-0px/1679080#1679080Comment by contagious on Jquery: How to prevent further animating to the left when style: left == 0 or 0px?contagious2009-11-09T03:40:01Z2009-11-09T03:40:01Z1) i forgot to close the click() parens. 2) not sure if you remembered the $() at the begining, (replaces $(document).ready()). You can now copy/paste this code and it will work, i've tested it.http://stackoverflow.com/questions/1685936/consistency-in-get/1685951#1685951Comment by contagious on Consistency in $_GETcontagious2009-11-06T16:25:08Z2009-11-06T16:25:08Zsee the edit abovehttp://stackoverflow.com/questions/1679020/jquery-how-to-prevent-further-animating-to-the-left-when-style-left-0-or-0px/1679080#1679080Comment by contagious on Jquery: How to prevent further animating to the left when style: left == 0 or 0px?contagious2009-11-06T01:15:31Z2009-11-06T01:15:31Zterribly sorry. there should not be a 'px' in the animate statement. yes, 'position' is the name of the variable that contains the position of the div. did you make sure to replace $('id') with your actual div id?http://stackoverflow.com/questions/1542406/help-with-a-mysql-queryComment by contagious on Help with a MySQL query contagious2009-10-09T07:54:49Z2009-10-09T07:54:49Zare you sure there are no typos in this? there are more than 4 errors that could be just typos... i.e. '-' instead of '='.http://stackoverflow.com/questions/1507524/suppress-anchor-tag-a-href-when-using-jquery/1507528#1507528Comment by contagious on Suppress anchor tag <a> href when using jquerycontagious2009-10-02T02:47:01Z2009-10-02T02:47:01Zfor the first one, shouldn't there be a var passed into the function called 'e'?http://stackoverflow.com/questions/1501763/using-md5-to-generate-an-encryption-key-from-passwordComment by contagious on Using MD5 to generate an encryption key from password?contagious2009-10-01T03:40:56Z2009-10-01T03:40:56Zsalt the passwordhttp://stackoverflow.com/questions/1475322/contradictory-information-about-mysql-result-resource-in-phpComment by contagious on Contradictory information about MySQL result resource in PHPcontagious2009-09-25T03:48:40Z2009-09-25T03:48:40Zcan you give us the query?http://stackoverflow.com/questions/1469315/ajax-response-not-working-in-ff/1469364#1469364Comment by contagious on AJAX Response not working in FFcontagious2009-09-24T01:19:19Z2009-09-24T01:19:19Zajax is a built in functionality OF jQuery. that's what the .load() command is.