User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:27:25Z http://stackoverflow.com/feeds/user/21952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1671844/jquery-ui-dialog-a-huge-div-on-the-background-in-ie-8 0 jQuery UI dialog: a huge DIV on the background in IE 8 wasker 2009-11-04T05:33:02Z 2009-11-04T05:55:53Z <p>I'm trying to use jQuery UI's modal dialog and testing my stuff in IE8. Every time dialog pops up, a huge DIV is being created on the background and IE keeps changing vertical scroll bar's thumb size and if there was a huge page downloading in the background. In compatibility mode IE changes vertical scroll bar's thumb once, everything works as expected and it doesn't look like the page is still loading. jQuery UI's sample works for me just fine.</p> <p>Here's my code:</p> <pre><code>$("#confirm_stage_change").dialog({ autoOpen: false, bgiframe: true, modal: true, height: 300, width: 300, draggable: false, resizable: false }); </code></pre> <p>That's my "dialog":</p> <pre><code>&lt;div id="confirm_stage_change" title="Confirm Stage Change"&gt; &lt;p&gt; Hello!!! &lt;/p&gt; &lt;/div&gt; </code></pre> <p>Here's the DIV I see in the inspector:</p> <pre><code>&lt;div class="ui-widget-overlay" style="z-index: 1001; width: 1069px; height: 20218px;" jQuery1257312441701="35"&gt; </code></pre> <p>Did anyone see something like that?</p> <p>Thanks!</p> <p>UPDATE: it happens in IE8 Standards mode (XHTML 1.0 Strict; jQuery UI's sample also gets broken in this mode), but no problems in IE 8 Quirks mode.</p> http://stackoverflow.com/questions/130986/an-affordable-tool-for-db-modeling 2 An affordable tool for DB modeling wasker 2008-09-25T01:27:22Z 2009-10-08T02:43:09Z <p>Hello!</p> <p>Could you guys recommend some affordable SQL modeling tool which supports SQL Server, PostgreSQL and MySQL? I'm looking into up to $300 per license range. One tool per answer, please!</p> <p>Thanks!</p> http://stackoverflow.com/questions/556951/testing-transactional-code 0 Testing transactional code wasker 2009-02-17T14:08:51Z 2009-10-04T05:15:42Z <p>Hello,</p> <p>I'm writing my own transaction-aware (IEnlistmentNotification) piece of code and am trying to test it using XUnit. All I need is to wait the transaction commited and test the outcome is what I expect. The thing is that transaction commitment happens in a separate thread, so I need to synchronize my test and piece of code I'm testing. Aside of using EventWaitHandle, are there any simpler ways to test something after the transaction completed?</p> <p>Thanks.</p> http://stackoverflow.com/questions/298692/are-there-any-limitations-in-iis-on-windows-xp 1 Are there any limitations in IIS on Windows XP? wasker 2008-11-18T13:18:32Z 2009-09-10T07:21:30Z <p>Hello,</p> <p>For the project I'm working on I noticed that file transfer* speed is really bad if I'm using IIS FTP and HTTP services. I know that the last thing I should think is "it's a Windows bug", but the fact that simply by using IIS on Windows Server or by changing IIS on that Windows XP machine to FileZilla and LightHTTPd, my file transfer speeds go up twice from the original configuration, makes me go "hmmm".</p> <p>Are there any limitation on IIS running on Windows XP? Any file transfer throttling or something like that?</p> <p><strong>File transfer is being done using one connection to one file. My file transfer client is the only one client connecting to the PC.</strong></p> <p>Thanks.</p> http://stackoverflow.com/questions/297701/default-font-for-windows-forms-application 3 Default font for Windows Forms application wasker 2008-11-18T02:36:53Z 2009-09-02T19:59:26Z <p>Hello,</p> <p>Everytime I create new form in my application, it uses "Microsoft Sans Serif, 8.25pt" font by default. I'm not changing it, because I know that in this case my form will pick up whatever default font in system is. However, when I run my application, the font is still anything but Segoe UI.</p> <p>Why this happens? How do I make sure that my application looks like normal Windows application?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1014093/how-to-replace-or-customize-windows-mobiles-lock-screen 0 How to replace or customize Windows Mobile's lock screen? wasker 2009-06-18T17:34:43Z 2009-06-19T02:36:47Z <p>Hello,</p> <p>How do I replace or customize standard Windows Mobile 6.1 lock screen to show my window with my program functionality?</p> <p>Thanks.</p> http://stackoverflow.com/questions/340827/how-to-moq-an-indexed-property/861282#861282 2 Answer by wasker for How to MOQ an Indexed property wasker 2009-05-14T02:29:11Z 2009-05-14T02:29:11Z <p>Ash, if you want to have HTTP Session mock, then this piece of code does the job:</p> <pre><code>/// &lt;summary&gt; /// HTTP session mockup. /// &lt;/summary&gt; internal sealed class HttpSessionMock : HttpSessionStateBase { private readonly Dictionary&lt;string, object&gt; objects = new Dictionary&lt;string, object&gt;(); public override object this[string name] { get { return (objects.ContainsKey(name)) ? objects[name] : null; } set { objects[name] = value; } } } /// &lt;summary&gt; /// Base class for all controller tests. /// &lt;/summary&gt; public class ControllerTestSuiteBase : TestSuiteBase { private readonly HttpSessionMock sessionMock = new HttpSessionMock(); protected readonly Mock&lt;HttpContextBase&gt; Context = new Mock&lt;HttpContextBase&gt;(); protected readonly Mock&lt;HttpSessionStateBase&gt; Session = new Mock&lt;HttpSessionStateBase&gt;(); public ControllerTestSuiteBase() : base() { Context.Expect(ctx =&gt; ctx.Session).Returns(sessionMock); } } </code></pre> http://stackoverflow.com/questions/820645/securing-web-application-on-the-data-access-level 0 Securing web application on the data access level wasker 2009-05-04T15:45:41Z 2009-05-04T15:52:17Z <p>Hello!</p> <p>Please consider the following setup:</p> <ol> <li>Multi-tenant webapp.</li> <li>Tenants create company accounts and company accounts have user accounts under them.</li> <li>Users have roles, there's a special role "Owner" (the user who created the company account).</li> </ol> <p>I'd like to have users to edit other user accounts (some admin tasks), but two conditions must be met:</p> <ol> <li>Noone may edit owner's data (except for owner, when he's editing his own profile, and own profile editing is the same user editing).</li> <li>Users may access user data and edit users only within their company account.</li> </ol> <p>The app uses MVC architecture. Currently I check for those two conditions in the web layer and it works for me, but I have some concerns. If I go with some sort of API or some other type of data consumer, I may "forget" to re-inforce these conditions. Also, there will be other objects in the app with similar functionality requirements and which will have similar restrictions on them, so it's better for me to come up with some sort of pattern which will enforce my restrictions on data access level.</p> <p>Could anyone recommend some approach worth looking into?</p> <p>Thanks!</p> http://stackoverflow.com/questions/364692/authenticating-asp-net-users-against-active-directory-who-manages-users-and-grou 0 Authenticating ASP.NET users against Active Directory: who manages users and groups? wasker 2008-12-13T02:18:49Z 2009-03-10T02:48:07Z <p>A project I'm working on supposed to authenticate users agains AD. I've never worked with AD before, neither did I work in organizations that use AD, so here's my stupid question: in case if AD involved, who manages roles, groups and users for application? Is it my responsibility to provide an UI for site admin to assign AD users to my app roles or AD admins should take care of creating appropriate groups expected by my app and assign existing AD users there?</p> <p>What are the best practices in this department?</p> http://stackoverflow.com/questions/380885/can-you-simplify-this-algorithm/382753#382753 0 Answer by wasker for Can you simplify this algorithm? wasker 2008-12-20T01:46:16Z 2008-12-20T01:46:16Z <blockquote> <p>(((a+p) &lt;= b) &amp;&amp; (a == 0 || a > 1) &amp;&amp; (b >= p)) &amp;&amp; ((b - (a + p) == 0) || (b - (a + p) > 1))</p> </blockquote> <p>1) (a == 0 || a > 1) is (a != 1)</p> <p>2) (b >= p) is (b - p >= 0)</p> <p>(a + p &lt;= b) is (b - p >= a), which is stronger than (b - p >= 0).</p> <p>First condition reduced to <strong>(a != 1) &amp;&amp; (b - p >= a)</strong>.</p> <p>3) (b - (a + p) == 0) is (b - a - p == 0) is (b - p == a).</p> <p>(b - (a + p) > 1) is (b - a - p > 1) is (b - p > 1 + a).</p> <p>Since we had (b - p >= a) and we're using &amp;&amp; operation, we may say that <strong>(b - p >= a)</strong> covers (b - p == a &amp;&amp; b - p > 1 + a).</p> <p>Hence, the whole condition will be reduced to</p> <p><strong>(a != 1 &amp;&amp; (b - p >= a))</strong></p> <p>There's a tempation to reduce it further to (b >= p), but this reduction won't cover prohibition of b = p + 1, therefore (a != 1 &amp;&amp; (b - p >= a)) is the condition.</p> http://stackoverflow.com/questions/382314/is-this-a-typical-work-environment-or-am-i-just-unlucky/382721#382721 1 Answer by wasker for Is this a typical work environment, or am I just unlucky? wasker 2008-12-20T01:08:44Z 2008-12-20T01:08:44Z <p>That's state government agency -- what did you expect? Developing next version of shiny operating system being used by a billion of people? Or a sophisticated search engine that everyone uses hundred times every day? C'mon, there's no surprises that it looks like that.</p> <p>And you know what? You actually got into the perfect place to grow your own thing. Your day job takes just couple of hours a day, it's paid, nobody cares what you're doing. Stop browsing the internets, find your idea and develop your own project! Don't waste your time.</p> http://stackoverflow.com/questions/380038/net-remoting-performance-degradation-when-returning-custom-datasets 0 .NET Remoting performance degradation when returning custom datasets wasker 2008-12-19T03:38:30Z 2008-12-19T13:47:39Z <p>Hello,</p> <p>During development of client-server system using .NET Remoting (.NET 2.0) for communications I found extremely weird behavior if my remoting objects return custom datasets. For some reason it takes from 0.5 to 4 seconds for remoting infrastructure to process an <strong><em>empty</em></strong> dataset instance on the client side, if I'm using TCP channel with binary formatting (the fastest option!). The behavior exhibits in the following way: after clean start client may make only so many calls to the server getting custom dataset within tens of milliseconds; once resting for 4-5 minutes (no calls to remote side during this time), each and every consequent call to remote side returning custom dataset takes 0.5 to 4 seconds. If remote call returns anything else except custom dataset, everything performs in tens of milliseconds again. If I change my remoting configuration to HTTP channel with binary formatting, everything works flawless. I use this configuration as a workaround, but this is not the solution, but workaround.</p> <p>Custom dataset is made by creating a new XSD Dataset and dragging a table from Server Explorer (SQL server), then removing table adapters part from the dataset.</p> <p>I created a bare-bone test project (<a href="http://files.bytegems.net/RemoteDatasetTest.zip" rel="nofollow">download</a>) which exhibits the behavior I'm talking about. I included ReadMe file with steps on how to reproduce the problem.</p> <p>Thanks!</p> <p>PS. <a href="http://stackoverflow.com/questions/333954/remoting-performance-degrades-over-the-time">This was an original question</a>, but now I narrowed it down to custom datasets, which are apparently a culprit, so please don't mark it as a duplicate.</p> http://stackoverflow.com/questions/380038/net-remoting-performance-degradation-when-returning-custom-datasets/380969#380969 0 Answer by wasker for .NET Remoting performance degradation when returning custom datasets wasker 2008-12-19T13:26:57Z 2008-12-19T13:26:57Z <p>I came across the article about serialization format during my research. That's why I have this case as a separate option in my test project. Adjusting BinaryFormat manually increases processing time from 0.5 to 4 seconds.</p> http://stackoverflow.com/questions/365006/connecting-to-my-home-version-control-repository-remotely/366679#366679 1 Answer by wasker for Connecting to my Home Version Control Repository remotely? wasker 2008-12-14T16:12:21Z 2008-12-14T16:12:21Z <p>I'd recommend to go with some hosting provider who offers hosted SVN, for example Dreamhost. Much easier than configuring and maintaining it on your own.</p> http://stackoverflow.com/questions/365366/why-are-networking-uis-so-technical-and-unintuitive/365373#365373 0 Answer by wasker for Why are networking UI's so technical and unintuitive? wasker 2008-12-13T16:13:49Z 2008-12-13T16:13:49Z <p>Because usually software for the appliances is done by people who are not trained as software engineers; because in order to make those appliances cheap, they save on literally everything, so no dedicated UX designers for you.</p> http://stackoverflow.com/questions/364692/authenticating-asp-net-users-against-active-directory-who-manages-users-and-grou/364846#364846 -1 Answer by wasker for Authenticating ASP.NET users against Active Directory: who manages users and groups? wasker 2008-12-13T04:37:12Z 2008-12-13T04:37:12Z <p>Once thing to note -- this is not an in-house app, so it is supposed to work with an existing AD. The question is if my expects roles like "Teachers" and "Students" (just to illustrate the point), may I expect that IT people will create appropriate groups in AD and assign users to them?</p> http://stackoverflow.com/questions/349694/why-install-for-just-me-as-opposed-to-everybody-windows-installer/349703#349703 2 Answer by wasker for Why install for "just me" as opposed to "everybody"? (windows installer) wasker 2008-12-08T14:23:25Z 2008-12-08T14:23:25Z <p>In this case all the shortcuts will be created in user's start menu/desktop as opposed to common users start menu/desktop. Also, user might choose the folder under her profile to install the app and she won't need admin rights to do that.</p> http://stackoverflow.com/questions/349409/why-are-tk-guis-considered-ugly/349498#349498 3 Answer by wasker for Why are Tk GUI's considered ugly? wasker 2008-12-08T13:07:20Z 2008-12-08T13:21:58Z <p>Because its look-n-feel was designed by people who are neither UX nor graphics designers, but programmers. Maybe it solves the problem (having same UI across a number of platforms), but it looks ugly.</p> <p>Added: Actually, getting UI to the point where it's not considered ugly is an art. I have two extremes in my team. One guy just doesn't care about UI: he sees a button and it's a button no matter how it's drawn on the screen; even if you paint it "pop my eyes" lime green on a bright red background he'll still consider it a button, because it "quacks as a button". The other team member is all about making UI "cool". But he completely misses the point that it's not just shiny look makes Office 2007 "The Office 2007", but it's also icons, consistency across the controls, the way you interact with them -- all these little details that solder look with feel. The result? A lipstick on a pig.</p> http://stackoverflow.com/questions/349420/how-to-gain-professional-credibility-faster-at-a-new-workplace/349471#349471 3 Answer by wasker for How to gain professional credibility faster at a new workplace? wasker 2008-12-08T13:01:46Z 2008-12-08T13:01:46Z <p>How about doing your job?</p> http://stackoverflow.com/questions/348272/simplest-source-control-ever-what-do-you-use/348288#348288 7 Answer by wasker for Simplest source control ever - what do you use? wasker 2008-12-07T23:12:02Z 2008-12-07T23:12:02Z <p>Why subversion is an overkill? One minute to install server and TortoiseSVN, zero configuration.</p> <p>If you want to control your source code, do it right way from the very beginning, do not reinvent the wheel.</p> http://stackoverflow.com/questions/333954/remoting-performance-degrades-over-the-time 6 Remoting performance degrades over the time wasker 2008-12-02T13:46:02Z 2008-12-07T19:07:38Z <p>Hello,</p> <p>I'm working on a client-server solution that uses .NET 2.0 Remoting (server activation, binary formatting over TCP channel, Vista Ultimate) for communication purposes. Currently I'm profiling the application and run everything on the same machine. I noticed that if I start the application, everything works just fine for several minutes and then suddenly each remote call takes several seconds to execute. I have logging on both ends and clock every call. Server side's implementation takes only fraction of a second to execute, while the whole remote call is slow. Further profiling showed that remoting degrades on the server side: while inner working of the remote service execute within a fraction of a second, the responses are very slow. If I restart server everything backs to normal for several minutes again.</p> <p>Did anyone experience something like that?</p> <p>Thanks!</p> <p>UPDATE: I checked, if I configure lifetime for my remote object to, say, 1 day, I still have the same problem.</p> <p>UPDATE: I'm using the pattern suggested by Ingo Ramer ( <a href="http://tinyurl.com/5u8fjq" rel="nofollow">http://tinyurl.com/5u8fjq</a> ) for all my remoting stuff, if this makes any difference.</p> <p>Client code:</p> <pre><code>public static object CreateInstance(Type type) { if (!Initialized) InitWellKnownTypesCache(); WellKnownClientTypeEntry typeEntry = (WellKnownClientTypeEntry)wellKnownTypesCache[type]; if (null == typeEntry) throw new RemotingException("Type not found."); if (string.IsNullOrEmpty(serverObjectActivationUri)) throw new RemotingException("ServerObjectActivationUri wasn't configured. Cannot create server object instance."); return Activator.GetObject(typeEntry.ObjectType, string.Format(serverObjectActivationUri, typeEntry.ObjectUrl)); } </code></pre> <p>Server side has nothing but proper config file that looks like: </p> <pre><code> &lt;service&gt; &lt;wellknown mode="Singleton" type="MyDomain.SomeDomain, MyDomain" objectUri="SomeDomainService" /&gt; </code></pre> <p>I don't do anything beyond RemotingConfiguration.Configure("MyDomainService.exe.config", false); neither in my server nor client code.</p> http://stackoverflow.com/questions/345924/tell-me-again-why-we-need-both-net-and-windows-why-cant-windows-morph-into-the/345931#345931 2 Answer by wasker for Tell me again why we need both .NET and Windows? Why can't Windows morph into the CLR? wasker 2008-12-06T04:45:22Z 2008-12-06T04:45:22Z <p>Because Microsoft has got a huge legacy they cannot just simply drop. Companies has invested lots of money for the Windows and Win32 software they cannot dismiss.</p> http://stackoverflow.com/questions/342699/starting-project-from-scratch-how-and-when-to-distribute-the-workload 1 Starting project from scratch: how and when to distribute the workload? wasker 2008-12-05T01:59:13Z 2008-12-05T13:25:17Z <p>Hello,</p> <p>My friend and I are going to develop a new commercial web project. We have a kind of a document that lists all the things that we want to have and we are wondering what is the best way to actually start coding it. The thing is that we used to develop software either in solo-mode or join some projects that were in the middle of development and responsibilities are easy to distribute between members of a team. Now we're starting from scratch and there're obviously things like database design or some essential functionality development, absence of those would be a showstopper for either of us. Also we have like seven hours time difference between us.</p> <p><strong>Again, we know how teamwork works, we have all the tools we need and we know how to spread the workload when all the groundwork is done, however how to start the groundwork in a distributed team, when everything depends on the results of this groundwork? If there's no database, how my party can start working on the user dashboard functionality?</strong></p> <p>So, how you guys would start such a development process? At which point you can easily start distributing workload between team members?</p> <p>I'm wondering if Joel and Jeff could share their experience on the subject, given that Stack Overflow was developed by distributed team in quite a short time.</p> <p>Thanks!</p> http://stackoverflow.com/questions/342699/starting-project-from-scratch-how-and-when-to-distribute-the-workload/343824#343824 0 Answer by wasker for Starting project from scratch: how and when to distribute the workload? wasker 2008-12-05T13:25:17Z 2008-12-05T13:25:17Z <p>I clarified my question a little bit.</p> http://stackoverflow.com/questions/342737/absolute-vs-relative-links/342746#342746 3 Answer by wasker for absolute vs. relative links? wasker 2008-12-05T02:30:37Z 2008-12-05T02:30:37Z <p>Email? I don't think there's an option other than absolute links. This will guarantee you that no matter who and how will read your email, your links will point to the place you need.</p> http://stackoverflow.com/questions/342675/using-generics-to-encapsulate-common-method-work/342712#342712 2 Answer by wasker for Using Generics to encapsulate common method work wasker 2008-12-05T02:07:49Z 2008-12-05T02:07:49Z <p>I would suggest you to look for frameworks that offer AOP functionality (like Spring.NET, Unity). Those will help you to reduce your CreateApplianceServer() call to mere </p> <pre><code>public ApplianceInitResp CreateApplianceServer(ApplianceInitReq req) { // Do some work return new ApplianceInitResp(); } </code></pre> <p>by taking care of entrance/exit and exception logging with aspects. Probably, if you have some common parameters, you could plug the the argument validation into the aspect as well.</p> <p>Of course, there would be a learning curve tax, but, trust me, result worth it. You will dramatically reduce amount of boilerplate code in your methods.</p> http://stackoverflow.com/questions/342696/function-pointers-in-inno-setup/342700#342700 0 Answer by wasker for Function pointers in INNO Setup wasker 2008-12-05T02:00:13Z 2008-12-05T02:00:13Z <p>I really doubt it, because Inno implements a subset of Pascal in its script language.</p> <p>What is the task?</p> http://stackoverflow.com/questions/333954/remoting-performance-degrades-over-the-time/336206#336206 0 Answer by wasker for Remoting performance degrades over the time wasker 2008-12-03T04:21:23Z 2008-12-03T04:21:23Z <p>I changed my remoting channel's type from tcp to http, while leaving the binary formatting. I can see the same slowdown in several minutes of inactivity, but unlike the tcp channels, after the client makes a "slow" remote call, the server "wakes up" and all subsequent calls are fast, until next period of inactivity comes and server goes asleep again. </p> <p>No way this is a solution, but at least some sort of workaround.</p> http://stackoverflow.com/questions/328496/when-would-you-use-the-builder-pattern/329132#329132 0 Answer by wasker for When would you use the Builder Pattern? wasker 2008-11-30T18:05:42Z 2008-11-30T18:05:42Z <p>I used builder in home-grown messaging library. The library core was receiving data from the wire, collecting it with Builder instance, then, once Builder decided it've got everything it needed to create a Message instance, Builder.GetMessage() was constructing a message instance using the data collected from the wire.</p> http://stackoverflow.com/questions/282886/cancelling-asynchronous-remoting-call 2 Cancelling asynchronous remoting call wasker 2008-11-12T03:05:53Z 2008-11-27T15:00:56Z <p>Hello,</p> <p>I have a client-server architecture where client communicates with the server using .NET Remoting. Server handles all business logic and database interaction. I need to add an operation which may take a while to execute and the dataset it returns might be quite large. I'm thinking of employing asynchronous call for that. Now the problem arises: assume, the client made this async call, operation started SQL query, and user either closes the client or clicks Cancel -- what will happen to the operation? Is there any way to cancel the pending async call, which is busy talking to SQL server?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1671844/jquery-ui-dialog-a-huge-div-on-the-background-in-ie-8 Comment by on jQuery UI dialog: a huge DIV on the background in IE 8 2009-11-06T04:17:26Z 2009-11-06T04:17:26Z (the download link is at the bottom) http://stackoverflow.com/questions/1671844/jquery-ui-dialog-a-huge-div-on-the-background-in-ie-8 Comment by on jQuery UI dialog: a huge DIV on the background in IE 8 2009-11-06T04:15:54Z 2009-11-06T04:15:54Z Here's the HTML file in question: <a href="http://dev.jqueryui.com/attachment/ticket/4942/test.html" rel="nofollow">dev.jqueryui.com/attachment/ticket/&hellip;</a> http://stackoverflow.com/questions/1671844/jquery-ui-dialog-a-huge-div-on-the-background-in-ie-8/1671885#1671885 Comment by on jQuery UI dialog: a huge DIV on the background in IE 8 2009-11-04T13:56:26Z 2009-11-04T13:56:26Z The problem is that this content DIV works just fine in quirks mode, but scroll bars go wild if I switch to standards. http://stackoverflow.com/questions/1014093/how-to-replace-or-customize-windows-mobiles-lock-screen/1016120#1016120 Comment by on How to replace or customize Windows Mobile's lock screen? 2009-06-20T16:03:25Z 2009-06-20T16:03:25Z Thanks! Really good answer! http://stackoverflow.com/questions/825925/resources-on-human-simulator-design-think-13th-floor/826119#826119 Comment by on Resources on human simulator design. (think 13th floor) 2009-05-05T18:28:05Z 2009-05-05T18:28:05Z And don't forget to take a vacation on the seventh day. ;) http://stackoverflow.com/questions/380885/can-you-simplify-this-algorithm/382005#382005 Comment by on Can you simplify this algorithm? 2008-12-20T01:13:12Z 2008-12-20T01:13:12Z @Steven: (a == 0 || a &gt; 1) cannot be reduced to (a &gt; 1). It's (a != 1). http://stackoverflow.com/questions/348272/simplest-source-control-ever-what-do-you-use/348288#348288 Comment by on Simplest source control ever - what do you use? 2008-12-08T01:44:35Z 2008-12-08T01:44:35Z @onebyone - exactly my point. http://stackoverflow.com/questions/333954/remoting-performance-degrades-over-the-time/347927#347927 Comment by on Remoting performance degrades over the time 2008-12-07T21:10:31Z 2008-12-07T21:10:31Z No, it's like up to 5 calls in during my testing. http://stackoverflow.com/questions/346328/job-postings-where-do-you-post-your-resume Comment by on Job postings, where do you post your resume? 2008-12-07T18:10:14Z 2008-12-07T18:10:14Z &quot;They never questioned specs or asked for clarification and gave you exactly what was specified - especially when it was wrong&quot; - OMG, so true! They just cannot say &quot;no&quot; if it's about money. :( http://stackoverflow.com/questions/333954/remoting-performance-degrades-over-the-time Comment by on Remoting performance degrades over the time 2008-12-06T23:55:02Z 2008-12-06T23:55:02Z Just simple data structures. If the payload would be huge, it would slow the communications from the very beginning, not in the middle. Besides, as I answered later, HTTP transport doesn't exhibit this kind of behavior. http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/184325#184325 Comment by on What Programming Book would you NOT recommend to Developers? 2008-12-05T05:17:15Z 2008-12-05T05:17:15Z I'm going through this book right now and am regretting I bought it. Mixture of homegrown frameworks with so-so literature style urges me to put it off all the time. :( http://stackoverflow.com/questions/342696/function-pointers-in-inno-setup/342700#342700 Comment by on Function pointers in INNO Setup 2008-12-05T02:33:06Z 2008-12-05T02:33:06Z I think, it's better not to rely on Inno's implementation of Pascal script in this case. You better off with something you have better control over. http://stackoverflow.com/questions/342699/starting-project-from-scratch-how-and-when-to-distribute-the-workload/342738#342738 Comment by on Starting project from scratch: how and when to distribute the workload? 2008-12-05T02:28:42Z 2008-12-05T02:28:42Z Yes, we do have an agreement and will form an LLC eventually, when the thing will take off. All we need now is a way to start the damn thing! :) http://stackoverflow.com/questions/333954/remoting-performance-degrades-over-the-time Comment by on Remoting performance degrades over the time 2008-12-04T23:29:39Z 2008-12-04T23:29:39Z I log timing for each call. http://stackoverflow.com/questions/333954/remoting-performance-degrades-over-the-time/335748#335748 Comment by on Remoting performance degrades over the time 2008-12-03T00:58:24Z 2008-12-03T00:58:24Z I don't do this explicitly for sure. As I described in my question, I tried to play with server-side lifetime settings with no result. I also posted some code. Hope it will help.