<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for Ionut Grosu</title>
	<link>http://www.flexwizz.com</link>
	<description>Planning Web 3.0</description>
	<pubDate>Thu, 11 Mar 2010 01:00:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>Comment on Why I hate MVC&#8230; by shukri</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-5022</link>
		<dc:creator>shukri</dc:creator>
		<pubDate>Thu, 16 Jul 2009 08:51:20 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-5022</guid>
		<description>I just got pushed into using MVC at work, and I don't understand why so many are singing its praise. It's drastically increased complexity in the project, and it's also taken out concepts like viewstate which imo worked really well. I think ASP needed some kind of pattern to facilitate reuse of common operations, but MVC does not seem to be it. I am not impressed.</description>
		<content:encoded><![CDATA[<p>I just got pushed into using MVC at work, and I don&#8217;t understand why so many are singing its praise. It&#8217;s drastically increased complexity in the project, and it&#8217;s also taken out concepts like viewstate which imo worked really well. I think ASP needed some kind of pattern to facilitate reuse of common operations, but MVC does not seem to be it. I am not impressed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debug utility by Shashank</title>
		<link>http://www.flexwizz.com/2008/03/12/better-trace-method-debug-utility/#comment-4448</link>
		<dc:creator>Shashank</dc:creator>
		<pubDate>Thu, 25 Jun 2009 12:58:13 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/12/better-trace-method-debug-utility/#comment-4448</guid>
		<description>Thanks a lot, ITs Working for me :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot, ITs Working for me <img src='http://www.flexwizz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debug utility by Ionut Grosu</title>
		<link>http://www.flexwizz.com/2008/03/12/better-trace-method-debug-utility/#comment-4442</link>
		<dc:creator>Ionut Grosu</dc:creator>
		<pubDate>Thu, 25 Jun 2009 09:37:30 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/12/better-trace-method-debug-utility/#comment-4442</guid>
		<description>This has actually turned into an more compressive logging system that is used internally (I will post details over that a little later. Didn't have much time for blogging lately).

What you need can be done in many ways. One easy way is to use a regular expression to match that. The regular expression looks like this /:\d+]/ . When applied to a single line from the error stack will match this :lineNumber] 
So for example ( if err is Error ) this will output the line number:

var lineNumber : uint;
var loc : String = err.getStackTrace().split("at ")[1].split("()")[1];
var match : Array = loc.match(/:\d+]/gi);
if(match &#038;&#038; match.length &gt; 0)
{
   lineNumber = parseInt(String(match[0]).substr(1,match[0].length-1));
   trace( "lineNumber:"+ lineNumber);
}</description>
		<content:encoded><![CDATA[<p>This has actually turned into an more compressive logging system that is used internally (I will post details over that a little later. Didn&#8217;t have much time for blogging lately).</p>
<p>What you need can be done in many ways. One easy way is to use a regular expression to match that. The regular expression looks like this /:\d+]/ . When applied to a single line from the error stack will match this :lineNumber]<br />
So for example ( if err is Error ) this will output the line number:</p>
<p>var lineNumber : uint;<br />
var loc : String = err.getStackTrace().split(&#8221;at &#8220;)[1].split(&#8221;()&#8221;)[1];<br />
var match : Array = loc.match(/:\d+]/gi);<br />
if(match &#038;&#038; match.length > 0)<br />
{<br />
   lineNumber = parseInt(String(match[0]).substr(1,match[0].length-1));<br />
   trace( &#8220;lineNumber:&#8221;+ lineNumber);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debug utility by Shashank</title>
		<link>http://www.flexwizz.com/2008/03/12/better-trace-method-debug-utility/#comment-4439</link>
		<dc:creator>Shashank</dc:creator>
		<pubDate>Thu, 25 Jun 2009 07:20:11 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/12/better-trace-method-debug-utility/#comment-4439</guid>
		<description>Waw , Great work i have been trying to do this since 2 , 3 days. Now Remaining thing is only the Line Number which i will defiantly Parse through the String. If You have a tried and Best Sample for Returning line number also ,will Appreciate it. 

But Great work.

Thanks</description>
		<content:encoded><![CDATA[<p>Waw , Great work i have been trying to do this since 2 , 3 days. Now Remaining thing is only the Line Number which i will defiantly Parse through the String. If You have a tried and Best Sample for Returning line number also ,will Appreciate it. </p>
<p>But Great work.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I hate MVC&#8230; by Aaron Boyd</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-1988</link>
		<dc:creator>Aaron Boyd</dc:creator>
		<pubDate>Thu, 19 Mar 2009 21:58:14 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-1988</guid>
		<description>I find separating out the Model to be a reliable decomposition for many apps and therefor a reliable way to reduce complexity.  By reliable, I mean you can count on not one day wanting to mashup the Model with the View or the Controller.

Breaking up View and Controller is harder, and seems the source of much of the over-engineering in MVC.

For me, keeping the model separate, taking advantage of the fact that business rules exist independent from most of your technical decisions even though they impact your technical decisions, is the big win.</description>
		<content:encoded><![CDATA[<p>I find separating out the Model to be a reliable decomposition for many apps and therefor a reliable way to reduce complexity.  By reliable, I mean you can count on not one day wanting to mashup the Model with the View or the Controller.</p>
<p>Breaking up View and Controller is harder, and seems the source of much of the over-engineering in MVC.</p>
<p>For me, keeping the model separate, taking advantage of the fact that business rules exist independent from most of your technical decisions even though they impact your technical decisions, is the big win.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by pipipapa</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-195</link>
		<dc:creator>pipipapa</dc:creator>
		<pubDate>Sun, 28 Dec 2008 14:16:55 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-195</guid>
		<description>Only xmlns="http://ns.adobe.com/air/application/1.5" have to be changed...</description>
		<content:encoded><![CDATA[<p>Only xmlns=&#8221;http://ns.adobe.com/air/application/1.5&#8243; have to be changed&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by pipipapa</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-194</link>
		<dc:creator>pipipapa</dc:creator>
		<pubDate>Sun, 28 Dec 2008 14:11:58 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-194</guid>
		<description>Only  have to be changed :-) Works just perfect. Thank You very much once again.</description>
		<content:encoded><![CDATA[<p>Only  have to be changed <img src='http://www.flexwizz.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Works just perfect. Thank You very much once again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by Ionut Grosu</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-191</link>
		<dc:creator>Ionut Grosu</dc:creator>
		<pubDate>Wed, 24 Dec 2008 13:06:08 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-191</guid>
		<description>@pipipapa I will check the compatibility with AIR 1.5 and provide an update if necessary.</description>
		<content:encoded><![CDATA[<p>@pipipapa I will check the compatibility with AIR 1.5 and provide an update if necessary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by pipipapa</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-189</link>
		<dc:creator>pipipapa</dc:creator>
		<pubDate>Wed, 24 Dec 2008 00:35:01 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-189</guid>
		<description>I have to sleep more... Thank You very much Ionut for those classes.
Regards,
pipipapa</description>
		<content:encoded><![CDATA[<p>I have to sleep more&#8230; Thank You very much Ionut for those classes.<br />
Regards,<br />
pipipapa</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by pipipapa</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-188</link>
		<dc:creator>pipipapa</dc:creator>
		<pubDate>Tue, 23 Dec 2008 13:56:51 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-188</guid>
		<description>Hi, 
Is anywhere such beauty but working with AIR 1.5?
Regards,
pipipapa</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Is anywhere such beauty but working with AIR 1.5?<br />
Regards,<br />
pipipapa</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I hate MVC&#8230; by Drop your framework? &#8212; Thanks, Mister!</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-171</link>
		<dc:creator>Drop your framework? &#8212; Thanks, Mister!</dc:creator>
		<pubDate>Wed, 26 Nov 2008 00:27:09 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-171</guid>
		<description>[...] I found another discussion about this topic from the FlexWizz blog article titled &#8220;Why I hate MVC&#8221;. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] I found another discussion about this topic from the FlexWizz blog article titled &#8220;Why I hate MVC&#8221;. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash Player to Air communication by eric</title>
		<link>http://www.flexwizz.com/2008/06/20/flash-player-to-air-communication/#comment-84</link>
		<dc:creator>eric</dc:creator>
		<pubDate>Fri, 20 Jun 2008 20:05:47 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/06/20/flash-player-to-air-communication/#comment-84</guid>
		<description>very clean example...
Thanks.</description>
		<content:encoded><![CDATA[<p>very clean example&#8230;<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ascii Video Playback! by admin</title>
		<link>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-83</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 13 Jun 2008 22:58:05 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-83</guid>
		<description>The link was broken, sorry for that. Now it's fixed.</description>
		<content:encoded><![CDATA[<p>The link was broken, sorry for that. Now it&#8217;s fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ascii Video Playback! by Canon</title>
		<link>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-82</link>
		<dc:creator>Canon</dc:creator>
		<pubDate>Fri, 13 Jun 2008 00:52:35 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-82</guid>
		<description>thanks for adding the view source option, but it doesn't take me to the source.  Will you put a link to the source?  

Thanks,
George</description>
		<content:encoded><![CDATA[<p>thanks for adding the view source option, but it doesn&#8217;t take me to the source.  Will you put a link to the source?  </p>
<p>Thanks,<br />
George</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by eric</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-70</link>
		<dc:creator>eric</dc:creator>
		<pubDate>Thu, 22 May 2008 23:56:20 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-70</guid>
		<description>Very useful.
Thanks.</description>
		<content:encoded><![CDATA[<p>Very useful.<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Styles + (Graphical Skins vs Programmatic Skins) by Anderson</title>
		<link>http://www.flexwizz.com/2008/04/24/styles-graphical-skins-vs-programmatic-skins/#comment-68</link>
		<dc:creator>Anderson</dc:creator>
		<pubDate>Fri, 16 May 2008 06:11:57 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/24/styles-graphical-skins-vs-programmatic-skins/#comment-68</guid>
		<description>Cool.
And how can I write on a database if one user choose one CSS for exemple? And then when he come back load the CSS?

Thanks</description>
		<content:encoded><![CDATA[<p>Cool.<br />
And how can I write on a database if one user choose one CSS for exemple? And then when he come back load the CSS?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by OpenRIA &#187; Blog Archive &#187; AIR中的窗口管理器</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-67</link>
		<dc:creator>OpenRIA &#187; Blog Archive &#187; AIR中的窗口管理器</dc:creator>
		<pubDate>Fri, 16 May 2008 00:10:35 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-67</guid>
		<description>[...] AIR中没有对窗口进行良好管理的类，该作者写了一个windowManager来管理打开的窗口(mx.core.Window)： Window Manager in AIR [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] AIR中没有对窗口进行良好管理的类，该作者写了一个windowManager来管理打开的窗口(mx.core.Window)： Window Manager in AIR [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I hate MVC&#8230; by Radu</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-66</link>
		<dc:creator>Radu</dc:creator>
		<pubDate>Mon, 12 May 2008 20:51:49 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-66</guid>
		<description>Applying patterns is less fun in deed but it also gets you quicker through a dull project. You have the requirements you know how to solve the problems so you can finish it and spend more time on R&#38;D and challenge yourself with something a lot more interesting or get out and have a beer with friends. :)</description>
		<content:encoded><![CDATA[<p>Applying patterns is less fun in deed but it also gets you quicker through a dull project. You have the requirements you know how to solve the problems so you can finish it and spend more time on R&amp;D and challenge yourself with something a lot more interesting or get out and have a beer with friends. <img src='http://www.flexwizz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I hate MVC&#8230; by cosmin</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-63</link>
		<dc:creator>cosmin</dc:creator>
		<pubDate>Fri, 02 May 2008 10:50:01 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-63</guid>
		<description>Well the raw MVC is a long and old story. Nowadays it's more a way of thinking about separation of concerns than a good hands on approach. But if you liked Cairngorm then you'll love PureMVC. I bet you'll feel that it does right some of the things you felt Cairngorm did wrong.
You really don't want to do big service based team apps without using some kind of MVC. It might not be "correct coding attitude" but it's a perfectly good code architecting foundation.</description>
		<content:encoded><![CDATA[<p>Well the raw MVC is a long and old story. Nowadays it&#8217;s more a way of thinking about separation of concerns than a good hands on approach. But if you liked Cairngorm then you&#8217;ll love PureMVC. I bet you&#8217;ll feel that it does right some of the things you felt Cairngorm did wrong.<br />
You really don&#8217;t want to do big service based team apps without using some kind of MVC. It might not be &#8220;correct coding attitude&#8221; but it&#8217;s a perfectly good code architecting foundation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ascii Video Playback! by admin</title>
		<link>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-60</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 24 Apr 2008 00:22:27 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-60</guid>
		<description>Jan, sorry for the delay. I've had a extremely busy schedule lately.
I've added the source for the example.

John</description>
		<content:encoded><![CDATA[<p>Jan, sorry for the delay. I&#8217;ve had a extremely busy schedule lately.<br />
I&#8217;ve added the source for the example.</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I hate MVC&#8230; by Jason</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-58</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 23 Apr 2008 23:06:21 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-58</guid>
		<description>Another ASP.NET example we just finished in MVP. This website has:

- 11 web pages. To be conservative I’ll count user controls as pages as well (most plug into a wizard page) so that bumps the count up to 21 actual web pages.
- 8 solutions
- 50 projects/layers
- 852 supporting *.cs files (interfaces, views, business objects, DOA objects) not counting the designer.cs or aspx.cs code-behind files
- 56 Nhibernate mapping files

So that's roughly 40 supporting *.cs files per web page for a fairly simple website. Frankly that's just dumb. And whenever requirements change (let's face it, they do) the architect/lead developer spends such a long time trying to work out whether the existing bloat can accomodate the marginal changes without breaking too many things.

There are alternative design patterns to MVP that are faster to write, more flexible to change, more maintainable, more readable/comprehensible, and which abstract code and seperate concerns to a reasonable level. 

I really hope the old school Java programmers stuck thinking in this pattern retire and stop propagating this stupid architectural pattern.</description>
		<content:encoded><![CDATA[<p>Another ASP.NET example we just finished in MVP. This website has:</p>
<p>- 11 web pages. To be conservative I’ll count user controls as pages as well (most plug into a wizard page) so that bumps the count up to 21 actual web pages.<br />
- 8 solutions<br />
- 50 projects/layers<br />
- 852 supporting *.cs files (interfaces, views, business objects, DOA objects) not counting the designer.cs or aspx.cs code-behind files<br />
- 56 Nhibernate mapping files</p>
<p>So that&#8217;s roughly 40 supporting *.cs files per web page for a fairly simple website. Frankly that&#8217;s just dumb. And whenever requirements change (let&#8217;s face it, they do) the architect/lead developer spends such a long time trying to work out whether the existing bloat can accomodate the marginal changes without breaking too many things.</p>
<p>There are alternative design patterns to MVP that are faster to write, more flexible to change, more maintainable, more readable/comprehensible, and which abstract code and seperate concerns to a reasonable level. </p>
<p>I really hope the old school Java programmers stuck thinking in this pattern retire and stop propagating this stupid architectural pattern.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I hate MVC&#8230; by Jason</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-53</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 16 Apr 2008 04:28:43 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-53</guid>
		<description>Although not MVC, at my work we build versions of an application using ASP.NET following an MVP pattern. I can't stand it! Relatively simple tasks become monstrously convoluted. I remember one of my first tasks here was to show a table on 7 forms. I did it in codebehind first - it took 25 lines of code in each of the 7 files - simple, readable, easy for anyone else to understand, and best of all kept in the page (I know that's just blaspheme for some!). Then I rewrote it in the MVP pattern that we use here. Gawd, 5 days later it was finished, 25 new files were created (interfaces, presenters, views, nhibernate mapping files etc.) and 10 existing files had to be edited. So now, we had the same functionality as before, yet the code is strewn throughout 6 projects and 35 files, it's hard to navigate between them all (ie. much more unreadable), the solution is much more complex than it needs to be - and for very little gain. There are much simpler, manageable ways to seperate code than MVP. I can't stand it....</description>
		<content:encoded><![CDATA[<p>Although not MVC, at my work we build versions of an application using ASP.NET following an MVP pattern. I can&#8217;t stand it! Relatively simple tasks become monstrously convoluted. I remember one of my first tasks here was to show a table on 7 forms. I did it in codebehind first - it took 25 lines of code in each of the 7 files - simple, readable, easy for anyone else to understand, and best of all kept in the page (I know that&#8217;s just blaspheme for some!). Then I rewrote it in the MVP pattern that we use here. Gawd, 5 days later it was finished, 25 new files were created (interfaces, presenters, views, nhibernate mapping files etc.) and 10 existing files had to be edited. So now, we had the same functionality as before, yet the code is strewn throughout 6 projects and 35 files, it&#8217;s hard to navigate between them all (ie. much more unreadable), the solution is much more complex than it needs to be - and for very little gain. There are much simpler, manageable ways to seperate code than MVP. I can&#8217;t stand it&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ascii Video Playback! by Jan Viehweger</title>
		<link>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-41</link>
		<dc:creator>Jan Viehweger</dc:creator>
		<pubDate>Tue, 08 Apr 2008 10:43:50 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-41</guid>
		<description>ahh cool - i'll be waiting for that 
thanx again!</description>
		<content:encoded><![CDATA[<p>ahh cool - i&#8217;ll be waiting for that<br />
thanx again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ascii Video Playback! by admin</title>
		<link>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-31</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 06 Apr 2008 16:59:03 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-31</guid>
		<description>Ok Jan, It's nice to see that somebody can find a use for this. I'll will update this post or write a new one soon and let you know.
Cheers.</description>
		<content:encoded><![CDATA[<p>Ok Jan, It&#8217;s nice to see that somebody can find a use for this. I&#8217;ll will update this post or write a new one soon and let you know.<br />
Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by admin</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-30</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 06 Apr 2008 13:16:11 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-30</guid>
		<description>"does it worry you that there might be a duplication of effort in different implementations?"

No, not at all. The thing is that I created this to suit my needs and will continue to update it as soon as my needs expand or somebody who uses it needs something added/fixed and I find it right to do so. Haven't got the chance but I will check out what else is there and most importantly to see if the results are similar. Who knows, maybe they can go together or even joined... I'm always opened for suggestions.</description>
		<content:encoded><![CDATA[<p>&#8220;does it worry you that there might be a duplication of effort in different implementations?&#8221;</p>
<p>No, not at all. The thing is that I created this to suit my needs and will continue to update it as soon as my needs expand or somebody who uses it needs something added/fixed and I find it right to do so. Haven&#8217;t got the chance but I will check out what else is there and most importantly to see if the results are similar. Who knows, maybe they can go together or even joined&#8230; I&#8217;m always opened for suggestions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by barry.b</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-28</link>
		<dc:creator>barry.b</dc:creator>
		<pubDate>Sun, 06 Apr 2008 12:00:09 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-28</guid>
		<description>"I was actually surprised that something like this hasn't come in the sdk with AIR 1.0 release."

yeah, me too. the official word I got was that the AIR framework would provide enough low level stuff for the community to then take and run with (which you have - many thanks for the hard work)

the interesting thing is that window managers have been provided by Windows all the way back (as far a I can remember) VisualBasic3.0.

does it worry you that there might be a duplication of effort in different implementations? I mean, for the rest of us we just need a window manager that is predictable to implement and simply works.</description>
		<content:encoded><![CDATA[<p>&#8220;I was actually surprised that something like this hasn&#8217;t come in the sdk with AIR 1.0 release.&#8221;</p>
<p>yeah, me too. the official word I got was that the AIR framework would provide enough low level stuff for the community to then take and run with (which you have - many thanks for the hard work)</p>
<p>the interesting thing is that window managers have been provided by Windows all the way back (as far a I can remember) VisualBasic3.0.</p>
<p>does it worry you that there might be a duplication of effort in different implementations? I mean, for the rest of us we just need a window manager that is predictable to implement and simply works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window Manager in AIR by Jan Viehweger</title>
		<link>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-27</link>
		<dc:creator>Jan Viehweger</dc:creator>
		<pubDate>Sun, 06 Apr 2008 09:12:31 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/06/window-manager-in-air/#comment-27</guid>
		<description>cool!
will try that out.
btw - there has been another try to realize a window manager: http://blog.everythingflex.com/2008/02/26/everythingflexair1swc-introduces-superwindow/</description>
		<content:encoded><![CDATA[<p>cool!<br />
will try that out.<br />
btw - there has been another try to realize a window manager: <a href="http://blog.everythingflex.com/2008/02/26/everythingflexair1swc-introduces-superwindow/" rel="nofollow">http://blog.everythingflex.com/2008/02/26/everythingflexair1swc-introduces-superwindow/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ascii Video Playback! by Jan Viehweger</title>
		<link>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-26</link>
		<dc:creator>Jan Viehweger</dc:creator>
		<pubDate>Sun, 06 Apr 2008 08:59:29 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/03/19/ascii-rulezz/#comment-26</guid>
		<description>this is cool man!

i've been looking for something like that. the fact, that the text is real (selectable) text makes the whole thing  even more cooler! would be nice if you share the source code - i'd like to play arround with it .... getting lot of ideas when i see this!

keep on with you new blog!

best regards 

jan v.
halle (s.)
germany</description>
		<content:encoded><![CDATA[<p>this is cool man!</p>
<p>i&#8217;ve been looking for something like that. the fact, that the text is real (selectable) text makes the whole thing  even more cooler! would be nice if you share the source code - i&#8217;d like to play arround with it &#8230;. getting lot of ideas when i see this!</p>
<p>keep on with you new blog!</p>
<p>best regards </p>
<p>jan v.<br />
halle (s.)<br />
germany</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I hate MVC&#8230; by admin</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-22</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 04 Apr 2008 16:33:00 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-22</guid>
		<description>Yes, this is actually "2. Interface Flexibility" mentioned above, which can be achieved in various ways. But, doesn't this make all your projects that use that clock, MVC-dependent/oriented ? What if you would like to use that clock in a 100% non-MVC project ? Is the result of this really a clock "widget" ?
In any case, MVC is indeed a solid ground, but for me it takes away the fun and I'm fun-dependent.: )</description>
		<content:encoded><![CDATA[<p>Yes, this is actually &#8220;2. Interface Flexibility&#8221; mentioned above, which can be achieved in various ways. But, doesn&#8217;t this make all your projects that use that clock, MVC-dependent/oriented ? What if you would like to use that clock in a 100% non-MVC project ? Is the result of this really a clock &#8220;widget&#8221; ?<br />
In any case, MVC is indeed a solid ground, but for me it takes away the fun and I&#8217;m fun-dependent.: )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I hate MVC&#8230; by Dave Cox</title>
		<link>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-21</link>
		<dc:creator>Dave Cox</dc:creator>
		<pubDate>Fri, 04 Apr 2008 12:01:48 +0000</pubDate>
		<guid>http://www.flexwizz.com/2008/04/01/why-i-hate-mvc/#comment-21</guid>
		<description>OK, what about a clock widget? The Model emits the time and the Controller accepts a mouse click event that scrolls between a number of views, say digital and analogue. You could then reskin the clock any way you wished using only the hour, minute and second variables as inputs. Although it takes three classes instead of one to generate, if you needed to change the input time in the Model, to add to or enhance the user interaction, or to change the view, it becomes much simpler when it's neatly separated.

Scalability: In another project, you could easily add some more buttons and change the Model to emit relative time (eg: to create a stopwatch). Or in another, you could create three world clock times in your View that are in sync simply by adding two simple lines of code.

To each his own, I guess. I think using MVC becomes self-fulfilling after a while. After a year of using it solidly in almost every major project, I've found it harder to go back to prototyping in the Flash IDE the way I used to.</description>
		<content:encoded><![CDATA[<p>OK, what about a clock widget? The Model emits the time and the Controller accepts a mouse click event that scrolls between a number of views, say digital and analogue. You could then reskin the clock any way you wished using only the hour, minute and second variables as inputs. Although it takes three classes instead of one to generate, if you needed to change the input time in the Model, to add to or enhance the user interaction, or to change the view, it becomes much simpler when it&#8217;s neatly separated.</p>
<p>Scalability: In another project, you could easily add some more buttons and change the Model to emit relative time (eg: to create a stopwatch). Or in another, you could create three world clock times in your View that are in sync simply by adding two simple lines of code.</p>
<p>To each his own, I guess. I think using MVC becomes self-fulfilling after a while. After a year of using it solidly in almost every major project, I&#8217;ve found it harder to go back to prototyping in the Flash IDE the way I used to.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
