<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Aknosis.com</title>
	<atom:link href="http://www.aknosis.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aknosis.com</link>
	<description>Once you go Ak, you don&#039;t go back.</description>
	<lastBuildDate>Fri, 18 Dec 2009 05:10:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Automating MySQL Database Backups on the Command Line via mysqldump by Aknosis</title>
		<link>http://www.aknosis.com/2009/10/25/automating-mysql-database-backups-on-the-command-line-via-mysqldump/comment-page-1/#comment-37</link>
		<dc:creator>Aknosis</dc:creator>
		<pubDate>Fri, 18 Dec 2009 05:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/?p=278#comment-37</guid>
		<description>Good to hear.

Sorry about the syntax highlighting, could not get it to work on this post!</description>
		<content:encoded><![CDATA[<p>Good to hear.</p>
<p>Sorry about the syntax highlighting, could not get it to work on this post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating MySQL Database Backups on the Command Line via mysqldump by brittany</title>
		<link>http://www.aknosis.com/2009/10/25/automating-mysql-database-backups-on-the-command-line-via-mysqldump/comment-page-1/#comment-36</link>
		<dc:creator>brittany</dc:creator>
		<pubDate>Thu, 17 Dec 2009 18:52:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/?p=278#comment-36</guid>
		<description>Thanks! Short, sweet, and helpful.</description>
		<content:encoded><![CDATA[<p>Thanks! Short, sweet, and helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on More jQuery Fun &#8211; Auto Populating a Select Box by Aknosis</title>
		<link>http://www.aknosis.com/2009/10/15/more-jquery-fun-auto-populating-a-select-box/comment-page-1/#comment-35</link>
		<dc:creator>Aknosis</dc:creator>
		<pubDate>Wed, 16 Dec 2009 07:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/?p=185#comment-35</guid>
		<description>Thanks.

It wouldn&#039;t be to difficult to do. 

1. Setup your function that adds the options
2. Set the interval to call that function every 3 seconds

There is no real way to save the options other than a cookie, you could also look into some sort of hash magic but that becomes difficult to work cross browser (see jquery history plugin). 

I also can&#039;t seemt to find an easy way to serialize the options into text for storage in a cookie, so you probably would want to append to your cookie as you add each item. You will want to use common functions to turn your Objects in JSON and vice versca, (search for toJson).

So you really want something like this:
&lt;pre class=&quot;brush: jscript;&quot;&gt;
function updateOptions(){
   //This would be your dynamic call, probably ajax request
   var newOption = new Option(&#039;name&#039;, &#039;value&#039;);
   var s = $(&#039;#select&#039;)[0];
   var l = s.length;
   s[l] = newOption;
   //some predefined method to get the cookie
   //and convert it back into an object
   var cookie = eval(&#039;(&#039;+getCookie(&#039;optionSvr&#039;)+&#039;)&#039;);
  //add new option
   cookie.push(newOption);
   setCookie(&#039;optionSvr&#039;,toJSON(cookie));
}
//Run every 3 seconds
setInterval(&#039;updateOptions()&#039;,3000);
&lt;/pre&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function updateOptions(){
   var x = new Date().getTime();
   var newOption = new Option(x, x);
   var s = $(&#039;#selectCmt&#039;)[0];
   var l = s.length;
   s[l] = newOption;
   }
&lt;/script&gt;
Example (minus the cookie stuff)
&lt;input class=&quot;button&quot; value=&quot;test&quot; type=&quot;button&quot; onclick=&quot;setInterval(&#039;updateOptions()&#039;,3000);&quot; /&gt;
&lt;select id=&quot;selectCmt&quot;&gt;&lt;/select&gt;</description>
		<content:encoded><![CDATA[<p>Thanks.</p>
<p>It wouldn&#8217;t be to difficult to do. </p>
<p>1. Setup your function that adds the options<br />
2. Set the interval to call that function every 3 seconds</p>
<p>There is no real way to save the options other than a cookie, you could also look into some sort of hash magic but that becomes difficult to work cross browser (see jquery history plugin). </p>
<p>I also can&#8217;t seemt to find an easy way to serialize the options into text for storage in a cookie, so you probably would want to append to your cookie as you add each item. You will want to use common functions to turn your Objects in JSON and vice versca, (search for toJson).</p>
<p>So you really want something like this:</p>
<pre class="brush: jscript;">
function updateOptions(){
   //This would be your dynamic call, probably ajax request
   var newOption = new Option('name', 'value');
   var s = $('#select')[0];
   var l = s.length;
   s[l] = newOption;
   //some predefined method to get the cookie
   //and convert it back into an object
   var cookie = eval('('+getCookie('optionSvr')+')');
  //add new option
   cookie.push(newOption);
   setCookie('optionSvr',toJSON(cookie));
}
//Run every 3 seconds
setInterval('updateOptions()',3000);
</pre>
<p><script type="text/javascript">
function updateOptions(){
   var x = new Date().getTime();
   var newOption = new Option(x, x);
   var s = $('#selectCmt')[0];
   var l = s.length;
   s[l] = newOption;
   }
</script><br />
Example (minus the cookie stuff)</p>
<input class="button" value="test" type="button" onclick="setInterval('updateOptions()',3000);" />
<select id="selectCmt"></select>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on More jQuery Fun &#8211; Auto Populating a Select Box by zkilz</title>
		<link>http://www.aknosis.com/2009/10/15/more-jquery-fun-auto-populating-a-select-box/comment-page-1/#comment-34</link>
		<dc:creator>zkilz</dc:creator>
		<pubDate>Tue, 15 Dec 2009 15:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/?p=185#comment-34</guid>
		<description>Hi! 
Nice website. Im trying to create a dynamically select form that adds options from different variables automatically every 3 second. This will constantly go in a loop.

Is this something i can use to do that?
Do you know if there is any way to save the options so it doesn&#039;t go blank on reload of the page?

Thank you any answer.</description>
		<content:encoded><![CDATA[<p>Hi!<br />
Nice website. Im trying to create a dynamically select form that adds options from different variables automatically every 3 second. This will constantly go in a loop.</p>
<p>Is this something i can use to do that?<br />
Do you know if there is any way to save the options so it doesn&#8217;t go blank on reload of the page?</p>
<p>Thank you any answer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on More jQuery Fun &#8211; Auto Populating a Select Box by Aknosis</title>
		<link>http://www.aknosis.com/2009/10/15/more-jquery-fun-auto-populating-a-select-box/comment-page-1/#comment-33</link>
		<dc:creator>Aknosis</dc:creator>
		<pubDate>Sat, 31 Oct 2009 06:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/?p=185#comment-33</guid>
		<description>To sidestep my $(selector)[0].length = 0 to empty the select you can also do $(selector).empty();</description>
		<content:encoded><![CDATA[<p>To sidestep my $(selector)[0].length = 0 to empty the select you can also do $(selector).empty();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing Plugin Syntax Highlter Evolved by Aknosis</title>
		<link>http://www.aknosis.com/2009/08/12/testing-plugin-syntax-highlter-evolved/comment-page-1/#comment-32</link>
		<dc:creator>Aknosis</dc:creator>
		<pubDate>Thu, 13 Aug 2009 05:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/2009/08/12/testing-plugin-syntax-highlter-evolved/#comment-32</guid>
		<description>I like it!</description>
		<content:encoded><![CDATA[<p>I like it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zero user interaction CAPTCHA &#8211; (lamecaptcha) by Aknosis</title>
		<link>http://www.aknosis.com/2009/04/17/zero-user-interaction-captcha/comment-page-1/#comment-31</link>
		<dc:creator>Aknosis</dc:creator>
		<pubDate>Sun, 26 Apr 2009 05:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/?p=78#comment-31</guid>
		<description>Here is an example of what gets submit, (I log all failures of the form and a make a note if the lamecaptcha was the cause)


[24-Apr-2009 14:02:19] Lame captcha failed [ac1]  != &#039;&#039; &#124;&#124; [ac2] dpDlxhbCPs != &#039;&#039;
[24-Apr-2009 14:02:19] array(16) {
  [&quot;email&quot;]=&gt;
  string(17) &quot;cldcwz@hhaahk.com&quot;
  [&quot;cEmail&quot;]=&gt;
  string(17) &quot;cldcwz@hhaahk.com&quot;
  [&quot;serviceNeeds&quot;]=&gt;
  string(209) &quot;h4nOVk  &lt;a href=&quot;http://pijyaseimmas.com/&quot;&gt;pijyaseimmas&lt;/a&gt;, [url=http://mkpzbdhititq.com/]mkpzbdhititq[/url], [link=http://vzgqzvmoddqh.com/]vzgqzvmoddqh[/link], http://hhttrqzagfzq.com/&quot;
  [&quot;ac1&quot;]=&gt;
  string(0) &quot;&quot;
  [&quot;ac2&quot;]=&gt;
  string(10) &quot;dpDlxhbCPs&quot;
}

What is worse is those links are all bad, they don&#039;t go to anywhere.. What I suspect is happening is that the email address is real and they are testing to see if they can send emails via this form with those links, this way they know they can put real emails and start spamming with my form... Not today bitches.</description>
		<content:encoded><![CDATA[<p>Here is an example of what gets submit, (I log all failures of the form and a make a note if the lamecaptcha was the cause)</p>
<p>[24-Apr-2009 14:02:19] Lame captcha failed [ac1]  != &#8221; || [ac2] dpDlxhbCPs != &#8221;<br />
[24-Apr-2009 14:02:19] array(16) {<br />
  ["email"]=><br />
  string(17) &#8220;cldcwz@hhaahk.com&#8221;<br />
  ["cEmail"]=><br />
  string(17) &#8220;cldcwz@hhaahk.com&#8221;<br />
  ["serviceNeeds"]=><br />
  string(209) &#8220;h4nOVk  &lt;a href=&quot;http://pijyaseimmas.com/&quot;&gt;pijyaseimmas&lt;/a&gt;, [url=http://mkpzbdhititq.com/]mkpzbdhititq[/url], [link=http://vzgqzvmoddqh.com/]vzgqzvmoddqh[/link], <a href="http://hhttrqzagfzq.com/" rel="nofollow">http://hhttrqzagfzq.com/</a>&#8221;<br />
  ["ac1"]=><br />
  string(0) &#8220;&#8221;<br />
  ["ac2"]=><br />
  string(10) &#8220;dpDlxhbCPs&#8221;<br />
}</p>
<p>What is worse is those links are all bad, they don&#8217;t go to anywhere.. What I suspect is happening is that the email address is real and they are testing to see if they can send emails via this form with those links, this way they know they can put real emails and start spamming with my form&#8230; Not today bitches.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Domain Name Search Engine Registration Mail Scam by AJ</title>
		<link>http://www.aknosis.com/2009/01/27/domain-name-search-engine-registration-mail-scam/comment-page-1/#comment-19</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Thu, 05 Mar 2009 21:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/?p=52#comment-19</guid>
		<description>As soon as I opened this I was suspicious.  And after reading through it I could tell it was not legit.  It&#039;s nice to have someone else confirm my thoughts...this is most definitely a SCAM!!!</description>
		<content:encoded><![CDATA[<p>As soon as I opened this I was suspicious.  And after reading through it I could tell it was not legit.  It&#8217;s nice to have someone else confirm my thoughts&#8230;this is most definitely a SCAM!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating JSON as a select result in a MySQL Query by Aknosis</title>
		<link>http://www.aknosis.com/2009/01/12/json-as-a-select-result-mysql-query/comment-page-1/#comment-8</link>
		<dc:creator>Aknosis</dc:creator>
		<pubDate>Sat, 28 Feb 2009 09:25:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.aknosis.com/?p=45#comment-8</guid>
		<description>Don&#039;t forget that group_concat() has a limit of 1024 chars</description>
		<content:encoded><![CDATA[<p>Don&#8217;t forget that group_concat() has a limit of 1024 chars</p>
]]></content:encoded>
	</item>
</channel>
</rss>
