User Borek - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T20:29:58Zhttp://stackoverflow.com/feeds/user/21728http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1590829/visual-studio-2010-beta-2-known-issues-list3Visual Studio 2010 beta 2 known issues list?Borek2009-10-19T20:10:22Z2009-11-11T14:32:15Z
<p>Did anyone manage to find the list of known issues for Visual Studio 2010 beta 2? Readme in the installation folder redirects me to the beta 1 list.</p>
http://stackoverflow.com/questions/1629475/vmware-workstation-7-vs-vmware-player-3-features2VMware Workstation 7 vs. VMware Player 3 features?Borek2009-10-27T08:46:23Z2009-10-28T03:57:06Z
<p>Now that the VMware Player 3 is out with the ability to create virtual machines, I am wondering what I would get for $189 for the full VMware Workstation. Is there a feature matrix somewhere?</p>
<p>Edit: I've read the FAQ (<a href="http://www.vmware.com/products/player/faqs.html" rel="nofollow">http://www.vmware.com/products/player/faqs.html</a>) but am looking for a more complete description of the differences.</p>
http://stackoverflow.com/questions/719303/project-management-sharepoint-vs-activecollab2Project management: SharePoint vs activeCollabBorek2009-04-05T17:09:05Z2009-10-11T04:06:58Z
<p>I'm trying to choose a project management and collaboration software for our next project and would like to know your opinion on "enterprisey" SharePoint vs. "lightweight" alternatives like BaseCamp or activeCollab (from the two, I would prefer the latter).</p>
<p>Features that are important to us:</p>
<ul>
<li>document sharing (specifications, manuals etc.)</li>
<li>discussion forums (I hate when important information is lost in the inbox)</li>
<li>issue tracking</li>
<li>Subversion integration would be nice to have but probably neither SharePoint, nor activeCollab currently support it, do they?</li>
</ul>
<p>Other things like time tracking are less important to us (although nice to have).</p>
<p>When I compare the two solutions, I see these strong points and drawbacks:</p>
<ul>
<li>Killer feature of SharePoint is Office integration. For instance, specification is much better authored in MS Word with styles, image drag&drop etc. compared to a plain HTML textarea and some plain text format. We also use Outlook quite extensively so it would be good if we could leverage this tool.</li>
<li>activeCollab is web based and has a slick user interface which is important for adoption in our company (if our devs don't find the solution easy to work with, they will not use it). My boss also kind of likes easy solutions and activeCollab wins easily in this area.</li>
</ul>
<p>Regarding price, activeCollab is something like few hundreds dollars (reasonable one time cost) but I'm not too sure about SharePoint. If I'm right, the basic "SharePoint Services" version would be enough for us (I don't think we need the full MS Office SharePoint Server) and in that case, we need only Windows Server licence (which we already) and a SQL Server licence (would SQL Server Express work? or do we need at least workgroup edition?). This means that even SharePoint doesn't need to be too expensive if we go for the lowest edition.</p>
<p>Is there anyone who did the same comparison and could possibly provide more insight?</p>
http://stackoverflow.com/questions/153812/subversion-is-trunk-really-the-best-place-for-the-main-development12Subversion - is trunk really the best place for the main development?Borek2008-09-30T16:18:57Z2009-06-17T07:41:19Z
<p>In SVN, <code>trunk</code> is the recommended place for the main development and I use this convention for all of my projects. However, this means that <strong>trunk is sometimes unstable, or even broken</strong>. This happens for instance when</p>
<ul>
<li>I commit something by mistake</li>
<li>When the trunk simply has to be broken because of the way SVN works. Canonical example is file renames - you must commit any file renames first and do any further modifications later; however, file rename may require code refactoring to reflect namespace or class name change so you basically need to commit a single logic operation in two steps. And the build is broken between steps 1 and 2.</li>
</ul>
<p>I can imagine there would be tools to prevent commiting something by mistake (TeamCity and delayed commits, for instance) but can you really overcome the second problem? If not, wouldn't it be better to do the "wild development" on some branch like <code>/branch/dev</code> and only merge to trunk when the build is reasonably solid?</p>
http://stackoverflow.com/questions/989245/literals-or-expressions-in-unit-test-asserts1Literals or expressions in unit test asserts?Borek2009-06-12T21:53:17Z2009-06-12T22:09:35Z
<p>Do you prefer literal values or expressions in your Asserts in your unit tests? This little example demonstrates what I mean - please pay attention to the comments:</p>
<pre><code>[Test]
public function fromXML_works() : void {
var slideshow : Slideshow = SlideshowConverter.fromXML(xmlSample);
// do you prefer literal value "1":
assertEquals(slideshow.id, "1");
// ... or an expression like this:
assertEquals(slideshow.id, xmlSample.@id);
}
private var xmlSample : XML =
<slideshow id="1">
<someOtherTags />
</slideshow>;
</code></pre>
<p>The nice thing about the expression is that when the XML sample changes, the unit test will not break. On the other hand, I've basically provided an <em>implementation</em> of one aspect of my SlideshowConverter directly in my unit test which I don't like (the test should test intent, not implementation). I can also imagine that tests using expressions will be more prone to programming errors (I could have, for example, made a mistake in my E4X expression in my test method).</p>
<p>What approach do you prefer? What advantage is usually more important on real world projects?</p>
http://stackoverflow.com/questions/879883/can-asdoc-in-flex-create-documentation-for-packages-namespaces0Can ASDoc in Flex create documentation for packages/namespaces?Borek2009-05-18T21:16:30Z2009-05-18T23:38:20Z
<p>As the title says - is it possible to document my ActionScript packages / namespaces using the ASDoc comments and the included asdoc command line tool?</p>
http://stackoverflow.com/questions/206943/what-features-would-you-most-like-to-see-in-visual-studio-2010/207818#2078182Answer by Borek for What features would you most like to see in Visual Studio 2010?Borek2008-10-16T08:48:49Z2008-10-16T08:48:49Z<p>Good designers for WPF and Silverlight, more functionality that currently must be provided by (quite costly) third party tools like Resharper.</p>
http://stackoverflow.com/questions/181421/who-has-the-best-documentation-you-have-ever-seen-language-framework-cms-wh/181564#1815643Answer by Borek for Who has the BEST documentation you have ever seen? Language, framework, CMS... who has it?Borek2008-10-08T06:38:43Z2008-10-08T06:38:43Z<p>TortoiseSVN has a really nice documentation.</p>
http://stackoverflow.com/questions/178341/why-is-distributed-source-control-considered-harder/178842#1788420Answer by Borek for Why is distributed source control considered harder?Borek2008-10-07T14:57:45Z2008-10-07T14:57:45Z<p>DVCS is currently lacking good desktop clients. Despite what most people say, version control systems can be quite hard to use correctly so a good desktop client can really help - and here TortoiseSVN excels.</p>
http://stackoverflow.com/questions/154800/how-to-tell-when-an-mxml-component-has-totally-finished-creation/155075#1550751Answer by Borek for How to tell when an MXML component has totally finished creation?Borek2008-09-30T21:00:57Z2008-09-30T21:00:57Z<p>In some complex cases, like when your component is considered "finished" only when some data has been retrieved via HTTP or something like that, custom event is your best bet.</p>
http://stackoverflow.com/questions/35541/are-there-any-good-programs-for-actionscript-flex-thatll-count-lines-of-code-nu/146201#1462011Answer by Borek for Are there any good programs for actionscript/flex that'll count lines of code, number of functions, files, packages,etc...Borek2008-09-28T16:28:32Z2008-09-28T16:28:32Z<p>Simple tool called <a href="http://www.locmetrics.com/" rel="nofollow">LocMetrics</a> can work for .as files too...</p>
http://stackoverflow.com/questions/141288/possible-to-use-flex-framework-components-without-using-mxml/141522#1415226Answer by Borek for Possible to use Flex Framework/Components without using MXML?Borek2008-09-26T19:46:59Z2008-09-26T19:46:59Z<p>This is a very simple app that does only the basic bootstrapping in MXML. This is the MXML:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onCreationComplete()">
<mx:Script source="Script.as" />
</mx:Application>
</code></pre>
<p>This is the Script.as:</p>
<pre><code>import mx.controls.Button;
import flash.events.MouseEvent;
import mx.controls.Alert;
import mx.core.Application;
private function onCreationComplete() : void {
var button : Button = new Button();
button.label = "Click me";
button.addEventListener(MouseEvent.CLICK, function(e : MouseEvent) : void {
Alert.show("Clicked");
});
Application.application.addChild(button);
}
</code></pre>
http://stackoverflow.com/questions/141024/actionscript3-user-interface-components/141071#1410711Answer by Borek for ActionScript3 User Interface Components?Borek2008-09-26T18:15:52Z2008-09-26T18:15:52Z<p>Flex framework has a nice, consistent API that I wouldn't consider "bloated" - yes, it's a feature-packed UI framework but basic things like buttons and layout panels don't require any deep knowledge. And XML-based language for UIs is a blessing (all modern UI platforms do that, be it DHTML, Flex or WPF/Silverlight).</p>
http://stackoverflow.com/questions/138313/how-to-extract-img-src-title-and-alt-from-html-using-php/138320#1383200Answer by Borek for How to extract img src, title and alt from html using php?Borek2008-09-26T08:35:35Z2008-09-26T08:35:35Z<p>You can also try SimpleXML if the HTML is guaranteed to be XHTML - it will parse the markup for you and you will be able to access the attributes just by their name. (There are DOM libraries as well if it's just HTML and you can't depend on the XML syntax.)</p>
http://stackoverflow.com/questions/137793/suggestions-on-using-flex-with-wcf-and-linq-to-entities/138070#1380700Answer by Borek for Suggestions on using Flex with WCF and Linq to Entities.Borek2008-09-26T06:53:18Z2008-09-26T06:53:18Z<p>You have several options for communicating between Flex application and your WCF service. Flex supports both SOAP web services and REST-like web services so you can choose which approach fits you best. When you receive data on the client, you will need to extract the entities from the response and build the UI accordingly. Similar with updating or creating new entities - you will need to construct a web service request from your user interface controls and send it over the wire.</p>
<p>Also look into AMF which is a binary format for communicating between Flex/Flash and a server. There are .NET implementations out there (AMF.NET for instance) so it may be possible to somehow make it work with WCF - you need to explore this area yourself, I have no direct experience here.</p>
http://stackoverflow.com/questions/137933/what-is-the-best-scripting-language-to-embed-in-a-c-desktop-application/137960#1379601Answer by Borek for What is the best scripting language to embed in a C# desktop application.Borek2008-09-26T05:52:58Z2008-09-26T05:52:58Z<p>IronRuby as mentioned above. An interesting project to me as a C# programmer is <a href="http://tirania.org/blog/archive/2008/Sep-10.html" rel="nofollow">C# Eval support in Mono</a>. But it's not available yet (will be part of Mono 2.2).</p>
http://stackoverflow.com/questions/135845/are-booleans-as-method-arguments-unacceptable/135878#1358786Answer by Borek for Are booleans as method arguments unacceptable?Borek2008-09-25T20:35:39Z2008-09-25T20:35:39Z<p>Enums are better but I wouldn't call boolean params as "unacceptable". Sometimes it's just easier to throw one little boolean in and move on (think private methods etc.)</p>
http://stackoverflow.com/questions/133506/ruby-to-actionscript3-bytecode/135655#1356550Answer by Borek for Ruby to Actionscript3 BytecodeBorek2008-09-25T20:03:00Z2008-09-25T20:03:00Z<p>I don't know of any Ruby->AS3 converters but in the future, <a href="https://wiki.mozilla.org/Tamarin:IronMonkey" rel="nofollow">Iron Monkey</a> may make it possible to run Ruby on Tamarin (AS3 virtual machine).</p>
http://stackoverflow.com/questions/135432/what-alternatives-exist-to-uml-to-graphically-represent-software-models/135557#1355571Answer by Borek for What alternatives exist to UML to graphically represent software modelsBorek2008-09-25T19:46:09Z2008-09-25T19:46:09Z<p>There are two competing trends in the modeling space - UML (or similar notations) vs. DSLs (Domain Specific Languages). UML approach tries to model every possible real world scenario in a unified modeling language while the DSL approach tends to create a new specific-purpose language for every "domain" (area of interest).</p>
<p>If you live in a Microsoft world, Visual Studio has historically chosen the DSL path and you can find many examples of graphical designers for Domain Specific Languages in Visual Studio Team System (application architecture designer, class designer etc.) On the other hand, it is expected that Microsoft will announce better UML support for Visual Studio vNext later this year at the PDC conference so you will probably get first-class support for UML as well.</p>
<p>BTW, if you were looking for an alternative to UML amongst the general-purpose modeling notations, I would recommend not to bother. UML is the best in that area and definitely the one that gets the most support across the industry.</p>
http://stackoverflow.com/questions/135427/rails-and-flex/135493#1354931Answer by Borek for Rails and FlexBorek2008-09-25T19:34:42Z2008-09-25T19:34:42Z<p>Flex is certainly worth considering in your scenario. Generally, Flex is more mature development platform than AJAX is so if your server-side data are exposed via some reasonable interface (web services, REST-full services etc.), building a Flex front-end would make sense.</p>
<p>It really depends on your needs - Flex vs. AJAX is an interesting topic on its own.</p>
http://stackoverflow.com/questions/128034/why-should-i-use-flex/132728#1327289Answer by Borek for Why should I use Flex?Borek2008-09-25T11:29:52Z2008-09-25T11:29:52Z<p>Here is my experience: you really need to consider 2 things separately - development and the end-user experience. Flex shines in the first area:</p>
<ul>
<li>ActionScript is a nice mixture of Java and JavaScript so you get a familiar language with strong support for OOP</li>
<li>debugging is far easier than what you can achieve in JavaScript</li>
<li>Flex framework is component-oriented and event-driven which helps in creating rich user interfaces (HTML was not really created to support application UI scenarios)</li>
</ul>
<p>On the other hand, the end-user experience is worse when running a Flex app compared to an AJAX app. First, you need to have Flash Player installed but this is probably not an issue for most computers today. Bigger problems are with usability - Flash Player handles all UI interactions (instead of a browser) so the password manager doesn't work, text fields don't remember previous entries, Ctrl+T and middle-clicking doesn't work, text search doesn't work etc. etc.</p>
<p>My advice would be - if you are developing <em>an application</em> (rich UI, relatively separated from the rest of the web), go for Flex as it will save you time, money and will make your users happier by providing richer functionality and shorter periods between new versions. On the other hand, if your application needs to be tightly integrated with the web and you want your users to be able to use features of their browsers, go with AJAX.</p>
<p>Nice example is Google Docs vs Buzzword. Buzzword is much more feature rich (for instance, text can flow around an image from both sides which is something you could never ever achieve in DHTML) but Google still decided to go for an AJAX version because they are the "web company". There is no right or wrong in doing it the one or the other way, it's just different and it's important to consider who your end users are.</p>
http://stackoverflow.com/questions/129330/how-do-i-make-a-custom-flex-component-for-a-gap-fill-exercise/132650#1326501Answer by Borek for How do I make a custom Flex component for a gap-fill exercise?Borek2008-09-25T11:11:02Z2008-09-25T11:11:02Z<p>You need a container that supports flow layout. It's not part of the standard Flex framework but you can find some working implementation <a href="http://flexlib.googlecode.com/svn/trunk/docs/flexlib/containers/FlowBox.html" rel="nofollow">here</a> (part of the excellent FlexLib) and <a href="http://www.munkiihouse.com/?p=60" rel="nofollow">here</a> (standalone implementation).</p>
http://stackoverflow.com/questions/4794/flex-air-obfuscation/132625#1326255Answer by Borek for Flex / Air obfuscationBorek2008-09-25T11:03:36Z2008-09-25T11:03:36Z<p>The procedure suggested by maclema will not really stop any attacker from obtaining the source - the "wrapper application" will need to be unencrypted so the attacker will be able to find out that you use AES (or any other algorithm) and he will obtain the decryption key in a similar way (because it needs to be in plaintext somewhere). Once he has this, he will be able to decrypt your SWF file easily.</p>
<p>The only reliable solution (well...) is some kind of obfuscator - we use Amayeta which works for Flex in the latest version - please see <a href="http://www.amayeta.com/software/swfencrypt/" rel="nofollow">http://www.amayeta.com/software/swfencrypt/</a> .</p>
http://stackoverflow.com/questions/131040/converting-string-to-uint-in-actionscript-flex/132076#1320766Answer by Borek for Converting string to uint in actionscript / FlexBorek2008-09-25T08:13:52Z2008-09-25T08:13:52Z<p>Color is not a property, it is a style. You need to define the style like this:</p>
<pre><code>[Style(name="labelColor", type="uint", format="Color" )]
</code></pre>
<p>(enclose it in tag if you define it directly in MXML). You then need to add some ActionScript to handle this style and apply it to whichever control you need, please refer to <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_1.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_1.html</a> for more information.</p>
http://stackoverflow.com/questions/131975/what-are-the-benefits-of-dependency-injection-containers/132011#1320110Answer by Borek for What are the benefits of dependency injection containers?Borek2008-09-25T07:51:11Z2008-09-25T07:51:11Z<p>Your case is very simple and therefore doesn't need an IoC (Inversion of Control) container like Spring. On the other hand, when you "program to interfaces, not implementations" (which is a good practice in OOP), you can have code like this:</p>
<pre><code>IService myService;
// ...
public void doSomething() {
myService.fetchData();
}
</code></pre>
<p>(note that the type of myService is IService -- an interface, not a concrete implementation). Now it can be handy to let your IoC container automatically provide the correct concrete instance of IService during initialization - when you have many interfaces and many implementations, it can be cumbersome to do that by hand. Main benefits of an IoC container (dependency injection framework) are:</p>
<ul>
<li>External configuration of mapping between interfaces and their concrete implementations</li>
<li>IoC container handles some tricky issues like resolving complicated dependency graphs, managing component's lifetime etc.</li>
<li>You save coding time because you provide mappings declaratively, not in a procedural code</li>
<li>Inversion of Control principle allows for easy unit testing because you can replace real implementations with fake ones (like replacing SQL database with an in-memory one)</li>
</ul>
http://stackoverflow.com/questions/127817/c-3-0-object-initializer/127887#127887-2Answer by Borek for C# 3.0 - Object initializer Borek2008-09-24T15:30:26Z2008-09-24T15:30:26Z<p>You are calling a parameter-less constructor so AddStatementCharge is never initialized. Use something like:</p>
<pre><code>var accountStatement = new AccountStatement(period, accountId) {
StartDate = new Date(2007, 1, 1),
EndDate = new Date(2007, 1, 31),
StartingBalance = 125.05m
};
</code></pre>
http://stackoverflow.com/questions/1629475/vmware-workstation-7-vs-vmware-player-3-features/1629502#1629502Comment by Borek on VMware Workstation 7 vs. VMware Player 3 features?Borek2009-10-27T11:11:33Z2009-10-27T11:11:33ZThanks, I should have made clear that I have read the FAQ and am looking for some more information.http://stackoverflow.com/questions/61320/svn-plugins-for-eclipse-subclipse-vs-subversive/61352#61352Comment by Borek on SVN plugins for Eclipse - Subclipse vs. SubversiveBorek2009-08-05T14:47:19Z2009-08-05T14:47:19ZYou still need some Eclipse plugin to hide the ugly .svn folders (exclude them from search etc.)http://stackoverflow.com/questions/719303/project-management-sharepoint-vs-activecollab/719368#719368Comment by Borek on Project management: SharePoint vs activeCollabBorek2009-04-05T17:57:51Z2009-04-05T17:57:51ZThanks for the info. We can't spend too much time on customization, though. What level of issue tracking would we get out of the box? Is it usable for basic bug logging and processing?http://stackoverflow.com/questions/153812/subversion-is-trunk-really-the-best-place-for-the-main-developmentComment by Borek on Subversion - is trunk really the best place for the main development?Borek2008-09-30T16:40:04Z2008-09-30T16:40:04ZThat's not always possible and the SVN guide even warns you against this.http://stackoverflow.com/questions/153812/subversion-is-trunk-really-the-best-place-for-the-main-development/153829#153829Comment by Borek on Subversion - is trunk really the best place for the main development?Borek2008-09-30T16:37:56Z2008-09-30T16:37:56ZThis has been helpful, thanks.http://stackoverflow.com/questions/153812/subversion-is-trunk-really-the-best-place-for-the-main-development/153818#153818Comment by Borek on Subversion - is trunk really the best place for the main development?Borek2008-09-30T16:37:07Z2008-09-30T16:37:07ZSo you recommend working on trunk and when I need to make a change that requires more SVN commits (like file rename), copy trunk to a short-lived branch, check out that branch, make and commit the changes, and merge them back to trunk? Seems like a pain in the neck but maybe it's the only way...http://stackoverflow.com/questions/141024/actionscript3-user-interface-components/141071#141071Comment by Borek on ActionScript3 User Interface Components?Borek2008-09-28T16:42:58Z2008-09-28T16:42:58ZFlash Player supports Flex framework caching so it will NOT be additional 150kB, see for instance <a href="http://www.onflex.org/ted/2008/01/flex-3-framework-caching.php" rel="nofollow">onflex.org/ted/2008/…</a>http://stackoverflow.com/questions/3553/one-piece-of-advice/3562#3562Comment by Borek on One piece of adviceBorek2008-09-26T15:21:45Z2008-09-26T15:21:45ZLearn to use unit testing ASAP rather than using debugginghttp://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0/138695#138695Comment by Borek on Most wanted feature for C# 4.0 ?Borek2008-09-26T14:11:34Z2008-09-26T14:11:34ZI agree with Keith, the development speed is OK - get us a new release every 2-3 years, we can deal with that.http://stackoverflow.com/questions/138313/how-to-extract-img-src-title-and-alt-from-html-using-php/138320#138320Comment by Borek on How to extract img src, title and alt from html using php?Borek2008-09-26T09:57:25Z2008-09-26T09:57:25ZWell it has been answered by Anonymous...