<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
		<title>gdp's Comments</title>
		<language>en-us</language>
		<link>https://www.intensedebate.com/users/100033</link>
		<description>Comments by MaxSchmeling</description>
<item>
<title>Max Schmeling : Replace Query String Parameter Value</title>
<link>http://maxschmeling.blogspot.com/2008/10/replace-query-string-parameter-value.html#IDComment61249891</link>
<description>Please see this post on my new blog: &lt;a href=&quot;http://maxschmeling.me/?p=89&quot; target=&quot;_blank&quot;&gt;http://maxschmeling.me/?p=89&lt;/a&gt; </description>
<pubDate>Wed, 10 Mar 2010 19:18:41 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2008/10/replace-query-string-parameter-value.html#IDComment61249891</guid>
</item><item>
<title>Max Schmeling : RegEx FAIL - Answer</title>
<link>http://maxschmeling.blogspot.com/2009/01/regex-fail-answer.html#IDComment57658628</link>
<description>The only way I can think of doing that might be to do an or with $ (end of line) so that it either finds the parameter or finds the end of the line and does a replacement. If you can try that out and post back that would be great. If you don&amp;#39;t, I&amp;#39;ll see if I can get it working after a bit. </description>
<pubDate>Fri, 19 Feb 2010 18:41:04 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2009/01/regex-fail-answer.html#IDComment57658628</guid>
</item><item>
<title>Max Schmeling : RegEx FAIL - Answer</title>
<link>http://maxschmeling.blogspot.com/2009/01/regex-fail-answer.html#IDComment57639580</link>
<description>You&amp;#039;re absolutely right, Leo. That regex is flawed even still.  I took some time and came up with a much better expression, that&amp;#039;s much simpler and actually works. Try this instead: &amp;quot;{0}=[^&amp;amp;]+&amp;quot;  Full Method: public static string ReplaceValue(string url, string parameter, string newValue) {     return Regex.Replace(url, string.Format(&amp;quot;{0}=[^&amp;amp;]+&amp;quot;, parameter),          string.Format(&amp;quot;{0}={1}&amp;quot;, parameter, newValue), RegexOptions.IgnoreCase); }  Thank you for pointing out the issue. I&amp;#039;ve only used the code for really simple urls so I&amp;#039;ll have to replace it with the updated method that will work with any url. </description>
<pubDate>Fri, 19 Feb 2010 16:08:33 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2009/01/regex-fail-answer.html#IDComment57639580</guid>
</item><item>
<title>Max Schmeling : Who are you comparing yourself to?</title>
<link>http://maxschmeling.blogspot.com/2009/08/who-are-you-comparing-yourself-to.html#IDComment40943530</link>
<description>Thanks for the correction. I typed it into my feed reader wrong when I subscribed and have been reading it that way ever since. *sigh* stupid typos. </description>
<pubDate>Wed, 28 Oct 2009 08:16:57 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2009/08/who-are-you-comparing-yourself-to.html#IDComment40943530</guid>
</item><item>
<title>Max Schmeling : Who are you comparing yourself to?</title>
<link>http://maxschmeling.blogspot.com/2009/08/who-are-you-comparing-yourself-to.html#IDComment32231513</link>
<description>I&amp;#039;d say Jeff Atwood himself is a pretty good one to compare yourself too, he&amp;#039;s had a tad bit of success. </description>
<pubDate>Thu, 27 Aug 2009 17:06:09 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2009/08/who-are-you-comparing-yourself-to.html#IDComment32231513</guid>
</item><item>
<title>Max Schmeling : Finite State Machine Research Paper</title>
<link>http://maxschmeling.blogspot.com/2009/08/finite-state-machine-research-paper.html#IDComment32094241</link>
<description>I thought it was worth sharing. </description>
<pubDate>Thu, 27 Aug 2009 00:37:32 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2009/08/finite-state-machine-research-paper.html#IDComment32094241</guid>
</item><item>
<title>Max Schmeling : RegEx FAIL</title>
<link>http://maxschmeling.blogspot.com/2009/01/regex-fail.html#IDComment31822616</link>
<description>I have already posted a follow up shortly after this post. I&amp;#039;ll update this entry to show the link.  &lt;a href=&quot;http://maxschmeling.blogspot.com/2009/01/regex-fail-answer.html&quot; target=&quot;_blank&quot;&gt;http://maxschmeling.blogspot.com/2009/01/regex-fa...&lt;/a&gt; </description>
<pubDate>Mon, 24 Aug 2009 14:54:05 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2009/01/regex-fail.html#IDComment31822616</guid>
</item><item>
<title>Max Schmeling : Extension Method for Events</title>
<link>http://maxschmeling.blogspot.com/2008/06/extension-method-for-events.html#IDComment31208312</link>
<description>Yeah, I think Blogger ripped out the &amp;lt;T&amp;gt;... i&amp;#039;ll see if I can get that fixed </description>
<pubDate>Wed, 19 Aug 2009 15:23:40 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2008/06/extension-method-for-events.html#IDComment31208312</guid>
</item><item>
<title>Max Schmeling : AzMan Documentation</title>
<link>http://maxschmeling.blogspot.com/2009/07/azman-documentation.html#IDComment27866268</link>
<description>On one hand I&amp;#039;d hate to see that happen because the security model is so nice, but on the other hand I think somebody else needs to make a better system based on the same model. </description>
<pubDate>Tue, 21 Jul 2009 15:21:31 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2009/07/azman-documentation.html#IDComment27866268</guid>
</item><item>
<title>Max Schmeling : Authorization Manager</title>
<link>http://maxschmeling.blogspot.com/2008/07/authorization-manager.html#IDComment26160681</link>
<description>I&amp;#039;d be glad to help you. Email me (schmeling88 [at] gmail.com) and I&amp;#039;ll be glad to give you some tips or if you&amp;#039;re looking for consulting I could possibly help you out in that way too. </description>
<pubDate>Thu, 2 Jul 2009 20:24:09 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2008/07/authorization-manager.html#IDComment26160681</guid>
</item><item>
<title>Max Schmeling : Replace Query String Parameter Value</title>
<link>http://maxschmeling.blogspot.com/2008/10/replace-query-string-parameter-value.html#IDComment14182995</link>
<description>You&amp;#039;re absolutely right Rene. This chokes with three parameters. It is cutting off everything after the value changed. I will update the post with a fix. </description>
<pubDate>Tue, 20 Jan 2009 15:11:19 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2008/10/replace-query-string-parameter-value.html#IDComment14182995</guid>
</item><item>
<title>Max Schmeling : Replace Query String Parameter Value</title>
<link>http://maxschmeling.blogspot.com/2008/10/replace-query-string-parameter-value.html#IDComment14182735</link>
<description>What happened, exactly? Did it not do anything at all? I&amp;#039;ll test it with three parameters and see what happens.... </description>
<pubDate>Tue, 20 Jan 2009 14:47:48 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2008/10/replace-query-string-parameter-value.html#IDComment14182735</guid>
</item><item>
<title>Max Schmeling : Tell me before you do something stupid!</title>
<link>http://maxschmeling.blogspot.com/2009/01/tell-me-before-you-do-something-stupid.html#IDComment14039309</link>
<description>That&amp;#039;s not so bad. I&amp;#039;m not really a fan of generated passwords, but still, at least that&amp;#039;s not your chosen password that they sent in an email.  </description>
<pubDate>Fri, 16 Jan 2009 18:13:29 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2009/01/tell-me-before-you-do-something-stupid.html#IDComment14039309</guid>
</item><item>
<title>Max Schmeling : Chrome - First Thoughts</title>
<link>http://maxschmeling.blogspot.com/2008/09/chrome-first-thoughts.html#IDComment5665973</link>
<description>Keep in mind it&amp;#039;s only Beta. It doesn&amp;#039;t show it too much, but it definitely isn&amp;#039;t a final release. But even though it&amp;#039;s just a beta, I would use it over IE any day. I prefer it to Firefox as well. It&amp;#039;s an extremely good first attempt at a browser.    These are just my personal feelings about it though. Not everyone is going to like it as much as I do. </description>
<pubDate>Thu, 4 Sep 2008 09:12:36 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2008/09/chrome-first-thoughts.html#IDComment5665973</guid>
</item><item>
<title>Max Schmeling : Bringing a Web Application Down</title>
<link>http://maxschmeling.blogspot.com/2008/08/bringing-web-application-down.html#IDComment4991623</link>
<description>sourt of. It would cause sumezone somez frustrashun 4 a little whilz til thay figered it out. </description>
<pubDate>Wed, 27 Aug 2008 13:55:22 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2008/08/bringing-web-application-down.html#IDComment4991623</guid>
</item><item>
<title>Max Schmeling : Where&#039;d you go?</title>
<link>http://maxschmeling.blogspot.com/2008/08/whered-you-go.html#IDComment4416173</link>
<description>Nah, it just means it&amp;#039;s time to switch to my Google Reader tab and catch up on more blogs :P  And besides, I don&amp;#039;t have any cool waterfalls to go see around here like you do. </description>
<pubDate>Wed, 13 Aug 2008 08:43:35 +0000</pubDate>
<guid>http://maxschmeling.blogspot.com/2008/08/whered-you-go.html#IDComment4416173</guid>
</item>	</channel>
</rss>