<?xml version="1.0" encoding="utf-8"?><!-- generator="b2evolution/7.2.5-stable" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Blog</title>
		<link>https://iesoftwaredeveloper.com/b/index.php/blog/</link>
		<atom:link rel="self" type="application/rss+xml" href="https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2" />
		<description>A collection of musings</description>
		<language>en-US</language>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=7.2.5-stable"/>
		<ttl>60</ttl>
				<item>
			<title>Mass File Rename</title>
			<link>https://iesoftwaredeveloper.com/b/index.php/blog/mass-file-rename</link>
			<pubDate>Fri, 25 Feb 2022 15:00:00 +0000</pubDate>			<dc:creator>iesoftwaredeveloper</dc:creator>
			<category domain="main">Uncategorized</category>			<guid isPermaLink="false">37@https://iesoftwaredeveloper.com/b/</guid>
						<description>Every so often I have the need to rename a massive amount of files. This generally happens when there is a pattern in the name and I need to change it to a different pattern. There are a number of ways to do this, but I often use the following short&amp;hellip;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;https://iesoftwaredeveloper.com/b/index.php/blog/mass-file-rename&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://iesoftwaredeveloper.com/b&quot;&gt;IE Software Developer&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[Every so often I have the need to rename a massive amount of files. This generally happens when there is a pattern in the name and I need to change it to a different pattern. There are a number of ways to do this, but I often use the following short&hellip;<div class="item_footer"><p><small><a href="https://iesoftwaredeveloper.com/b/index.php/blog/mass-file-rename">Original post</a> blogged on <a href="http://iesoftwaredeveloper.com/b">IE Software Developer</a>.</small></p></div>]]></content:encoded>
								<comments>https://iesoftwaredeveloper.com/b/index.php/blog/mass-file-rename#comments</comments>
			<wfw:commentRss>https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2&#38;disp=comments&#38;p=37</wfw:commentRss>
		</item>
				<item>
			<title>git: Undo a Commit</title>
			<link>https://iesoftwaredeveloper.com/b/index.php/blog/git-undo-a-commit</link>
			<pubDate>Thu, 30 Dec 2021 13:35:00 +0000</pubDate>			<dc:creator>iesoftwaredeveloper</dc:creator>
			<category domain="main">git</category>			<guid isPermaLink="false">36@https://iesoftwaredeveloper.com/b/</guid>
						<description>Sometimes right after you perform a commit in git you realize you made a mistake. For me it is usually that I commit a file I didn&#039;t want to or wasn&#039;t ready to. The good news is that as long as you haven&#039;t pushed it to a remote repository it is&amp;hellip;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;https://iesoftwaredeveloper.com/b/index.php/blog/git-undo-a-commit&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://iesoftwaredeveloper.com/b&quot;&gt;IE Software Developer&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[Sometimes right after you perform a commit in git you realize you made a mistake. For me it is usually that I commit a file I didn't want to or wasn't ready to. The good news is that as long as you haven't pushed it to a remote repository it is&hellip;<div class="item_footer"><p><small><a href="https://iesoftwaredeveloper.com/b/index.php/blog/git-undo-a-commit">Original post</a> blogged on <a href="http://iesoftwaredeveloper.com/b">IE Software Developer</a>.</small></p></div>]]></content:encoded>
								<comments>https://iesoftwaredeveloper.com/b/index.php/blog/git-undo-a-commit#comments</comments>
			<wfw:commentRss>https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2&#38;disp=comments&#38;p=36</wfw:commentRss>
		</item>
				<item>
			<title>Test for Palindrome</title>
			<link>https://iesoftwaredeveloper.com/b/index.php/blog/test-for-palindrome</link>
			<pubDate>Fri, 15 Oct 2021 21:39:00 +0000</pubDate>			<dc:creator>iesoftwaredeveloper</dc:creator>
			<category domain="main">programming</category>
