User dimarzionist - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:01:54Z http://stackoverflow.com/feeds/user/10778 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/69830/which-browsers-your-applications-officially-supports 1 Which browsers your applications "officially" supports? dimarzionist 2008-09-16T06:35:00Z 2009-11-05T08:15:34Z <p>What browsers does your latest project "officially" support? </p> <p>For the browsers you chose not to support, what were the key reasons not to support them?</p> http://stackoverflow.com/questions/68835/code-review 6 Code Review dimarzionist 2008-09-16T02:18:05Z 2009-10-18T16:51:56Z <p>What code review policy you could recommend as the best for project you're managing?</p> http://stackoverflow.com/questions/152019/will-a-future-version-of-net-support-tuples-in-c/152026#152026 38 Answer by dimarzionist for Will a future version of .NET support tuples in C#? dimarzionist 2008-09-30T07:02:43Z 2009-07-29T06:28:55Z <pre><code>#region tuples public class Tuple&lt;T&gt; { public Tuple(T first) { First = first; } public T First { get; set; } } public class Tuple&lt;T, T2&gt; : Tuple&lt;T&gt; { public Tuple(T first, T2 second) : base(first) { Second = second; } public T2 Second { get; set; } } public class Tuple&lt;T, T2, T3&gt; : Tuple&lt;T, T2&gt; { public Tuple(T first, T2 second, T3 third) : base(first, second) { Third = third; } public T3 Third { get; set; } } public class Tuple&lt;T, T2, T3, T4&gt; : Tuple&lt;T, T2, T3&gt; { public Tuple(T first, T2 second, T3 third, T4 fourth) : base(first, second, third) { Fourth = fourth; } public T4 Fourth { get; set; } } #endregion </code></pre> <p>And to make declarations prettier:</p> <pre><code>public static class Tuple { //Allows Tuple.New(1, "2") instead of new Tuple&lt;int, string&gt;(1, "2") public static Tuple&lt;T1, T2&gt; New&lt;T1, T2&gt;(T1 t1, T2 t2) { return new Tuple&lt;T1, T2&gt;(t1, t2); } //etc... } </code></pre> http://stackoverflow.com/questions/113339/team-size-and-project-iteration-length 3 Team size and project iteration length. dimarzionist 2008-09-22T05:48:45Z 2009-05-19T14:13:17Z <p>Do you think that project iteration length is related to project team size? If so, how? What other key factors do you use to recognize correct iteration length for different projects?</p> http://stackoverflow.com/questions/850833/c-net-dictionary-memory-usage/850852#850852 0 Answer by dimarzionist for C#/.NET: Dictionary memory usage dimarzionist 2009-05-12T02:12:31Z 2009-05-12T02:12:31Z <p>When you adding something to Dictionary, calculate size of item adding and keep sum of every added item as single int value, when you're removing item from dictionary decrement this value.</p> http://stackoverflow.com/questions/69060/agile-project-and-amount-of-documentation 2 Agile project and amount of Documentation dimarzionist 2008-09-16T03:02:44Z 2009-05-08T19:39:19Z <p>What kind of documentation you'd recommend to support for Agile project? What are the core metrics you use to detect amount of documentation needed? Do you think you can store all of project info as TFS work items?</p> http://stackoverflow.com/questions/552009/asp-net-mvc-submitting-a-client-side-created-collection/552044#552044 1 Answer by dimarzionist for ASP.NET MVC- submitting a client side created collection dimarzionist 2009-02-16T02:02:57Z 2009-02-16T02:02:57Z <p>I think the easiest way is to put some form of your list to the hidden field (type=hidden) and it will be automatically submitted with form and accessible on server under the name you gave it. So main reasoning here is the way you going to process these data on the server side.</p> http://stackoverflow.com/questions/510019/capture-a-microphone-audio-stream-using-net-framework/510028#510028 0 Answer by dimarzionist for Capture a Microphone Audio Stream Using .NET Framework dimarzionist 2009-02-04T04:07:38Z 2009-02-04T04:07:38Z <p>Maybe not the latest experience, but I remember I was playing with <a href="http://nyxtom.vox.com/library/post/recording-audio-in-c.html" rel="nofollow">http://nyxtom.vox.com/library/post/recording-audio-in-c.html</a></p> <p>For more professional things you probably need to take a look at DirectSound API.</p> <p>Cheers.</p> http://stackoverflow.com/questions/69913/why-dont-self-closing-script-tags-work 25 Why don't self-closing script tags work? dimarzionist 2008-09-16T06:52:38Z 2009-01-30T14:43:20Z <p>What is the reason browsers do not correctly recognize:</p> <pre><code>&lt;script src="foobar.js" /&gt; // self-closing script tag </code></pre> <p>Only this is recognized:</p> <pre><code>&lt;script src="foobar.js"&gt;&lt;/script&gt; </code></pre> <p>Is it breaking concept of XHTML support?</p> <p>Note: This statement is correct at least for all IE(6-8 beta 2).</p> http://stackoverflow.com/questions/460085/best-language-for-quickly-creating-user-interfaces-with-out-drag-and-drop/460092#460092 1 Answer by dimarzionist for Best language for quickly creating user interfaces with out drag and drop? dimarzionist 2009-01-20T03:57:16Z 2009-01-20T03:57:16Z <p>take a look on XAML. I think it could be a good start for both modern Windows and Web UI creators.</p> http://stackoverflow.com/questions/456111/asp-net-mvc-routes-and-urlhelper/456156#456156 2 Answer by dimarzionist for ASP.NET MVC - Routes and UrlHelper dimarzionist 2009-01-18T23:55:07Z 2009-01-18T23:55:07Z <p>Hello! I think your problem is that you didn't specify the route name in your call. Try to use urlHelper.RouteUrl(<strong>"GigDayListings"</strong>, ViewContext.RouteData.Values); overload with route name.</p> <p>Cheers!</p> http://stackoverflow.com/questions/69725/astoria-vs-sql-server-data-services 2 Astoria vs. SQL Server Data Services dimarzionist 2008-09-16T06:09:55Z 2009-01-05T01:22:23Z <p>What are in your opinion big differences between areas of usage for "Astoria" (ADO.NET data services) and SQL Server Data Services?</p> http://stackoverflow.com/questions/264002/how-to-use-asp-net-mvc-actionfilterattribute-iresultfilter-to-modify-output/264032#264032 3 Answer by dimarzionist for How to use ASP.NET MVC ActionFilterAttribute/IResultFilter to modify output dimarzionist 2008-11-05T00:47:58Z 2008-11-05T00:47:58Z <p>I don't think it's good idea to do this with ActionFilterAttribute, as soon at it is dedicated for controller level decisions, not thinks specific to the HTML request post-processing. The best way to do this properly is possibly to create specific base View class or even ViewEngine, or use old good HttpModules as they were created for things like you are trying to do. Cheers.</p> http://stackoverflow.com/questions/155615/is-it-reasonable-to-assume-my-visitors-have-javascript-enabled/155634#155634 10 Answer by dimarzionist for Is it reasonable to assume my visitors have javascript enabled? dimarzionist 2008-09-30T23:52:08Z 2008-09-30T23:52:08Z <p>I think there is another reason which push you to support at least some main functionality without JS - lots of us now browsing from mobile and PDA, which have no the same lvl of JavaScript support.</p> http://stackoverflow.com/questions/152957/deployment-tools-enterprise-what-is-the-best-for-windows-environment/152962#152962 1 Answer by dimarzionist for Deployment tools ENTERPRISE - what is the best for Windows environment? dimarzionist 2008-09-30T13:13:15Z 2008-09-30T13:13:15Z <p>Power Shell, actually</p> http://stackoverflow.com/questions/151795/horizontal-lines-when-clicking-the-button-in-firefox 0 Horizontal lines when clicking the button in Firefox dimarzionist 2008-09-30T04:49:04Z 2008-09-30T04:54:30Z <p>I've some CSS problem in Firefox 3. I have several image buttons on my page and when I'm clicking on them I've seen to horizontal lines across the screen at top and bottom button border. I saw such issue on other web sites, so I think it's something known.</p> http://stackoverflow.com/questions/151327/sharing-files-between-vm-and-host-using-virtual-pc-2007/151381#151381 1 Answer by dimarzionist for Sharing Files between VM and Host using Virtual PC 2007 dimarzionist 2008-09-30T01:07:11Z 2008-09-30T01:07:11Z <p>The best way to do it is probably set up proper bridge network connection between host machine and VM.</p> http://stackoverflow.com/questions/151362/access-is-denied-error-on-accessing-iframe-document-object/151374#151374 0 Answer by dimarzionist for "Access is denied" error on accessing iframe document object dimarzionist 2008-09-30T01:04:17Z 2008-09-30T01:04:17Z <p>Basically, this error occurs when the document in frame and outside of ii have different domains. So to prevent cross-side scripting browsers disable such execution.</p> http://stackoverflow.com/questions/118725/best-way-to-enable-desktop-access-to-pcs-on-a-remote-network/118733#118733 2 Answer by dimarzionist for Best way to enable desktop access to PCs on a remote network dimarzionist 2008-09-23T02:01:09Z 2008-09-23T02:01:09Z <p>Maybe stupid answer - install Live Mesh on all machines and not depending on security policies you'll get desktop access as soon as port 80 is not closed. ) Cheers.</p> http://stackoverflow.com/questions/118532/what-is-the-best-way-to-send-a-html-email-from-asp-net-mvc/118723#118723 -3 Answer by dimarzionist for What is the best way to send a HTML email from Asp.net MVC? dimarzionist 2008-09-23T01:57:01Z 2008-09-23T01:57:01Z <p>Sorry mate, but I thing there is something wrong with your understanding of ASP.NET MVC. It's still the part of ASP.NET and framework, so you can use the same techniques you used there like SendMail and SmtpClient.</p> http://stackoverflow.com/questions/118693/how-do-you-dynamically-create-a-radio-button-in-javascript-that-works-in-all-brow/118703#118703 0 Answer by dimarzionist for How do you dynamically create a radio button in Javascript that works in all browsers? dimarzionist 2008-09-23T01:51:10Z 2008-09-23T01:51:10Z <p>My suggestion is not to use document.Create(). Better solution is to construct actual HTML of future control and then assign it like innerHTML to some placeholder - it allows browser to render it itself which is much faster than any JS DOM manipulations.</p> <p>Cheers.</p> http://stackoverflow.com/questions/118248/good-net-orm-framework-that-supports-oledb-and-stored-procedures/118277#118277 -1 Answer by dimarzionist for Good .NET ORM Framework that supports OleDb and Stored Procedures? dimarzionist 2008-09-22T23:49:51Z 2008-09-22T23:49:51Z <p>Alternatives:</p> <ol> <li>LINQ to SQL</li> <li>ADO.NET Entity Framework</li> <li>NHibernate</li> <li>Your choice )</li> </ol> http://stackoverflow.com/questions/113602/when-to-use-mvc-architecture/113627#113627 0 Answer by dimarzionist for When to use MVC Architecture dimarzionist 2008-09-22T07:29:59Z 2008-09-22T07:29:59Z <p>Main consideration of using any architectural pattern is how close model that pattern represents to your original business entities and front-end approaches you're faced with.</p> <p>Basically MVC allows you to have separated presentation and data layer with some kind of intermediate service layer in between. That allows you with small pain to substitute presentation interface, front-end engine or underlying data layer without major changes to other tiers.</p> <p>Core component of MVC here is controllers layer which operates actual data entities and defines which view to render in which case. Also you can see inverted part of it, whet you're rendering some view it decides which controller will be selected to operate it.</p> <p>Cheers.</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113587#113587 -2 Answer by dimarzionist for Why Re-throw Exceptions? dimarzionist 2008-09-22T07:17:50Z 2008-09-22T07:17:50Z <p>THE MAIN REASON of re-throwing exceptions is to leave Call Stack untouched, so you can get more complete picture of what happens and calls sequence.</p> http://stackoverflow.com/questions/113479/when-to-enable-disable-viewstate/113486#113486 4 Answer by dimarzionist for When to enable/disable Viewstate dimarzionist 2008-09-22T06:38:42Z 2008-09-22T06:38:42Z <p>It's a good practice. Unless you use ViewState values on postbacks, or they are required by some complex control itself it's good idea to save on ViewState as part of what will be sent to the client.</p> http://stackoverflow.com/questions/113293/is-the-host-localhost-always-available-for-the-own-system/113309#113309 -3 Answer by dimarzionist for Is the host localhost always available for the own system? dimarzionist 2008-09-22T05:28:27Z 2008-09-22T05:28:27Z <p>Ok. </p> <p>The reason why it resolves it is record in %WINDOWS_DIR%\System32\drivers\etc\hosts file like this:</p> <p>127.0.0.1 localhost</p> http://stackoverflow.com/questions/113283/rule-you-know-you-should-follow-but-dont/113306#113306 14 Answer by dimarzionist for Rule you know you should follow but don't dimarzionist 2008-09-22T05:26:23Z 2008-09-22T05:26:23Z <p>Go to bed before midnight, not siting behind monitor for "15 more minutes".</p> http://stackoverflow.com/questions/113286/do-you-create-your-own-code-generators/113303#113303 5 Answer by dimarzionist for Do you create your own code generators? dimarzionist 2008-09-22T05:24:39Z 2008-09-22T05:24:39Z <p>Code generators if used widely without correct argumentation make code less understandable and decrease maintainability (the same with dynamic SQL by the way). Personally I'm using it with some of ORM tools, because their usage here mostly obvious and sometimes for things like searcher-parser algorithms and grammatic analyzers which are not designed to be maintained "by hands" lately. Cheers.</p> http://stackoverflow.com/questions/113253/centered-background-image-is-off-by-1px/113268#113268 1 Answer by dimarzionist for Centered background image is off by 1px dimarzionist 2008-09-22T05:08:00Z 2008-09-22T05:08:00Z <p>Yeah, it's known issue. Unfortunately you only can fix div and image width, or use script to dynamically change stye.backgroundPosition property. Another trick is to put expression to the CSS class definition.</p> http://stackoverflow.com/questions/113233/how-to-release-net-apps-without-bundling-net-framework/113249#113249 3 Answer by dimarzionist for How to release .Net apps without bundling .Net framework? dimarzionist 2008-09-22T05:02:12Z 2008-09-22T05:02:12Z <p>Common solution in such situation which a the standard de-facto is that your customers should have the proper version of .Net framework, as soon as it's the part of Windows Update. So your installer should check availability of .NET of version your use on client's machine and propose to download it from Microsoft. This will prevent your company to transfer it through your channel and ensure your application has correct infrastructure,</p> http://stackoverflow.com/questions/69913/why-dont-self-closing-script-tags-work/69937#69937 Comment by dimarzionist on Why don't self-closing script tags work? dimarzionist 2008-09-16T07:15:58Z 2008-09-16T07:15:58Z exactly, Why I can use ANY other tag with short type of syntax, bu not the script one?! http://stackoverflow.com/questions/69060/agile-project-and-amount-of-documentation/69340#69340 Comment by dimarzionist on Agile project and amount of Documentation dimarzionist 2008-09-16T04:39:49Z 2008-09-16T04:39:49Z From my own experience: sometimes it's useful to add/threat some of email discussions as documentation.