<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>shrinkr Discussions Rss Feed</title><link>http://shrinkr.codeplex.com/Thread/List.aspx</link><description>shrinkr Discussions Rss Description</description><item><title>New Post: Just curious...</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=241696</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;How long did it take you to build this?&amp;nbsp; Great application! MvcExtensibility looks great!&lt;/p&gt;
&lt;/div&gt;</description><author>kahanu</author><pubDate>Thu, 13 Jan 2011 21:24:56 GMT</pubDate><guid isPermaLink="false">New Post: Just curious... 20110113092456P</guid></item><item><title>New Post: PageGlimpse is shutting down - alternatives?</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=234949</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;You can try http://www.shrinktheweb.com for fast, reliable, and free (for 98% of users) service.&lt;/p&gt;
&lt;/div&gt;</description><author>puravida</author><pubDate>Thu, 02 Dec 2010 05:52:32 GMT</pubDate><guid isPermaLink="false">New Post: PageGlimpse is shutting down - alternatives? 20101202055232A</guid></item><item><title>New Post: ServiceResultBase is Specification Pattern?</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=235197</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;ServiceResultBase is a derivation of Specification Pattern described at http://en.wikipedia.org/wiki/Specification_pattern?&lt;/p&gt;
&lt;/div&gt;</description><author>fujiy</author><pubDate>Thu, 18 Nov 2010 17:15:44 GMT</pubDate><guid isPermaLink="false">New Post: ServiceResultBase is Specification Pattern? 20101118051544P</guid></item><item><title>New Post: PageGlimpse is shutting down - alternatives?</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=234949</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Any good alternatives since pageFlimpse is shutting down its service?&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>raywang</author><pubDate>Tue, 16 Nov 2010 22:09:00 GMT</pubDate><guid isPermaLink="false">New Post: PageGlimpse is shutting down - alternatives? 20101116100900P</guid></item><item><title>New Post: Can I add Windows Live ID as a way of login?</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=215139</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;OpenID is the only way to login into shrinkr so far. You can create an OpenID for your Windows Live ID. I guess its supported now&lt;/p&gt;&lt;/div&gt;</description><author>mosessaur</author><pubDate>Mon, 13 Sep 2010 01:05:12 GMT</pubDate><guid isPermaLink="false">New Post: Can I add Windows Live ID as a way of login? 20100913010512A</guid></item><item><title>New Post: EF CTP4 complied query</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=223134</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;As far as I know you must use a class that &lt;span&gt;derives &lt;/span&gt;from ObjectContext! DbContext is not and can't be used with CompiledQuery.&lt;/p&gt;
&lt;p&gt;Have a look at &lt;a href="http://msdn.microsoft.com/en-us/library/system.data.objects.compiledquery.aspx"&gt;CompiledQuery&lt;/a&gt; class documentation at MSDN http://msdn.microsoft.com/en-us/library/system.data.objects.compiledquery.aspx&lt;/p&gt;
&lt;p&gt;If I'm missing something please correct me.&lt;/p&gt;&lt;/div&gt;</description><author>mosessaur</author><pubDate>Mon, 13 Sep 2010 01:01:36 GMT</pubDate><guid isPermaLink="false">New Post: EF CTP4 complied query 20100913010136A</guid></item><item><title>New Post: EF CTP4 complied query</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=223134</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am working on using DbContext instead of ObjectContext which comes in EF CTP4.&amp;nbsp; I got everything working except compliled query is broken.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="color:black;background-color:white"&gt;
&lt;pre&gt;    &lt;span style="color:blue"&gt;public&lt;/span&gt; &lt;span style="color:blue"&gt;class&lt;/span&gt; UserByNameQuery : QueryBase&amp;lt;User&amp;gt;
    {
        &lt;span style="color:blue"&gt;private&lt;/span&gt; &lt;span style="color:blue"&gt;static&lt;/span&gt; &lt;span style="color:blue"&gt;readonly&lt;/span&gt; Expression&amp;lt;Func&amp;lt;DbContext, &lt;span style="color:blue"&gt;string&lt;/span&gt;, User&amp;gt;&amp;gt; expression = (database, name) =&amp;gt; database.Users.SingleOrDefault(user =&amp;gt; user.Username == name);
        &lt;span style="color:blue"&gt;private&lt;/span&gt; &lt;span style="color:blue"&gt;static&lt;/span&gt; &lt;span style="color:blue"&gt;readonly&lt;/span&gt; Func&amp;lt;DbContext, &lt;span style="color:blue"&gt;string&lt;/span&gt;, User&amp;gt; plainQuery = expression.Compile();
        &lt;span style="color:blue"&gt;private&lt;/span&gt; &lt;span style="color:blue"&gt;static&lt;/span&gt; &lt;span style="color:blue"&gt;readonly&lt;/span&gt; Func&amp;lt;DbContext, &lt;span style="color:blue"&gt;string&lt;/span&gt;, User&amp;gt; compiledQuery = CompiledQuery.Compile(expression);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I get error:&amp;nbsp; There is no implicit reference conversion from DbContext to ObjectContext.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks for the help&lt;/p&gt;&lt;/div&gt;</description><author>game99</author><pubDate>Tue, 10 Aug 2010 22:31:41 GMT</pubDate><guid isPermaLink="false">New Post: EF CTP4 complied query 20100810103141P</guid></item><item><title>New Post: Can I add Windows Live ID as a way of login?</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=215139</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi, Just wondering if I can enable windows live id as one of the login method?&amp;nbsp;I thought&amp;nbsp;it has an provider for openid as well?&lt;/p&gt;&lt;/div&gt;</description><author>raywang</author><pubDate>Mon, 07 Jun 2010 05:11:06 GMT</pubDate><guid isPermaLink="false">New Post: Can I add Windows Live ID as a way of login? 20100607051106A</guid></item><item><title>New Post: Is it possible to use charactors like ”%28“</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=213374</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Currently we do not have any plan to support anything except English. Maybe in future we will try to add multi-language support.&lt;/p&gt;&lt;/div&gt;</description><author>kazimanzurrashid</author><pubDate>Fri, 28 May 2010 12:22:10 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to use charactors like ”%28“ 20100528122210P</guid></item><item><title>New Post: Is it possible to use charactors like ”%28“</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=213374</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Any progress on testing the charactors Rashid?&lt;/p&gt;
&lt;p&gt;Can I possiblly just take out the validation and try the alias with those charactors?&lt;/p&gt;&lt;/div&gt;</description><author>raywang</author><pubDate>Wed, 26 May 2010 01:53:13 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to use charactors like ”%28“ 20100526015313A</guid></item><item><title>New Post: Is it possible to use charactors like ”%28“</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=213374</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks very much, I'm really interested to know. coz no other url shortening service could do this, I'm thinking there must be a reason :-)&lt;/p&gt;
&lt;p&gt;here is a sample charactor 测试&lt;/p&gt;&lt;/div&gt;</description><author>raywang</author><pubDate>Sat, 22 May 2010 09:58:37 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to use charactors like ”%28“ 20100522095837A</guid></item><item><title>New Post: Is it possible to use charactors like ”%28“</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=213374</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Raywang,&lt;/p&gt;
&lt;p&gt;We have only checked it with english characterset, we will let you know.&lt;/p&gt;&lt;/div&gt;</description><author>kazimanzurrashid</author><pubDate>Fri, 21 May 2010 07:41:13 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to use charactors like ”%28“ 20100521074113A</guid></item><item><title>New Post: Is it possible to use charactors like ”%28“</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=213374</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I would like to try using some thing like &amp;quot;%96%87&amp;quot; as url alias. because the languate I use is translated to that after rendered in the url.&lt;/p&gt;
&lt;p&gt;Currently the alias box allows&amp;nbsp; &lt;span&gt;alphanumeric only.&lt;/span&gt; Is this possible to change?&lt;/p&gt;
&lt;p&gt;Thanks for the help.&lt;/p&gt;&lt;/div&gt;</description><author>raywang</author><pubDate>Fri, 21 May 2010 03:34:28 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to use charactors like ”%28“ 20100521033428A</guid></item><item><title>New Post: Is it possible to have private UI access?</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=211609</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;this is good news :-). The problem ATM is that there are lots of public ones available, but nearly no private ones (at least no ones that are written in .NET).&lt;/p&gt;
&lt;p&gt;So, this would be great :-)&lt;/p&gt;
&lt;p&gt;Cheerio,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Golo&lt;/p&gt;&lt;/div&gt;</description><author>goloroden</author><pubDate>Wed, 05 May 2010 21:27:20 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to have private UI access? 20100505092720P</guid></item><item><title>New Post: Is it possible to have private UI access?</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=211609</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi Golo,&lt;/p&gt;
&lt;p&gt;Currently it is only available for public use, but I think a private would be a nice addition, I will talk with the team to inlcude it in the next major release.&lt;/p&gt;&lt;/div&gt;</description><author>kazimanzurrashid</author><pubDate>Wed, 05 May 2010 12:56:20 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to have private UI access? 20100505125620P</guid></item><item><title>New Post: Is it possible to have private UI access?</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=211609</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;AFAICS - great project :-).&lt;/p&gt;
&lt;p&gt;Anyway, I have a question: Is it possible to make UI access private, so that only a few predefined users are able to add, edit or delete short URLs? The idea is that a company might use this to create links themselves, but provide these links to the public - but the public should only be able to use the links, not to create new ones, edit existing ones, ...&lt;/p&gt;
&lt;p&gt;Cheerio,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Golo&lt;/p&gt;&lt;/div&gt;</description><author>goloroden</author><pubDate>Wed, 05 May 2010 06:09:27 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to have private UI access? 20100505060927A</guid></item><item><title>New Post: Events</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=210932</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;This is just port from the Prism to support the web &lt;span style="color:black;font-size:10pt"&gt;environment, I did a blog post on this subject which you can read from &lt;a href="http://weblogs.asp.net/rashid/archive/2009/03/05/use-event-aggregator-to-make-your-application-more-extensible.aspx"&gt;http://weblogs.asp.net/rashid/archive/2009/03/05/use-event-aggregator-to-make-your-application-more-extensible.aspx&lt;/a&gt;. &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><author>kazimanzurrashid</author><pubDate>Thu, 29 Apr 2010 11:10:17 GMT</pubDate><guid isPermaLink="false">New Post: Events 20100429111017A</guid></item><item><title>New Post: Events</title><link>http://shrinkr.codeplex.com/Thread/View.aspx?ThreadId=210932</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am curious about EventSubscription, EventBase and another at EventAggregator.&lt;/p&gt;
&lt;p&gt;What SubscriptionToken class do more that a Guid?&lt;/p&gt;
&lt;p&gt;Comparing with C# Events, what the difference? Its a GlobalEvent plus Predicate if it should execute? What advantages?&lt;/p&gt;
&lt;p&gt;Its a &amp;quot;WeakReferenceDelegate&amp;quot;?&lt;/p&gt;
&lt;p&gt;Ty&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Ps.: This dont throw a out of index exception in cases that call RemoveAt?&lt;/p&gt;
&lt;p&gt;EventBase:&lt;/p&gt;
&lt;p&gt;for (int i = subscriptions.Count - 1; i &amp;gt;= 0; i--)&lt;br&gt; {&lt;br&gt; Action&amp;lt;object[]&amp;gt; subscriptionAction = subscriptions[i].GetExecutionStrategy();&lt;br&gt;&lt;br&gt; if (subscriptionAction == null)&lt;br&gt; {&lt;br&gt; using (syncLock.Write())&lt;br&gt; {&lt;br&gt; subscriptions.RemoveAt(i);&lt;/p&gt;
&lt;p&gt;//Missing i--;&lt;br&gt; }&lt;br&gt; }&lt;br&gt; else&lt;br&gt; {&lt;br&gt; returnList.Add(subscriptionAction);&lt;br&gt; }&lt;br&gt; }&lt;/p&gt;&lt;/div&gt;</description><author>fujiy</author><pubDate>Wed, 28 Apr 2010 23:25:29 GMT</pubDate><guid isPermaLink="false">New Post: Events 20100428112529P</guid></item></channel></rss>