User Franci Penov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T16:58:39Zhttp://stackoverflow.com/feeds/user/17028http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1911572/would-vs2008-c-compiler-optimize-the-following-if-statement/1911629#19116292Answer by Franci Penov for Would VS2008 c++ compiler optimize the following if statement?Franci Penov2009-12-16T01:09:53Z2009-12-16T01:09:53Z<p>A good compiler should generate the same code for both code blocks.</p>
<p>However, instead of worrying about <code>false == f1()</code> vs. <code>!f1()</code>, you should be way more worried about the short-circuit evaluation in this example:</p>
<pre><code>if (25 == a->function1(12345, 6789) &&
45 == b->function1(12345, 6789) &&
!c->someOtherFunction(123)) { ... }
</code></pre>
<p>Certain compilers will generate code that will skip the execution of <code>b->function1()</code> and <code>c->someOtherFunction()</code>, if <code>a->function1()</code> call happens to evaluate to something different than 25 - the reason being, the compiler already knows the outcome of the whole <code>if ()</code> statement at that point, so it can jump at the right place.</p>
<p>If your code depends on a state being modified by any of the skipped functions, you might get nasty surprises.</p>
http://stackoverflow.com/questions/1908804/dotnet-datetime-tostring-strange-results/1908851#19088516Answer by Franci Penov for DotNet DateTime.ToString strange results...Franci Penov2009-12-15T16:58:13Z2009-12-15T16:58:13Z<p><a href="http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx#UsingSingleSpecifiers" rel="nofollow">According to MSDN</a>, you can use either <code>"%M"</code>, <code>"M "</code> or <code>" M"</code> (<strong>note</strong>: the last two will also include the space in the result) to force M being parsed as the number of month format.</p>
http://stackoverflow.com/questions/1905804/which-is-the-new-recommended-standard-of-html-javascript/1905848#19058485Answer by Franci Penov for Which is the new recommended standard of HTML & Javascript?Franci Penov2009-12-15T07:58:40Z2009-12-15T08:45:22Z<p>For markup, I would suggest HTML 4 or XHTML 1.0/1.1. However, if you want to use XHTML 1.1, you have to deliver it as application/xml, which does not work under IE and you can't use some of the most used external tools that inject fragments on your page, like Adsense for example. HTML 5 is not fully supported by any browser, and there's no official standard for it yet, so any support might change in future.</p>
<p>For scripting, use ECMAScript 3. ECMAScript 4 was abandoned, and ECMA Script 5 is not yet supported by most of the implementations our there.</p>
<p>For AJAX, stick with XMLHttpRequest Level 1. Level 2 is still a working draft and I am not sure which browsers have support for it.</p>
<p><strong>Update</strong>: I don't know how you can force Aptana to a particular (X)HTML version through it's settings, but if you have access to the raw document, you can add the proper DTD (<code><!DOCTYPE></code>) for the markup you want and Aptana should obey by it. THe DTDs for HTML 4.0 and XHTML 1.0 are as follow (pick only one):</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
</code></pre>
<p>(I am sure that Aptana also has this as a choice somewhere in the dialogs/menus when you create new document and it will add the proper DTD based on that choice)</p>
<p>To choose the proper version of ECMAScript, just put your scripts into a non-versioned script tag (<code><script type="text/javascript"></code> - see note). This MIME type is associated with JavaScript 1.5/ECMAScript 3.</p>
<p>As for the proper XMLHttpRequest, I would suggest (as others did in their answers) using <a href="http://jquery.com/" rel="nofollow">jQuery</a> or <a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5FJavaScript%5Fframeworks" rel="nofollow">any other JS framework (Dojo, Prototype and so on)</a> to take care of doing the right thing on each browser. Aptana comes with most of these JS frameworks out of the box, so you just have to choose the one you want to use. My personal preference is jQuery.</p>
<p><em>Note</em>: according to IANA (<a href="http://www.rfc-editor.org/rfc/rfc4329.txt" rel="nofollow">RFC4329</a>) the <code>text/javascript</code> MIME type on the <code><script></code> element is obsolete and should be replaced by <code>application/javascript</code> or <code>application/ecmascript</code>. However, the latter are not supported by IE.</p>
http://stackoverflow.com/questions/1905574/how-to-track-user-online-status/1905755#19057550Answer by Franci Penov for How to track user online status?Franci Penov2009-12-15T07:30:21Z2009-12-15T07:30:21Z<p>The biggest problem with tracking user presence (onine/offline) over HTTP is how to determine when the user has gone offline.</p>
<p>It's easy to determine when the user has come online - the mere presence of an authenticated request assumes that the user is active. However, since HTTP is stateless, the lack of a subsequent request can mean either that the user is gone offline, or that the user is online, but just hasn't done anything specific with your app recently.</p>
<p>Thus the best guess you can make is to have a timeout and if the user has not made a request during that timeout, to switch to offline state.</p>
<p>The simplest implementation would be to have a lastTimeActive, as Jonathan Sampson suggested. However, this won't give you the length of the user session, only an approximation of who's online at this moment.</p>
<p>More complex approach would be to have lastTimeActive and lastTimeLoggedIn. LastTimeLoggedIn is set at the time of first auth request that is more than 5 minutes from a previous auth request. A user is considered online, if there was an authenticated request in the last five minutes. The session length for the user is the time difference between lastTimeActive and lastTimeLoggedIn.</p>
<p>If your app also offers the choice of logging out to the user, you chouls consider that action also as going offline. However, unless your app is a banking app, chances are the users will just close their browser.</p>
<p>Also, avoid any background threads for updating the offline/online status of your users. You should be running the logic above only when there's an explicit request about the status of particular user and you should be updating only the users you were asked for.</p>
http://stackoverflow.com/questions/1904402/msaa-com-based/1904547#19045470Answer by Franci Penov for MSAA COM-based ?Franci Penov2009-12-15T00:39:34Z2009-12-15T00:39:34Z<p>MSAA is COM based. However, there is no co-creatable class exposed, it exposes only interfaces. That's the reason you can't do <code>CreateObject()</code>.</p>
<p>The MSAA-exposed APIs, like <code>AccessibleObjectFromPoint</code> and <code>AccessibleObjectFromWindow</code> are dll-exported C++ methods. You can use them from C++ by linking the proper lib or doing <code>LoadLibrary/GetProcAddress</code> with the function name. From C#, you can get the P/nvoke declaration for these from <a href="http://pinvoke.net" rel="nofollow">Pinvoke.net</a>. For example, here's the DllImport for <a href="http://www.pinvoke.net/default.aspx/oleacc/AccessibleObjectFromWindow.html" rel="nofollow"><code>AccessibleObjectFromWindow</code></a>.</p>
http://stackoverflow.com/questions/1903425/c-open-a-browser-and-post-to-a-url-from-a-windows-desktop-app/1903498#19034981Answer by Franci Penov for C#: Open a browser and POST to a url from a windows desktop app....Franci Penov2009-12-14T21:04:54Z2009-12-14T21:04:54Z<p>You can create a hidden <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser.aspx" rel="nofollow"><code>WebBrowser</code></a> control and do <a href="http://msdn.microsoft.com/en-us/library/cc491275.aspx" rel="nofollow"><code>Navigate()</code></a> (using the overload that allows you to specify the request method). You will need to specify a "_blank" target frame to cause the navigation to happen in a new browser window.</p>
http://stackoverflow.com/questions/1902827/c-template-specialization-of-constructor/1902870#19028701Answer by Franci Penov for C++ template specialization of constructorFranci Penov2009-12-14T19:10:57Z2009-12-14T20:49:04Z<p>You can't with your current approach. one_type is an alias to a particular template specialization, so it gets whatever code the template has.</p>
<p>If you want to add code specific to one_type, you have to declare it as a subclass of A specialization, like this:</p>
<pre><code> class one_type:
public A<std::string>, 20>
{
one_type(int m)
: A<str::string, 20>(m)
{
cerr << "One type" << endl;
}
};
</code></pre>
http://stackoverflow.com/questions/1902748/net-dependency-management-and-tagging-branching/1902806#19028062Answer by Franci Penov for .NET Dependency Management and Tagging/BranchingFranci Penov2009-12-14T18:58:51Z2009-12-14T18:58:51Z<p>I agree with @Brian Frantz. There's no reason to not treat the shared libraries as their own project that is built daily and your projects take binary dependency on the daily builds.</p>
<p>But even if you want to keep them as a source dependency and build them with the app, why wouldn't the SVN externals approach work for you? When you branch particular app, there's no need to branch the shared library as well, unless you need a separate copy of it for that branch. But that means, it not a shared library anymore, right?</p>
http://stackoverflow.com/questions/1879702/suggest-tool-for-website-structure-prototyping/1879738#18797382Answer by Franci Penov for Suggest tool for website structure prototypingFranci Penov2009-12-10T09:18:44Z2009-12-10T09:18:44Z<p>In no particular order:</p>
<ul>
<li><a href="http://www.microsoft.com/expression/products/Sketchflow%5FOverview.aspx" rel="nofollow">Sketchflow</a>, part of <a href="http://www.microsoft.com/expression/products/Blend%5FOverview.aspx" rel="nofollow">Expression Blend 3</a></li>
<li><a href="http://www.balsamiq.com/" rel="nofollow">Balsamiq</a></li>
<li><a href="http://gomockingbird.com/" rel="nofollow">Mockingbird</a></li>
<li><a href="http://www.axure.com/" rel="nofollow">Axure</a></li>
</ul>
http://stackoverflow.com/questions/1871531/launch-after-install-with-no-ui/1871752#18717521Answer by Franci Penov for Launch after install, with no UI?Franci Penov2009-12-09T05:22:30Z2009-12-09T05:22:30Z<p>I would assume that you are launching your app from a custom action, which is triggered through a property bound to the checkbox. If that is the case, you can try specifying that property as a command line argument to setup.exe. Say, if your custom action is bound to the MSI property LAUNCH_NEW_VERSION, you can call setup.exe like this:</p>
<pre><code>setup.exe /q LAUNCH_NEW_VERSION=1
</code></pre>
<p>The standard setup bootstrapper should pass that property/value to the MSI engine. If it doesn't, you might consider invoking the .msi directly instead of calling the bootstrapper exe to run your installer.</p>
http://stackoverflow.com/questions/180741/how-to-do-something-to-each-file-in-a-directory-with-a-batch-script/180749#1807497Answer by Franci Penov for How to do something to each file in a directory with a batch scriptFranci Penov2008-10-07T22:51:57Z2009-12-08T18:03:00Z<p>Command line usage:</p>
<pre><code>for /f %f in ('dir /b c:\') do echo %f
</code></pre>
<p>Batch file usage:</p>
<pre><code>for /f %%f in ('dir /b c:\') do echo %%f
</code></pre>
<p><strong>Update</strong>: if the directory contains files with space in the names, you need to change the delimiter the for /f command is using. for example, you can use the pipe char.</p>
<pre><code>for /f "delims=|" %%f in ('dir /b c:\') do echo %%f
</code></pre>
http://stackoverflow.com/questions/1844767/is-it-a-good-practice-to-use-email-address-as-a-primary-key-in-many-tables-in-a-w/1845028#18450281Answer by Franci Penov for Is it a good practice to use email address as a primary key in many tables in a website system?Franci Penov2009-12-04T05:25:35Z2009-12-04T05:35:02Z<p>In addition to all the perf reasons why <strong>you don't want a string as primary key in tables</strong>, there are also several very specific reasons why email in particular should not be used as a primary key:</p>
<ul>
<li><p><strong>Primary keys have to be unique. However, normalizing the email address is hard.</strong> You might have a lot of problems enforcing the uniqueness. (Are email addresses case sensitive? Do you ignore . or + inside emails? How do you compare non-english emails?)</p></li>
<li><p><strong>Email is personally identifiable information.</strong> Using it for any purpose can be a <strong>security and privacy problem</strong>. Especially if some of your users are under 13 years.</p></li>
<li><p><strong>Email is not immutable, as should not be used as an identity representation</strong> (<a href="http://stackoverflow.com/questions/564310/should-i-use-a-number-or-an-email-id-to-identify-a-user-on-website/564382#564382">Should I use a number or an email id to identify a user on website?</a>). Thus, if the user changes their email, you have to either a) update the primary keys of all your tables, or b) maintain the old email just as a key, which makes using the email as a key useless to begin with.</p></li>
</ul>
http://stackoverflow.com/questions/1809092/asp-net-html-helpers-vs-generic-html/1809121#18091211Answer by Franci Penov for ASP.NET HTML Helpers vs Generic HTMLFranci Penov2009-11-27T14:32:58Z2009-11-27T14:32:58Z<p>HTML Helpers are useful, when you want to reuse a piece of C# code and render some HTML dynamically without creating a full blown control.</p>
http://stackoverflow.com/questions/1809078/microsoft-visual-c-2008-express-edition/1809101#18091012Answer by Franci Penov for Microsoft Visual C# 2008 Express EditionFranci Penov2009-11-27T14:30:20Z2009-11-27T14:30:20Z<p>Visual C# 2008 Express is free, so you can just register your copy with Microsoft to continue using it. You can do the registration from Help -> Register Product.</p>
<p>More info about <a href="http://www.microsoft.com/express/registration/Default.aspx" rel="nofollow">Visual Studio Express Registration</a>.</p>
http://stackoverflow.com/questions/1735483/where-should-a-windows-applications-working-files-be-written/1735507#17355073Answer by Franci Penov for Where should a Windows application's working files be written?Franci Penov2009-11-14T20:33:55Z2009-11-14T20:33:55Z<p>This has been asked and answered before on Stackoverflow. Check the following two questions:</p>
<p><a href="http://stackoverflow.com/questions/588207/my-winform-app-uses-xml-files-to-store-data-where-should-i-store-them-so-vista-u">My winform app uses xml files to store data, where should I store them so Vista users can write to them?</a></p>
<p><a href="http://stackoverflow.com/questions/1615444/windows-standard-file-locations">Windows Standard File Locations</a></p>
http://stackoverflow.com/questions/1720340/limitations-of-using-net-2-0-windows-forms-controls-in-wpf/1720393#17203931Answer by Franci Penov for Limitations of using .NET 2.0 (Windows Forms) controls in WPF?Franci Penov2009-11-12T06:56:30Z2009-11-12T06:56:30Z<p>There's a Datagrid control in the <a href="http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29117" rel="nofollow">WPF Toolkit</a>. There's also a third party <a href="http://www.codeplex.com/wpg" rel="nofollow">PropertyGrid control</a> on CodePlex as well (under the very permissive MS-PL license).</p>
http://stackoverflow.com/questions/1720307/high-traffic-highly-secure-web-api-what-language/1720358#17203581Answer by Franci Penov for High-traffic, Highly-secure web API, what language?Franci Penov2009-11-12T06:48:22Z2009-11-12T06:48:22Z<p>Don't choose your tools before you know what job needs to be done.</p>
<p>Open-source vs. non-open-source should be the least of your concerns. It's irrelevant for your goal (unless by "open source" you actually mean "don't have to pay for" :-)).</p>
<p>Relational vs. noSQL is relevant question, but without knowing what type of data will be stored and processed it's a moot point.</p>
<p>As for language - make sure you pick the one you and your team know the best. Building scalable, secure platform is not the time to learn new tools. :-)</p>
http://stackoverflow.com/questions/1720222/what-is-the-simplest-license-key-generator-i-can-develop-myself-in-1-day/1720299#17202992Answer by Franci Penov for What is the simplest license key generator I can develop myself in 1 day?Franci Penov2009-11-12T06:28:54Z2009-11-12T06:28:54Z<p>There's no way you can do a good job in a day and chances are the overall effect will be negative. It'll annoy your loyal and honest customers and it won't stop dishonest ones.</p>
<p>Instead, spend that day in coming up with a way to measure somehow how much piracy your product is getting. Once you know this, you can estimate how much money you are losing and how much effort you really should put into protection or other approaches.</p>
<p>If you still want to do it though, the easiest way is to collect some data unique for the installation (OS user name, email address, CPU/motherboard serial number - whatever you want to tie it to), ask the user to send it to you and generate a license key by encrypting it with your private key. Your software should collect the same pieces of data, decrypt the license with your public key and compare the two blobs.</p>
http://stackoverflow.com/questions/1694280/should-i-open-source-my-monotouch-net-iphone-application/1694390#16943902Answer by Franci Penov for Should I Open Source my MonoTouch .NET iPhone application?Franci Penov2009-11-07T20:56:59Z2009-11-07T20:56:59Z<p>Open sourcing for the sake of being open source is pure emotional decision. In the real world, open sourcing is a strategy that should be employed carefully with great consideration of its effect on your goals. And the main question is "How will I benefit from open sourcing my code?".</p>
<p>So you have to figure out what is your goal when writing these apps. Are you trying to monetize them or are you writing them for fun and learning?</p>
<p>If the answer is fun and learning, you can open source them and see what others would make from your idea. There's a lot to be learned from the community; and you will get valuable experience while actually trying to build that community. ("If you build it they will come" is not a valid principle in modern society, and double so in the software industry. Just open sourcing your code doesn't necessarily mean anyone will be interested; you will have to be actively building your community in various ways)</p>
<p>If you are trying to monetize these apps, open sourcing them can benefit you only in the case where the app is a commodity that drives traffic to your monetization channel (for example in-game gift purchases, incentivised advertising, writing ebook/blog posts/articles about the experience). If the apps are the main engine for the monetization channel, open sourcing them is direct invitation to others to cannibalize your profits.</p>
http://stackoverflow.com/questions/1651782/string-find-replace-algorithm/1652027#16520271Answer by Franci Penov for String Find/Replace AlgorithmFranci Penov2009-10-30T20:09:06Z2009-10-30T20:09:06Z<p>Your algorithm description is unclear. There's no exact rule where the extracted tokens should be re-inserted.</p>
<p>Here's an example:</p>
<ol>
<li>Find 'three' in 'one two three four five six'</li>
<li><p>Choose one of these two to get 'foo bar' as result:</p>
<p>a. replace 'one two' with 'foo' and 'four five six' with 'bar'</p>
<p>b. replace 'one two four five six' with 'foo bar'</p></li>
<li><p>Insert 'three' back in the step 2 resulting string 'foo bar'</p></li>
</ol>
<p>At step 3 does 'three' goes before 'bar' or after it?</p>
<p>Once you've come up with clear rules for reinserting, you can easily implement the algorithm as a recursive method or as an iterative method with a replacements stack.</p>
http://stackoverflow.com/questions/1641912/to-create-a-worker-thread-and-keep-it-alive-throughout-my-application-life-time/1641972#16419720Answer by Franci Penov for to create a worker thread and keep it alive throughout my application life time to perform some back ground tasks Franci Penov2009-10-29T06:41:14Z2009-10-29T09:26:00Z<p><strong>Update:</strong> Even though you've indicated in comments you have to do this in Asp.Net, I'll leave my original content below, as it has some useful links.</p>
<p>Since Asp.Net uses the thread pool to schedule incoming requests, running your background task on the thread pool will take one thread off of it and will impact Asp.Net performance. Thus, you will have to use the <code>Thread</code> class.</p>
<p>To achieve your scenario, you can create a new <code>Thread</code> instance, set its <code>IsBackground</code> property to true and start it. Once started, the thread will wait for an <a href="http://msdn.microsoft.com/en-us/library/system.threading.autoresetevent.aspx" rel="nofollow"><code>AutoResetEvent</code></a> (using the <a href="http://msdn.microsoft.com/en-us/library/system.threading.autoresetevent.waitone.aspx" rel="nofollow"><code>WaitOne</code></a> method) to be set by an incoming request (using the <a href="http://msdn.microsoft.com/en-us/library/system.threading.autoresetevent.set.aspx" rel="nofollow"><code>Set</code></a> met6hod), which will signal the background thread that its task should be processed. Once the task is finished, the background thread will again wait on the event.</p>
<p>This is the simplest implementation, which does not allow passing parameters between the request and the background thread and does not allow more than one tasks to be queued at a time. If you need support for parameters or queueing, you will have to keep a reference to the thread object somewhere it ill be accessible to the incoming requests.</p>
<p>You will also have to consider that your background thread can be killed at any point in time, if IIS decides to recycle the Asp.Net worker process. Also, throwing an exception inside the background thread will cause IIS to recycle the Asp.Net worker process.</p>
<p>There are also some considerations around the identity of the background thread. In particular, a background thread can't easily impersonate the identity of the user on the current incoming request. It is possible, but it will require you to pass the user identity each time a new task is scheduled by a request.</p>
<p><hr /></p>
<p>It would be useful if you tell us what language and what platform you are writing your code in.</p>
<p>If it happens to be a Windows platform, there is a thread pool you can "borrow" threads from for your tasks. You can schedule your task on the thread pool by using either the <a href="http://msdn.microsoft.com/en-us/library/ms684957%28VS.85%29.aspx" rel="nofollow"><code>QueueUserWorkItem</code></a> API (C++) or the <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadpool.queueuserworkitem.aspx" rel="nofollow"><code>ThreadPool.QueueUserWorkItem</code></a> (C#/.Net). Note there are some <a href="http://blogs.msdn.com/oldnewthing/archive/2005/07/22/441785.aspx" rel="nofollow">implications</a> if your task will be running for a longer time.</p>
<p>You can also create your own thread using either the <a href="http://msdn.microsoft.com/en-us/library/system.threading.thread.aspx" rel="nofollow"><code>Thread</code></a> class (C#/.Net) or the <a href="http://msdn.microsoft.com/en-us/library/kdzttdcb%28VS.80%29.aspx" rel="nofollow"><code>_beginthreadex</code></a> or the <a href="http://msdn.microsoft.com/en-us/library/ms682453%28VS.85%29.aspx" rel="nofollow"><code>CreateThread</code></a> API (C++). In this case, you will have to implement a queue for the foreground thread to schedule the tasks on and you will have a loop on the background thread to pick the new tasks and execute them. And of course, you will have to synchronize the access to that queue from both threads using some synchronization primitive like a <a href="http://msdn.microsoft.com/en-us/library/ms682530%28VS.85%29.aspx" rel="nofollow"><code>CRITICAL_SECTION</code></a> (C++) or the <a href="http://msdn.microsoft.com/en-us/library/ms173179.aspx" rel="nofollow"><code>lock statement</code></a> (C#/.Net).</p>
<p>For Linux or OS X you might look into <a href="http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html" rel="nofollow"><code>POSIX threads</code></a>. I have not done much *nix style programming, so there might be even better alternatives. If you are targeting one of these platforms, add that info to your question and I am sure there will be helpful answers in no time.</p>
http://stackoverflow.com/questions/1641453/application-in-the-taskbar/1641480#16414803Answer by Franci Penov for Application in the TaskbarFranci Penov2009-10-29T03:36:41Z2009-10-29T03:48:42Z<p>What you are looking for is creating an <a href="http://msdn.microsoft.com/en-us/library/cc144177%28VS.85%29.aspx" rel="nofollow">Application Desktop Toolbar</a> (also known as AppBar). The main function you use to register your application window as an AppBar is <a href="http://msdn.microsoft.com/en-us/library/bb762108%28VS.85%29.aspx" rel="nofollow"><code>SHAppBarMessage</code></a>.</p>
<p>To get you started, you can look at this old <a href="http://support.microsoft.com/kb/134206" rel="nofollow">appbar example</a> with C++. If you want to do it in C#, there's a thread that discusses some <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/49698e52-1a29-4f24-8e4e-69230020c551/" rel="nofollow">details on how to do it in WPF</a>. I am not aware of examples of how to do it with WinForms, but a quick search on the web should bring something.</p>
<p><strong>Update:</strong> Actually, if you want a toolbar that sits on the taskbar, you need to implement a Deskband. Here's a sample <a href="http://www.codeguru.com/cpp/com-tech/atl/activex/article.php/c3595/" rel="nofollow">DeskBand in C++</a> and here's a <a href="http://www.codeproject.com/KB/shell/dotnetbandobjects.aspx" rel="nofollow">DeskBand in C#</a>.</p>
<p>That's what happens when you don't touch a topic in a while. :-)</p>
http://stackoverflow.com/questions/1360579/post-publish-events/1360604#13606042Answer by Franci Penov for Post Publish EventsFranci Penov2009-09-01T05:00:36Z2009-10-29T03:22:17Z<p><strong>Update:</strong> Since Publish Web does not apply to folder-based web site projects, this answer assumes you are asking about a Web Application project.</p>
<p>You can't do this from inside the VS IDE. However, you can edit your project file in Notepad or your favorite XML editor and add a new target at the end of the file called <code>AfterPublish</code>.</p>
<p>You might want to read a bit more on <a href="http://msdn.microsoft.com/en-us/library/ms171451.aspx" rel="nofollow">MSBuild</a> if you are not sure what you can do in this target.</p>
<p>You can find more details on extending the build process in VS at MSDN - <a href="http://msdn.microsoft.com/en-us/library/ms366724.aspx" rel="nofollow">HowTo: Extend the Visual Studio Build Process</a>.</p>
http://stackoverflow.com/questions/1639902/if-i-develop-by-myself-do-i-still-need-source-control-software/1639917#16399173Answer by Franci Penov for If I develop by myself, do I still need source control software?Franci Penov2009-10-28T20:28:47Z2009-10-28T20:28:47Z<p>Yes. Source control gives you history of the changes, easy branching and versioning, ability to revert to earlier versions, easy replication/backup of the repository and other benefits.</p>
http://stackoverflow.com/questions/1634461/wpf-redering-performance/1634474#16344742Answer by Franci Penov for WPF Redering performanceFranci Penov2009-10-28T00:18:21Z2009-10-28T00:18:21Z<p>Unless all the 200 items are visible on the screen, you should be using some kind of virtual layout that creates the visual tree only for the visible items. This will greatly improve your performance.</p>
http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/555738#55573825Answer by Franci Penov for The funniest/weirdest error message you've got from a development environment/applicationFranci Penov2009-02-17T06:52:53Z2009-10-27T20:25:21Z<p>Attempting to install a pre-release build of Virtual PC inside a Virtual PC machine:</p>
<blockquote>
<p>You had to try this, didn't you?</p>
</blockquote>
<p>There was also a litte bit more to it; unfortunately, I don't remember the whole message. That part though had me laughing for couple of days.</p>
http://stackoverflow.com/questions/1612546/how-to-fix-com-outproc-server-initializing-error-0x80004015/1612651#16126511Answer by Franci Penov for How to fix COM outproc server initializing error 0x80004015?Franci Penov2009-10-23T10:46:32Z2009-10-23T10:46:32Z<p>Do you have any specific DCOM permissions set on the server? Alternatively, check the identity of the caller that causes the server process to be launched against the default DCOM permissions. It might be that the caller is service running under particular account and the process is launched as Interactive User.</p>
<p>Here's <a href="http://support.microsoft.com/kb/169321" rel="nofollow">an article</a> with more info that can help you figure out the problem.</p>
http://stackoverflow.com/questions/1611251/tortoise-svn-the-windows-context-menu-doesnt-show-check-in-option/1611424#16114241Answer by Franci Penov for [Tortoise SVN]: The Windows Context Menu Doesn't Show Check-In option.Franci Penov2009-10-23T04:51:33Z2009-10-23T04:51:33Z<p>In other version control systems, you have to get a local working copy of the repository, which is initially read-only. Then you have to explicitly "check out" a file before you can edit it and then you "check in" once you're done.</p>
<p>In SVN terms, however, "check out" is the operation of creating a local working copy of the repository (or a subtree of it). Once you have the working copy, it is already editable; you don't need to do an explicit action before you can edit the file. SVN will track automatically whether the file was modified locally and once that happens, SVN will offer you "commit" option, which will submit your changes to the repository.</p>
http://stackoverflow.com/questions/1611135/how-do-you-port-a-theme-from-silverlight-to-wpf/1611143#16111430Answer by Franci Penov for How do you port a theme from Silverlight to WPF?Franci Penov2009-10-23T02:36:53Z2009-10-23T02:36:53Z<p>I would guess that the unresolved reference is to the Silverlight version of the System.Windows.dll. You will have to change the references in the theme project to point to the WPF version of the dlls.</p>
<p>You can also look at the <a href="http://wpfthemes.codeplex.com/" rel="nofollow">WPF themes</a> project (coordinated by Rudi Grobler), which already has the BureauBlue.</p>
http://stackoverflow.com/questions/1610734/what-is-a-net-developer/1610747#16107470Answer by Franci Penov for What is a .NET developer?Franci Penov2009-10-23T00:12:48Z2009-10-23T00:12:48Z<p>CLR, BCL and C#/VB.Net, ADO.NET, WinForms and/or ASP.NET. Most of the places that require additional .Net technologies, like WPF or WCF will call it out explicitly.</p>
http://stackoverflow.com/questions/1912331/how-to-apply-two-wordpress-themesComment by Franci Penov on How to apply two wordpress themes?Franci Penov2009-12-16T04:53:08Z2009-12-16T04:53:08ZNot really sure how's this a programming-related question.http://stackoverflow.com/questions/1911572/would-vs2008-c-compiler-optimize-the-following-if-statement/1911629#1911629Comment by Franci Penov on Would VS2008 c++ compiler optimize the following if statement?Franci Penov2009-12-16T04:09:39Z2009-12-16T04:09:39Z@Ipthns - of course, you kind of forget that a year from now the new college graduate will go and change that function to update some internal state and half the tests will fail. :-) using a function in a short-circuiting code puts a non-intuitive and hard to discover requirement on that function. meanwhile, here are some examples of legitimate functions that return a value that needs to be checked and modify state - InterlockExchange(), AddRef()/Release(), LoadLibrary()http://stackoverflow.com/questions/1911572/would-vs2008-c-compiler-optimize-the-following-if-statement/1911629#1911629Comment by Franci Penov on Would VS2008 c++ compiler optimize the following if statement?Franci Penov2009-12-16T01:29:03Z2009-12-16T01:29:03ZLol, so why do you have that sample code in there if you know you shouldn't be doing this?http://stackoverflow.com/questions/1911572/would-vs2008-c-compiler-optimize-the-following-if-statementComment by Franci Penov on Would VS2008 c++ compiler optimize the following if statement?Franci Penov2009-12-16T01:16:36Z2009-12-16T01:16:36ZBtw, if your code reviews are being failed due to speed waste, you should a) ask the code reviewer to substantiate his claims your code suffers from perf problems; and b) ensure your team has clear perf scenarios and corresponding tests to measure the bottlenecks instead of micro-optimizing random spots during code review.http://stackoverflow.com/questions/1911572/would-vs2008-c-compiler-optimize-the-following-if-statementComment by Franci Penov on Would VS2008 c++ compiler optimize the following if statement?Franci Penov2009-12-16T01:13:13Z2009-12-16T01:13:13ZJust compile it with the C++ compiler and then run it under windbg and look at the generated assembly code.http://stackoverflow.com/questions/1905804/which-is-the-new-recommended-standard-of-html-javascript/1905848#1905848Comment by Franci Penov on Which is the new recommended standard of HTML & Javascript?Franci Penov2009-12-15T16:46:10Z2009-12-15T16:46:10Z@Alohci - yes, one of the few reasonable things in HTML5. :-)http://stackoverflow.com/questions/1905987/4-questions-on-corbaComment by Franci Penov on 4 QUESTIONS ON CORBA.Franci Penov2009-12-15T08:50:20Z2009-12-15T08:50:20Zwhat bugs me more is that there are people that still teach CORBA. :-)http://stackoverflow.com/questions/1905804/which-is-the-new-recommended-standard-of-html-javascript/1905815#1905815Comment by Franci Penov on Which is the new recommended standard of HTML & Javascript?Franci Penov2009-12-15T08:00:23Z2009-12-15T08:00:23Zof course, the HTML5 momentum is still not enough to have it delivered as an official W3C standard before 2012. :-)http://stackoverflow.com/questions/1905804/which-is-the-new-recommended-standard-of-html-javascript/1905807#1905807Comment by Franci Penov on Which is the new recommended standard of HTML & Javascript?Franci Penov2009-12-15T07:49:02Z2009-12-15T07:49:02Z...and is not fully supported by any browser. :-) not to mention the abysmal support for it in the browser with biggest market share out there.http://stackoverflow.com/questions/1902748/net-dependency-management-and-tagging-branching/1902806#1902806Comment by Franci Penov on .NET Dependency Management and Tagging/BranchingFranci Penov2009-12-15T04:53:10Z2009-12-15T04:53:10ZA breaking change in the shared libraries should not be made in a branch of one of the client apps. it should be made into a shared library branch, that has stabilized versions of all the client apps, so that you have full control over what's changing in the shared libraries.http://stackoverflow.com/questions/1903425/c-open-a-browser-and-post-to-a-url-from-a-windows-desktop-appComment by Franci Penov on C#: Open a browser and POST to a url from a windows desktop app....Franci Penov2009-12-14T20:57:52Z2009-12-14T20:57:52ZWhy do you have the ASP.NET tag?http://stackoverflow.com/questions/1902748/net-dependency-management-and-tagging-branching/1902806#1902806Comment by Franci Penov on .NET Dependency Management and Tagging/BranchingFranci Penov2009-12-14T20:01:51Z2009-12-14T20:01:51ZThat is a disaster recipe. What happens when you branch two of your apps and you branch the shared libraries for both of them? Merging the shared libraries changes back can (and probably will) be a logistics nightmare. (Been there, done that :-))http://stackoverflow.com/questions/1879475/speed-of-programming-languages-then-and-now/1879515#1879515Comment by Franci Penov on Speed of programming languages then and now.Franci Penov2009-12-10T09:04:12Z2009-12-10T09:04:12ZJIT still has a perf hit when running the app, but C# also can be pre-compiled to native code, or NGEN-ed at deployment.http://stackoverflow.com/questions/1879475/speed-of-programming-languages-then-and-now/1879509#1879509Comment by Franci Penov on Speed of programming languages then and now.Franci Penov2009-12-10T09:01:17Z2009-12-10T09:01:17Z@Steven - you are right that what codegen/exec tool you use has perf implications. However, that is still orthogonal to the choice of language in the general case. Of course, the toolsets for some languages are limited to an interpreter or a static compiler only, so people say "language perf" when they really mean the perf of the tool. However, the toolsets for other languages span the whole range of code-gen/exec possibilities. "Language perf" does not make much sense for such languages. Example: is C++ faster than C#, which can be precompiled, NGENed, JITed or interpreted?http://stackoverflow.com/questions/1879475/speed-of-programming-languages-then-and-nowComment by Franci Penov on Speed of programming languages then and now.Franci Penov2009-12-10T08:48:00Z2009-12-10T08:48:00ZJava the language is no better or worse then other languages out there. It's Java the VM and Java the framework that is the problem.