<category domain="alt">algorithm</category>			<guid isPermaLink="false">35@https://iesoftwaredeveloper.com/b/</guid>
						<description>A palindrome is a word, number, phrase or other sequence of characters that reads the same forwards as it does backwards. Some examples of a numeric palindrome are 777 or 12321. A palindrome can be a date such as 02-02-2020 or a time like 12:21. I&amp;hellip;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;https://iesoftwaredeveloper.com/b/index.php/blog/test-for-palindrome&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://iesoftwaredeveloper.com/b&quot;&gt;IE Software Developer&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[A palindrome is a word, number, phrase or other sequence of characters that reads the same forwards as it does backwards. Some examples of a numeric palindrome are 777 or 12321. A palindrome can be a date such as 02-02-2020 or a time like 12:21. I&hellip;<div class="item_footer"><p><small><a href="https://iesoftwaredeveloper.com/b/index.php/blog/test-for-palindrome">Original post</a> blogged on <a href="http://iesoftwaredeveloper.com/b">IE Software Developer</a>.</small></p></div>]]></content:encoded>
								<comments>https://iesoftwaredeveloper.com/b/index.php/blog/test-for-palindrome#comments</comments>
			<wfw:commentRss>https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2&#38;disp=comments&#38;p=35</wfw:commentRss>
		</item>
				<item>
			<title>We're giving you an opportunity!</title>
			<link>https://iesoftwaredeveloper.com/b/index.php/blog/we-re-giving-you-an-opportunity</link>
			<pubDate>Thu, 14 Oct 2021 20:15:00 +0000</pubDate>			<dc:creator>iesoftwaredeveloper</dc:creator>
			<category domain="main">honest email</category>			<guid isPermaLink="false">34@https://iesoftwaredeveloper.com/b/</guid>
						<description>I recently received an email that let me know that I had an amazing opportunity! I have included the &amp;quot;Honest Email&amp;quot; version below.&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;https://iesoftwaredeveloper.com/b/index.php/blog/we-re-giving-you-an-opportunity&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://iesoftwaredeveloper.com/b&quot;&gt;IE Software Developer&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[I recently received an email that let me know that I had an amazing opportunity! I have included the &quot;Honest Email&quot; version below.<div class="item_footer"><p><small><a href="https://iesoftwaredeveloper.com/b/index.php/blog/we-re-giving-you-an-opportunity">Original post</a> blogged on <a href="http://iesoftwaredeveloper.com/b">IE Software Developer</a>.</small></p></div>]]></content:encoded>
								<comments>https://iesoftwaredeveloper.com/b/index.php/blog/we-re-giving-you-an-opportunity#comments</comments>
			<wfw:commentRss>https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2&#38;disp=comments&#38;p=34</wfw:commentRss>
		</item>
				<item>
			<title>Find Longest String in String Array</title>
			<link>https://iesoftwaredeveloper.com/b/index.php/blog/find-longest-string-in-string-array</link>
			<pubDate>Mon, 04 Oct 2021 19:03:00 +0000</pubDate>			<dc:creator>iesoftwaredeveloper</dc:creator>
			<category domain="main">CSharp</category>
