<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>michael-fraser.com</title>
	<atom:link href="http://michael-fraser.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://michael-fraser.com</link>
	<description>what interests me</description>
	<lastBuildDate>Wed, 21 Sep 2011 10:47:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>MS Reporting Services &#8211; Dynamic SQL</title>
		<link>http://michael-fraser.com/2011/06/ms-reporting-services-dynamic-sql/</link>
		<comments>http://michael-fraser.com/2011/06/ms-reporting-services-dynamic-sql/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 00:38:29 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Tech & Gadgets]]></category>
		<category><![CDATA[Dynamic Queries]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/?p=92</guid>
		<description><![CDATA[Over the last couple of weeks, I have started to use and get my head around Microsoft Reporting Services. As with all new products, it takes a while to start to understand the feature-set of the product and how to work-around some of the limitations. The power of SQL Reporting Services is the ability to]]></description>
			<content:encoded><![CDATA[<p><!-- Start ScreenSteps Content --></p>
<div class="LessonContent">
<div class="LessonSummary">
<p>Over the last couple of weeks, I have started to use and get my head around Microsoft Reporting Services. As with all new products, it takes a while to start to understand the feature-set of the product and how to work-around some of the limitations.</p>
<p>The power of SQL Reporting Services is the ability to create and deploy reports that end-users can consume and refine if necessary, without giving them direct access to the database. It also make sense that these same end-users can refine datasets as required before exporting to MS Excel.</p>
<p>In my case, I wanted to provide an easy way for users to be able to modify some of the search logic for a given report once published out i.e. Ability to select a search field, basic logic to search on and required search value. In order to do this, I had to convert the SQL within the dataset into &#8216;Dynamic SQL&#8217;. This small tutorial will take you through the steps of how to do this using the MS AdventureWorks Database.</p>
<p>On a side note, I am also testing out ScreenSteps Pro, which helps in the production of documentation and publication. It looks pretty good so far!<span id="more-92"></span></p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">1. Create Datasource to Adventure Works</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308612638305.png" alt="media_1308612638305.png" width="532" height="387" /></div>
<div class="StepInstructions">
<p>Start by setting up a connection to the Adventure Works Database</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">2. Create Parameter Variables</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308612807001.png" alt="media_1308612807001.png" width="123" height="69" /></div>
<div class="StepInstructions">
<p>For this exercise, we create three parameter variables. I have named these as follows with the following attributes for the &#8216;General&#8217; Screen</p>
<ul>
<li>QueryField | DataType &#8211; Text | Prompt &#8211; Search By</li>
<li>QueryText | DataType &#8211; Text | Prompt &#8211; Search Value (no other parameter settings need to be defined.</li>
<li>QueryLogic | DataType &#8211; Text | Prompt &#8211; Logic</li>
</ul>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">3. Parameter Value Options &#8211; Query Field</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308613674319.png" alt="media_1308613674319.png" width="532" height="430" /></div>
<div class="StepInstructions">
<p>Unfortunately ScreenSteps only allows for single images under each step, so I will not include screen shots of each parameter properties. Create fields as shown in the above image. The Label field is what will be displayed to the users. The Value is the name of the table columns we will be searching by.</p>
<p>On the default value screen, select LastName. This will simple pre-select the drop-down list for report viewer users to a default value.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">4. parameter Value Options &#8211; Query Logic</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308613887116.png" alt="media_1308613887116.png" width="532" height="436" /></div>
<div class="StepInstructions">
<p>This is where we add the SQL logic. I had difficulty trying to get report builder to evaluate &#8216;=&#8217; as a value, so I resorted to the string equivalent. It will become apparent how this works later in the exercise. Once again, set the default value to Equal.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">5. Creating Data-Set</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308614567420.png" alt="media_1308614567420.png" width="532" height="413" /></div>
<div class="StepInstructions">
<p>For starters, we will create a simple dataset using the following SQL Query.</p>
<pre>SELECT title,firstname,lastname,phone FROM [Person].[Contact]</pre>
<p>Name the dataset DS_PersonRecords and Select OK.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">6. Create &amp; Bind Data-Set to Data-Table</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308614745978.png" alt="media_1308614745978.png" width="449" height="59" /></div>
<div class="StepInstructions">
<p>Create a table and bind the dataset to it. I do this by dragging the columns from the Data-set we just created to the columns to the table.</p>
<p>Do a quick test by selecting the &#8216;Preview&#8217; tab.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">7. Test Report</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308614805680.png" alt="media_1308614805680.png" width="472" height="63" /></div>
<div class="StepInstructions">
<p>We have now added the criteria to our report for which we want to search by i.e. Fieldname, Operator and Value. To proceed with the test, just enter a value into the Search Value field and press the &#8216;View Report&#8217; button. Note: These parameters are not yet hooked up to our SQL query. We will do that next.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">8. Creating the Dynamic SQL</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308615718180.png" alt="media_1308615718180.png" width="532" height="300" /></div>
<div class="StepInstructions">
<p>Now that you have tested that the basic report is functioning, lets proceed with modifying the SQL to handle our search logic.</p>
<p>Re-open the DS_PersonRecords dataset.</p>
<p>Select the fx button to the right of the query pane and past the following SQL in.</p>
<pre>= <span style="color: #a31515;">"SELECT title,firstname,lastname,phone FROM [Person].[Contact] WHERE "</span>
&amp; Parameters!QueryField.Value &amp; <span style="color: #a31515;">" "</span> &amp; iif(Parameters!QueryLogic.Value = <span style="color: #a31515;">"equal"</span>,<span style="color: #a31515;">"= @QueryText"</span>,<span style="color: #a31515;">"like @QueryText"</span>)</pre>
<p>I will quickly explain how this works. We are now treating the following sql as a string expression. This is evaluated as such when the query starts with the equal sign. i.e. = &#8221; &#8221;</p>
<p>With the use of the variables and a little logic, we are creating a dynamic string. We can reference our parameter variables in two ways. i.e. Parameters!QueryLogic.Value or @QueryLogic. Referencing by the first method Parameters!QueryLogic.Value must be outside the string, so we close the string and concatenate using &amp;.</p>
<p>Properties referenced by @ can be done directly within the string.</p>
<p>I have also added a simple if statement into the mix to test whether or not the QueryLogic is equal or like and display the necessary SQL as needed based on the outcome.</p>
<p>Once you have pasted in the SQL, select OK.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">9. Binding Parameters</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308615800890.png" alt="media_1308615800890.png" width="532" height="410" /></div>
<div class="StepInstructions">
<p>The last step of the exercise is to Bind the Parameters to the dataset. I have kept the Parameter Name and Parameter Value the same to avoid confusion.</p>
<p>Select OK once finished.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size: 20px;">10. Preview Final Results</h3>
<div class="StepImage" style="margin: 10px 0px;"><img style="padding: 3px; border: 1px solid #ccc;" src="http://michael-fraser.com/wp-content/uploads/2011/06/media_1308615983040.png" alt="media_1308615983040.png" width="532" height="265" /></div>
<div class="StepInstructions">
<p>Go ahead and preview the final results. To test that our like operator is working, select Like from the list. Search By Surname and enter fra% in the search value, % being a wildcard.</p>
<p>This will pick up all records with a surname starting with the letters fra. I returned 2 results.</p>
<p>This is just a quick walkthrough of how you can go about adding in additional logic to create more useful and dynamic reports for end users. From here you can extend the capabilities further.</p>
<p>Let me know if you have come across any other methods to achieve similar results.</p>
</div>
</div>
<p><!-- End ScreenSteps Content --></p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2011/06/ms-reporting-services-dynamic-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playstation Welcome Back&#8211;Missing Games</title>
		<link>http://michael-fraser.com/2011/06/playstation-welcome-backmissing-games/</link>
		<comments>http://michael-fraser.com/2011/06/playstation-welcome-backmissing-games/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 00:46:11 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Tech & Gadgets]]></category>
		<category><![CDATA[Missing Games]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Playstation]]></category>
		<category><![CDATA[Welcome Back]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/2011/06/playstation-welcome-backmissing-games/</guid>
		<description><![CDATA[After over a month of waiting for the network to come back up, and days of trying to log into it just to receive error messages, I finally managed to login and checkout the Welcome Back Offer. Unfortunately, I made the mistake of downloading the welcome back offer (yes it is downloadable) just to realise]]></description>
			<content:encoded><![CDATA[<p>After over a month of waiting for the network to come back up, and days of trying to log into it just to receive error messages, I finally managed to login and checkout the Welcome Back Offer. Unfortunately, I made the mistake of downloading the welcome back offer (yes it is downloadable) just to realise that then removed all my options to download the free games! </p>
<p>So, whether or not this is a result of what I did or a system wide bug, I am not sure. Will do a bit of searching and find out what is going on. I did however manage to join up for the 30 day free playstation plus offer. </p>
<h3>Update:</h3>
<p>Thanks to DryEarth.com for posting up a workaround to this problem &#8211; <a title="http://www.dryearth.com/playstation-welcome-back-missing-free-game/" href="http://www.dryearth.com/playstation-welcome-back-missing-free-game/">http://www.dryearth.com/playstation-welcome-back-missing-free-game/</a></p>
<p>Have to access from the playstation account management section. Logical… See link above for detailed instructions.</p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2011/06/playstation-welcome-backmissing-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Legal Document &amp; Legal Forms</title>
		<link>http://michael-fraser.com/2011/06/legal_documents_and_forms/</link>
		<comments>http://michael-fraser.com/2011/06/legal_documents_and_forms/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 13:18:45 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[Legal Documents & Forms]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/?p=65</guid>
		<description><![CDATA[Depending on your occupation or circumstances, at times it will be necessary to source and complete a legal document. Whether it be a will and testament, the creation of a trust dead or simply a loan agreement, these are all legal documents. The Internet has numerous sites that deal with legal documents and it can]]></description>
			<content:encoded><![CDATA[<p>Depending on your occupation or circumstances, at times it will be necessary to source and complete a legal document. Whether it be a will and testament, the creation of a trust dead or simply a loan agreement, these are all legal documents. The Internet has numerous sites that deal with legal documents and it can be a daunting undertaking to determine good from bad documents. Over the coming months, I will start looking at different legal document sites, their technology and what to look for in online legal documents and forms.</p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2011/06/legal_documents_and_forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integration Services &#8211; Multiple Environments</title>
		<link>http://michael-fraser.com/2011/05/integration-services-multiple-environments/</link>
		<comments>http://michael-fraser.com/2011/05/integration-services-multiple-environments/#comments</comments>
		<pubDate>Fri, 27 May 2011 06:03:45 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Tech & Gadgets]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/?p=51</guid>
		<description><![CDATA[Best Practice with version control of DB schemas.. So I am currently working a Microsoft data integration project (more on that later). For the first time, we have setup multiple SSIS environments to mirror that of our production database environments, i.e. Development, Test and Production. I am currently using Visual Studio 2010 to manage database]]></description>
			<content:encoded><![CDATA[<p><strong>Best Practice with version control of DB schemas..</strong></p>
<p>So I am currently working a Microsoft data integration project (more on that later). For the first time, we have setup multiple SSIS environments to mirror that of our production database environments, i.e. Development, Test and Production. I am currently using Visual Studio 2010 to manage database changes (via a database project). All source code is version controlled via TFS.</p>
<p>At the moment, if I make any changes to the development SSIS database, I do so directly through SQL Server Management Studio. Within VS 2010, I then perform a schema compare against the Project schema and update the project schema with any changes.</p>
<p>Once packages have been deployed and tested, on Development, I build and deploy my database solution out to test and production.</p>
<p>This process while it works seems to be a little combersome. I was wondering if anyone out there reading this, has experience in managing multiple database instance using VS, and how they manage schema changes. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2011/05/integration-services-multiple-environments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happiness about life choices</title>
		<link>http://michael-fraser.com/2010/10/happiness-about-life-choices/</link>
		<comments>http://michael-fraser.com/2010/10/happiness-about-life-choices/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 01:53:24 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/2010/10/happiness-about-life-choices/</guid>
		<description><![CDATA[Interesting article in the Australian today about lifestyle choices and theaffect that can have upon your psychological wellbeing.&#160; Key factors that contribute to happiness include: healthy lifestyle long-term goals, faith working hours social participation Your partners personality plays a part in this as well (a large part I would imagine!). Getting married to a nag]]></description>
			<content:encoded><![CDATA[<p>Interesting article in the Australian today about lifestyle choices and theaffect that can have upon your psychological wellbeing.&#160; Key factors that contribute to happiness include:</p>
<ul>
<li>healthy lifestyle</li>
<li>long-term goals,</li>
<li>faith</li>
<li>working hours</li>
<li>social participation</li>
</ul>
<p>Your partners personality plays a part in this as well (a large part I would imagine!). Getting married to a nag would probably neutralize any benefit of the above… Article below.</p>
<p> <span id="more-50"></span>
<p><strong>HAPPINESS comes from individual choices about how to live your life rather than genetic or childhood influences. </strong></p>
<p>A neurotic partner and the pursuit of material wealth, on the other hand, are key ingredients for unhappiness.</p>
<p>A 25-year psychological study has contradicted previous theories that long-term adult happiness mainly depends on genetic factors and personality traits formed in childhood.</p>
<p>The new evidence suggests a healthy lifestyle, long-term goals, faith, working hours, social participation and your partner&#8217;s personality are the principal factors for happiness, <a href="http://www.theaustralian.com.au/news/nation/we-make-our-own-happiness-researchers-say/story-e6frg6nf-1225934053510"><em>The Australian</em> reports</a>.</p>
<p>The findings, published today in the US journal <em>Proceedings of the National Academy of Sciences</em>, are drawn from yearly interviews with Germans from 1984 to 2008. More than 60,000 people were surveyed.</p>
<p>
<p><a href="http://www.google.com.au/ig"></a></p>
<p> Co-author Bruce Headey, associate professor at the University of Melbourne&#8217;s Institute of Applied Economic and Social Research, said Australian research showed similar results.</p>
<p>&#8221;It appears that prioritising success and material goals is actually harmful to life satisfaction,&#8221; he was quoted as writing in the journal by <a href="http://www.theage.com.au/national/happiness-is-a-matter-of-choice-study-finds-20101004-164b3.html"> <em>The Age</em> today.</a></p>
<p>The newspaper said partner choice played a big role in happiness.</p>
<p>&quot;Women were less happy if their partner did not prioritise family goals than if they had no partner, and people with a neurotic partner were far less happy over time,&quot; it reported.</p>
<p>Gert Wagner, of the Max Planck Institute for Human Development in Germany, also analysed results from the German study.</p>
<p><a href="http://www.livescience.com/health/happiness-life-satisfaction-change-101004.html">He told LiveScience</a>: &quot;People with a lot of money are more satisfied with their lives&#8230; but mainly due to the more interesting and challenging jobs they have.</p>
<p>&quot;Money is simply a by-product of good and satisfying jobs. If you want to be satisfied with your life, you must spend time with your friends and your family.&quot;</p>
<p>Read more: <a href="http://www.news.com.au/national/happiness-about-life-choices-not-upbringing/story-e6frfkvr-1225934134572#ixzz11ReAUvpx">http://www.news.com.au/national/happiness-about-life-choices-not-upbringing/story-e6frfkvr-1225934134572#ixzz11ReAUvpx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2010/10/happiness-about-life-choices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Simple Press VS BB Press</title>
		<link>http://michael-fraser.com/2010/09/wordpress-simple-press-vs-bb-press/</link>
		<comments>http://michael-fraser.com/2010/09/wordpress-simple-press-vs-bb-press/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 23:26:22 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/2010/09/wordpress-simple-press-vs-bb-press/</guid>
		<description><![CDATA[I have just started to evaluate two Forum add-ons for WordPress. My 15 minute look at either product left me undecided as to which software I should implement for a community website that I am currently working on. Simple Press looks to be designed and developed from the ground up for integration into WordPress. It]]></description>
			<content:encoded><![CDATA[<p>I have just started to evaluate two Forum add-ons for WordPress. My 15 minute look at either product left me undecided as to which software I should implement for a community website that I am currently working on.</p>
<p>Simple Press looks to be designed and developed from the ground up for integration into WordPress. It looks to have a comprehensive administrative interface and bells and whistles normally associated with dedicated forum software. My first impressions were that it would require significant styling effort to match the site I am working on.</p>
<p>BB Press on the other hand is an independent install which can leverage of a WordPress Installation and can share WP membership accounts and cookie authentication. It has actually been written by the authors of WP and is what they are using for their official Forums. Theming looked straight forward, however the administrative interface is not integrated into WordPress, either are the themes, which would require re-creating so as to match your site. Features are lightweight compared to Simple Press but that is not of a great concern to me.</p>
<p>I was just wondering if anyone out there has implemented either one of these products and what your impressions of them are?</p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2010/09/wordpress-simple-press-vs-bb-press/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>00904. 00000 &#8211;  invalid identifier</title>
		<link>http://michael-fraser.com/2010/09/00904-00000-invalid-identifier/</link>
		<comments>http://michael-fraser.com/2010/09/00904-00000-invalid-identifier/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 04:29:52 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Tech & Gadgets]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/2010/09/00904-00000-invalid-identifier/</guid>
		<description><![CDATA[I have been writing some scripts in oracle and have just encountered and solved a niggly little problem. Syntax difference between SQL Server and Oracle threw me. On performing this query, was receiving this error: 00904. 00000 -  &#8220;%s: invalid identifier&#8221;. WITH tempTab AS ( SELECT a,b,c,d,e, ROW_NUMBER() OVER (partition by a ORDER BY e)]]></description>
			<content:encoded><![CDATA[<p>I have been writing some scripts in oracle and have just encountered and solved a niggly little problem. Syntax difference between SQL Server and Oracle threw me.</p>
<p>On performing this query, was receiving this error: 00904. 00000 -  &#8220;%s: invalid identifier&#8221;.</p>
<blockquote><p>WITH tempTab AS<br />
(<br />
SELECT a,b,c,d,e, ROW_NUMBER() OVER (partition by a ORDER BY e) AS &#8220;RowNums&#8221;<br />
FROM tableName<br />
ORDER BY aASC<br />
)<br />
SELECT * From tempTab WHERE RowNums = 1</p></blockquote>
<p>Because the RowNums is a created column name, the referred RowNums outside of the WITH clause must also be referenced in the same manner i,e “RowNums”</p>
<p>Logical right? ;P</p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2010/09/00904-00000-invalid-identifier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flock Web-browser</title>
		<link>http://michael-fraser.com/2010/01/flok-web-browser/</link>
		<comments>http://michael-fraser.com/2010/01/flok-web-browser/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 11:33:54 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Flicker]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/2010/01/flok-web-browser/</guid>
		<description><![CDATA[I have just downloaded and configured a new web browser called Flock. (http://www.flock.com/) It is actually pretty neat. Based on the mozilla engine, it aims to bring in all of your social networking sites into the one area. You can access your email accounts like Gmail and Yahoo, access and post to Twitter and Facebook,]]></description>
			<content:encoded><![CDATA[<p>I have just downloaded and configured a new web browser called Flock. (http://www.flock.com/) It is actually pretty neat. Based on the mozilla engine, it aims to bring in all of your social networking sites into the one area.</p>
<p>You can access your email accounts like Gmail and Yahoo, access and post to Twitter and Facebook, post to your blog via a built in blog client (pretty basic) view rss feeds etc. I have been a default Internet Explorer user for many years, however the features in this browser and such that I think this will become my default web browser. I&#8217;m loving it!</p>
<p>I would love to know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2010/01/flok-web-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World! The search for a Word Press editor.</title>
		<link>http://michael-fraser.com/2010/01/hello-world-the-search-for-a-word-press-editor/</link>
		<comments>http://michael-fraser.com/2010/01/hello-world-the-search-for-a-word-press-editor/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 13:17:04 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michael-fraser.com/?p=4</guid>
		<description><![CDATA[The time has come to revive my blog, and what better way to do this than start from scratch. I have told myself that it is time to start taking internet marketing seriously and as such, I am looking at getting up to speed with all of the new social networking technologies and what impact]]></description>
			<content:encoded><![CDATA[<p>The time has come to revive my blog, and what better way to do this than start from scratch. I have told myself that it is time to start taking internet marketing seriously and as such, I am looking at getting up to speed with all of the new social networking technologies and what impact they can have on ecommerce businesses.</p>
<p>So before I get too serious, I need to find a decent editor for word press, and what I mean by that is a word press editor that can be run from windows, is easy to use and has some administrative features so I do not have to log into word press.</p>
<p><span id="more-4"></span></p>
<p>Now I am not going to write a complete review of every blogging client that is out there. As a matter of fact, I cam across a pretty good list of about 20 of them here: <a href="http://www.hongkiat.com/blog/desktop-blogging-clients-the-ultimate-list/">http://www.hongkiat.com/blog/desktop-blogging-clients-the-ultimate-list/</a></p>
<p>I have used windows live writer in the past, and that was pretty good, and it is totally free.  The most popular client tool is called BlogJet (which I am downloading a demo version now). The full version is only $39.95 for a single user with unlimited blog. Could be worth it. I will let you know. 11:15pm, bed-time! Over and out.</p>
]]></content:encoded>
			<wfw:commentRss>http://michael-fraser.com/2010/01/hello-world-the-search-for-a-word-press-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

