<?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 A Few Guys Coding Blog</title>
	<atom:link href="http://afewguyscoding.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://afewguyscoding.com</link>
	<description>Thoughts on computer science and software from [self]</description>
	<lastBuildDate>Mon, 13 May 2013 22:26:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on ID3 Decision Trees in Java by nosier</title>
		<link>http://afewguyscoding.com/2010/03/id3-decision-trees-java/comment-page-2/#comment-2666</link>
		<dc:creator>nosier</dc:creator>
		<pubDate>Mon, 13 May 2013 22:26:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=67#comment-2666</guid>
		<description><![CDATA[thanks for this code but iget error 
Uh oh, got an IOException error: playtennis.data (The system cannot find the fil
e specified)
Exception in thread “main” java.lang.IndexOutOfBoundsException: Index: 12, Size:
0
at java.util.ArrayList.rangeCheck(Unknown Source)
at java.util.ArrayList.get(Unknown Source)
at Hw1.main(Hw1.java:25)
can you help me]]></description>
		<content:encoded><![CDATA[<p>thanks for this code but iget error<br />
Uh oh, got an IOException error: playtennis.data (The system cannot find the fil<br />
e specified)<br />
Exception in thread “main” java.lang.IndexOutOfBoundsException: Index: 12, Size:<br />
0<br />
at java.util.ArrayList.rangeCheck(Unknown Source)<br />
at java.util.ArrayList.get(Unknown Source)<br />
at Hw1.main(Hw1.java:25)<br />
can you help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by Aman Dureja</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2665</link>
		<dc:creator>Aman Dureja</dc:creator>
		<pubDate>Sun, 12 May 2013 15:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2665</guid>
		<description><![CDATA[Hello Sir,i am running this zip code file.but i m getting error.
I got an Exception error: Unknown number of attributes!
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive
at java.util.Random.nextInt(Unknown Source)
at Knn.extractIndividualInstance(Knn.java:68)
at Knn.main(Knn.java:33)
What is the solution?Plz reply as soon as possible.This code is very useful for me.Plz provide me complete solution.Thnks]]></description>
		<content:encoded><![CDATA[<p>Hello Sir,i am running this zip code file.but i m getting error.<br />
I got an Exception error: Unknown number of attributes!<br />
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive<br />
at java.util.Random.nextInt(Unknown Source)<br />
at Knn.extractIndividualInstance(Knn.java:68)<br />
at Knn.main(Knn.java:33)<br />
What is the solution?Plz reply as soon as possible.This code is very useful for me.Plz provide me complete solution.Thnks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by Aman Dureja</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2661</link>
		<dc:creator>Aman Dureja</dc:creator>
		<pubDate>Mon, 29 Apr 2013 17:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2661</guid>
		<description><![CDATA[I got an Exception error: Unknown number of attributes!
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive
at java.util.Random.nextInt(Unknown Source)
at Knn.extractIndividualInstance(Knn.java:68)
at Knn.main(Knn.java:33)
plz help to solve this error]]></description>
		<content:encoded><![CDATA[<p>I got an Exception error: Unknown number of attributes!<br />
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive<br />
at java.util.Random.nextInt(Unknown Source)<br />
at Knn.extractIndividualInstance(Knn.java:68)<br />
at Knn.main(Knn.java:33)<br />
plz help to solve this error</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Password Security Theater by Jeff</title>
		<link>http://afewguyscoding.com/2012/02/password-security-theater/comment-page-1/#comment-2656</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Tue, 23 Apr 2013 19:08:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=375#comment-2656</guid>
		<description><![CDATA[A couple of thoughts: One dictionary attack would be simply to try all the words. Pretty easy. If that fails, try all combinations of two words, and so on. With some case variance, that makes for pretty weak passwords--there are more words in the dictionary than letters in the alphabet, but it&#039;s the exponent that counts, and N^x, where x&lt;8 is weak. So you really do need to change the case of a few letters to make this better.

Second, lockouts are good, but one way hackers break passwords is to sneak in and grab the password file, and then have at it until it&#039;s broken. So, while lockouts are good, you&#039;re counting on the administrators never getting the file.]]></description>
		<content:encoded><![CDATA[<p>A couple of thoughts: One dictionary attack would be simply to try all the words. Pretty easy. If that fails, try all combinations of two words, and so on. With some case variance, that makes for pretty weak passwords&#8211;there are more words in the dictionary than letters in the alphabet, but it&#8217;s the exponent that counts, and N^x, where x&lt;8 is weak. So you really do need to change the case of a few letters to make this better.</p>
<p>Second, lockouts are good, but one way hackers break passwords is to sneak in and grab the password file, and then have at it until it&#039;s broken. So, while lockouts are good, you&#039;re counting on the administrators never getting the file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by Harika Anagani</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2653</link>
		<dc:creator>Harika Anagani</dc:creator>
		<pubDate>Tue, 16 Apr 2013 18:03:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2653</guid>
		<description><![CDATA[Iam getting error like this

Exception error: Unknown number of attributes!
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive
at java.util.Random.nextInt(Unknown Source)
at Knn.extractIndividualInstance(Knn.java:68)
at Knn.main(Knn.java:33)

plz anyone help to solve this ..this is very useful to my project..
my email address is harika_anagani@rocketmail.com

Thankyou]]></description>
		<content:encoded><![CDATA[<p>Iam getting error like this</p>
<p>Exception error: Unknown number of attributes!<br />
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive<br />
at java.util.Random.nextInt(Unknown Source)<br />
at Knn.extractIndividualInstance(Knn.java:68)<br />
at Knn.main(Knn.java:33)</p>
<p>plz anyone help to solve this ..this is very useful to my project..<br />
my email address is <a href="mailto:harika_anagani@rocketmail.com">harika_anagani@rocketmail.com</a></p>
<p>Thankyou</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ID3 Decision Trees in Java by ragavi</title>
		<link>http://afewguyscoding.com/2010/03/id3-decision-trees-java/comment-page-2/#comment-2652</link>
		<dc:creator>ragavi</dc:creator>
		<pubDate>Mon, 15 Apr 2013 09:51:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=67#comment-2652</guid>
		<description><![CDATA[thank for your code..it so helpfull to me..but
I’v got this error:
Uh oh, got an Exception error: Unknown number of attributes!
Exception in thread “main” java.lang.IndexOutOfBoundsException: Index: 12, Size: 0
at java.util.ArrayList.RangeCheck(Unknown Source)
at java.util.ArrayList.get(Unknown Source)
at Hw1.main(Hw1.java:25)]]></description>
		<content:encoded><![CDATA[<p>thank for your code..it so helpfull to me..but<br />
I’v got this error:<br />
Uh oh, got an Exception error: Unknown number of attributes!<br />
Exception in thread “main” java.lang.IndexOutOfBoundsException: Index: 12, Size: 0<br />
at java.util.ArrayList.RangeCheck(Unknown Source)<br />
at java.util.ArrayList.get(Unknown Source)<br />
at Hw1.main(Hw1.java:25)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ID3 Decision Trees in Java by prashanth</title>
		<link>http://afewguyscoding.com/2010/03/id3-decision-trees-java/comment-page-2/#comment-2651</link>
		<dc:creator>prashanth</dc:creator>
		<pubDate>Sat, 13 Apr 2013 12:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=67#comment-2651</guid>
		<description><![CDATA[What a fucked up code is this.....how do you even get a tree with this shit.
Build a print function for this tree and see the one sided branch.

Wasted two days over this piece of crap]]></description>
		<content:encoded><![CDATA[<p>What a fucked up code is this&#8230;..how do you even get a tree with this shit.<br />
Build a print function for this tree and see the one sided branch.</p>
<p>Wasted two days over this piece of crap</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ID3 Decision Trees in Java by surendra</title>
		<link>http://afewguyscoding.com/2010/03/id3-decision-trees-java/comment-page-2/#comment-2650</link>
		<dc:creator>surendra</dc:creator>
		<pubDate>Wed, 10 Apr 2013 11:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=67#comment-2650</guid>
		<description><![CDATA[i run the program but when i execute command java Hw1.java it displaying No and terminating..plz help and let me know where the final decision tree will be there..]]></description>
		<content:encoded><![CDATA[<p>i run the program but when i execute command java Hw1.java it displaying No and terminating..plz help and let me know where the final decision tree will be there..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by Harika</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2647</link>
		<dc:creator>Harika</dc:creator>
		<pubDate>Mon, 08 Apr 2013 04:30:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2647</guid>
		<description><![CDATA[This is very useful for my project  Thankyou somuch
but  iam getting runtime error like this 
 Exception error: Unknown number of attributes!
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive
at java.util.Random.nextInt(Unknown Source)
at Knn.extractIndividualInstance(Knn.java:68)
at Knn.main(Knn.java:33)

please help to solve this...]]></description>
		<content:encoded><![CDATA[<p>This is very useful for my project  Thankyou somuch<br />
but  iam getting runtime error like this<br />
 Exception error: Unknown number of attributes!<br />
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive<br />
at java.util.Random.nextInt(Unknown Source)<br />
at Knn.extractIndividualInstance(Knn.java:68)<br />
at Knn.main(Knn.java:33)</p>
<p>please help to solve this&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by Harika</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2646</link>
		<dc:creator>Harika</dc:creator>
		<pubDate>Thu, 04 Apr 2013 05:18:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2646</guid>
		<description><![CDATA[I got an Exception error
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive
at java.util.Random.nextInt(Unknown Source)
at Knn.extractIndividualInstance(Knn.java:68)
at Knn.main(Knn.java:33)

plz help to solve this error]]></description>
		<content:encoded><![CDATA[<p>I got an Exception error<br />
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive<br />
at java.util.Random.nextInt(Unknown Source)<br />
at Knn.extractIndividualInstance(Knn.java:68)<br />
at Knn.main(Knn.java:33)</p>
<p>plz help to solve this error</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by Harika</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2645</link>
		<dc:creator>Harika</dc:creator>
		<pubDate>Thu, 04 Apr 2013 05:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2645</guid>
		<description><![CDATA[I got an Exception error: Unknown number of attributes!
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive
at java.util.Random.nextInt(Unknown Source)
at Knn.extractIndividualInstance(Knn.java:68)
at Knn.main(Knn.java:33)

plz help to solve this error]]></description>
		<content:encoded><![CDATA[<p>I got an Exception error: Unknown number of attributes!<br />
Exception in thread “main” java.lang.IllegalArgumentException: n must be positive<br />
at java.util.Random.nextInt(Unknown Source)<br />
at Knn.extractIndividualInstance(Knn.java:68)<br />
at Knn.main(Knn.java:33)</p>
<p>plz help to solve this error</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ID3 Decision Trees in Java by nor</title>
		<link>http://afewguyscoding.com/2010/03/id3-decision-trees-java/comment-page-2/#comment-2644</link>
		<dc:creator>nor</dc:creator>
		<pubDate>Fri, 29 Mar 2013 10:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=67#comment-2644</guid>
		<description><![CDATA[thanks a lot...it really help me for my fyp... :)]]></description>
		<content:encoded><![CDATA[<p>thanks a lot&#8230;it really help me for my fyp&#8230; :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Licensing Module in Java by Charudath</title>
		<link>http://afewguyscoding.com/2012/02/licensing-module-java/comment-page-1/#comment-2643</link>
		<dc:creator>Charudath</dc:creator>
		<pubDate>Fri, 29 Mar 2013 09:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=364#comment-2643</guid>
		<description><![CDATA[looked into the java tutorial at http://docs.oracle.com/javase/tutorial/security/apisign/index.html and further reduced the code size in this blog post . thought of sharing if anyone is interested. the code just verifies the data integrity part.


import java.io.File;
import java.security.KeyFactory;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.Signature;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.X509EncodedKeySpec;

import org.apache.commons.io.FileUtils;

public class NewMain {
	
	public static void main(String[] args) {
		try {
			/*
			 * using openssl on a linux machine
			 *  openssl genrsa -out privkey.pem 2048
			 *  openssl pkcs8 -topk8 -in privkey.pem -inform PEM -nocrypt -outform DER -out privkey.der
			 *  openssl rsa -in privkey.pem -out pubkey.der -pubout -outform DER
			 * 
			 */
			NewMain nmain = new NewMain();
			nmain.writeLicense();
			nmain.verifyLicense();
		} catch (Exception e) {
			e.printStackTrace();
		}
		
	}
	public void verifyLicense() throws Exception {
		Signature rsaSignature = Signature.getInstance(&quot;SHA1withRSA&quot;);
		PublicKey publicKey = null;
		byte[] publicKeyBytes = FileUtils.readFileToByteArray(new File(&quot;C:/license/pubkey.der&quot;));
		if (publicKeyBytes != null) {
			X509EncodedKeySpec publicSpec = new X509EncodedKeySpec(publicKeyBytes);
			KeyFactory publicKeyFactory = KeyFactory.getInstance(&quot;RSA&quot;);
			publicKey = publicKeyFactory.generatePublic(publicSpec);
		}
		
		rsaSignature.initVerify(publicKey);
		rsaSignature.update(FileUtils.readFileToByteArray(new File(&quot;C:/license/lic.file&quot;)));
		boolean verifies = rsaSignature.verify(FileUtils.readFileToByteArray(new File(&quot;C:/license/signature.file&quot;)));
		System.out.println(&quot; = &quot;+verifies);
		
		
	}
	
	public void writeLicense() throws Exception {
		Signature rsaSignature = Signature.getInstance(&quot;SHA1withRSA&quot;);
		PrivateKey privateKey = null;
		byte[] privateKeyBytes = FileUtils.readFileToByteArray(new File(&quot;C:/license/privkey.der&quot;));
		if (privateKeyBytes != null) {
			PKCS8EncodedKeySpec privateSpec = new PKCS8EncodedKeySpec(privateKeyBytes);
			KeyFactory privateKeyFactory = KeyFactory.getInstance(&quot;RSA&quot;);
			privateKey = privateKeyFactory.generatePrivate(privateSpec);
		}
		rsaSignature.initSign(privateKey);
		rsaSignature.update(FileUtils.readFileToByteArray(new File(&quot;C:/license/lic.file&quot;)));
		byte[] signature = rsaSignature.sign();
		FileUtils.writeByteArrayToFile(new File(&quot;C:/license/signature.file&quot;), signature);
	}

}]]></description>
		<content:encoded><![CDATA[<p>looked into the java tutorial at <a href="http://docs.oracle.com/javase/tutorial/security/apisign/index.html" rel="nofollow">http://docs.oracle.com/javase/tutorial/security/apisign/index.html</a> and further reduced the code size in this blog post . thought of sharing if anyone is interested. the code just verifies the data integrity part.</p>
<p>import java.io.File;<br />
import java.security.KeyFactory;<br />
import java.security.PrivateKey;<br />
import java.security.PublicKey;<br />
import java.security.Signature;<br />
import java.security.spec.PKCS8EncodedKeySpec;<br />
import java.security.spec.X509EncodedKeySpec;</p>
<p>import org.apache.commons.io.FileUtils;</p>
<p>public class NewMain {</p>
<p>	public static void main(String[] args) {<br />
		try {<br />
			/*<br />
			 * using openssl on a linux machine<br />
			 *  openssl genrsa -out privkey.pem 2048<br />
			 *  openssl pkcs8 -topk8 -in privkey.pem -inform PEM -nocrypt -outform DER -out privkey.der<br />
			 *  openssl rsa -in privkey.pem -out pubkey.der -pubout -outform DER<br />
			 *<br />
			 */<br />
			NewMain nmain = new NewMain();<br />
			nmain.writeLicense();<br />
			nmain.verifyLicense();<br />
		} catch (Exception e) {<br />
			e.printStackTrace();<br />
		}</p>
<p>	}<br />
	public void verifyLicense() throws Exception {<br />
		Signature rsaSignature = Signature.getInstance(&#8220;SHA1withRSA&#8221;);<br />
		PublicKey publicKey = null;<br />
		byte[] publicKeyBytes = FileUtils.readFileToByteArray(new File(&#8220;C:/license/pubkey.der&#8221;));<br />
		if (publicKeyBytes != null) {<br />
			X509EncodedKeySpec publicSpec = new X509EncodedKeySpec(publicKeyBytes);<br />
			KeyFactory publicKeyFactory = KeyFactory.getInstance(&#8220;RSA&#8221;);<br />
			publicKey = publicKeyFactory.generatePublic(publicSpec);<br />
		}</p>
<p>		rsaSignature.initVerify(publicKey);<br />
		rsaSignature.update(FileUtils.readFileToByteArray(new File(&#8220;C:/license/lic.file&#8221;)));<br />
		boolean verifies = rsaSignature.verify(FileUtils.readFileToByteArray(new File(&#8220;C:/license/signature.file&#8221;)));<br />
		System.out.println(&#8221; = &#8220;+verifies);</p>
<p>	}</p>
<p>	public void writeLicense() throws Exception {<br />
		Signature rsaSignature = Signature.getInstance(&#8220;SHA1withRSA&#8221;);<br />
		PrivateKey privateKey = null;<br />
		byte[] privateKeyBytes = FileUtils.readFileToByteArray(new File(&#8220;C:/license/privkey.der&#8221;));<br />
		if (privateKeyBytes != null) {<br />
			PKCS8EncodedKeySpec privateSpec = new PKCS8EncodedKeySpec(privateKeyBytes);<br />
			KeyFactory privateKeyFactory = KeyFactory.getInstance(&#8220;RSA&#8221;);<br />
			privateKey = privateKeyFactory.generatePrivate(privateSpec);<br />
		}<br />
		rsaSignature.initSign(privateKey);<br />
		rsaSignature.update(FileUtils.readFileToByteArray(new File(&#8220;C:/license/lic.file&#8221;)));<br />
		byte[] signature = rsaSignature.sign();<br />
		FileUtils.writeByteArrayToFile(new File(&#8220;C:/license/signature.file&#8221;), signature);<br />
	}</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HttpSession and Google App Engine by Kirill</title>
		<link>http://afewguyscoding.com/2011/02/httpsession-google-app-engine/comment-page-1/#comment-2642</link>
		<dc:creator>Kirill</dc:creator>
		<pubDate>Wed, 27 Mar 2013 18:35:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=254#comment-2642</guid>
		<description><![CDATA[thank you very much for this! i was just going crazy because of the weirdness happening to my wicket session :)]]></description>
		<content:encoded><![CDATA[<p>thank you very much for this! i was just going crazy because of the weirdness happening to my wicket session :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ID3 Decision Trees in Java by Radek</title>
		<link>http://afewguyscoding.com/2010/03/id3-decision-trees-java/comment-page-2/#comment-2641</link>
		<dc:creator>Radek</dc:creator>
		<pubDate>Mon, 25 Mar 2013 13:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=67#comment-2641</guid>
		<description><![CDATA[I need Decision tree but only for numbers. Can someone help me?]]></description>
		<content:encoded><![CDATA[<p>I need Decision tree but only for numbers. Can someone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ID3 Decision Trees in Java by Radek</title>
		<link>http://afewguyscoding.com/2010/03/id3-decision-trees-java/comment-page-2/#comment-2640</link>
		<dc:creator>Radek</dc:creator>
		<pubDate>Mon, 25 Mar 2013 13:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=67#comment-2640</guid>
		<description><![CDATA[I have the same problem. How did you fixed this ?]]></description>
		<content:encoded><![CDATA[<p>I have the same problem. How did you fixed this ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Restoring &#8220;Bounce&#8221; Functionality in Mail.app and Lion by Jeff</title>
		<link>http://afewguyscoding.com/2011/08/restoring-bounce-functionality-mail-app-lion/comment-page-1/#comment-2637</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Wed, 13 Mar 2013 07:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=327#comment-2637</guid>
		<description><![CDATA[suhWEET! Thanks guys.

A couple of notes: In automator, drag &quot;Get selected mail items&quot;, it doesn&#039;t say messages until it&#039;s in the workflow window. And you can edit the script in place, no need to put anything anywhere now!

Finally, I took the liberty of adjusting the script. Instead of deleting the messages, I change their color. I still have to delete them, but I know they were bounced.

			set background color of eachMessage to red

Thanks!]]></description>
		<content:encoded><![CDATA[<p>suhWEET! Thanks guys.</p>
<p>A couple of notes: In automator, drag &#8220;Get selected mail items&#8221;, it doesn&#8217;t say messages until it&#8217;s in the workflow window. And you can edit the script in place, no need to put anything anywhere now!</p>
<p>Finally, I took the liberty of adjusting the script. Instead of deleting the messages, I change their color. I still have to delete them, but I know they were bounced.</p>
<p>			set background color of eachMessage to red</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Content Recommendation Systems for a Mobile Platform by David Stites</title>
		<link>http://afewguyscoding.com/2010/04/content-recommenation-systems-for-a-mobile-platform/comment-page-1/#comment-2636</link>
		<dc:creator>David Stites</dc:creator>
		<pubDate>Mon, 11 Mar 2013 02:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=75#comment-2636</guid>
		<description><![CDATA[I helped write the Coupious app so getting access to the data was fairly easy. Unfortunately, the Coupious app is no more so I can&#039;t give you any data.]]></description>
		<content:encoded><![CDATA[<p>I helped write the Coupious app so getting access to the data was fairly easy. Unfortunately, the Coupious app is no more so I can&#8217;t give you any data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by subhas halder</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2634</link>
		<dc:creator>subhas halder</dc:creator>
		<pubDate>Mon, 04 Mar 2013 21:02:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2634</guid>
		<description><![CDATA[can u plz share how do i solve the session ID problem in the input file?
if possible can u send me edited copy of this file in my email id subhas2007cct@gmail.com]]></description>
		<content:encoded><![CDATA[<p>can u plz share how do i solve the session ID problem in the input file?<br />
if possible can u send me edited copy of this file in my email id <a href="mailto:subhas2007cct@gmail.com">subhas2007cct@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by subhas halder</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2633</link>
		<dc:creator>subhas halder</dc:creator>
		<pubDate>Mon, 04 Mar 2013 21:00:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2633</guid>
		<description><![CDATA[can u share how do u fixed the session ID in the input file?]]></description>
		<content:encoded><![CDATA[<p>can u share how do u fixed the session ID in the input file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by subhas halder</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2632</link>
		<dc:creator>subhas halder</dc:creator>
		<pubDate>Mon, 04 Mar 2013 20:58:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2632</guid>
		<description><![CDATA[how Do i fixed the session ID in the input file?]]></description>
		<content:encoded><![CDATA[<p>how Do i fixed the session ID in the input file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by pawen</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2631</link>
		<dc:creator>pawen</dc:creator>
		<pubDate>Mon, 04 Mar 2013 09:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2631</guid>
		<description><![CDATA[i too got same error]]></description>
		<content:encoded><![CDATA[<p>i too got same error</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by Anonymous</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2630</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 02 Mar 2013 08:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2630</guid>
		<description><![CDATA[Does anyone have a C-implementation of KNN algorithm? Please post it here.]]></description>
		<content:encoded><![CDATA[<p>Does anyone have a C-implementation of KNN algorithm? Please post it here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Content Recommendation Systems for a Mobile Platform by Tong</title>
		<link>http://afewguyscoding.com/2010/04/content-recommenation-systems-for-a-mobile-platform/comment-page-1/#comment-2629</link>
		<dc:creator>Tong</dc:creator>
		<pubDate>Fri, 01 Mar 2013 21:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=75#comment-2629</guid>
		<description><![CDATA[Hi there, I&#039;m very interested in this project and want to run experiment myself. Could you tell me how you got access to Coupious data? Thank you very much!]]></description>
		<content:encoded><![CDATA[<p>Hi there, I&#8217;m very interested in this project and want to run experiment myself. Could you tell me how you got access to Coupious data? Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by rahul</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2628</link>
		<dc:creator>rahul</dc:creator>
		<pubDate>Mon, 25 Feb 2013 09:02:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2628</guid>
		<description><![CDATA[8103876862 call on dis if u want help.
i m free from 10 pm okey]]></description>
		<content:encoded><![CDATA[<p>8103876862 call on dis if u want help.<br />
i m free from 10 pm okey</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by pawan</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2627</link>
		<dc:creator>pawan</dc:creator>
		<pubDate>Mon, 25 Feb 2013 09:00:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2627</guid>
		<description><![CDATA[call 9770906835 or give miss call .....................
i will help u in dis....... 
between 10:00 am to till 6 o clock in morning]]></description>
		<content:encoded><![CDATA[<p>call 9770906835 or give miss call &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;<br />
i will help u in dis&#8230;&#8230;.<br />
between 10:00 am to till 6 o clock in morning</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by pravi</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2626</link>
		<dc:creator>pravi</dc:creator>
		<pubDate>Mon, 25 Feb 2013 08:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2626</guid>
		<description><![CDATA[thank you for this,but can u help in explaing the code.]]></description>
		<content:encoded><![CDATA[<p>thank you for this,but can u help in explaing the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ID3 Decision Trees in Java by dody</title>
		<link>http://afewguyscoding.com/2010/03/id3-decision-trees-java/comment-page-2/#comment-2624</link>
		<dc:creator>dody</dc:creator>
		<pubDate>Fri, 15 Feb 2013 05:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=67#comment-2624</guid>
		<description><![CDATA[bad source code, it cannot work because of traverseTree and no visualization of tree]]></description>
		<content:encoded><![CDATA[<p>bad source code, it cannot work because of traverseTree and no visualization of tree</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by anonymous</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2623</link>
		<dc:creator>anonymous</dc:creator>
		<pubDate>Sat, 09 Feb 2013 04:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2623</guid>
		<description><![CDATA[even i am getting the same error!! any ideas]]></description>
		<content:encoded><![CDATA[<p>even i am getting the same error!! any ideas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on K Nearest Neighbors in Java by anonymous</title>
		<link>http://afewguyscoding.com/2010/05/nearest-neighbors-java/comment-page-1/#comment-2622</link>
		<dc:creator>anonymous</dc:creator>
		<pubDate>Sat, 09 Feb 2013 04:51:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.afewguyscoding.com/?p=128#comment-2622</guid>
		<description><![CDATA[can you please tell the modifications to be made to the .data file]]></description>
		<content:encoded><![CDATA[<p>can you please tell the modifications to be made to the .data file</p>
]]></content:encoded>
	</item>
</channel>
</rss>