<category domain="alt">.net</category>
<category domain="alt">programming</category>			<guid isPermaLink="false">33@https://iesoftwaredeveloper.com/b/</guid>
						<description>Problem Given an dictionary with string values, find the longest string value in the dictionary.&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;https://iesoftwaredeveloper.com/b/index.php/blog/find-longest-string-in-string-array&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://iesoftwaredeveloper.com/b&quot;&gt;IE Software Developer&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[Problem Given an dictionary with string values, find the longest string value in the dictionary.<div class="item_footer"><p><small><a href="https://iesoftwaredeveloper.com/b/index.php/blog/find-longest-string-in-string-array">Original post</a> blogged on <a href="http://iesoftwaredeveloper.com/b">IE Software Developer</a>.</small></p></div>]]></content:encoded>
								<comments>https://iesoftwaredeveloper.com/b/index.php/blog/find-longest-string-in-string-array#comments</comments>
			<wfw:commentRss>https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2&#38;disp=comments&#38;p=33</wfw:commentRss>
		</item>
				<item>
			<title>Reversing a string</title>
			<link>https://iesoftwaredeveloper.com/b/index.php/blog/reversing-a-string</link>
			<pubDate>Sun, 12 Sep 2021 22:04:00 +0000</pubDate>			<dc:creator>iesoftwaredeveloper</dc:creator>
			<category domain="main">programming</category>			<guid isPermaLink="false">32@https://iesoftwaredeveloper.com/b/</guid>
						<description>When working strings there are any number of operations you might need to perform. One operation is to reverse a string. Some examplesAn algorithmA better algorithmSwap 1Swap 2Why would you reverse a string? Some examples&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;https://iesoftwaredeveloper.com/b/index.php/blog/reversing-a-string&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://iesoftwaredeveloper.com/b&quot;&gt;IE Software Developer&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[When working strings there are any number of operations you might need to perform. One operation is to reverse a string. Some examplesAn algorithmA better algorithmSwap 1Swap 2Why would you reverse a string? Some examples<div class="item_footer"><p><small><a href="https://iesoftwaredeveloper.com/b/index.php/blog/reversing-a-string">Original post</a> blogged on <a href="http://iesoftwaredeveloper.com/b">IE Software Developer</a>.</small></p></div>]]></content:encoded>
								<comments>https://iesoftwaredeveloper.com/b/index.php/blog/reversing-a-string#comments</comments>
			<wfw:commentRss>https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2&#38;disp=comments&#38;p=32</wfw:commentRss>
		</item>
				<item>
			<title>What is a string?</title>
			<link>https://iesoftwaredeveloper.com/b/index.php/blog/what-is-a-string</link>
			<pubDate>Sun, 12 Sep 2021 19:55:00 +0000</pubDate>			<dc:creator>iesoftwaredeveloper</dc:creator>
			<category domain="main">programming</category>			<guid isPermaLink="false">31@https://iesoftwaredeveloper.com/b/</guid>
						<description>Strings are one of those basic constructs that are so important to communicating that many programming languages include them as a basic type. What is a string? It is nothing more than a series of zero or more characters. For computers, characters are&amp;hellip;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;https://iesoftwaredeveloper.com/b/index.php/blog/what-is-a-string&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://iesoftwaredeveloper.com/b&quot;&gt;IE Software Developer&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[Strings are one of those basic constructs that are so important to communicating that many programming languages include them as a basic type. What is a string? It is nothing more than a series of zero or more characters. For computers, characters are&hellip;<div class="item_footer"><p><small><a href="https://iesoftwaredeveloper.com/b/index.php/blog/what-is-a-string">Original post</a> blogged on <a href="http://iesoftwaredeveloper.com/b">IE Software Developer</a>.</small></p></div>]]></content:encoded>
								<comments>https://iesoftwaredeveloper.com/b/index.php/blog/what-is-a-string#comments</comments>
			<wfw:commentRss>https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2&#38;disp=comments&#38;p=31</wfw:commentRss>
		</item>
				<item>
			<title>Maximum Sum Sub-array Problem: Kadane's Algorithm</title>
			<link>https://iesoftwaredeveloper.com/b/index.php/blog/maximum-sum-sub-array-problem-kadane-s-algorithm</link>
			<pubDate>Sat, 24 Jul 2021 00:41:00 +0000</pubDate>			<dc:creator>iesoftwaredeveloper</dc:creator>
			<category domain="main">.net</category>			<guid isPermaLink="false">28@https://iesoftwaredeveloper.com/b/</guid>
						<description>The problem presented is that you have a one dimensional array of numbers. From that array you need to find the maximum sum sub-array. The sub-array must be contiguous. The solution to this can be in several forms. You could just want the actual maximum&amp;hellip;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;https://iesoftwaredeveloper.com/b/index.php/blog/maximum-sum-sub-array-problem-kadane-s-algorithm&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://iesoftwaredeveloper.com/b&quot;&gt;IE Software Developer&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[The problem presented is that you have a one dimensional array of numbers. From that array you need to find the maximum sum sub-array. The sub-array must be contiguous. The solution to this can be in several forms. You could just want the actual maximum&hellip;<div class="item_footer"><p><small><a href="https://iesoftwaredeveloper.com/b/index.php/blog/maximum-sum-sub-array-problem-kadane-s-algorithm">Original post</a> blogged on <a href="http://iesoftwaredeveloper.com/b">IE Software Developer</a>.</small></p></div>]]></content:encoded>
								<comments>https://iesoftwaredeveloper.com/b/index.php/blog/maximum-sum-sub-array-problem-kadane-s-algorithm#comments</comments>
			<wfw:commentRss>https://iesoftwaredeveloper.com/b/index.php/blog/?tempskin=_rss2&#38;disp=comments&#38;p=28</wfw:commentRss>
		</item>
			</channel>
</rss>
