User lubos hasko - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T13:24:22Zhttp://stackoverflow.com/feeds/user/275http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1904751/what-sort-of-workloads-would-be-appropriate-for-use-on-amazon-ec2-spot-instances/1904929#19049292Answer by lubos hasko for What sort of workloads would be appropriate for use on Amazon EC2 Spot Instances?lubos hasko2009-12-15T02:55:23Z2009-12-15T02:55:23Z<p>Obviously this is for any workload that doesn't need to be real-time.</p>
<p>Let's say on smaller scale, how this could apply to stackoverflow? For example, many badges on this site are not calculated in real-time. There is periodical process that will evaluate eligibility and it doesn't matter whether it runs at 4am or 4pm everyday as long as it runs. Doing it at 4am could be 5 cents cheaper. (obviously they don't use EC2 at all for this)</p>
<p>Larger scale? Search engine over large set of data might need huge computing capacity to build its indexes. If you index new data once a day and it takes 2 hours to index them on hundreds of servers, you can do it overnight and save perhaps thousands of dollars every day.</p>
<p>By spreading workload around the clock helps Amazon maximize utilization of their resources and therefore provide the cheapest prices on the market.</p>
http://stackoverflow.com/questions/1830854/if-base-class-is-marked-serializable-are-all-child-classes-marked-too/1830866#18308666Answer by lubos hasko for If Base class is marked Serializable are all child classes marked too?lubos hasko2009-12-02T05:40:30Z2009-12-02T05:46:04Z<p>No, attribute is not inherited.</p>
<p>When you extend the class, it's possible to add features that might not be serializable by nature therefore .NET framework cannot assume for you that everything what extends serializable base class is also serializable.</p>
<p>That's why you must explicitly state <code>[Serializable]</code> attribute on every class individually.</p>
http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/280230#2802300Answer by lubos hasko for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)lubos hasko2008-11-11T07:22:07Z2009-11-27T00:18:58Z<p>I'm using this one quite a lot...</p>
<p>Original code:</p>
<pre><code>if (guid != Guid.Empty) return guid;
else return Guid.NewGuid();
</code></pre>
<p>New code:</p>
<pre><code>return guid.NewGuidIfEmpty();
</code></pre>
<p>Extension method:</p>
<pre><code>public static Guid NewGuidIfEmpty(this Guid uuid)
{
return (uuid != Guid.Empty ? uuid : Guid.NewGuid());
}
</code></pre>
http://stackoverflow.com/questions/1787124/programmatically-darken-a-hex-colour/1787298#17872980Answer by lubos hasko for Programmatically darken a Hex colourlubos hasko2009-11-24T01:51:53Z2009-11-24T01:51:53Z<p><strong>Convert hex color into integer RBG components:</strong></p>
<pre><code>#FF6600 = rbg(255, 102, 0)
</code></pre>
<p><strong>If you want to make it darker by 5%, then simply reduce all integer values by 5%:</strong></p>
<pre><code>255 - 5% = 242
102 - 5% = 96
0 - 5% = 0
= rbg(242, 96, 0)
</code></pre>
<p><strong>Convert back to hex color</strong></p>
<pre><code>= #F26000
</code></pre>
http://stackoverflow.com/questions/119312/dash-vs-underscore16Dash vs. Underscorelubos hasko2008-09-23T05:51:50Z2009-11-16T08:45:18Z
<p>Should it be <strong>/about_us</strong> or <strong>/about-us</strong>?</p>
<p>From usability point of view, I personally think <strong>/about-us</strong> is much better for end-user yet Google and most other websites (and javascript frameworks) use underscore naming pattern. Is it just matter of style? Are there any compatibility issues with dashes?</p>
http://stackoverflow.com/questions/1690562/net-solution-many-projects-vs-one-project/1690656#1690656-2Answer by lubos hasko for .NET solution - many projects vs one projectlubos hasko2009-11-06T21:40:47Z2009-11-06T21:40:47Z<p>Start with single project. The only benefit in splitting your codebase into more projects is simply to improve build time.</p>
<p>When I have some reusable functionality that I really want to isolate from main project, I'll just start brand new solution for it.</p>
http://stackoverflow.com/questions/1676552/single-or-multiple-databases/1676636#16766360Answer by lubos hasko for Single or multiple databases lubos hasko2009-11-04T21:07:30Z2009-11-04T21:07:30Z<p>Imagine we have infinitely fast computers, would you split your databases? Of course not. The only reason why we split them is to make it easy for us to scale out at some point. You don't really have any choice here, 100MB-1000MB per client is huge.</p>
http://stackoverflow.com/questions/1660114/how-do-i-create-a-windowless-c-app-that-resides-in-the-tray/1660134#16601342Answer by lubos hasko for How do I create a windowless C# app that resides in the tray?lubos hasko2009-11-02T09:04:43Z2009-11-02T09:04:43Z<pre><code>static class Program
{
[STAThread]
static void Main()
{
NotifyIcon icon = new NotifyIcon();
icon.Icon = System.Drawing.SystemIcons.Application;
icon.Click += delegate { MessageBox.Show("Bye!"); icon.Visible = false; Application.Exit(); };
icon.Visible = true;
Application.Run();
}
}
</code></pre>
http://stackoverflow.com/questions/1195440/ajax-back-button-and-dom-updates4Ajax, back button and DOM updateslubos hasko2009-07-28T17:05:49Z2009-10-16T08:30:52Z
<p>If javascript modifies DOM in page A, user navigates to page B and then hits back button to get back to the page A. All modifications to DOM of page A are lost and user is presented with version that was originally retrieved from the server.</p>
<p>It works that way on stackoverflow, reddit and many other popular websites. (try to add test comment to this question, then navigate to different page and hit back button to come back - your comment will be "gone")</p>
<p>This makes sense, yet some websites (apple.com, basecamphq.com etc) are somehow forcing browser to serve user the latest state of the page. (go to <a href="http://www.apple.com/ca/search/?q=ipod" rel="nofollow">http://www.apple.com/ca/search/?q=ipod</a>, click on say Downloads link at the top and then click back button - all DOM updates will be preserved)</p>
<p>where is the inconsistency coming from?</p>
http://stackoverflow.com/questions/2256/mapping-stream-data-to-data-structures-in-c/2490#24903Answer by lubos hasko for Mapping Stream data to data structures in C#lubos hasko2008-08-05T15:46:35Z2009-10-09T07:16:40Z<p>Most people use .NET serialization (there is faster binary and slower XML formatter, they both depend on reflection and are version tolerant to certain degree)</p>
<p>However, if you want the fastest (unsafe) way - why not:</p>
<p>Writing:</p>
<pre><code>YourStruct o = new YourStruct();
byte[] buffer = new byte[Marshal.SizeOf(typeof(YourStruct))];
GCHandle handle = GCHandle.Alloc(buffer, GCHandleType.Pinned);
Marshal.StructureToPtr(o, handle.AddrOfPinnedObject(), false);
handle.Free();
</code></pre>
<p>Reading:</p>
<pre><code>handle = GCHandle.Alloc(buffer, GCHandleType.Pinned);
o = (YourStruct)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(YourStruct));
handle.Free();
</code></pre>
http://stackoverflow.com/questions/1502888/c-executables-decompilable-can-be-reverse-engineered/1502931#15029311Answer by lubos hasko for C# - Executables decompilable (can be reverse engineered)?lubos hasko2009-10-01T09:40:34Z2009-10-01T09:49:55Z<p>Each new version of C# is more difficult to reverse engineer. It's true that when C# was at 1.0, Reflector would practically reveal your source code however now we are at 3.0 and if you are using anonymous delegates, LINQ, anonymous classes etc. all that high-level syntax is being compiled down to "dumb" MSIL and it's no more easy to reverse engineer them back to its original source.</p>
http://stackoverflow.com/questions/1477618/how-do-i-change-a-windows-services-startup-type-in-net-post-install/1477665#14776650Answer by lubos hasko for How do I change a Windows Service's startup type in .NET (post-install)?lubos hasko2009-09-25T14:36:30Z2009-09-25T14:36:30Z<p>One way would be to uninstall previous service and install new one with updated parameters directly from your C# application.</p>
<p>You will need <code>WindowsServiceInstaller</code> in your app.</p>
<pre><code>[RunInstaller(true)]
public class WindowsServiceInstaller : Installer
{
public WindowsServiceInstaller()
{
ServiceInstaller si = new ServiceInstaller();
si.StartType = ServiceStartMode.Automatic; // get this value from some global variable
si.ServiceName = @"YOUR APP";
si.DisplayName = @"YOUR APP";
this.Installers.Add(si);
ServiceProcessInstaller spi = new ServiceProcessInstaller();
spi.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
spi.Username = null;
spi.Password = null;
this.Installers.Add(spi);
}
}
</code></pre>
<p>and to reinstall service just use these two lines.</p>
<pre><code>ManagedInstallerClass.InstallHelper(new string[] { "/u", Assembly.GetExecutingAssembly().Location });
ManagedInstallerClass.InstallHelper(new string[] { Assembly.GetExecutingAssembly().Location });
</code></pre>
http://stackoverflow.com/questions/1450235/why-not-construct-ui-based-on-db-schema/1450347#14503470Answer by lubos hasko for Why not construct UI based on DB schema?lubos hasko2009-09-20T05:15:04Z2009-09-20T05:20:13Z<p>List of projects that implement this idea.</p>
<p><strong>.NET</strong></p>
<ul>
<li><a href="http://www.codeplex.com/dotObjects" rel="nofollow">dotObjects</a></li>
<li><a href="http://www.nakedobjects.net/" rel="nofollow">Naked Objects</a></li>
<li><a href="http://www.evolving-software.co.uk/index.html" rel="nofollow">TrueView</a></li>
</ul>
<p><strong>Java</strong></p>
<ul>
<li><a href="https://doe.dev.java.net/" rel="nofollow">Domain Object Explorer</a></li>
<li><a href="http://www.jmatter.org/" rel="nofollow">JMatter</a></li>
<li><a href="http://www.nakedobjects.org/home/no%5Ffor%5Fjava%5Fintro.shtml" rel="nofollow">Naked Objects</a></li>
<li><a href="http://freshmeat.net/projects/sanssouci" rel="nofollow">Sanssouci</a></li>
<li><a href="http://www.trailsframework.org/" rel="nofollow">Trails</a></li>
<li><a href="http://lablz.com/" rel="nofollow">Lablz</a></li>
</ul>
<p><strong>C++</strong></p>
<ul>
<li><a href="http://tocxx.110mb.com/" rel="nofollow">Typical Objects</a></li>
</ul>
http://stackoverflow.com/questions/1449994/inno-setup-for-windows-service/1450051#14500513Answer by lubos hasko for Inno Setup for Windows service?lubos hasko2009-09-20T01:39:52Z2009-09-20T01:45:43Z<p>You don't need <code>installutil.exe</code> and probably you don't even have rights to redistribute it.</p>
<p>Here is the way I'm doing it in my application:</p>
<pre><code>static void Main(string[] args)
{
if (System.Environment.UserInteractive)
{
string parameter = string.Concat(args);
switch (parameter)
{
case "--install":
ManagedInstallerClass.InstallHelper(new string[] { Assembly.GetExecutingAssembly().Location });
break;
case "--uninstall":
ManagedInstallerClass.InstallHelper(new string[] { "/u", Assembly.GetExecutingAssembly().Location });
break;
}
}
else
{
ServiceBase.Run(new WindowsService());
}
}
</code></pre>
<p>Basically you can have your service to install/uninstall on its own by using <a href="http://msdn.microsoft.com/en-us/library/system.configuration.install.managedinstallerclass.aspx" rel="nofollow"><code>ManagedInstallerClass</code></a> as shown in my example.</p>
<p>Then it's just matter of adding into your InnoSetup script something like this:</p>
<pre><code>[Run]
Filename: "{app}\MYSERVICE.EXE"; Parameters: "--install"
[UninstallRun]
Filename: "{app}\MYSERVICE.EXE"; Parameters: "--uninstall"
</code></pre>
http://stackoverflow.com/questions/1442108/ids-for-information-on-more-than-one-db-server/1442124#14421242Answer by lubos hasko for IDs for Information on More Than One DB/Serverlubos hasko2009-09-18T00:56:28Z2009-09-18T00:56:28Z<p>Use <a href="http://en.wikipedia.org/wiki/GUID" rel="nofollow">GUID</a>/<a href="http://en.wikipedia.org/wiki/Universally%5FUnique%5FIdentifier" rel="nofollow">UUID</a> (globally/universally unique identifier). In theory it's guaranteed to be unique across multiple machines.</p>
http://stackoverflow.com/questions/1430743/have-any-developers-changed-careers-into-the-domain-they-were-developing-software/1430760#14307604Answer by lubos hasko for Have any developers changed careers into the domain they were developing software for?lubos hasko2009-09-16T03:15:49Z2009-09-16T03:15:49Z<p>Why would you do that? If you are a software developer and knowledgeable in certain domain well enough that you could even switch career, then you probably have unique set of skills that is hard to top for anyone on both sides.</p>
<p>What you really want is to find some lucrative job where you can fully utilize set of your skills and gain respect in your domain you deserve or start your own business.</p>
http://stackoverflow.com/questions/1416732/how-to-logout-previous-session-of-a-user-if-he-logins-again-on-same-or-different/1416751#14167510Answer by lubos hasko for How to logout previous session of a user,if he logins again on same or different browser.lubos hasko2009-09-13T03:09:00Z2009-09-13T03:09:00Z<p>When user logs in again, simply generate new session ID and previous one will become invalid.</p>
http://stackoverflow.com/questions/1416352/why-does-monodevelop-need-the-net-3-5-framework-to-run-on-windows/1416516#14165164Answer by lubos hasko for why does monodevelop need the .NET 3.5 framework to run on windows?lubos hasko2009-09-13T00:10:05Z2009-09-13T00:10:05Z<p>It's because monodevelop for windows is not just plain crossplatform port but something that takes deeper advantage of underlying operation system. There are some features developers wanted/needed to support under Windows and Mono was too constraining for them at this time (however it might and probably will change in the future).</p>
<p>I actually praise developers for doing what's right for their product and not religiously trying to make their software work with Mono on every platform. if Microsoft .NET framework allows them to deliver on Windows better IDE now, then they got my thumbs up.</p>
http://stackoverflow.com/questions/1391952/messagebox-in-c/1391956#13919561Answer by lubos hasko for MessageBox in c#lubos hasko2009-09-08T04:25:23Z2009-09-08T04:25:23Z<p>If standard implementation of <code>MessageBox</code> doesn't do what you need, you will have to create your own form and use <code>ShowDialog()</code> method.</p>
http://stackoverflow.com/questions/1373199/can-i-make-the-default-appdomain-use-shadow-copies-of-certain-assemblies/1373318#13733181Answer by lubos hasko for Can I make the default AppDomain use shadow copies of certain assemblies?lubos hasko2009-09-03T13:09:14Z2009-09-03T22:35:47Z<p>I don't know what you are trying to do but there are some deprecated methods to turn on ShadowCopy on the current AppDomain.</p>
<pre><code>AppDomain.CurrentDomain.SetCachePath(@"C:\Cache");
AppDomain.CurrentDomain.SetShadowCopyPath(AppDomain.CurrentDomain.BaseDirectory);
AppDomain.CurrentDomain.SetShadowCopyFiles();
</code></pre>
http://stackoverflow.com/questions/1370539/multiple-instances-of-same-application-as-a-windows-service/1372159#13721590Answer by lubos hasko for Multiple Instances of same Application as a Windows Service?lubos hasko2009-09-03T08:35:29Z2009-09-03T08:35:29Z<p>There is option #4 that I'm successfully using in my project aka "named instances".</p>
<p>Every installation of your app has custom name and each installation has its own service. They are completely independent and isolated from each other. MS SQL Server is using this model if you try to install it multiple time on single machine.</p>
http://stackoverflow.com/questions/1355151/get-assembly-names-in-current-application-domain/1355166#13551660Answer by lubos hasko for Get Assembly Names in Current Application Domainlubos hasko2009-08-30T23:02:29Z2009-08-30T23:18:07Z<p>It's impossible to get list of all referenced assemblies during runtime. Even if you reference it in your visual studio project, if you don't use them, C# compiler will ignore them and therefore they won't make it into your output file (exe/dll) at all.</p>
<p>And for the rest of your assemblies, they won't get loaded until they are actually used.</p>
<p><code>AppDomain.CurrentDomain.GetAssemblies()</code> gives you array of all loaded assemblies and this list could be very different from what you see in visual studio project.</p>
http://stackoverflow.com/questions/1352265/c-winform-applications-preloader-splash-screen/1352328#13523282Answer by lubos hasko for C# Winform Applications Preloader Splash Screenlubos hasko2009-08-29T20:42:22Z2009-08-29T20:42:22Z<p>The first time user starts your application, assume it will take 10 seconds and show progressbar counting down those 10 seconds. Once the application is loaded, save somewhere on user's computer actual time it took to load your application. Next time user loads your application, use saved time instead of your original 10 seconds.</p>
<p>This is simple and obvious concept. User doesn't care what parts of the application are loading, he cares how long it's going to take and he wants to see countdown.</p>
http://stackoverflow.com/questions/1337953/ddd-subclasses-root-entities/1352292#13522922Answer by lubos hasko for DDD: subclasses & root entitieslubos hasko2009-08-29T20:21:44Z2009-08-29T20:21:44Z<p>You shouldn't use inheritance to model your domain because you will soon run into trouble once model starts to get complex.</p>
<p>President is simply a role of the person and person can have multiple roles. Maybe president got just one role but that's simply accidental by choosing wrong example.</p>
<p>Ferrari shouldn't be inherited from car either. It's not obvious on Ferrari example, because they only do one type of cars but consider company making many types like vans, sedans, hatchbacks, trucks and so on. You will probably want to make classes for every type that will inherit from car class. And then what... are you going to make five Toyota classes that will inherit from each type? Such as...</p>
<pre><code>Car -> Sedan -> ToyotaSedan
Car -> Truck -> ToyotaTruck
Car -> Hatchback -> ToyotaHatchback
</code></pre>
<p>That would be ridiculous.</p>
<p>Disclaimer: I know nothing about about cars. However...</p>
<p><strong>Don't use inheritance to model your domain. Ever.</strong></p>
<p>Try it without inheritance and it will also became obvious how to persist your domain.</p>
http://stackoverflow.com/questions/1316900/best-practices-of-porting-c-server-logic-to-client-js/1319922#13199222Answer by lubos hasko for Best practices of porting C# server logic to client JS?lubos hasko2009-08-24T00:00:03Z2009-08-24T00:00:03Z<p>this is currently unsolved problem. you will either have to do it twice (once in javascript and the second time on the server)</p>
<p>or...</p>
<ul>
<li>you could rewrite your application in silverlight (so you can reuse the same classes on client and server)</li>
<li>if you don't want to rewrite in silverlight, you could still run .NET code using silverlight plugin in webbrowser and interop with html but that's really evil and probably will be also slow</li>
<li>use <a href="http://projects.nikhilk.net/ScriptSharp" rel="nofollow">script#</a> to convert your c# code into javascript (unsupported)</li>
<li>use <a href="http://jsc.sourceforge.net/" rel="nofollow">jsc</a> (similar to script# but converts MSIL instead of C#)</li>
<li>project Volta (Microsoft's answer to GWT), but it's probably dead as silverlight fits better into microsoft's plans.</li>
</ul>
<p>it looks like you've got lots of choice but none of these solutions are good enough and many are simply tricky to implement without running into problems. I would just recommend to write javascript on client by hand where necessary bit by bit - I know this is not the answer you are looking for, because we all want to follow rule "once and only once" but sometime it's not possible.</p>
http://stackoverflow.com/questions/1279649/implementing-a-massive-search-application/1279740#12797403Answer by lubos hasko for Implementing a massive search applicationlubos hasko2009-08-14T19:28:11Z2009-08-14T19:34:33Z<p>have a look at <a href="http://en.wikipedia.org/wiki/Hadoop" rel="nofollow">Hadoop</a>. It's complete "map-reduce" framework for working with huge datasets inspired by Google. It think (but I could be wrong) Rackspace is using it for email search for their clients.</p>
http://stackoverflow.com/questions/1271293/what-is-the-hot-next-generation-technology-that-a-software-engineer-should-learn/1271346#12713460Answer by lubos hasko for What is the hot next-generation technology that a software engineer should learn?lubos hasko2009-08-13T11:16:07Z2009-08-13T11:16:07Z<p>Of course it's impossible to predict the future but my guess would be that we will not see such a radical change in following 10 years as what we've seen for past 10 years. The technology became mature enough that we no longer struggle with technical issues as much as we've been to and there is no real demand for something radically new (think of Silverlight, WPF, new programming languages) as what we have now is good enough and works.</p>
<p>Therefore my guess is that usability, user interface and user experience will be major theme for following 10 years. Something that Apple is doing for ages now but that's because they are always ahead of its time.</p>
http://stackoverflow.com/questions/1267175/is-graceful-degradation-in-the-absence-of-javascript-still-useful/1267241#12672416Answer by lubos hasko for Is graceful degradation in the absence of JavaScript still useful?lubos hasko2009-08-12T16:25:46Z2009-08-12T16:25:46Z<p>It is relevant and it will be relevant even after 10-20 years when javascript might be supported everywhere. making things work without javascript is important development technique because it forces you to keep things simple and <code>declarative</code>. ideally javascript should be used only to enhance experience but your website shouldn't depend on it.</p>
<p>there is clear advantage from maintenance point of view to have most of the code in declarative format (html+css) and as little as possible in imperative (javascript).</p>
http://stackoverflow.com/questions/1248918/how-to-convince-business-that-it-is-not-a-cost-center/1248947#12489470Answer by lubos hasko for How to convince business that IT is not a cost center?lubos hasko2009-08-08T14:05:43Z2009-08-08T14:05:43Z<p>get the hell out of there I would say.</p>
<p>it's sad but management rarely cares about long-term goals. they look at profit and loss statement and take off any expenses that won't hurt profit in following 3-6 months. for all they care is to cash out options, some nice bonus and move on to destroy another company.</p>
<p>I wouldn't waste my energy of dealing with that non-sense and find employer that thinks long-term. IT is the most important cost center of any business. you can have bad support department or bad HR but when IT is bad, then company is practically dead.</p>
http://stackoverflow.com/questions/1235057/gui-border-dilemma/1235130#12351301Answer by lubos hasko for GUI border dilemmalubos hasko2009-08-05T19:04:37Z2009-08-05T19:04:37Z<p>Of course gap between those two panels needs to be only splitter and nothing else. There is no other way.</p>
<p><img src="http://img15.imageshack.us/img15/2250/myapp.png" alt="alt text" /></p>
http://stackoverflow.com/questions/29145/generating-database-tables-from-object-definitions/29183#29183Comment by lubos hasko on Generating database tables from object definitionslubos hasko2009-11-16T01:34:57Z2009-11-16T01:34:57Zthe catch is that it's object database and therefore not based on superior relational model.http://stackoverflow.com/questions/1690562/net-solution-many-projects-vs-one-project/1690578#1690578Comment by lubos hasko on .NET solution - many projects vs one projectlubos hasko2009-11-06T23:05:43Z2009-11-06T23:05:43ZThere is also circular dependency between System.Xml.dll and System.Configuration.dllhttp://stackoverflow.com/questions/1690562/net-solution-many-projects-vs-one-project/1690656#1690656Comment by lubos hasko on .NET solution - many projects vs one projectlubos hasko2009-11-06T22:56:53Z2009-11-06T22:56:53ZI don't find concept of projects within solution useful, putting individual layers into separate folders is equally working for me and for millions of others who are using happily other programming languages.http://stackoverflow.com/questions/1676552/single-or-multiple-databases/1676601#1676601Comment by lubos hasko on Single or multiple databases lubos hasko2009-11-04T21:23:44Z2009-11-04T21:23:44ZClustering doesn't work well for queries spanning more than one server.http://stackoverflow.com/questions/1623935/load-dlls-from-environment-variable-path-from-a-service/1623944#1623944Comment by lubos hasko on Load dll's from Environment Variable Path from a servicelubos hasko2009-10-26T09:55:19Z2009-10-26T09:55:19Zthis has nothing to do with his problem because after restarting his computer, everything works.http://stackoverflow.com/questions/13348/what-are-the-advantages-of-using-a-single-database-for-each-client/33546#33546Comment by lubos hasko on What are the advantages of using a single database for EACH client?lubos hasko2009-10-13T17:41:23Z2009-10-13T17:41:23Zedit the original question or just add the tag.http://stackoverflow.com/questions/1498054/too-much-coding-at-a-job-interviewComment by lubos hasko on Too much coding at a job interviewlubos hasko2009-09-30T13:26:44Z2009-09-30T13:26:44Ztheir homepage was most likely done in half a day on job interview toohttp://stackoverflow.com/questions/1485281/why-are-weak-pointers-useful/1485322#1485322Comment by lubos hasko on Why are weak pointers useful?lubos hasko2009-09-28T04:33:24Z2009-09-28T04:33:24Zextension methods have <i>absolutely nothing</i> to do with GC and weak references.http://stackoverflow.com/questions/1477908/net-4-0-and-earlier-versions/1477932#1477932Comment by lubos hasko on .NET 4.0 and earlier versionslubos hasko2009-09-25T15:22:06Z2009-09-25T15:22:06Zone application = one processhttp://stackoverflow.com/questions/1450937/how-to-set-custom-host-header-in-httpwebrequestComment by lubos hasko on How to set custom "Host" header in HttpWebRequest?lubos hasko2009-09-20T12:54:22Z2009-09-20T12:54:22ZWhy do you need to set "Host" header by yourself. If you make request to <code>www.google.com</code>, it simply becomes host header.http://stackoverflow.com/questions/1450205/graphic-design-software-for-a-programmerComment by lubos hasko on graphic design software for a programmer?lubos hasko2009-09-20T03:21:48Z2009-09-20T03:21:48Zjust get your logo from websites such as <a href="http://www.logomaid.com" rel="nofollow">logomaid.com</a>, otherwise do it yourself in Paint.NET (<a href="http://www.getpaint.net" rel="nofollow">getpaint.net</a>)http://stackoverflow.com/questions/1449994/inno-setup-for-windows-service/1450051#1450051Comment by lubos hasko on Inno Setup for Windows service?lubos hasko2009-09-20T02:52:42Z2009-09-20T02:52:42Zyou can try <code>Filename: "net.exe"; Parameters: "start WinServ"</code>. if it doesn't work, you could just add one more switch --start to your c# application and start windows service directly from the program by using ServiceController class (<a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicecontroller.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>).http://stackoverflow.com/questions/1439102/improving-soccer-simulation-algorithmComment by lubos hasko on Improving soccer simulation algorithmlubos hasko2009-09-19T14:24:59Z2009-09-19T14:24:59ZLOC = Lines of codehttp://stackoverflow.com/questions/1442350/scan-save-as-pdf-in-cComment by lubos hasko on scan & save as PDF in c#lubos hasko2009-09-18T06:15:37Z2009-09-18T06:15:37Z<code>GdipSaveImageToFile</code> function doesn't support PDF format.http://stackoverflow.com/questions/1430778/fast-parsing-of-php-in-c/1430795#1430795Comment by lubos hasko on Fast parsing of PHP in C#lubos hasko2009-09-16T03:50:11Z2009-09-16T03:50:11Zwhy can't you run PHP locally? you don't need webserver, just feed your script into PHP.exe or whatever it is and capture console output into your C# application.