<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">	<channel>		<title>All Blog Comments</title>		<language>en-us</language>		<link>http://www.onlineaspect.com</link>		<description>All comments from Online Aspect</description><item>
<author>Josh Fraser</author><title>Josh Fraser - Backwards compatible window.postMessage()</title><link>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment259709386</link><description>you&amp;#39;re welcome </description><pubDate>Mon, 9 Jan 2012 18:55:04 +0000</pubDate><guid>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment259709386</guid></item><item>
<author>faeb187</author><title>faeb187 - Backwards compatible window.postMessage()</title><link>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment259703256</link><description>you saved my day!! great script! thx a lot! </description><pubDate>Mon, 9 Jan 2012 18:45:46 +0000</pubDate><guid>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment259703256</guid></item><item>
<author>Daniel Von Fange</author><title>Daniel Von Fange - Backwards compatible window.postMessage()</title><link>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment249243361</link><description>Looks like Twitter and Disqus both use the easyxdm library - &lt;a href=&quot;http://easyxdm.net/&quot; target=&quot;_blank&quot;&gt;http://easyxdm.net/&lt;/a&gt;  (I was needing to do this, and google sent me to your site first! Small world...) </description><pubDate>Wed, 28 Dec 2011 13:02:33 +0000</pubDate><guid>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment249243361</guid></item><item>
<author>dmjones</author><title>dmjones - How to use variable variables in PHP</title><link>http://www.onlineaspect.com/2009/05/31/how-to-use-variable-variables-in-php/#IDComment242733478</link><description>The alternative was suggested and works well  $this-&amp;gt;{&amp;#039;_&amp;#039; . $key} = $val;   </description><pubDate>Tue, 20 Dec 2011 16:45:57 +0000</pubDate><guid>http://www.onlineaspect.com/2009/05/31/how-to-use-variable-variables-in-php/#IDComment242733478</guid></item><item>
<author>dmjones</author><title>dmjones - How to use variable variables in PHP</title><link>http://www.onlineaspect.com/2009/05/31/how-to-use-variable-variables-in-php/#IDComment242385066</link><description>I wanted to use this avenue in order to populate private variables of a class using an array as input.  However, the values don&amp;#039;t seem to stay or aren&amp;#039;t even assigned to the private vars.  Any ideas?  class aClass {     private $_fruitA;     private $_fruitB;     private $_fruitC;      public function set($inputArray)     {         foreach ($inputArray as $key=&amp;gt;$val)         {             $var = &amp;quot;this-&amp;gt;_{$key}&amp;quot;;             $$var = $val;              //prints nothing             print &amp;quot;this-&amp;gt;_$key: &amp;quot;.$this-&amp;gt;_fruit.&amp;quot;\n&amp;quot;;              //prints the $val assigned in $inputArray             print &amp;quot;\$\$var: &amp;quot;.$$var.&amp;quot;\n\n&amp;quot;;            }     } }  $fruit = new aClass(); $fruit-&amp;gt;set(array(&amp;#039;fruitA&amp;#039; =&amp;gt; &amp;#039;apple&amp;#039;, &amp;#039;fruitB&amp;#039; =&amp;gt; &amp;#039;banana&amp;#039;)); </description><pubDate>Tue, 20 Dec 2011 06:35:30 +0000</pubDate><guid>http://www.onlineaspect.com/2009/05/31/how-to-use-variable-variables-in-php/#IDComment242385066</guid></item><item>
<author>Josh Fraser</author><title>Josh Fraser - How to use curl_multi() without blocking</title><link>http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/#IDComment239554688</link><description>I agree that would be a good feature to add.  Glad you got it working. </description><pubDate>Fri, 16 Dec 2011 23:52:04 +0000</pubDate><guid>http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/#IDComment239554688</guid></item><item>
<author>Michael</author><title>Michael - How to use curl_multi() without blocking</title><link>http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/#IDComment239551771</link><description>Ok. I got it implemented using a hash tag to pass the monitor id and then getting this value from the $request ($info[&amp;#039;url&amp;#039;] doesn&amp;#039;t retain the hash tag on the URL for whatever reason). This way, by using a hash tag, I figure there is no possibility that it&amp;#039;ll ever change the URL that is checked. Still it&amp;#039;d be cool, if RollingCurl had a way to pass a value without affecting the URL. But this is working for now. Thanks for sharing RC! </description><pubDate>Fri, 16 Dec 2011 23:47:48 +0000</pubDate><guid>http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/#IDComment239551771</guid></item><item>
<author>Jill</author><title>Jill - Why you should never use a CAPTCHA</title><link>http://www.onlineaspect.com/2010/07/02/why-you-should-never-use-a-captcha/#IDComment237458233</link><description>You only list examples of HORRIBLE, poorly designed/implemented captchas and say &amp;quot;see how bad they are&amp;quot;.   </description><pubDate>Wed, 14 Dec 2011 15:51:41 +0000</pubDate><guid>http://www.onlineaspect.com/2010/07/02/why-you-should-never-use-a-captcha/#IDComment237458233</guid></item><item>
<author>JRO</author><title>JRO - Reading GET variables with JavaScript</title><link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/#IDComment237270368</link><description>This works better:       function getQueryVariable(variable) {         var query = window.location.search.substring(1);         var vars = query.split(&amp;quot;&amp;amp;&amp;quot;);         for (var i = 0; i &amp;lt; vars.length; i++) {             var pair = vars[i].split(&amp;quot;=&amp;quot;);             if (pair[0] == variable) {                 return unescape(pair[1]);             }         }         return false;     }  </description><pubDate>Wed, 14 Dec 2011 06:00:35 +0000</pubDate><guid>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/#IDComment237270368</guid></item><item>
<author>jerel</author><title>jerel - Reading GET variables with JavaScript</title><link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/#IDComment237078839</link><description>not to lurk, been trying to get this to do anything for hours now. Before i grind my teeth into dust, could someone be so kind as to show any of this working in context?  say like &lt;a href=&quot;http://www.whatever.com/index.php?var1=hi&quot; target=&quot;_blank&quot;&gt;www.whatever.com/index.php?var1=hi&lt;/a&gt; is the url then the page w the script outputs var1 and prints hi?  I know php well, new to js, getting a tad crazy over here... </description><pubDate>Tue, 13 Dec 2011 21:34:11 +0000</pubDate><guid>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/#IDComment237078839</guid></item><item>
<author>Josh Fraser</author><title>Josh Fraser - How to use curl_multi() without blocking</title><link>http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/#IDComment237071318</link><description>Sure, an easy way to do this is to add a GET variable to the end of the URL you are fetching (ie. ?mysql_id=42) and then parse out that ID when the request completes from the CURL info array. </description><pubDate>Tue, 13 Dec 2011 21:13:20 +0000</pubDate><guid>http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/#IDComment237071318</guid></item><item>
<author>Michael</author><title>Michael - How to use curl_multi() without blocking</title><link>http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/#IDComment237053106</link><description>Hey Josh,    Is it possible to pass a value (e.g. $row[&amp;#039;id&amp;#039;]) into RollingCurl so that it&amp;#039;s available for use within the callback function?  foreach ($rows as $row) {     // Add each request to the RollingCurl object.     $request = new RollingCurlRequest($row[&amp;#039;url&amp;#039;]);     $rc-&amp;gt;add($request); }  (Basically, it&amp;#039;s the MySQL primary key for each row ($row[&amp;#039;id&amp;#039;]) that I&amp;#039;m trying to pass and make available within the callback function.)  Thanks.  </description><pubDate>Tue, 13 Dec 2011 20:26:40 +0000</pubDate><guid>http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/#IDComment237053106</guid></item><item>
<author>Steven</author><title>Steven - Backwards compatible window.postMessage()</title><link>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment230177640</link><description>Hope so too. I have a workaround now (which has nothing to do with the script, but makes me not have to use it in these cases). thx anyway for this great share and for the quick reply! </description><pubDate>Wed, 30 Nov 2011 14:02:37 +0000</pubDate><guid>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment230177640</guid></item><item>
<author>Josh Fraser</author><title>Josh Fraser - Backwards compatible window.postMessage()</title><link>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment230037086</link><description>I&amp;#039;ve had multiple reports of issues w/ those 2 browsers (see the comments above).  Hopefully I&amp;#039;ll find the time to dig into this more soon.   </description><pubDate>Wed, 30 Nov 2011 10:35:58 +0000</pubDate><guid>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment230037086</guid></item><item>
<author>Steven</author><title>Steven - Backwards compatible window.postMessage()</title><link>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment230032547</link><description>Your script does not seem to work when running IE8 or 7. Hoped your script would give a solution as I was having trouble with this earlyer myself..  In my own case It seems like when trying to access the parentwindow by doing parent.window.postMessage &amp;gt; IE8 will throw an access denied error which I can catch and act upon appropriately. However when trying to send a message to the child window inside an iframe by using document.getElementById(&amp;quot;myIframe&amp;quot;).contentWindow.postMessage &amp;gt; this will throw no error, though nothing will hapen neither so I am left with an unhandled scenario. Didn&amp;#039;t go indepth with your script but a quick test of your demo shows that showing the message from within the iframe works as with my own scenario and the message from the main page to the iframe does not work.   </description><pubDate>Wed, 30 Nov 2011 10:28:35 +0000</pubDate><guid>http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/#IDComment230032547</guid></item><item>
<author>Kieran</author><title>Kieran - Auto detect a time zone with JavaScript</title><link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#IDComment225025891</link><description>because queensland doesn&amp;#039;t observe daylight savings. This is because the cows will become confused about milking time and also because the curtains will fade quicker... True story... &lt;a href=&quot;http://whirlpool.net.au/wiki/dlsinqld&quot; target=&quot;_blank&quot;&gt;http://whirlpool.net.au/wiki/dlsinqld&lt;/a&gt;  </description><pubDate>Mon, 21 Nov 2011 05:42:09 +0000</pubDate><guid>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#IDComment225025891</guid></item><item>
<author>Vale45</author><title>Vale45 - Auto detect a time zone with JavaScript</title><link>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#IDComment223671027</link><description>Really good and useful info, good articles. &lt;a href=&quot;http:\/\/tricyclicantidepressantsinfo.com&quot; target=&quot;_blank&quot;&gt;tricyclic antidepressants&lt;/a&gt; </description><pubDate>Fri, 18 Nov 2011 02:34:37 +0000</pubDate><guid>http://www.onlineaspect.com/2007/06/08/auto-detect-a-time-zone-with-javascript/#IDComment223671027</guid></item><item>
<author>Rhyscurrency</author><title>Rhyscurrency - Google Reader export to bookmarks.htm</title><link>http://www.onlineaspect.com/2011/11/03/google-reader-export-to-bookmarks-htm/#IDComment221240959</link><description>The export tool in not under file in Firefox 4.0. It is controlled from the bookmarks menu under &amp;quot;show all bookmarks&amp;quot;. Since your post is coming up in searches toward the top, you may want to revise it.  </description><pubDate>Sun, 13 Nov 2011 07:52:43 +0000</pubDate><guid>http://www.onlineaspect.com/2011/11/03/google-reader-export-to-bookmarks-htm/#IDComment221240959</guid></item><item>
<author>Ray</author><title>Ray - Why you should never use a CAPTCHA</title><link>http://www.onlineaspect.com/2010/07/02/why-you-should-never-use-a-captcha/#IDComment220823386</link><description>I tell people all the time that all these captcha things were broken a long time ago. For some reason they don&amp;#039;t listen and add some form of captch to their site anyway. I do like the hidden field suggestion that is definitely something to think about. The thing that bugs me the most about them is a lot of them are almost impossible to figure out what letters they are. I had one the other day at a social bookmarking site, and there was no way a real person could have figured out what it said. Anyway great article. </description><pubDate>Sat, 12 Nov 2011 09:56:58 +0000</pubDate><guid>http://www.onlineaspect.com/2010/07/02/why-you-should-never-use-a-captcha/#IDComment220823386</guid></item><item>
<author>@jstreebin</author><title>@jstreebin - Google Reader export to bookmarks.htm</title><link>http://www.onlineaspect.com/2011/11/03/google-reader-export-to-bookmarks-htm/#IDComment217988020</link><description>Anyone else find that it only captured a portion of them? In my case only back to July... </description><pubDate>Mon, 7 Nov 2011 04:54:23 +0000</pubDate><guid>http://www.onlineaspect.com/2011/11/03/google-reader-export-to-bookmarks-htm/#IDComment217988020</guid></item>	</channel></rss>
