User Michal - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:57:40Z http://stackoverflow.com/feeds/user/21672 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1777164/classic-asp-development/1781140#1781140 0 Answer by Michal for Classic ASP development Michal 2009-11-23T04:43:54Z 2009-11-23T04:43:54Z <p>You might be interested in using <a href="http://www.ajaxed.org" rel="nofollow">ajaxed</a> which has been built to support legacy classic asp apps. </p> http://stackoverflow.com/questions/1647802/free-web-based-solution-for-intranet-document-search-engine/1648006#1648006 0 Answer by Michal for Free web-based solution for intranet document search engine ? Michal 2009-10-30T04:30:42Z 2009-10-30T04:30:42Z <p>If you are using Microsoft, then a the <strong>Microsoft Index Service</strong> is a really good solution. I've been using it in one company for their whole Intranet and it worked like a charm. Took me half a day to get it up and running.</p> <p>If you want Index Service to index PDFs as well you need to install a small tool from Adobe called <a href="http://www.adobe.com/support/downloads/detail.jsp?ftpID=2611" rel="nofollow">iFilter</a>.</p> <p>The nice thing is that the Index Service is available on every Windows Server installation, which leaves you the trouble of installing stuff.</p> http://stackoverflow.com/questions/1629569/dependent-combo-in-classic-asp-and-ajax/1642096#1642096 1 Answer by Michal for dependent combo in classic ASP and Ajax? Michal 2009-10-29T07:23:47Z 2009-10-29T07:23:47Z <p>You might be interested in the <a href="http://www.ajaxed.org/article/Creating-dependent-dropdowns/20/" rel="nofollow">solution using ajaxed</a>.</p> http://stackoverflow.com/questions/1011734/web-user-control-self-reference-advanced 0 Web user control self reference (advanced) Michal 2009-06-18T09:30:21Z 2009-10-15T09:00:02Z <p>I am a bit stuck. </p> <p>I have created a Web user control which renders a Question (I have a question domain object). This Web user control should render itself again for all Child questions of the current question.</p> <p>Currently I am loading the child questions with LoadControl into the parent control. It works fine the child question controls do not keep viewstate. Nor do they trigger any proper postbacks.</p> <p>What's the best way to load a web user control again within itself so that viewstate is properly preserved?</p> <p>I am using VS2005 and ASP.NET 2.0</p> http://stackoverflow.com/questions/1553878/which-compiled-technology-would-you-use-today-for-a-small-web-project 0 Which compiled technology would you use today for a small web project? Michal 2009-10-12T10:48:11Z 2009-10-12T11:57:35Z <p>I am about to start a small web project (let's assume something like a small Stackoverflow) and was wondering which technology/framework you would suggest in order to match the following requirements:</p> <ul> <li>must be compiler checked. no scripting.</li> <li>easy support for user friendly urls, SEO optimization, etc.</li> <li>open source. </li> </ul> <p>I guess Java seems to be a good choice .. But which framework(s)? </p> http://stackoverflow.com/questions/1497861/how-to-get-sql-server-date-in-its-native-format/1501822#1501822 0 Answer by Michal for How to get SQL Server Date in its native format? Michal 2009-10-01T03:57:08Z 2009-10-01T03:57:08Z <p>Here is a function for this ...</p> <pre><code>'********************************************************************************************************** '' @SDESCRIPTION: Gets an independent sql representation for a datetime string standardised by ISO 8601 '' @DESCRIPTION: If you want to create a sql statement containing a date query in the where clause, '' use this function to create a datetime object. '' EXAMPLE: '' In Sql Server: Declare @timeTable TABLE (name int, starttime datetime) '' In VBScript: sql = "SELECT * FROM timeTable WHERE starttime = " &amp; date.toMsSqlDateFormat(cDate('2007-01-01 15:30:00')) '' Results in: SELECT * FROM timeTable WHERE starttime = cast('2006-01-01T15:30:00' as datetime) '' NOTE: only for MS SQL Server '' @PARAM: dat [date]: the date/time you want to cast '' @RETURN: [string] the formatted date string '********************************************************************************************************** public function toMsSqlDateFormat(dat) if dat = empty then exit function toMsSqlDateFormat = "cast('" &amp; year(dat) &amp; "-" &amp; lib.custom.forceZeros(month(dat), 2) &amp; "-" &amp; _ padLeft(day(dat), 2, "0") &amp; "T" &amp; padLeft(hour(dat), 2, "0") &amp; ":" &amp; _ padLeft(minute(dat), 2, "0") &amp; ":" &amp; padLeft(second(dat), 2, "0") &amp; "' as datetime)" end function '****************************************************************************************************************** '' @SDESCRIPTION: right-aligns a given value by padding left a given character to a totalsize '' @DESCRIPTION: example: input: &lt;em&gt;22&lt;/em&gt; -&gt; output: &lt;em&gt;00022&lt;/em&gt; (padded to total length of 5 with the paddingchar 0) '' @PARAM: value [string]: the value which should be aligned right '' @PARAM: totalLength [string]: whats the total Length of the result string '' @PARAM: paddingChar [string]: the char which is taken for padding '' @RETURN: [string] right aligned string. '****************************************************************************************************************** public function padLeft(value, totalLength, paddingChar) padLeft = right(clone(paddingChar, totalLength) &amp; value, totalLength) end function public function clone(byVal str, n) for i = 1 to n : clone = clone &amp; str : next end function </code></pre> http://stackoverflow.com/questions/1498121/classic-asp-exception-logging-500-and-500-100-errors/1501779#1501779 0 Answer by Michal for Classic ASP Exception Logging (500 and 500.100 errors) Michal 2009-10-01T03:38:12Z 2009-10-01T03:38:12Z <p>Two questions - two answers:</p> <ol> <li>you should be able to raise an error with the following <code>err.raise nr, source, description</code></li> <li>The error handling you are using (modifying the error pages) seems to be a common way for classic asp apps.</li> </ol> http://stackoverflow.com/questions/1463229/can-an-include-file-identify-the-calling-page-in-classic-asp/1464457#1464457 2 Answer by Michal for Can an include file identify the calling page in classic asp? Michal 2009-09-23T07:27:44Z 2009-09-23T07:27:44Z <p>As you say your collections are located in different virtual paths. So, you can check the URL of your page (using <a href="http://neural.cs.nthu.edu.tw/jang/sandbox/asp/examples/request5.asp" rel="nofollow">server variables</a>) and render according to the path.</p> <p>E.g. the following could be placed in the <code>../SSI/Template.inc</code>:</p> <pre><code>if instr(Request.ServerVariables("URL"), "/collection1") &gt; -1 then 'render html for collection 1 else 'render for collection 2 end if </code></pre> http://stackoverflow.com/questions/1463635/asp-http-request-post/1464034#1464034 0 Answer by Michal for [ASP] HTTP Request (post) Michal 2009-09-23T04:56:06Z 2009-09-23T04:56:06Z <p>You must use one of the existing xmlhttp server objects directly or you could use a library which makes life a bit easier by abstracting the low level stuff away.</p> <p>Check <a href="http://ajaxed.org/api/#method%5FIDALTW0" rel="nofollow">ajaxed implementation</a> of fetching an URL</p> <p>Disadvantage: You need to configure the library in order to make it work. Not sure if this is necessary for your project. </p> http://stackoverflow.com/questions/1437533/using-sqlite-with-classic-asp/1442431#1442431 1 Answer by Michal for Using SQLite with Classic ASP Michal 2009-09-18T03:16:15Z 2009-09-18T03:16:15Z <p>It is easily possible. </p> <ol> <li>First install the ODBC driver from <a href="http://www.ch-werner.de/sqliteodbc/" rel="nofollow">http://www.ch-werner.de/sqliteodbc/</a></li> <li>Then you can connect with e.g. <code>DRIVER=SQLite3 ODBC Driver;Database=mydb.sqlite;LongNames=0;Timeout=1000;NoTXN=0;SyncPragma=NORMAL;StepAPI=0;</code></li> </ol> <p>I would suggest looking at <a href="http://www.ajaxed.org" rel="nofollow">ajaxed library</a> which offers you a data abstraction for any database. Just configure the connection string and start working ...</p> http://stackoverflow.com/questions/1362696/how-to-write-a-good-rfc-standard-and-where-to-get-started 0 How to write a good RFC standard and where to get started? Michal 2009-09-01T14:08:00Z 2009-09-02T01:31:29Z <p>I was wondering what it requires to write a standard which targets programmers (e.g. JSON) and where to get started?</p> <p>Does anyone has hands-on experience on that?</p> http://stackoverflow.com/questions/1304073/why-mail-code-is-not-working/1305536#1305536 0 Answer by Michal for Why mail code is not working Michal 2009-08-20T11:29:12Z 2009-08-20T11:29:12Z <p>You might wanna use the <a href="http://www.ajaxed.org" rel="nofollow">open source library ajaxed</a> for that. It detects the component and you dont need to worry about that.</p> <blockquote> <p>Forget the problem of choosing the right email component (installing &amp; configuring it). ajaxed does that for you. It checks which components are installed on the server and uses the "best" one. Please refer to the API to see which components are currently supported. As this page been written Jmail, ASPEmail and CDOSYS was supported.</p> </blockquote> <p>Here is a tutorial on how to <a href="http://www.ajaxed.org/article/Sending-Emails/14/" rel="nofollow">send an email</a>.</p> http://stackoverflow.com/questions/1242384/nested-if-statements-in-asp-what-is-wrong-with-the-codes/1242935#1242935 1 Answer by Michal for Nested IF statements in ASP..what is wrong with the codes? Michal 2009-08-07T04:50:20Z 2009-08-07T04:50:20Z <p>The error message contains the answer you are looking for:</p> <pre><code>Expected 'Then' </code></pre> <p>Add the 'then' where it expects it: <code>/project2/check_status.asp, line 109, column 50</code></p> <p>After that I would recommend reading <a href="http://www.webdevbros.net/2009/06/16/read-error-messages-understand-them-and-write-your-own/" rel="nofollow">Read error messages, understand them and write your own</a></p> http://stackoverflow.com/questions/1239494/unit-testing-for-vbscript-asp-code-and-sql-server-2000/1242361#1242361 1 Answer by Michal for Unit Testing for VBScript, ASP Code and SQL Server 2000 Michal 2009-08-07T00:59:58Z 2009-08-07T00:59:58Z <p>You might have a look at <a href="http://www.ajaxed.org/article/Creating-unit-tests-for-your-asp-application/31/" rel="nofollow">ajaxed unit tests</a>. (The library is still maintained)</p> http://stackoverflow.com/questions/9951/what-color-scheme-do-you-use-for-programming/1198813#1198813 0 Answer by Michal for What color scheme do you use for programming? Michal 2009-07-29T08:41:18Z 2009-07-29T08:41:18Z <p><img src="http://www.webdevbros.net/wp-content/uploads/2009/07/visualstudio%5Fscheme.png" alt="alt text" /></p> <p>Can be downloaded <a href="http://www.webdevbros.net/2009/07/29/webdevbros-visual-studio-color-theme-calm-down/" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1191597/add-data-into-database-using-if-statement/1191957#1191957 0 Answer by Michal for Add data into database using IF Statement Michal 2009-07-28T04:38:20Z 2009-07-28T04:38:20Z <p>Without a given error message it is hard to know where the problem is. Try this:</p> <p>I assume your CGPAOverall column is stored in a numeric column. For this purpose it is safe to convert to double and compare against a number instead of a string.</p> <pre><code>&lt;% If cdbl(rs_view.Fields.Item("CGPAOverall").Value) &gt;= 2 Then rs_view("Status")="Proceed" Else rs_view("Status")="Stop" End If %&gt; </code></pre> http://stackoverflow.com/questions/1162729/is-there-a-way-to-make-asp-page-update-in-real-time-like-ajax/1169630#1169630 0 Answer by Michal for Is there a way to make ASP page update in real time, like Ajax? Michal 2009-07-23T04:35:05Z 2009-07-23T04:35:05Z <p>Check <a href="http://www.ajaxed.org" rel="nofollow">ajaxed</a> which is a free AJAX library for classic ASP. Many tutorials included.</p> http://stackoverflow.com/questions/1163560/are-you-using-any-ranking-lists-in-your-team-e-g-top-10-list-of-most-broken-bui 1 Are you using any ranking lists in your team? E.g. TOP 10 list of most broken builds per day Michal 2009-07-22T07:11:26Z 2009-07-22T09:39:15Z <p>I was wondering what kind of ranking lists (if any) you use in your team. What is their purpose and how do you reward/punish someone who join the list? Do you have any special ceremonies in case of a new rank ...?</p> <p>Here is a list of ranks I heard about and some of them been using myself:</p> <ul> <li>TOP 10 list of most broken builds per day</li> <li>TOP 10 list of most bug fixes per day</li> <li>TOP 10 list of latest office leaving times</li> <li>TOP 10 list of longest SQL queries</li> </ul> http://stackoverflow.com/questions/1161135/nhibernate-and-multilingual-data-mapping/1162866#1162866 0 Answer by Michal for Nhibernate and multilingual data mapping Michal 2009-07-22T02:59:53Z 2009-07-22T02:59:53Z <p>I have written a detailed article about multi language implementation with ASP.NET and NHibernate. </p> <p>Check <a href="http://www.webdevbros.net/2009/06/24/create-a-multi-languaged-domain-model-with-nhibernate-and-c/" rel="nofollow">Create a multi languaged domain model with NHibernate and C#</a></p> http://stackoverflow.com/questions/1146658/asp-experts-need-help-converting-this-php-code-to-asp/1151687#1151687 0 Answer by Michal for ASP Experts - Need help converting this PHP code to ASP Michal 2009-07-20T04:19:21Z 2009-07-20T04:19:21Z <p>I guess a simple rewrite would not help you that much as you need to establish a DB connection, handle errors, etc.</p> <p>I would recommend you have a look at <a href="http://www.ajaxed.org" rel="nofollow">ajaxed library</a> which offers you a <a href="http://ajaxed.org/api/#method%5FIDAFVF1" rel="nofollow">db.insert()</a> method .. which I believe does the same as the method you require.</p> http://stackoverflow.com/questions/1132143/best-practices-to-generate-schema-for-production-with-nhibernate/1135955#1135955 0 Answer by Michal for Best practices to generate schema for production with NHibernate Michal 2009-07-16T07:30:37Z 2009-07-16T07:30:37Z <p>As a simple scenario you can miss use a unit test for that. Just create unit test called <strong>CreateSchema</strong> which will do the schemaexport. Then run it before you will run the other tests.</p> <p>I have a similar question <a href="http://stackoverflow.com/questions/1097514/how-do-you-add-sample-dummy-data-to-your-unit-tests">here on STO</a></p> http://stackoverflow.com/questions/1117539/good-way-to-demo-a-classic-asp-web-site/1117652#1117652 0 Answer by Michal for Good way to demo a classic ASP web site Michal 2009-07-13T04:03:39Z 2009-07-13T04:03:39Z <p>If you want to persist the state over multiple pages (e.g. to demo you complete application) then it's a bit tricky. </p> <p>I would suggest copying the MDB file for each session and using the copied version. This would ensure that every session uses its own data.</p> <ul> <li>create a version of your access db which will be used as a fresh template for each user</li> <li>on session copy the template and name it after the users session ID</li> <li>use the individual MDB</li> </ul> <p><strong>Note:</strong> Then only drawback I can see here is that you need to remove the unused MDB files as it can get a lot after sometime. You could do it with a scheduled task or even on session start before you create a new one.</p> <p>I am not sure what you can use to check if it's used or not but check the files creation date or maybe the LDF file can help you as well (if it does not exist = unused).</p> http://stackoverflow.com/questions/461618/whats-most-important-when-you-need-to-establish-a-software-development-infrastru 2 What's most important when you need to establish a software development infrastructure in your company? Michal 2009-01-20T14:52:33Z 2009-07-11T19:05:51Z <p>Let's say you work for a huge company which suddenly decides to do custom in-house software development. Additionally, they want to be able to offer successful developments to their customers as well (if any).</p> <p>Now you are in charge of it.</p> <p><strong>What would you see as most important to build a successful software development infrastructure?</strong></p> <ul> <li>flexible to future growth</li> <li>flexible on used technologies (projects with c, java, .net, web, mobile, ...)</li> <li>What kind of tools (source control, forge, ...), hardware (virtual, seperate dev &amp; production, ..), processes (guidelines, code reviews, ...), etc.</li> </ul> <p><strong>UPDATE:</strong> Please don't answer that you need the right people and the right tools. This is exactly what i am looking for.. What are the right tools and what people of what type would you hire first to join your team? Think of it as you will be the lead of that development.</p> http://stackoverflow.com/questions/1097514/how-do-you-add-sample-dummy-data-to-your-unit-tests 4 How do you add sample (dummy) data to your unit tests? Michal 2009-07-08T11:37:34Z 2009-07-10T14:45:23Z <p>In bigger projects my unit tests usually require some "dummy" (sample) data to run with. Some default customers, users, etc. I was wondering how your setup looks like.</p> <ol> <li>How do you organize/maintain this data?</li> <li>How do you apply it to your unit tests (any automation tool)?</li> <li>Do you actually require test data or do you think it's useless?</li> </ol> <p><strong>My current solution:</strong> </p> <p>I differentiate between <em>Master data</em> and <em>Sample data</em> where the former will be available when the system goes into production (installed for the first time) and the latter are typical use cases I require for my tests to run (and to play during development).</p> <p>I store all this in an Excel file (because it's so damn easy to maintain) where each worksheet contains a specific entity (e.g. users, customers, etc.) and is flagged either master or sample.</p> <p>I have 2 test cases which I (miss)use to import the necessary data:</p> <ol> <li>InitForDevelopment (Create Schema, Import Master data, Import Sample data)</li> <li>InitForProduction (Create Schema, Import Master data)</li> </ol> http://stackoverflow.com/questions/1099109/capturing-the-output-of-a-asp-template-for-unittesting/1101672#1101672 1 Answer by Michal for Capturing the output of a ASP template for unittesting Michal 2009-07-09T03:15:10Z 2009-07-09T03:15:10Z <p>As far as I am aware of it is not possible to capture the output. </p> <p>If you require unit testing for classic ASP you might have a look at <a href="http://www.ajaxed.org/article/Creating-unit-tests-for-your-asp-application/31/" rel="nofollow">ajaxed</a></p> http://stackoverflow.com/questions/1091996/singleton-pattern-in-vbscript-classic-asp/1095978#1095978 2 Answer by Michal for Singleton Pattern in VBScript (Classic) ASP Michal 2009-07-08T03:17:35Z 2009-07-08T03:17:35Z <p>You can create a singleton by adding your instance into the <a href="http://www.w3schools.com/asp/asp%5Fref%5Fapplication.asp" rel="nofollow">application object</a>. It is shared amongst all sessions as long as the web app is running.</p> <p>The following code should demonstrate it:</p> <pre><code>&lt;% class MySingleton public function getInstance() if not isObject(application("MySingleton")) then set application("MySingleton") = new MySingleton end if set getInstance = application("MySingleton") end sub end class 'usage set instance = (new MySingleton).getInstance() %&gt; </code></pre> <p><strong>Important:</strong> The example above is just a simulation how you could do it. </p> http://stackoverflow.com/questions/1090553/is-it-possible-to-do-friendly-url-url-rewriting-in-classic-asp/1095931#1095931 4 Answer by Michal for Is it possible to do friendly url (url rewriting) in classic asp? Michal 2009-07-08T03:01:55Z 2009-07-08T03:01:55Z <ul> <li>If your classic ASP application runs on a IIS7 then I would totally suggest creating a web.config and using ASP.NET url rewriting feature. I use that for my projects and it works perfectly!</li> <li>If it runs on an older IIS then <a href="http://www.isapirewrite.com/" rel="nofollow">ISAPIRewrite</a> or <a href="http://www.codeplex.com/IIRF" rel="nofollow">IIRF</a>. Nevertheless I would try as hard as possible to upgrade to IIS7 as it will make things so much easier.</li> </ul> http://stackoverflow.com/questions/1073116/nhibernate-validator-using-other-languages/1077704#1077704 0 Answer by Michal for NHibernate Validator using other languages Michal 2009-07-03T04:01:19Z 2009-07-03T04:01:19Z <p>How are you setting the culture? I guess you need to set both .. culture and UI culture</p> <pre><code>Thread.CurrentThread.CurrentUICulture = culture; Thread.CurrentThread.CurrentCulture = culture; </code></pre> http://stackoverflow.com/questions/1042393/whats-the-best-c-code-highlighting-plugin-for-wordpress 1 What's the best C# code highlighting plugin for wordpress? Michal 2009-06-25T06:09:02Z 2009-06-25T06:42:49Z <p>Best would be if it performs the highlighting exactly as it is in Visual Studio.</p> http://stackoverflow.com/questions/793634/globalization-with-nhibernate 1 Globalization with NHibernate Michal 2009-04-27T14:04:16Z 2009-06-24T16:52:39Z <p>How would you build your domain objects and create its respective NHibernate mapping files for a multi language application. The UI part is stored in resource files but user data needs to go into the database.</p> <p>I want to do the following:</p> <pre><code>Product p = DALProduct.getByID(2) p.name //results in the language of the current UICulture </code></pre> <p>I have found the following article which is really close: <a href="http://ayende.com/Blog/archive/2006/12/26/LocalizingNHibernateContextualParameters.aspx" rel="nofollow">http://ayende.com/Blog/archive/2006/12/26/LocalizingNHibernateContextualParameters.aspx</a> As I am new to NHibernate I am not sure if that will perfectly work for enterprise solutions. </p> <p>Do you have other suggestions? How do you solve such scenario?</p> <p>It should be flexible to:</p> <ul> <li>Inserting, Updating and selecting</li> <li>Collections</li> </ul> http://stackoverflow.com/questions/1553878/which-compiled-technology-would-you-use-today-for-a-small-web-project/1554049#1554049 Comment by Michal on Which compiled technology would you use today for a small web project? Michal 2009-10-15T15:38:02Z 2009-10-15T15:38:02Z I think I will digg deeper into this option .. sound definitely interesting. http://stackoverflow.com/questions/1553878/which-compiled-technology-would-you-use-today-for-a-small-web-project/1554049#1554049 Comment by Michal on Which compiled technology would you use today for a small web project? Michal 2009-10-15T15:37:21Z 2009-10-15T15:37:21Z Np. Do you know any huge sites running on Mono ASP.net? Is it a pain to setup? http://stackoverflow.com/questions/1553878/which-compiled-technology-would-you-use-today-for-a-small-web-project/1554049#1554049 Comment by Michal on Which compiled technology would you use today for a small web project? Michal 2009-10-15T15:06:42Z 2009-10-15T15:06:42Z +1 because it is an option I haven't thought about. Let's wait a bit for other answers ... Do you know any JSP frameworks for web2.0 stuff? http://stackoverflow.com/questions/1498121/classic-asp-exception-logging-500-and-500-100-errors/1501779#1501779 Comment by Michal on Classic ASP Exception Logging (500 and 500.100 errors) Michal 2009-10-01T09:54:52Z 2009-10-01T09:54:52Z +1. i did not know that. http://stackoverflow.com/questions/1474864/classic-asp-its-totally-outdated-but-is-it-irrelevant Comment by Michal on Classic ASP - It’s totally outdated but is it irrelevant? Michal 2009-09-25T02:35:13Z 2009-09-25T02:35:13Z Classic ASP is not irrelevant. It is part of the web as everything else is. Though, it should not be used when creating a new project. Check ajaxed.org which is a free recent rapid development lib for classic asp. Very useful if u need to maintain legacy apps http://stackoverflow.com/questions/1362696/how-to-write-a-good-rfc-standard-and-where-to-get-started/1363375#1363375 Comment by Michal on How to write a good RFC standard and where to get started? Michal 2009-09-02T01:31:03Z 2009-09-02T01:31:03Z Thanks for your detailed answer. Would you have some time to describe the process a bit .. where to submit, what to submit and how long does it take, etc. http://stackoverflow.com/questions/1360415/create-graph-in-asp-based-on-the-values-from-database/1360600#1360600 Comment by Michal on Create graph in ASP based on the values from database Michal 2009-09-01T10:21:43Z 2009-09-01T10:21:43Z +1 Google Chart API to be precise http://stackoverflow.com/questions/1112123/immediate-window-for-eclipse/1112203#1112203 Comment by Michal on Immediate Window for Eclipse Michal 2009-08-05T09:00:48Z 2009-08-05T09:00:48Z i would recommend updating this as the correct answer as it is much closer to the immediate window than the &quot;expressions view&quot;. http://stackoverflow.com/questions/49876/simpler-interface-for-sql-server-analysis-services-cubes-for-end-users/49921#49921 Comment by Michal on Simpler interface for SQL Server analysis services cubes for end users Michal 2009-07-24T07:38:02Z 2009-07-24T07:38:02Z Thanks for that link. Might use that. http://stackoverflow.com/questions/1161135/nhibernate-and-multilingual-data-mapping/1162866#1162866 Comment by Michal on Nhibernate and multilingual data mapping Michal 2009-07-24T06:33:21Z 2009-07-24T06:33:21Z Did not do any specific benchmarking but so far have not experienced any bottlenecks using this approach. http://stackoverflow.com/questions/1163560/are-you-using-any-ranking-lists-in-your-team-e-g-top-10-list-of-most-broken-bui/1163577#1163577 Comment by Michal on Are you using any ranking lists in your team? E.g. TOP 10 list of most broken builds per day Michal 2009-07-22T07:43:13Z 2009-07-22T07:43:13Z great idea! we used to pay a beer if someone wrote an endless loop ... he had to admit it though as you can't really control it. http://stackoverflow.com/questions/1163560/are-you-using-any-ranking-lists-in-your-team-e-g-top-10-list-of-most-broken-bui/1163577#1163577 Comment by Michal on Are you using any ranking lists in your team? E.g. TOP 10 list of most broken builds per day Michal 2009-07-22T07:31:51Z 2009-07-22T07:31:51Z That sound really like fun :) Because it's really annoying if someone did not really tested the fix ... http://stackoverflow.com/questions/1091996/singleton-pattern-in-vbscript-classic-asp/1095978#1095978 Comment by Michal on Singleton Pattern in VBScript (Classic) ASP Michal 2009-07-15T04:02:27Z 2009-07-15T04:02:27Z Which page do you mean? The &quot;MySingleton&quot; class needs to be available if you store an instance of it in the application. However if you store a primitive datatype in an application variable then you do not to include anything in your pages http://stackoverflow.com/questions/1097514/how-do-you-add-sample-dummy-data-to-your-unit-tests/1097563#1097563 Comment by Michal on How do you add sample (dummy) data to your unit tests? Michal 2009-07-09T03:02:59Z 2009-07-09T03:02:59Z sounds like an interesting approach, but somehow I do not fully understand it. Do you have any references on the web for this approach? http://stackoverflow.com/questions/1091996/singleton-pattern-in-vbscript-classic-asp Comment by Michal on Singleton Pattern in VBScript (Classic) ASP Michal 2009-07-08T03:18:20Z 2009-07-08T03:18:20Z if you guys are still using classic ASP, you might wanna check www.ajaxed.org which is a nice still-maintained classic ASP library