<?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>CodingThis.com</title>
	<atom:link href="http://codingthis.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://codingthis.com</link>
	<description>Software Development</description>
	<lastBuildDate>Wed, 08 Sep 2010 14:05:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A True Systems Analyst Defined</title>
		<link>http://codingthis.com/business-analysis/a-true-systems-analyst-defined/</link>
		<comments>http://codingthis.com/business-analysis/a-true-systems-analyst-defined/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 14:05:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business Analysis]]></category>
		<category><![CDATA[Systems Analyst]]></category>

		<guid isPermaLink="false">http://codingthis.com/?p=1020</guid>
		<description><![CDATA[Sadly, Systems Analysts are still perceived as nothing more than glorified programmers, a misconception that hasn't changed in many years. This means people still have trouble differentiating between systems and software, the two are certainly not synonymous, yet one is often used to implement the other. ]]></description>
		<wfw:commentRss>http://codingthis.com/business-analysis/a-true-systems-analyst-defined/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Java 6.0 APIs</title>
		<link>http://codingthis.com/java/java-6-0-apis/</link>
		<comments>http://codingthis.com/java/java-6-0-apis/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 12:32:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Programming Language]]></category>
		<category><![CDATA[API]]></category>

		<guid isPermaLink="false">http://codingthis.com/?p=1017</guid>
		<description><![CDATA[Java 6.0 introduces many Application Programming Interfaces and there are many enhancements in existing classes especially in collection APIs. The summary of changes in collection framework is listed below.]]></description>
		<wfw:commentRss>http://codingthis.com/java/java-6-0-apis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye Microsoft</title>
		<link>http://codingthis.com/uncategorized/goodbye-microsoft/</link>
		<comments>http://codingthis.com/uncategorized/goodbye-microsoft/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 06:48:24 +0000</pubDate>
		<dc:creator>davidlem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10059173</guid>
		<description><![CDATA[Today I resigned from Microsoft. While I’m leaving to take a big step in a new direction, I have to say, it’s with very mixed emotions.  Five and a half years ago, I started a journey that changed me forever. Not only was it the realization of a te...]]></description>
		<wfw:commentRss>http://codingthis.com/uncategorized/goodbye-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retaining the Dynamics NAV 2009 SP1 Outlook Addin settings in a Terminal Server environment</title>
		<link>http://codingthis.com/microsoft-dynamics/retaining-the-dynamics-nav-2009-sp1-outlook-addin-settings-in-a-terminal-server-environment/</link>
		<comments>http://codingthis.com/microsoft-dynamics/retaining-the-dynamics-nav-2009-sp1-outlook-addin-settings-in-a-terminal-server-environment/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 08:04:46 +0000</pubDate>
		<dc:creator>Marco Mels</dc:creator>
				<category><![CDATA[Microsoft Dynamics]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10058739</guid>
		<description><![CDATA[<p>With Dynamics NAV 2009 SP1, the Outlook Synch settings are no longer part of the IsolatedStorage but are now part of the Local Settings of the userprofile. This gives problems when implementing the solution on a Terminal Server. The Local Settings&#160;of a user profile do usually not roam. Especially when setting the GPO to delete the locally stored user profile, the settings are even no longer stored locally. The quick and dirty workaround is to implement a logoff and logon script that keeps the Outlook Addin&#160;settings up to date.</p>
<p>With&#160;Dynamics NAV 2009 SP1 running on Windows 7, the path to the Outlook Addin settings could be something like this:</p>
<p>&#160; %userprofile%\AppData\Local\Microsoft Dynamics NAV\OutlookSynch</p>
<p>This folder may&#160;contain the following files after a full synchronization was executed successfully:<br />EntryIdStorage.xml<br />LastSynchronizationTime.xml<br />NavisionSynchronizationEntity.xml<br />OutlookSynchronizationEntity.xml<br />Settings.xml<br />SynchronizationConflict.xml<br />SynchronizationEntityFilter.xml<br />SynchronizationError.xml<br />SynchronizationSchema.xml<br />SynchronizationSchemaString.xml</p>
<p>These files are unique to every single users. The files itself cannot be modified manually. With a single logoff script, you could easily copy these files from %userprofile%\AppData\Local\Microsoft Dynamics NAV\OutlookSynch to a shared folder on the network. E.g.: <a href="//%5C%5Cservername%5Csharename%5Coutlooksynch%5C%25username%25">\\servername\sharename\OutlookSynch\%username%</a></p>
<p>An example of such a logon script could look like this:</p>
<p>@echo off<br />GOTO BEGIN</p>
<p>:BEGIN<br />if not exist "%userprofile%\Local Settings\Application Data\Microsoft Dynamics NAV\OutlookSynch" GOTO MKDIR<br />GOTO UPLOAD</p>
<p>:MKDIR<br />MKDIR "%USERPROFILE%\Local Settings\Application Data\Microsoft Dynamics NAV\OutlookSynch"<br />GOTO UPLOAD</p>
<p>:UPLOAD<br />COPY "<a href="//servername/sharename/OutlookSynch/%25username%25">\\servername\sharename\OutlookSynch\%username%</a>" "%userprofile%\Local Settings\Application Data\Microsoft Dynamics NAV\OutlookSynch\*.*"<br />GOTO END</p>
<p>:END</p>
<p>An example of such a logoff script could look like this:</p>
<p>Dim sOriginFolder, sDestinationFolder, sFile, oFSO <br />Set oFSO = CreateObject("Scripting.FileSystemObject") <br />Set objShell = CreateObject("WScript.Shell")<br />strUserProfile = objshell.ExpandEnvironmentStrings("%userprofile%")<br />strUserName= objshell.ExpandEnvironmentStrings("%username%")<br />sOriginFolder = strUserProfile &#38; "\Local Settings\Application Data\Microsoft Dynamics NAV\OutlookSynch"<br />sDestinationFolder = "<a href="//servername/sharename/OutlookSynch/%25username%25">\\servername\sharename\OutlookSynch</a><a href="//%5C%5Cmmel20429513%5Cprofiles%5Coutlooksynch%5C">\</a>" &#38; strUserName <br />For Each sFile In oFSO.GetFolder(sOriginFolder).Files<br />&#160;&#160; oFSO.GetFile(sFile).Copy sDestinationFolder &#38; "\" &#38; oFSO.GetFileName(sFile),True<br />Next<br />WScript.Echo "Copying of files succeeded"</p>
<p>There are of course other possibilities to explore here, but the basic idea is that those files are no longer part of the IsolatedStorage and therefore, a system implementer needs to manually ensure that these files roam along with the user profile. </p>
<p>Hope this helps.<br /><br />Marco Mels</p>
<p>Microsoft Customer Service and Support (CSS) EMEA <br />These postings are provided "AS IS" with no warranties and confer no rights. You assume all risk for your use. </p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10058739" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/MicrosoftDynamicsNavTeamBlog/~4/95PH15jMMAY" height="1" width="1" />]]></description>
		<wfw:commentRss>http://codingthis.com/microsoft-dynamics/retaining-the-dynamics-nav-2009-sp1-outlook-addin-settings-in-a-terminal-server-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Table Data Type values (used in Record Links)</title>
		<link>http://codingthis.com/microsoft-dynamics/table-data-type-values-used-in-record-links/</link>
		<comments>http://codingthis.com/microsoft-dynamics/table-data-type-values-used-in-record-links/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 15:07:51 +0000</pubDate>
		<dc:creator>jtorres</dc:creator>
				<category><![CDATA[Microsoft Dynamics]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10057779</guid>
		<description><![CDATA[Sometime ago I have promised to publish the numbers used in NAV for the data types. These numbers are used all over the system, but are more visible when encoding record links (please refer to my post about encoding record links). This list contains th...]]></description>
		<wfw:commentRss>http://codingthis.com/microsoft-dynamics/table-data-type-values-used-in-record-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memory Leaks in Java</title>
		<link>http://codingthis.com/java/memory-leaks-in-java/</link>
		<comments>http://codingthis.com/java/memory-leaks-in-java/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 14:09:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Programming Language]]></category>
		<category><![CDATA[memory leaks]]></category>

		<guid isPermaLink="false">http://codingthis.com/?p=988</guid>
		<description><![CDATA[One of the beauties of using Java programming language is that the programmers need not worry about the memory allocation and freeing of objects. We simply declare and initialize objects and JVM(Java Virtual Machine) will take care of freeing them when they are no longer in use by any application through a mechanism called 'garbage collection'. Before we start our topic, let us check how the memory is allocated for the objects.]]></description>
		<wfw:commentRss>http://codingthis.com/java/memory-leaks-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which Programming Language is the Most Secure?</title>
		<link>http://codingthis.com/tips/which-programming-language-is-the-most-secure/</link>
		<comments>http://codingthis.com/tips/which-programming-language-is-the-most-secure/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 13:11:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computer Programming Tips]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Java Programming Language]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://codingthis.com/?p=985</guid>
		<description><![CDATA[This is a question that can cause a thousand debates on the internet so before we get started we should make one thing clear. If the programming language is in the hands of a seasoned professional, then any one of these languages can be secured. Most of the security problems that come from certain languages are the fault of the programmer and not the actual language itself. ]]></description>
		<wfw:commentRss>http://codingthis.com/tips/which-programming-language-is-the-most-secure/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Logistic Regression With L2 Regularization in Python</title>
		<link>http://codingthis.com/python/logistic-logistic-regression-with-l2-regularization-in-python/</link>
		<comments>http://codingthis.com/python/logistic-logistic-regression-with-l2-regularization-in-python/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 12:12:44 +0000</pubDate>
		<dc:creator>Ray</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Logistic Regression]]></category>

		<guid isPermaLink="false">http://codingthis.com/?p=980</guid>
		<description><![CDATA[Suppose you have data describing a bunch of buildings and earthquakes (E.g., year the building was constructed, type of material used, the strength of earthquake, etc), and you know whether each building collapsed or not in each past earthquake. Using this data, you'd like to make predictions about whether a given building is going to collapse in a hypothetical future earthquake -- you can see how this would be useful to say, insurance companies.]]></description>
		<wfw:commentRss>http://codingthis.com/python/logistic-logistic-regression-with-l2-regularization-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Garbage Collection</title>
		<link>http://codingthis.com/java/java-garbage-collection/</link>
		<comments>http://codingthis.com/java/java-garbage-collection/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 12:28:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Programming Language]]></category>

		<guid isPermaLink="false">http://codingthis.com/?p=976</guid>
		<description><![CDATA[What is garbage collection?
It deals with identifying and freeing the memory of java application that are not used for a long time. There are two type garbage collection techniques,  namely explicit and implicit methods.
Implicit Garbage collection and Explicit Garbage collection
Java run time system can invoke the garbage collector automatically so that the user never [...]]]></description>
		<wfw:commentRss>http://codingthis.com/java/java-garbage-collection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Agile to Lean to Insane Software Development</title>
		<link>http://codingthis.com/agile-development/agile-to-lean-to-insane-software-development/</link>
		<comments>http://codingthis.com/agile-development/agile-to-lean-to-insane-software-development/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 18:01:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Agile Software Development]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[lean]]></category>

		<guid isPermaLink="false">http://codingthis.com/?p=768</guid>
		<description><![CDATA[There has been a lot of talk about agile development. In recent years, agile development was surpassed by lean development which adopted many great practices from agile development, but added elements of speed and cost-effectiveness to the overall process.]]></description>
		<wfw:commentRss>http://codingthis.com/agile-development/agile-to-lean-to-insane-software-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
