<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>AI Dating</title>
	<atom:link href="http://www.aidating.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aidating.co.uk/blog</link>
	<description>Findings on Dating with Artificial Intelligence</description>
	<pubDate>Thu, 11 Sep 2008 04:30:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Curious?</title>
		<link>http://www.aidating.co.uk/blog/2008/09/curious/</link>
		<comments>http://www.aidating.co.uk/blog/2008/09/curious/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 04:22:07 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Developments]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[cmc]]></category>

		<category><![CDATA[matching]]></category>

		<category><![CDATA[online dating]]></category>

		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=13</guid>
		<description><![CDATA[For the last months I have been working on a dating site that uses fuzzy  inferencing. In order to test new functionality I like to obtain some  more user data.
Therefore I&#8217;d like to kindly ask anyone to sign up, even if you are not  single, and answer the questions that are asked [...]]]></description>
			<content:encoded><![CDATA[<p>For the last months I have been working on a dating site that uses fuzzy  inferencing. In order to test new functionality I like to obtain some  more user data.</p>
<p>Therefore I&#8217;d like to kindly ask anyone to sign up, even if you are not  single, and answer the questions that are asked to you by the dating  assistant.<br />
The menu on the left is not active yet and you will not be able to use  more than one photo.</p>
<p>If you are in a relationship or you want to withdraw your data later  this year, please let me know. I would also encourage you that if you  have a partner that he/she can also try the system. It would be nice to  see whether you will be matched to your partner or not (matches are not  yet visible to the user). Also I like to know any feedback you have,  especially concerning the functionality or user experience. The  project is almost finished and I am working on documenting the work. After the write up I hope i can use the feedback to improve the web site and to add more functonality.</p>
<p>The sign up page can be found at: <a href="http://www.aidating.co.uk/signup/" >http://www.aidating.co.uk/signup/</a></p>
<p>If you want to log on at a later stage you can do so at:  <a href="http://www.aidating.co.uk/login/" >http://www.aidating.co.uk/login/</a></p>
<p>Note that most effort is gone into the GUI and the matching algorithm and that contacting other users was not the primary concern during the period of the project itself. You can obviously expect this functionality soon since it is necessary part of every dating site. Also not that it is just a prototype and I therefore do not claim any specific results yet. You can leave any feedback regarding the site in this thread.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/09/curious/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wasting time</title>
		<link>http://www.aidating.co.uk/blog/2008/08/wasting-time/</link>
		<comments>http://www.aidating.co.uk/blog/2008/08/wasting-time/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 20:49:25 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Developments]]></category>

		<category><![CDATA[mistakes]]></category>

		<category><![CDATA[planning]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=12</guid>
		<description><![CDATA[So many things that take up time while developing things you have in mind. When a human being has to a thousand things and jut ten things go wrong, it will still double the needed time you would have needed to just do that thousand things. This something you do not always realize when planning. [...]]]></description>
			<content:encoded><![CDATA[<p>So many things that take up time while developing things you have in mind. When a human being has to a thousand things and jut ten things go wrong, it will still double the needed time you would have needed to just do that thousand things. This something you do not always realize when planning. After all it is hard to plan mistakes because they appear pretty randomly in your work.</p>
<p>As an example I was working on a photo uploader. After all, what constitutes a good first impression? Is it intelligence, no. I rather think it is plain old attractiveness. Probably the reason why so many people fell in love with those überattractive celebrities. And probably also the reason why they have so many relationships that don&#8217;t work out (or is it just that the media is too much focussed on those break ups?). Attractiveness might constitute to a good first impression, falling in love, it does not help much for a long time stable relationship. Well I am loosing the main point now. The photo uploader. I was uploading a photo in the GUI, and Ithought it worked out. The next steps were to generate a thumbnail as well and to add a reference to the database. After generating a thumbnail I downloaded them to see what they looked like. Terrible! The image was completly distorted and not even recognised by some photo software. So I spitted through all the code. Seeing what could have gone wrong. Maybe not the right dimensions, a wrong setting that reduces the quality so much. I kept sending debugging. Till I downloaded the originally uploaded photos and realised they were as distorted as the thumbnails. So the problem was actually not with the thumbnails at all. However uploading and copying is quite basic in the back end. I wondered how this could have gone wrong. After all this code was highly similar with some online resources that described the process. So, I looked into the javascript for the uploader. Maing that javascript code was a pain after all. I looked into content-types and form encryptions. Nothing worked out. And then finally, Euraka!, I found out what was wrong. The ftp program downloaded the photos in ASCII mode instead of binary mode. No errors in the script at all. I lost at least a day for debugging something that was just working. I got the clue when I was reengineering the uploader seperately under the html root (where things are visible in the browser). And it just appeared to work. So I made it more similar to my real application and it was still working. So I knew I had too look somewhere else for the error.</p>
<p>The lesson is, we make mistakes. Always plan double the time you would rationally need to implement something. Some people might have said, just drop the photo uploader as a requirement. It has nothing to do with AI after all. Other people might say, test every aspect of whatevery you do. Testing is not always a bad idea. After all, I was testing and found out it didn&#8217;t work (or it did work actually). However testing everything you do, what some scientists do, takes at least 10 times the time you need for implementation.</p>
<p>But  happily it works now so I can put more effort into the main part. The matching process. The interaction between user and the questioning software agent. The fuzzy logic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/08/wasting-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Databases</title>
		<link>http://www.aidating.co.uk/blog/2008/07/databases/</link>
		<comments>http://www.aidating.co.uk/blog/2008/07/databases/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 04:35:18 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=11</guid>
		<description><![CDATA[Currently I am upgrading the database queries to use PEAR::MDB2 for there queries. This is both more future proof and it has possibilities to prevent from potential mysql injection attacks to harm the site.
]]></description>
			<content:encoded><![CDATA[<p>Currently I am upgrading the database queries to use PEAR::MDB2 for there queries. This is both more future proof and it has possibilities to prevent from potential mysql injection attacks to harm the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/07/databases/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some facts about online dating</title>
		<link>http://www.aidating.co.uk/blog/2008/07/some-facts-about-online-dating/</link>
		<comments>http://www.aidating.co.uk/blog/2008/07/some-facts-about-online-dating/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 18:51:46 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Literature]]></category>

		<category><![CDATA[Social Psychology]]></category>

		<category><![CDATA[online dating]]></category>

		<category><![CDATA[relationships]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=10</guid>
		<description><![CDATA[The majority of online daters are in between 18 and 34 years old.
One in a hundred singles that had a partner once found it through online dating.
The reasons for singles to visit online dating sites are ‘curiousity’, ‘fun’, ‘to get to know someone’ and ‘boredom’.
A quart of the online daters that used online dating one [...]]]></description>
			<content:encoded><![CDATA[<p>The majority of online daters are in between 18 and 34 years old.</p>
<p>One in a hundred singles that had a partner once found it through online dating.</p>
<p>The reasons for singles to visit online dating sites are ‘curiousity’, ‘fun’, ‘to get to know someone’ and ‘boredom’.</p>
<p>A quart of the online daters that used online dating one or more times did register for a paid dating site at least once.</p>
<p>The majority of online daters describes their experience with online dating as &#8216;good nor bad&#8217;.</p>
<p>One third of the online daters managed to get at least one relationship through online dating.</p>
<p>Almost a quart of the registered online daters arrange a real life meeting after the first email contact.</p>
<p>According to four out of ten of the registered online daters that made a meeting in real life, the last meeting resulted in a one night stand or sexual relationship. In 7 percent this meeting resulted in a relationship.</p>
<p><em>Findings from: TNS Nipo, ´Online dating: aantrekkelijk of niet?’, ocktober 2004, for Parship.nl. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/07/some-facts-about-online-dating/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ajax GUI</title>
		<link>http://www.aidating.co.uk/blog/2008/07/ajax-gui/</link>
		<comments>http://www.aidating.co.uk/blog/2008/07/ajax-gui/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 15:24:07 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Developments]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[EXT JS]]></category>

		<category><![CDATA[GUI]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[RIA]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=9</guid>
		<description><![CDATA[Currently I am working on the AJAX GUI in which I use EXT JS. EXT JS is an AJAX framework like those of Google, Dojo, Mochikit, Spry. EXT is based on Yahoo&#8217;s YUI framework. The use of AJAX enables me to do asynchronous updates in the graphical user interface (like updating questions from the AI [...]]]></description>
			<content:encoded><![CDATA[<p>Currently I am working on the AJAX GUI in which I use EXT JS. EXT JS is an AJAX framework like those of Google, Dojo, Mochikit, Spry. EXT is based on Yahoo&#8217;s YUI framework. The use of AJAX enables me to do asynchronous updates in the graphical user interface (like updating questions from the AI matching agent) and it makes it more easy to build rich user interfaces. On the other hand you have to make extensive use of Javascript, which is harder than conventional web development and it takes more effort to protect all possible asynchronous requests from unauthorised use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/07/ajax-gui/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Templating and friendly urls</title>
		<link>http://www.aidating.co.uk/blog/2008/07/templating-and-friendly-urls/</link>
		<comments>http://www.aidating.co.uk/blog/2008/07/templating-and-friendly-urls/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 18:10:12 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Developments]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[seo]]></category>

		<category><![CDATA[smarty]]></category>

		<category><![CDATA[templates]]></category>

		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=8</guid>
		<description><![CDATA[Today I installed the Smarty template engine in order to keep the programming logic and presentation logic seperate. I embedded smarty in a mechanism for url rewriting so the page requests are queried to the database and then processed by smarty so that every request can be shown in whichever template.
]]></description>
			<content:encoded><![CDATA[<p>Today I installed the Smarty template engine in order to keep the programming logic and presentation logic seperate. I embedded smarty in a mechanism for url rewriting so the page requests are queried to the database and then processed by smarty so that every request can be shown in whichever template.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/07/templating-and-friendly-urls/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Security</title>
		<link>http://www.aidating.co.uk/blog/2008/07/security/</link>
		<comments>http://www.aidating.co.uk/blog/2008/07/security/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 17:12:43 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Developments]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[authentication]]></category>

		<category><![CDATA[PEAR]]></category>

		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=7</guid>
		<description><![CDATA[Since a dating site deals with extensive user data, security might be an issue. Although from the ethics perspective people will agree on the fact that the supplied information becomes property of the application and/or organizations around it. Just like on MySpace and other social profile equivalents. However the data gathered should also be stored [...]]]></description>
			<content:encoded><![CDATA[<p>Since a dating site deals with extensive user data, security might be an issue. Although from the ethics perspective people will agree on the fact that the supplied information becomes property of the application and/or organizations around it. Just like on MySpace and other social profile equivalents. However the data gathered should also be stored in a secure way so that other users can&#8217;t access it when they don&#8217;t have permission to get it.</p>
<p>So I looked into authorisation systems. Some scripts are now secured using the apache authorisation module (.htpasswd). However for the user pages I needed an authorisation script that is secure and provides people with a login and sessions so they can stay logged in for some time. Many scripts were available but I decided to go with the Auth extension of Pear. For which an installation of Pear is also a prerequisite.  So today I installed PEAR and I am experimenting with the offered authorisation options and how to implement those. Good authentication is a necessity especially since AJAX requests are quite vulnerable to misuse. Tomorrow I will look into how to store the user data. PEAR is also used for the database abstraction layer and might be used for other functionality that will be implemented.</p>
<p><a title="secure php login script" href="http://www.devshed.com/c/a/PHP/Creating-a-Secure-PHP-Login-Script/" target="_blank">Creating a secure PHP login script<br />
</a><a href="http://www.mtdev.com/2002/07/creating-a-secure-php-login-script"  target="_blank" rel="nofollow">Creating a secure PHP Login Script</a><br />
<a href="http://pear.php.net/"title="Pear"   target="_blank" rel="nofollow">Pear</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/07/security/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dating Shows and Online Dating Are Cashing In</title>
		<link>http://www.aidating.co.uk/blog/2008/07/dating-shows-and-online-dating-are-cashing-in/</link>
		<comments>http://www.aidating.co.uk/blog/2008/07/dating-shows-and-online-dating-are-cashing-in/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 00:16:05 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Argos]]></category>

		<category><![CDATA[bizz]]></category>

		<category><![CDATA[media]]></category>

		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=6</guid>
		<description><![CDATA[I read the following on entrepreneur.com; so soon I will be rich?:
The business of finding that special someone has become ridiculously profitable for dating companies. And it doesn’t matter if you are a big fish or a one-man band.
Consider the proliferation of dating sites like PerfectMatch.com and MingleCity.com. TV commercials have been cropping up for [...]]]></description>
			<content:encoded><![CDATA[<p>I read the following on entrepreneur.com; so soon I will be rich?:</p>
<blockquote><p>The business of finding that special someone has become ridiculously profitable for dating companies. And it doesn’t matter if you are a big fish or a one-man band.</p>
<p>Consider the proliferation of dating sites like PerfectMatch.com and MingleCity.com. TV commercials have been cropping up for Chemistry.com and, for a hot minute, I noticed that Dr. Phil had hung his shingle up at Match.com. Meanwhile, Marcus Frind, founder and CEO of Plentyoffish.com, has managed to take the free dating site he’s been running out of his apartment since 2003 to the top (Number one in Canada, number one in the UK and number three in the U.S.) using artificial intelligence. He probably figured, why buy the cow when you can develop an AI to run your site for pennies on the dollar? Frind, a 29-year-old computer programmer who appeared on The Today Show last summer, works a measly 10 hours a week and rakes in net profits of about $10 million a year. Clearly he’s struck a nerve worldwide. So, from what I can see, dating and the search for love represent a culture on the rise that doesn’t appear to be slowing down any time soon. <a href="http://tunedin.entrepreneur.com/2008/03/27/dating-shows-and-online-dating-are-cashing-in/"title="online dating, getting rich"   target="_blank" rel="nofollow">(read further)</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/07/dating-shows-and-online-dating-are-cashing-in/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Domain Hunting</title>
		<link>http://www.aidating.co.uk/blog/2008/07/domain-hunting/</link>
		<comments>http://www.aidating.co.uk/blog/2008/07/domain-hunting/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 23:51:30 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Developments]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[domain names]]></category>

		<category><![CDATA[GUI]]></category>

		<category><![CDATA[PR]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=5</guid>
		<description><![CDATA[For the past months I have been thinking about how to represent a dating site. How should the user experience be. One part of it is the GUI and another aspect is the name. What is in a name? Well a lot I guess! Almost every name related to dating (including stupid names incorporating numbers, [...]]]></description>
			<content:encoded><![CDATA[<p>For the past months I have been thinking about how to represent a dating site. How should the user experience be. One part of it is the GUI and another aspect is the name. What is in a name? Well a lot I guess! Almost every name related to dating (including stupid names incorporating numbers, mistypings, etc) have been taken, either by dating sites or domain hunters.</p>
<p>So it was very hard to come up with a name. The name should be original, easy to remember and it should somewhat cover what the web site is about. So many things came to mind and were usually taken. So for the moment I have the names &#8220;AI Dating&#8221; which covers what it is about but it is a bit tech savvy and I&#8217;ve got the name &#8220;Dating Atmosphere&#8221; which is not too bad but it is quite long for a domain name. Dating Atmosphere was actually derived from datingsphere, but that was taken as usually. With the sphere in the name I wanted to represent the idea in the web application that you might be in the middle and potential dates are in spheres around you based on functional proximity (match percentage). Possibly this will be shown in such a way in the GUI if there is time to develop it that way. This is one of the aspects that is novel and not seen on other dating sites (afaik).</p>
<p>So for the moment the dating site can be found at: aidating.nl (for a Dutch audience), aidating.co.uk (for the UK audience) and datingatmosphere.com (possibly for an international audience).</p>
<p>If you have any suggestions for a nice name that has not been taken, please let me know ;-).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/07/domain-hunting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Liberating or debilitating? An examination of romantic relationships, sexual relationships and friendships on the Net</title>
		<link>http://www.aidating.co.uk/blog/2008/07/liberating-or-debilitating-an-examination-of-romantic-relationships-sexual-relationships-and-friendships-on-the-net/</link>
		<comments>http://www.aidating.co.uk/blog/2008/07/liberating-or-debilitating-an-examination-of-romantic-relationships-sexual-relationships-and-friendships-on-the-net/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 23:21:04 +0000</pubDate>
		<dc:creator>AI Dating</dc:creator>
		
		<category><![CDATA[Literature]]></category>

		<category><![CDATA[internet friendships]]></category>

		<category><![CDATA[internet relationships]]></category>

		<category><![CDATA[online dating]]></category>

		<category><![CDATA[online sexuality]]></category>

		<guid isPermaLink="false">http://aidating.nl/blog/?p=4</guid>
		<description><![CDATA[Monica T Whitty discusses the pros and cons of online dating in her article &#8220;Liberating or deliberating? An examination of romantic relationships, sexual relationships and friendships on the Net&#8221; in Computers in human Behavior. It points out some weaknesses and strengths of online dating which are very good to have in mind while implementing the [...]]]></description>
			<content:encoded><![CDATA[<p>Monica T Whitty discusses the pros and cons of online dating in her article &#8220;Liberating or deliberating? An examination of romantic relationships, sexual relationships and friendships on the Net&#8221; in Computers in human Behavior. It points out some weaknesses and strengths of online dating which are very good to have in mind while implementing the AI Dating application. The following is the abstract:</p>
<blockquote><p>Ever since the beginnings of the internet researchers have questioned its utility in developing and maintaining psychological healthy romantic and sexual relations. Advocates of the social presence theory and media richness theory purport that in leaner media individuals can be quite aggressive towards one another (e.g., in the form of flaming). In contrast, others believe that the lack of traditional cues in CMC can in fact be overcome and instead lead to more personal, intimate relationships.<br />
As this paper will demonstrate, when we consider how beneficial it is to form relationships<br />
online we also need to consider individuals’ characteristics (e.g., personality characteristics and physical attractiveness), the amount of time people spend online, the duration of online relationships, and how these relationships effect individuals’ offline activities and relationships. Overall, the view here is that online relationships can be empowering for many people; that is, cyberspace provides a unique environment for people to experience and learn about relationships and sexuality. (source: Computers in Human Behavior 24 2008)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.aidating.co.uk/blog/2008/07/liberating-or-debilitating-an-examination-of-romantic-relationships-sexual-relationships-and-friendships-on-the-net/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
