<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Barry Dobson</title>
	
	<link>http://www.barrydobson.com</link>
	<description>Web Development And Beyond.</description>
	<pubDate>Thu, 14 Aug 2008 10:17:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BarryDobson" type="application/rss+xml" /><item>
		<title>Deleting LDAP Entries</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/364682908/</link>
		<comments>http://www.barrydobson.com/2008/08/14/deleting-ldap-entries/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 10:15:26 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[LDAP]]></category>

		<category><![CDATA[VB.Net]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2008/08/14/deleting-ldap-entries/</guid>
		<description><![CDATA[Following on from my popular post on searching LDAP directories I thought I&#8217;d follow up with a simple piece of code that allows you to delete entries.
There are two ways to remove an entry. The first way is to search for a node an remove it, along with all of its children. The second way [...]]]></description>
			<content:encoded><![CDATA[<p>Following on from my popular post on searching LDAP directories I thought I&#8217;d follow up with a simple piece of code that allows you to delete entries.</p>
<p>There are two ways to remove an entry. The first way is to search for a node an remove it, along with all of its children. The second way is to search for a node and remove one or more of its children. <span id="more-40"></span>Below I will demonstrate both methods.</p>
<p> </p>
<pre class="vb.net:nogutter">Dim dir As New LdapConnection(MySettings)

Using users As DirectoryEntry = dir.GetObject(MyQuery)
    For Each r As DirectoryEntry In users.Children
        users.Children.Remove(r)
    Next
    users.CommitChanges()
End Using</pre>
<p> </p>
<p>Above shows us searching for a node then looping through each child and removing it. We could also examine the properties and delete based on that.</p>
<p>If you want to delete a specific item its easier and more efficient to use the following method</p>
<p> </p>
<pre class="vb.net:nogutter">Using users As DirectoryEntry = dir.GetObject(MyUserQuery)
    users.DeleteTree()
    users.CommitChanges()
End Using</pre>
<p> </p>
<p>In the above example we just search directly for a single node (user) then call the &#8216;DeleteTree&#8217; method. It the entry we searched for had any children, they would also be deleted.</p>
<p> </p>
<p>I hope this helps you out. Don&#8217;t forget to leave comments if this helped, or you need any more info, thanks.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=HP198K"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=HP198K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=P9BKfK"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=P9BKfK" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/364682908" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/08/14/deleting-ldap-entries/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/08/14/deleting-ldap-entries/</feedburner:origLink></item>
		<item>
		<title>Wordpress iPhone Application</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/343928868/</link>
		<comments>http://www.barrydobson.com/2008/07/23/wordpress-iphone-application/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 20:57:37 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2008/07/23/wordpress-iphone-application/</guid>
		<description><![CDATA[I&#8217;ve just installed the Wordpress iPhone application on my iPod Touch, and am giving it a go. Have you used it? What do you think?
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just installed the Wordpress iPhone application on my iPod Touch, and am giving it a go. Have you used it? What do you think?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=gd6CVJ"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=gd6CVJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=2uFxfJ"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=2uFxfJ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/343928868" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/07/23/wordpress-iphone-application/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/07/23/wordpress-iphone-application/</feedburner:origLink></item>
		<item>
		<title>iPhone &amp; iPod Touch Screen Shots</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/336066064/</link>
		<comments>http://www.barrydobson.com/2008/07/15/iphone-ipod-touch-screen-shots/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 13:02:27 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<category><![CDATA[2.0]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[iPod Touch]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2008/07/15/iphone-ipod-touch-screen-shots/</guid>
		<description><![CDATA[I don&#8217;t know if this is a new feature of the iPhone 2.0 software (I doubt it) but you can take screen shots from your iPhone or iPod Touch!
When your on the screen you want to capture just hold down the &#8216;Home&#8217; key and press the &#8216;Sleep&#8217; button. The screen will flash and the screen [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if this is a new feature of the iPhone 2.0 software (I doubt it) but you can take screen shots from your iPhone or iPod Touch!</p>
<p>When your on the screen you want to capture just hold down the &#8216;Home&#8217; key and press the &#8216;Sleep&#8217; button. The screen will flash and the screen shot will now be in your pictures folder. The screen shots are stored in PNG format and can be transferred to a PC or Mac. This even works on the iPod touch. Once you have taken a screen shot the next time you plug the iPod into the computer you will see the iPod as a drive in your system. The pictures can then just be drag and dropped.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=xOxpvJ"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=xOxpvJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=rxamMJ"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=rxamMJ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/336066064" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/07/15/iphone-ipod-touch-screen-shots/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/07/15/iphone-ipod-touch-screen-shots/</feedburner:origLink></item>
		<item>
		<title>Working With LDAP In VB.Net</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/311132589/</link>
		<comments>http://www.barrydobson.com/2008/06/13/working-with-ldap-in-vbnet/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 12:51:36 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[LDAP]]></category>

		<category><![CDATA[VB.Net]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/?p=29</guid>
		<description><![CDATA[wrote a post a while ago dealing with an error that VB can throw when dealing with an LDAP connection, you can find it here. Because this post has proved popular with people searching for the error code on Google, I thought I'd put together a quick post on using LDAP in VB.Net.]]></description>
			<content:encoded><![CDATA[<p>I wrote a post a while ago dealing with an error that VB can throw when dealing with an LDAP connection, you can find it <a href="http://www.barrydobson.com/2007/08/31/systemdirectoryentry-unknown-error-0x80005000/" target="_blank">here</a>. Because this post has proved popular with people searching for the error code on Google, I thought I&#8217;d put together a quick post on using LDAP in VB.Net.</p>
<p><span id="more-29"></span></p>
<h3>Simple Directory Search</h3>
<p>To perform a simple query you can use the following syntax:</p>
<pre class="vb.net:nogutter" name="code">Dim results as SearchResultCollection

Using dir As New DirectoryEntry(connectionPath, principle, credentials, AuthenticationTypes.ServerBind)
	Dim s As New DirectorySearcher
	s.SearchRoot = dir
        s.Filter = (&amp;(objectClass=groupOfUniqueNames)(cn=techSupport))
        s.SearchScope = SearchScope.Subtree
        results = s.FindAll
End Using
</pre>
<ol>
<li>First we are declaring a variable to hold our search results.
<li>Next we open up a connection to the LDAP directory. This is done by instantiating a DirectoryEntry object. The DirectoryEntry object requires the connection path in the form of a URL (LDAP://MyServer:10389/OU=subdir,O=parent&#8221;), the principle (&#8221;uid=myuser,ou=system&#8221;), credentials (&#8221;mypassword&#8221;), and the method of authentication (this will depend upon your LDAP directory).
<li>In order to search the directory we need to use the DirectorySearcher Object. We assign our DirectoryEntry object to the SearchRoot property, this will tell the DirectorySearcher where to base its search. The Filter property needs the details of what we are searching for, in this example we are looking for an entry whose ObjectClass is &#8220;groupOfUniqueNames&#8221; and CN is &#8220;techSupport&#8221;. The ampersand in front of the query tells the searcher this is an AND operation. The SearchScope property tells the searcher that we want to search the whole sub tree from the SearchRoot down.
<li>Lastly we return the results.</li>
</ol>
<p>This is a very basic example of searching the directory. The directory is searchable on any property that an object may have, e.g. you may want to find all entries whose are inetOrgPerson and have a surname of smith. In that example your filter would be
<pre lang="vbnet">(&amp;(objectClass=inetOrgPerson)(sn=Smith))</pre>
</p>
<h3>Performing An Update</h3>
<p>You can perform an update on a directory entry just like you can in a database. When performing an update it is important to remember an entry can have multiple properties of the same name. In other words the properties are in fact arrays. The following is an example of an update.</p>
<p>
<pre class="vb.net:nogutter" name="code">Public Sub UpdateUser(ByVal username as String, ByVal firstName as String, ByVal surname as String)

        Dim myUserDN As String = String.Format("{0}uid={1},{2}", _settings.LDAPUrl, username, _settings.UsersDN)
	Using u As New DirectoryEntry(myUserDN, _settings.Principle, _settings.Credentials, AuthenticationTypes.ServerBind)
	    AddUpdateProperty(u, "cn", firstName)
            AddUpdateProperty(u, "sn", surname)
 	    u.CommitChanges()
	End Using
End Sub

Private Sub AddUpdateProperty(ByVal r As DirectoryEntry, ByVal propName As String, ByVal value As Object)
        If r.Properties(propName).Count = 0 Then
            r.Properties(propName).Add(value)
        Else
            r.Properties(propName).Item(0) = value
	End If
End Sub
</pre>
</p>
<p>The above code shows two sub routines. Lets look at the first one, UpdateUser:</p>
<ol>
<li>First we construct the URL to the object we want. We supply the LDAP URL along with the path to the entry we want.
<li>Next we attempt to connect straight to our entry using the DirectoryEntry object. If the object is not found this line will throw a DirectoryServicesCOMException exception.
<li>Now we can go ahead and update the properties we need to change. This is done via a helper function to handle the fact the entry could contain none, one or many of the property.
<li>Lastly we call the CommitChanges method on the Directory Entry.</li>
</ol>
<h3>Performing An Insert</h3>
<p>Performing an insert on the directory is very similar to performing an update. The code below shows how we can insert a new user type entry.</p>
<p>
<pre class="vb.net:nogutter" name="code">Using users As New DirectoryEntry(userDNRoot, _settings.Principle, _settings.Credentials, AuthenticationTypes.ServerBind)
    Using newUser As DirectoryEntry = users.Children.Add(String.Format("uid={0}", username), "person")

        ' add user required properties
        AddUpdateProperty(newUser, "cn", forename)
        AddUpdateProperty(newUser, "sn", surname)
        newUser.CommitChanges()
    End Using
End Using
</pre>
<p>Lets look at the code:</p>
<ol>
<li>We need to connect to the LDAP directory. This time we connect to the root DN of where we want to add our new entry. Think of this as XML, we are going to add a child entry to the root.
<li>Once we have a connection, we can use the Children.Add methods to create a new DirectoryEntry object. As a parameter we pass in the name of the entry.
<li>Using the same helper function we saw above in the update functionality we create the properties on the object (note that this is a shortened list).
<li>Once we have assigned all the properties we go ahead and commit changes.</li>
</ol>
<p>&nbsp;</p>
<p>You can <a href="http://www.barrydobson.com/download/LDAP-Demo" target="_blank">download this sample project</a> to check out some working examples.</p>
<p>If you have found the above article useful, have any comments or questions on it please leave a comment, and if you are a <a href="http://www.digg.com/" target="_blank">Digg</a> user, don&#8217;t forget to give it a Digg, thanks.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=r9GeRI"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=r9GeRI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=18VCFI"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=18VCFI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/311132589" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/06/13/working-with-ldap-in-vbnet/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/06/13/working-with-ldap-in-vbnet/</feedburner:origLink></item>
		<item>
		<title>Windows Live Writer Plugin</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/308067361/</link>
		<comments>http://www.barrydobson.com/2008/06/09/windows-live-writer-plugin/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 14:44:11 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[WLW]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2008/06/09/windows-live-writer-plugin/</guid>
		<description><![CDATA[I have recently created my first Plugin for Windows Live Writer. I&#8217;m starting off simple with a Plugin that allows you to add Amazon affiliate links to your posts. It works with Amazons Quick Linker Widget which needs to first be added to your pages (in the footer).
I have submitted it the Windows Live Gallery, [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently created my first Plugin for Windows Live Writer. I&#8217;m starting off simple with a Plugin that allows you to add Amazon affiliate links to your posts. It works with Amazons Quick Linker Widget which needs to first be added to your pages (in the footer).</p>
<p>I have submitted it the Windows Live Gallery, but I have no idea how long the submission process takes.</p>
<p>My Plugin and its details can be found <a href="http://www.barrydobson.com/software/amazon-quick-link-plugin/">here</a>.</p>
<p>Tags: <a rel="tag" href="http://technorati.com/tag/WLW">WLW</a> <a rel="tag" href="http://technorati.com/tag/Amazon">Amazon</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=FJEtQI"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=FJEtQI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=26xrZI"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=26xrZI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/308067361" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/06/09/windows-live-writer-plugin/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/06/09/windows-live-writer-plugin/</feedburner:origLink></item>
		<item>
		<title>AJAX Tutorials</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/295631209/</link>
		<comments>http://www.barrydobson.com/2008/05/22/ajax-tutorials/#comments</comments>
		<pubDate>Thu, 22 May 2008 07:15:12 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2008/05/22/ajax-tutorials/</guid>
		<description><![CDATA[I found this very good article that has links to 30 of the best AJAX tutorials around. It covers things from drag and drop to lists, as well as the basics of AJAX.
Designs Advice
]]></description>
			<content:encoded><![CDATA[<p>I found this very good article that has links to 30 of the best AJAX tutorials around. It covers things from drag and drop to lists, as well as the basics of AJAX.</p>
<p><a href="http://designsadvice.com/ajax/30-of-the-best-ajax-tutorials/trackback" target="_blank">Designs Advice</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=bciBoH"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=bciBoH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=Z1pz9H"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=Z1pz9H" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/295631209" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/05/22/ajax-tutorials/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/05/22/ajax-tutorials/</feedburner:origLink></item>
		<item>
		<title>Is there anything the Internet cannot achieve?</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/258333602/</link>
		<comments>http://www.barrydobson.com/2008/03/26/is-there-anything-the-internet-cannot-achieve/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 14:09:40 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2008/03/26/is-there-anything-the-internet-cannot-achieve/</guid>
		<description><![CDATA[I am pretty late spotting this story but it&#8217;s a good one. How many times did you hear about someone getting burgled? How many times do they actually catch the people responsible? How many times to the people get there stuff back?
The Internet to the rescue. It seems the guy over here came back from [...]]]></description>
			<content:encoded><![CDATA[<p>I am pretty late spotting this story but it&#8217;s a good one. How many times did you hear about someone getting burgled? How many times do they actually catch the people responsible? How many times to the people get there stuff back?</p>
<p>The Internet to the rescue. It seems the guy over <a href="http://blog.mcfearsome.com/2008/03/22/wow-your-a-moron" target="_blank">here</a> came back from a trip to find he had been burgled. Due to some sniffing around, the Internet, Digg, and a stupid kid he managed to get most of his stuff back. Its worth a read!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=rYmvJ4F"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=rYmvJ4F" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=Vb5GoRF"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=Vb5GoRF" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/258333602" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/03/26/is-there-anything-the-internet-cannot-achieve/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/03/26/is-there-anything-the-internet-cannot-achieve/</feedburner:origLink></item>
		<item>
		<title>Xbox 360 DivX Only Plays Audio</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/217510858/</link>
		<comments>http://www.barrydobson.com/2008/01/16/xbox-360-divx-only-plays-audio/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 08:09:24 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Xbox]]></category>

		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2008/01/16/xbox-360-divx-only-plays-audio/</guid>
		<description><![CDATA[Since the fall 07 update, the Xbox 360 now has the ability to play DivX/Xvid files through the media blade on the dashboard. This was probably one of the best features to be added to the dashboard.
I use this feature a lot but recently I came across a couple of videos that would play fine [...]]]></description>
			<content:encoded><![CDATA[<p>Since the fall 07 update, the Xbox 360 now has the ability to play DivX/Xvid files through the media blade on the dashboard. This was probably one of the best features to be added to the dashboard.</p>
<p>I use this feature a lot but recently I came across a couple of videos that would play fine in WMP but when played on the Xbox would be audio with no picture. I thought this was a limitation on the part of the way the Xbox does its decoding.</p>
<p>After a bit of digging around the web I re-read the <a href="http://blogs.msdn.com/xboxteam/archive/2007/11/30/december-2007-video-playback-faq.aspx" target="_blank">December 2007 Xbox 360 video playback FAQ</a> and discovered that this is a problem with PAL and VGA playback on the Xbox. The good news is that there is a fix, and it actually works. Check out the article:</p>
<blockquote><p><em>40. When trying to play 25 or 50 fps content, I don’t get any video over VGA</em></p></blockquote>
<p>on the FAQ for details on the fix.</p>
<p>Tags: <a rel="tag" href="http://technorati.com/tag/Xbox 360">Xbox 360</a> <a rel="tag" href="http://technorati.com/tag/VGA">VGA</a> <a rel="tag" href="http://technorati.com/tag/DivX">DivX</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=KGsFXwD"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=KGsFXwD" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=B11EnWD"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=B11EnWD" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/217510858" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/01/16/xbox-360-divx-only-plays-audio/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/01/16/xbox-360-divx-only-plays-audio/</feedburner:origLink></item>
		<item>
		<title>reCAPTCHA</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/212567411/</link>
		<comments>http://www.barrydobson.com/2008/01/07/recaptcha/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 13:12:02 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2008/01/07/recaptcha/</guid>
		<description><![CDATA[I recently added a contact page to my site. To do this I used a wordpress plug in,&#160; Dagon Design. Its a very good plug in by the way. It allows you to prevent spam by adding a reCAPTCHA image to the form. I&#8217;ve always known about reCAPTCHA helping to digitise books where OCR is [...]]]></description>
			<content:encoded><![CDATA[<p>I recently added a <a href="http://www.barrydobson.com/contact">contact</a> page to my site. To do this I used a wordpress plug in,&#160; <a href="http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/">Dagon Design</a>. Its a very good plug in by the way. It allows you to prevent spam by adding a reCAPTCHA image to the form. I&#8217;ve always known about reCAPTCHA helping to digitise books where OCR is not working, but I have always wondered how the system knows you are correct, if the word cannot be read by computers. </p>
<p>After I signed up for my free account at <a href="http://recaptcha.net">recaptcha.net</a> I read about how it works.</p>
<blockquote><p>Each new word that cannot be read correctly by OCR is given to a user in conjunction with another word for which the answer is already known. The user is then asked to read both words. If they solve the one for which the answer is known, the system assumes their answer is correct for the new one. The system then gives the new image to a number of other people to determine, with higher confidence, whether the original answer was correct.</p>
</blockquote>
<p>You can read more about it <a href="http://recaptcha.net/learnmore.html">here</a>.</p>
<p>Tags: <a href="http://technorati.com/tag/reCAPTCHA" rel="tag">reCAPTCHA</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=ULpnCtD"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=ULpnCtD" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=imnSJ5D"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=imnSJ5D" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/212567411" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2008/01/07/recaptcha/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2008/01/07/recaptcha/</feedburner:origLink></item>
		<item>
		<title>Xbox 360 DVD Up-Scaling</title>
		<link>http://feeds.feedburner.com/~r/BarryDobson/~3/203928159/</link>
		<comments>http://www.barrydobson.com/2007/12/20/xbox-360-dvd-up-scaling/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 18:24:55 +0000</pubDate>
		<dc:creator>Barry Dobson</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.barrydobson.com/2007/12/20/xbox-360-dvd-up-scaling/</guid>
		<description><![CDATA[All Xbox 360s have the ability to up-scale standard definition DVDs. There is a catch however. It will only up-scale when it&#8217;s being used with either the VGA cable or the HDMI cables on the newer Xbox&#8217;s.
Technorati Tags: Xbox 360,DVD,HD,up-scaling
]]></description>
			<content:encoded><![CDATA[<p>All Xbox 360s have the ability to up-scale standard definition DVDs. There is a catch however. It will only up-scale when it&#8217;s being used with either the <a type="amzn">VGA cable</a> or the <a type="amzn">HDMI cables</a> on the newer Xbox&#8217;s.</p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c32948f4-b234-47e5-a071-547c61229794" class="wlWriterSmartContent" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/Xbox%20360">Xbox 360</a>,<a rel="tag" href="http://technorati.com/tags/DVD">DVD</a>,<a rel="tag" href="http://technorati.com/tags/HD">HD</a>,<a rel="tag" href="http://technorati.com/tags/up-scaling">up-scaling</a></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/BarryDobson?a=zq8FzzC"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=zq8FzzC" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/BarryDobson?a=cJbvb6C"><img src="http://feeds.feedburner.com/~f/BarryDobson?i=cJbvb6C" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BarryDobson/~4/203928159" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.barrydobson.com/2007/12/20/xbox-360-dvd-up-scaling/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.barrydobson.com/2007/12/20/xbox-360-dvd-up-scaling/</feedburner:origLink></item>
	</channel>
</rss>
