<?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>Skowronek.org &#187; Technology</title>
	<atom:link href="http://www.skowronek.org/tag/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.skowronek.org</link>
	<description>The official web site for the Skowronek family of South Jordan, Utah, USA</description>
	<lastBuildDate>Wed, 31 Aug 2011 16:01:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Blown XFX GeForce 8600GT</title>
		<link>http://www.skowronek.org/2010/04/21/blown-xfx-geforce-8600gt/</link>
		<comments>http://www.skowronek.org/2010/04/21/blown-xfx-geforce-8600gt/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 05:43:43 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Components]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/?p=1035</guid>
		<description><![CDATA[Failing video on the wife&#8217;s computer eventually ended up with a blown video card after a year usage. Not to pleased about the XFX brand nor their XFX GeForce 8600GT video card.]]></description>
			<content:encoded><![CDATA[<p>Failing video on the wife&#8217;s computer eventually ended up with a blown video card after a year usage. Not to pleased about the <a href="http://www.xfxforce.com" target="_blank">XFX</a> brand nor their <a title="XFX GeForce 8600GT Video Card" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16814150229" target="_blank">XFX GeForce 8600GT</a> video card.</p>
<p><a title="Blown Video Card by skowronek, on Flickr" href="http://www.flickr.com/photos/skowronek/4542760992/" target="_blank"><img src="http://farm3.static.flickr.com/2709/4542760992_6e6033c6d8.jpg" alt="Blown Video Card" width="500" height="334" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2010/04/21/blown-xfx-geforce-8600gt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ektron and Localization Tags</title>
		<link>http://www.skowronek.org/2008/05/23/ektron-and-localization-tags/</link>
		<comments>http://www.skowronek.org/2008/05/23/ektron-and-localization-tags/#comments</comments>
		<pubDate>Sat, 24 May 2008 04:37:23 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Ektron]]></category>
		<category><![CDATA[l10n]]></category>
		<category><![CDATA[Localization]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/?p=750</guid>
		<description><![CDATA[I ran across an interesting API library deep in the Ektron API framework that allows you to pull the actual localization tag (e.g. en-US, en-GB, etc.) for the current language type id of the site (e.g. 1033, 2058, etc.). Previous to this, we had to create our own associative, key/value pair XML file that stored [...]]]></description>
			<content:encoded><![CDATA[<p>I ran across an interesting API library deep in the Ektron API framework that allows you to pull the actual <a href="http://www.iana.org/assignments/language-tags" target="_blank">localization tag</a> (e.g. en-US, en-GB, etc.) for the current language type id of the site (e.g. 1033, 2058, etc.). Previous to this, we had to create our own associative, key/value pair XML file that stored the relationships. Since I could only find a single reference to this library on the Ektron site, I hoping this information proves useful to others. Enjoy.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008080; font-style: italic;">// get and instance of the current site API object</span>
Ektron<span style="color: #008000;">.</span><span style="color: #0000FF;">Cms</span><span style="color: #008000;">.</span><span style="color: #0000FF;">SiteAPI</span> sAPI <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> Ektron<span style="color: #008000;">.</span><span style="color: #0000FF;">Cms</span><span style="color: #008000;">.</span><span style="color: #0000FF;">SiteAPI</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #008080; font-style: italic;">// retrieve the language date for the current site API instance</span>
Ektron<span style="color: #008000;">.</span><span style="color: #0000FF;">Cms</span><span style="color: #008000;">.</span><span style="color: #0000FF;">LanguageData</span> ld <span style="color: #008000;">=</span> sAPI<span style="color: #008000;">.</span><span style="color: #0000FF;">GetLanguageById</span><span style="color: #008000;">&#40;</span>ContentBlock<span style="color: #008000;">.</span><span style="color: #0000FF;">LanguageID</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #008080; font-style: italic;">// assign the localization tag</span>
<span style="color: #6666cc; font-weight: bold;">string</span> langTag <span style="color: #008000;">=</span> Ld<span style="color: #008000;">.</span><span style="color: #0000FF;">XmlLang</span><span style="color: #008000;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/05/23/ektron-and-localization-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Delete a Windows Service</title>
		<link>http://www.skowronek.org/2008/05/13/how-to-delete-a-windows-service/</link>
		<comments>http://www.skowronek.org/2008/05/13/how-to-delete-a-windows-service/#comments</comments>
		<pubDate>Tue, 13 May 2008 23:31:54 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/2008/05/13/how-to-delete-a-windows-service/</guid>
		<description><![CDATA[I have used the service controller command line tool for years. I have finally decided to write something up on it briefly since I have been working with various frameworks/systems that are not completely removing their services after uninstalling them. Open services applet/application: Start &#124; Programs &#124; Administrative Tools &#124; Services Locate offending Service Double-click [...]]]></description>
			<content:encoded><![CDATA[<p>I have used the service controller command line tool for years. I have finally decided to write something up on it briefly since I have been working with various frameworks/systems that are not completely removing their services after uninstalling them.</p>
<ol>
<li>Open services applet/application: Start | Programs | Administrative Tools | Services
<li>Locate offending Service
<li>Double-click OR Right-click | Properties
<li>Copy the &#8216;Display Name&#8217; property
<li>Stop the service
<li>Exit service information screen and services applet
<li>Start | Run | cmd | OK
<li>Type: cs delete &#8220;%PASTE OR TYPE THE SERVICE NAME HERE%&#8221;
<li>Hit enter key
<li>Service has been deleted
</ol>
<p>You may or may not be able to delete the service depending on it&#8217;s dependencies. You will need to follow the chain down to any child services if that is the case and delete them first. You may also be required to reboot.</p>
<p>Feedback welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/05/13/how-to-delete-a-windows-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom QuickLinks in Ektron</title>
		<link>http://www.skowronek.org/2008/05/09/custom-quicklinks-in-ektron/</link>
		<comments>http://www.skowronek.org/2008/05/09/custom-quicklinks-in-ektron/#comments</comments>
		<pubDate>Fri, 09 May 2008 22:45:52 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Ektron]]></category>
		<category><![CDATA[QuickLinks]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/2008/05/09/custom-quicklinks-in-ektron/</guid>
		<description><![CDATA[While prototyping a custom DMS asset handler today I managed to locate actual instructions on configuring your own QuickLink handlers for specific assets. However confusing it may be that these instructions were found in the &#8220;Users Manual&#8221;, I am just glad I was able to locate it fairly quickly. Updating Default Template for Multiple Quicklinks [...]]]></description>
			<content:encoded><![CDATA[<p>While prototyping a custom DMS asset handler today I managed to locate actual instructions on configuring your own QuickLink handlers for specific assets. However confusing it may be that these instructions were found in the &#8220;Users Manual&#8221;, I am just glad I was able to locate it fairly quickly.</p>
<h3>Updating Default Template for Multiple Quicklinks</h3>
<p>WARNING! This procedure is only necessary if Link Management is set to false in your web.config file. If if Link Management is set to true, Ektron CMS400.NET automatically updates the template within the quicklink when content is moved. See your system administrator for help with the web.config file.</p>
<p>NOTE This action can only be performed on quicklinks. When content is moved in Ektron CMS400.NET, its quicklink does not get changed. After it is moved, you need to update the default template called in the content’s quicklink. To update the default template for one or more quicklinks, follow these steps.</p>
<ol>
<li>In the library, access the quicklinks folder containing quicklinks you want to update.
<li>Click the Update Quicklinks button.
<li>The Update URL Link Template Quicklinks screen is displayed.
<li>Check the quicklinks you want to update. NOTE Check the box in the table header to select or deselect all.
<li>In the To: text field, enter the name of the template you want to apply to the selected quicklinks. Last User to Edit Last user that made changes to the quicklink or form. Last Edit Date The date the quicklink or form was last edited. Date Created The date and time the quicklink or form was originally added to the Ektron CMS400.NET library. Field Description Library Folder Ektron CMS400.NET User Manual, Version 7.5 155
<li>Click the Update Quicklinks button to update the changes. A confirmation message is displayed.
<li>Click OK to continue. The selected quicklinks are updated to use the specified template.
</ol>
<p>These instructions can also be found in the <a href="http://www.ektron.com/manuals/cms400/usermanual.pdf#quicklinks" target="_blank">Ektron User&#8217;s Manual</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/05/09/custom-quicklinks-in-ektron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SWFObject Codebase Moves to Google Code</title>
		<link>http://www.skowronek.org/2008/04/28/swfobject-codebase-moves-to-google-code/</link>
		<comments>http://www.skowronek.org/2008/04/28/swfobject-codebase-moves-to-google-code/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 23:59:01 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Code]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/2008/04/28/swfobject-codebase-moves-to-google-code/</guid>
		<description><![CDATA[While doing some Flash coding today I noticed the SWFObject homepage had a notice that all the code had moved to Google Code as the new and improved (lowercase) swfobject. For anyone not familiar with swfobject, it is (IMHO) the de facto JavaScript library/API for embedding and enabling Adobe Flash applications on the web. Version [...]]]></description>
			<content:encoded><![CDATA[<p>While doing some Flash coding today I noticed the SWFObject homepage had a notice that all the code had moved to Google Code as the <em>new and improved</em> (lowercase) <strong>swfobject</strong>. For anyone not familiar with <strong>swfobject</strong>, it is (IMHO) the de facto JavaScript library/API for embedding and enabling <a href="http://www.adobe.com/flash" target="_blank">Adobe Flash</a> applications on the web. Version 2.0 has been completely revamped with a pretty steep upgrade path, so do not do it lightheartedly.</p>
<p><a href="http://code.google.com/p/swfobject/" target="_blank">&lt;swfobject&gt; google Project Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/04/28/swfobject-codebase-moves-to-google-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AddThis Bookmark Service Widget</title>
		<link>http://www.skowronek.org/2008/04/28/addthis-bookmark-service-widget/</link>
		<comments>http://www.skowronek.org/2008/04/28/addthis-bookmark-service-widget/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 18:26:29 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Widget]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/2008/04/28/addthis-bookmark-service-widget/</guid>
		<description><![CDATA[Today, while reading an article on GameSpy.com, I ran across a cool widget for the AddThis bookmarking service. I had seen it a few months ago but had forgotten about it. It is a great interaction enhancement for an embedded cross site web feature (EXSWF). AddThis Widget]]></description>
			<content:encoded><![CDATA[<p>Today, while reading an article on <a href="http://www.GameSpy.com" target="_blank">GameSpy.com</a>, I ran across a cool widget for the <a href="http://www.addthis.com/" target="_blank">AddThis</a> bookmarking service. I had seen it a few months ago but had forgotten about it. It is a great interaction enhancement for an embedded cross site web feature (EXSWF).</p>
<p><a href="http://www.addthis.com/customization.php" target="_blank">AddThis Widget</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/04/28/addthis-bookmark-service-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing &#8216;Googleforce&#8217;</title>
		<link>http://www.skowronek.org/2008/04/14/introducing-googleforce/</link>
		<comments>http://www.skowronek.org/2008/04/14/introducing-googleforce/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 15:52:48 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/2008/04/14/introducing-googleforce/</guid>
		<description><![CDATA[It&#8217;s official, Google and Salesforce.com have joined forces to offer enterprise CRM services coupled with Google&#8217;s ever so impressive Google Apps services. The possibilities are endless. Salesforce and Google team to conquer the enterprise by ZDNet&#8216;s Phil Wainewright]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s official, Google and Salesforce.com have joined forces to offer enterprise CRM services coupled with Google&#8217;s ever so impressive Google Apps services. The possibilities are endless.</p>
<p><a href="http://blogs.zdnet.com/SAAS/?p=490" rel="bookmark" title="Permalink" target="_blank"> Salesforce and Google team to conquer the enterprise</a> by <a href="http://zdnet.com">ZDNet</a>&#8216;s Phil Wainewright</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/04/14/introducing-googleforce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AceProject Max User Account Delimma</title>
		<link>http://www.skowronek.org/2008/03/13/ace-project-max-user-account-delimma/</link>
		<comments>http://www.skowronek.org/2008/03/13/ace-project-max-user-account-delimma/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 21:50:45 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[AceProject]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Stored Procedure]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/2008/03/13/ace-project-max-user-account-delimma/</guid>
		<description><![CDATA[I have been using AceProject project management system for years. First at LANDesk, and now at McCann Erickson. Though it is a great tool for managing projects and tasks, it&#8217;s user management system lacks a vital feature, cascade delete user. That is, delete the user along with all it&#8217;s assigned tasks, projects etc. So after [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using <a href="http://www.aceproject.com" target="_blank">AceProject</a> project management system for years. First at <a href="http://www.landesk.com" target="_blank">LANDesk</a>, and now at <a href="http://www.mccannslc.com" target="_blank">McCann Erickson</a>. Though it is a great tool for managing projects and tasks, it&#8217;s user management system lacks a vital feature, cascade delete user. That is, delete the user along with all it&#8217;s assigned tasks, projects etc.</p>
<p>So after having make various request for this &#8220;feature&#8221; I have written my own sequel procedure to handle the re-assignment and deletion of user accounts. In a nutshell, this procedure will re-assign all relevant data to a new user account, then delete the actual user record from the database. This then allows you to actually take advantage of your licenses (in our case 50 for now.)</p>
<p>Hopefully this helps someone else that is hosting this application as it did me.</p>
<p><a href='/wp-content/uploads/2008/03/migrate-user.sql' title='Ace Project User Migration Stored Procedure' target="_blank">Ace Project User Migration Stored Procedure</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/03/13/ace-project-max-user-account-delimma/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo! YPod?</title>
		<link>http://www.skowronek.org/2008/03/10/yahoo-ypod/</link>
		<comments>http://www.skowronek.org/2008/03/10/yahoo-ypod/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 22:15:35 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/2008/03/10/yahoo-ypod/</guid>
		<description><![CDATA[I ran across this little morsel today while Googleing more Ektron issues. Yahoo!, Google, Live&#8230;how many technologies am I going to need to know to stay afloat in this industry?! Yahoo! Music Launches New Media PlayerYahoo! Music Player Site]]></description>
			<content:encoded><![CDATA[<p>I ran across this little morsel today while Googleing more Ektron issues. Yahoo!, Google, Live&#8230;how many technologies am I going to need to know to stay afloat in this industry?!</p>
<p><a href="http://developer.yahoo.net/blog/archives/2008/01/post.html" target="_blank">Yahoo! Music Launches New Media Player</a><br /><a href="http://developer.yahoo.com/mediaplayer/" target="_blank">Yahoo! Music Player Site</a></p>
<p><iframe border="0" name="yahoomp" id="yahoomp" frameborder="0" scrolling="auto" src="/wp-content/uploads/2008/03/yahoo-mp.htm" height="50" width="500"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/03/10/yahoo-ypod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ektron and Virtual Directories</title>
		<link>http://www.skowronek.org/2008/03/08/ektron-and-virtual-directories/</link>
		<comments>http://www.skowronek.org/2008/03/08/ektron-and-virtual-directories/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 05:56:30 +0000</pubDate>
		<dc:creator>Skowronek</dc:creator>
				<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Ektron]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.skowronek.org/2008/03/08/ektron-and-virtual-directories/</guid>
		<description><![CDATA[Note to self: do not use a virtual directory for the AssetManagement DMS folder when configuring Ektron web sites. I learned this the hard way (again) today while trying to figure out why my DMS assets were not uploading properly. After a couple of hours (and a night of sleep) and setting up a completely [...]]]></description>
			<content:encoded><![CDATA[<p>Note to self: do not use a virtual directory for the AssetManagement DMS folder when configuring <a href="http://www.ektron.com" target="_blank">Ektron</a> web sites.</p>
<p>I learned this the hard way (again) today while trying to figure out why my DMS assets were not uploading properly. After a couple of hours (and a night of sleep) and setting up a completely new instance of a bare bones Ektron CMS that functioned properly, it finally dawned on me that perhaps one of the various virtual directories were causing the issues. Apparently, the AssetManagement folder cannot be virtual or it throws off their file upload processor (at least for v7.01).</p>
<p>I believe they have fixed this with the latest version (I hope.)</p>
<p>Let this be yet another learning lesson and hopefully assistance to anyone else running into this similar issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skowronek.org/2008/03/08/ektron-and-virtual-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

