<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://srtsolutions.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Coding with Great Hair</title><subtitle type="html">The ultimate synergy of hair gel and .Net</subtitle><id>http://srtsolutions.com/blogs/charliesears/atom.aspx</id><link rel="alternate" type="text/html" href="http://srtsolutions.com/blogs/charliesears/default.aspx" /><link rel="self" type="application/atom+xml" href="http://srtsolutions.com/blogs/charliesears/atom.aspx" /><generator uri="http://communityserver.org" version="4.1.31106.3070">Community Server</generator><updated>2008-06-23T15:47:00Z</updated><entry><title>Prime number generation with the Sieve of Eratosthenes</title><link rel="alternate" type="text/html" href="/blogs/charliesears/archive/2009/12/21/prime-number-generation-with-the-sieve-of-eratosthenes.aspx" /><id>/blogs/charliesears/archive/2009/12/21/prime-number-generation-with-the-sieve-of-eratosthenes.aspx</id><published>2009-12-21T20:39:00Z</published><updated>2009-12-21T20:39:00Z</updated><content type="html">Recently I have been getting back into Project Euler problems. One of the most common things I found I needed in my PE tool bag was a method to generate primes quickly, and to determine primality quickly. During a discussion with Darrell Hawley he told me about the Sieve of Eratosthenes . The method I was taking initially to determine primality was the AKS Primality Test , the algorithm, while efficient, was a bit more in depth than I was looking for, however the Sieve of Eratosthenes was simple...(&lt;a href="http://srtsolutions.com/blogs/charliesears/archive/2009/12/21/prime-number-generation-with-the-sieve-of-eratosthenes.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=32434" width="1" height="1"&gt;</content><author><name>cmsears</name><uri>http://srtsolutions.com/members/cmsears/default.aspx</uri></author><category term="C#" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/C_2300_/default.aspx" /><category term="Project Euler" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Project+Euler/default.aspx" /><category term="Sieve of Eratosthenes" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Sieve+of+Eratosthenes/default.aspx" /></entry><entry><title>Retrieving All Blog Posts from Kentico CMS's API</title><link rel="alternate" type="text/html" href="/blogs/charliesears/archive/2009/05/27/retrieving-all-blog-posts-from-kentico-cms-s-api.aspx" /><id>/blogs/charliesears/archive/2009/05/27/retrieving-all-blog-posts-from-kentico-cms-s-api.aspx</id><published>2009-05-27T10:31:00Z</published><updated>2009-05-27T10:31:00Z</updated><content type="html">Kentico CMS is a powerful web content solution, highly customizable though a web interface. My personal favorite feature is its open API allowing you to create your own .Net based controls, modules and event handlers. The one flaw I find in the API is its poor documentation. I wanted to get all blog posts from all blogs on my test site. I quickly found the Method CMS.Blogs.BlogHelper.GetAllPosts(), however that is about all the CMS was good for, it provided no examples or more explicit details on...(&lt;a href="http://srtsolutions.com/blogs/charliesears/archive/2009/05/27/retrieving-all-blog-posts-from-kentico-cms-s-api.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=11075" width="1" height="1"&gt;</content><author><name>cmsears</name><uri>http://srtsolutions.com/members/cmsears/default.aspx</uri></author><category term="Kentico CMS" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Kentico+CMS/default.aspx" /></entry><entry><title>My New Blog Theme Released!</title><link rel="alternate" type="text/html" href="/blogs/charliesears/archive/2009/04/20/my-new-blog-theme-released.aspx" /><id>/blogs/charliesears/archive/2009/04/20/my-new-blog-theme-released.aspx</id><published>2009-04-20T16:34:00Z</published><updated>2009-04-20T16:34:00Z</updated><content type="html">Ive finally finished my blog theme, it has some quirks, but those will be worked out. So you probably want to get to customizing the theme for yourself right away, to make it your own. First, open your current blog while you are signed in and click on &amp;#39;My Blog Dashboard&amp;#39;. This will take you to...your blog dashboard. From here you want to click on &amp;#39;Configure&amp;#39; on the main tab bar. Once you are in the theme tab. Open the drop down menu and select Granite. You will get an alert of &amp;#39;Are...(&lt;a href="http://srtsolutions.com/blogs/charliesears/archive/2009/04/20/my-new-blog-theme-released.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=9031" width="1" height="1"&gt;</content><author><name>cmsears</name><uri>http://srtsolutions.com/members/cmsears/default.aspx</uri></author><category term="Community Server" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Community+Server/default.aspx" /><category term="Blog" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Blog/default.aspx" /></entry><entry><title>Multithreading in C#</title><link rel="alternate" type="text/html" href="/blogs/charliesears/archive/2008/07/23/multithreading-in-c.aspx" /><id>/blogs/charliesears/archive/2008/07/23/multithreading-in-c.aspx</id><published>2008-07-23T18:58:00Z</published><updated>2008-07-23T18:58:00Z</updated><content type="html">Multithreading is something that seems to keep popping up on me when I am coding. My applications either need to do some crazy calculation (and not return 42) or a function will be waiting for a while before returning anything. Both of these leave my GUI locked up to the point where in Vista I get a straight black screen and the wait O, and in XP if I click on the GUI I get yelled at for touching an application that is not responding. I soon learned you can&amp;#39;t just call all your code out of the...(&lt;a href="http://srtsolutions.com/blogs/charliesears/archive/2008/07/23/multithreading-in-c.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=4005" width="1" height="1"&gt;</content><author><name>cmsears</name><uri>http://srtsolutions.com/members/cmsears/default.aspx</uri></author><category term="C#" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/C_2300_/default.aspx" /><category term="Multithreading" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Multithreading/default.aspx" /><category term="Threading" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Threading/default.aspx" /></entry><entry><title>Why I’m not buying a 3G iPhone</title><link rel="alternate" type="text/html" href="/blogs/charliesears/archive/2008/06/30/why-i-m-not-buying-a-3g-iphone.aspx" /><id>/blogs/charliesears/archive/2008/06/30/why-i-m-not-buying-a-3g-iphone.aspx</id><published>2008-06-30T14:59:55Z</published><updated>2008-06-30T14:59:55Z</updated><content type="html">Since the iPhone 3G was announced at WWDC&amp;#39;08 it seems like it&amp;#39;s the new phone everyone has to have. So many features have been added and hardware upgrades as well. I have a 2.5G iPhone and many people have asked me &amp;quot;are you going to get the new iPhone?&amp;quot; and being a geek, the latest and greatest toys are always the best. With the 2.5G iPhone I let my brain take back seat to my credit card, BUT Im letting my brain take over on this one and stop me from spending $299 on a white 16G...(&lt;a href="http://srtsolutions.com/blogs/charliesears/archive/2008/06/30/why-i-m-not-buying-a-3g-iphone.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=3756" width="1" height="1"&gt;</content><author><name>cmsears</name><uri>http://srtsolutions.com/members/cmsears/default.aspx</uri></author><category term="Orb" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Orb/default.aspx" /><category term="ATT" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/ATT/default.aspx" /><category term="3G" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/3G/default.aspx" /><category term="GPS" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/GPS/default.aspx" /><category term="iPhone" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/iPhone/default.aspx" /><category term="MTU" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/MTU/default.aspx" /></entry><entry><title>Charlie who?</title><link rel="alternate" type="text/html" href="/blogs/charliesears/archive/2008/06/23/charlie-who.aspx" /><id>/blogs/charliesears/archive/2008/06/23/charlie-who.aspx</id><published>2008-06-23T19:47:00Z</published><updated>2008-06-23T19:47:00Z</updated><content type="html">I did it, I started a blog. And I’ve gotta say, these first blog posts are pretty hard. There is the tried and true “about me” blog post, and there is the tactic of just writing a blog post like it’s a second post. But the fact of the matter is, this isn’t a second blog post. There may be people reading this that have no clue who I am or why they should care. So I’m gonna have to follow the trend. Who the heck is Charlie Sears? Short answer: I am, and I’m awesome. Long answer: I’m the guy in the...(&lt;a href="http://srtsolutions.com/blogs/charliesears/archive/2008/06/23/charlie-who.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://srtsolutions.com/aggbug.aspx?PostID=3656" width="1" height="1"&gt;</content><author><name>cmsears</name><uri>http://srtsolutions.com/members/cmsears/default.aspx</uri></author><category term="Video games" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/Video+games/default.aspx" /><category term="me" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/me/default.aspx" /><category term="F#" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/F_2300_/default.aspx" /><category term="C#" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/C_2300_/default.aspx" /><category term=".Net" scheme="http://srtsolutions.com/blogs/charliesears/archive/tags/.Net/default.aspx" /></entry></feed>