<?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 on: Scramble with Friends Cheaters Site Launch</title>
	<atom:link href="http://hangingwithcheaters.com/scramble-with-friends-cheaters-site-launch/feed/" rel="self" type="application/rss+xml" />
	<link>http://hangingwithcheaters.com/scramble-with-friends-cheaters-site-launch/</link>
	<description>Hanging with Friends Unofficial Fan site. Cheat, strategies and tips. Word Builder, Word Generator and Word Solver.</description>
	<lastBuildDate>Sun, 06 Jan 2013 02:56:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>By: Ideaofnorth@gmail.com</title>
		<link>http://hangingwithcheaters.com/scramble-with-friends-cheaters-site-launch/#comment-18</link>
		<dc:creator><![CDATA[Ideaofnorth@gmail.com]]></dc:creator>
		<pubDate>Thu, 09 Aug 2012 04:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://hangingwithcheaters.com/?p=559#comment-18</guid>
		<description><![CDATA[What loser/idiot cares more about winning than using his or her brain to find words? You remind me of the (always) male whiners who get pissed when I beat them time after time using no cheats.]]></description>
		<content:encoded><![CDATA[<p>What loser/idiot cares more about winning than using his or her brain to find words? You remind me of the (always) male whiners who get pissed when I beat them time after time using no cheats.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juzhax</title>
		<link>http://hangingwithcheaters.com/scramble-with-friends-cheaters-site-launch/#comment-14</link>
		<dc:creator><![CDATA[juzhax]]></dc:creator>
		<pubDate>Tue, 20 Mar 2012 05:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://hangingwithcheaters.com/?p=559#comment-14</guid>
		<description><![CDATA[Scramble with Friends Words Solver Completed

It spent me 4 days to complete this Scramble with Friends Words Finder / Solver. Now support with Mobile, Android, iOS, iPhone, iPad. All the code is using HTML with faster loading time. You no need to install Apps into your Mobile phone, you can just open browser in your mobile phone to access here.

http://www.justin.my/scramble-with-friends-words/]]></description>
		<content:encoded><![CDATA[<p>Scramble with Friends Words Solver Completed</p>
<p>It spent me 4 days to complete this Scramble with Friends Words Finder / Solver. Now support with Mobile, Android, iOS, iPhone, iPad. All the code is using HTML with faster loading time. You no need to install Apps into your Mobile phone, you can just open browser in your mobile phone to access here.</p>
<p><a href="http://www.justin.my/scramble-with-friends-words/" rel="nofollow">http://www.justin.my/scramble-with-friends-words/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: G. Michael Guy</title>
		<link>http://hangingwithcheaters.com/scramble-with-friends-cheaters-site-launch/#comment-12</link>
		<dc:creator><![CDATA[G. Michael Guy]]></dc:creator>
		<pubDate>Sun, 04 Mar 2012 12:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://hangingwithcheaters.com/?p=559#comment-12</guid>
		<description><![CDATA[Hi Alex.

I&#039;m going to put my professor hat on here. I don&#039;t like to solve someone else&#039;s problem and deprive them of the joy when solving it alone. I will give you two pieces of advice.

1) Take a close look at your algorithm and see if you can identify the slow parts. Then see if you can find ways to speed it up. (I know, it seems like generic advice, but you really do need to dissect it).

2) You can often make a choice to increase speed by increasing memory usage. See if there are opportunities there.

If you would like to discuss the details of your algorithm or share your code to help with discussion, you can use the contact form at the bottom right of my page to start chatting via email. I&#039;d be happy to chat more.

good luck!
Michael]]></description>
		<content:encoded><![CDATA[<p>Hi Alex.</p>
<p>I&#8217;m going to put my professor hat on here. I don&#8217;t like to solve someone else&#8217;s problem and deprive them of the joy when solving it alone. I will give you two pieces of advice.</p>
<p>1) Take a close look at your algorithm and see if you can identify the slow parts. Then see if you can find ways to speed it up. (I know, it seems like generic advice, but you really do need to dissect it).</p>
<p>2) You can often make a choice to increase speed by increasing memory usage. See if there are opportunities there.</p>
<p>If you would like to discuss the details of your algorithm or share your code to help with discussion, you can use the contact form at the bottom right of my page to start chatting via email. I&#8217;d be happy to chat more.</p>
<p>good luck!<br />
Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://hangingwithcheaters.com/scramble-with-friends-cheaters-site-launch/#comment-11</link>
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Sun, 04 Mar 2012 10:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://hangingwithcheaters.com/?p=559#comment-11</guid>
		<description><![CDATA[Can you give any insight into your algorithm? I was playing around with this and solved it with a recursive algorithm which starts 16 threads (one for each starting position), and recurses through all possible paths until it hits a path that has no partial matches to my dictionary. It then returns back down the stack and tries another path. While this solution works, it is far too slow. This could be the result of my sqlite database, which I plan to switch to an in-memory data structure.

I obviously am not looking for your exact algorithm, but if you have any algorithms you can suggest me looking at I&#039;d greatly appreciate it!]]></description>
		<content:encoded><![CDATA[<p>Can you give any insight into your algorithm? I was playing around with this and solved it with a recursive algorithm which starts 16 threads (one for each starting position), and recurses through all possible paths until it hits a path that has no partial matches to my dictionary. It then returns back down the stack and tries another path. While this solution works, it is far too slow. This could be the result of my sqlite database, which I plan to switch to an in-memory data structure.</p>
<p>I obviously am not looking for your exact algorithm, but if you have any algorithms you can suggest me looking at I&#8217;d greatly appreciate it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thanks</title>
		<link>http://hangingwithcheaters.com/scramble-with-friends-cheaters-site-launch/#comment-8</link>
		<dc:creator><![CDATA[Thanks]]></dc:creator>
		<pubDate>Sat, 18 Feb 2012 06:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://hangingwithcheaters.com/?p=559#comment-8</guid>
		<description><![CDATA[Holy cow, this thing is amazing!  I am so glad there are really smart people who figure this stuff out!]]></description>
		<content:encoded><![CDATA[<p>Holy cow, this thing is amazing!  I am so glad there are really smart people who figure this stuff out!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
