User Mostlyharmless - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T05:07:43Z http://stackoverflow.com/feeds/user/12881 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1260273/am-i-being-unreasonable-in-rejecting-candidates-with-poor-spelling-and-grammar/1260304#1260304 3 Answer by Mostlyharmless for Am I being unreasonable in rejecting candidates with poor spelling and grammar? Mostlyharmless 2009-08-11T13:18:43Z 2009-08-11T15:32:27Z <p>If there are glaring spelling and grammatical mistakes in the code and documentation, then yes.</p> <p>If theres probably only a misspelled word one maybe two times in a large chunk of code, you probably should let it slide - seeing as how there are no spell checkers in most IDEs and that its hard to get someone to proofread your code.</p> http://stackoverflow.com/questions/1202128/what-career-can-i-hope-for-if-i-like-algorithms/1202155#1202155 5 Answer by Mostlyharmless for What career can I hope for if I like algorithms? Mostlyharmless 2009-07-29T18:29:29Z 2009-07-29T18:29:29Z <p>If a company tells you that you need to memorize a .Net book, leave the interview... NOW!</p> <p>Though I think it is more likely that they are just testing programming concepts, which come with practice. Memorizing a programming book is not going to help you one single bit in terms of being a good programmer.</p> <p>As for the algorithms... I think they would be very well applied if you had the programming abilities to go ahead and implement those. I am sure others will point out places that value your algorithmic abilities.</p> http://stackoverflow.com/questions/1168252/how-do-you-map-gui-labels-to-database-fields/1168296#1168296 1 Answer by Mostlyharmless for How do you map GUI labels to database fields? Mostlyharmless 2009-07-22T21:14:24Z 2009-07-22T21:14:24Z <p>You could use a meta table that holds information about the fields of the table. You'll always find more uses for that table once you have it. </p> http://stackoverflow.com/questions/777265/how-to-describe-your-job-to-a-non-it-guy/777324#777324 6 Answer by Mostlyharmless for How to describe your job to a non IT guy? Mostlyharmless 2009-04-22T13:54:27Z 2009-04-22T13:54:27Z <p>"I flip bits for a living."</p> http://stackoverflow.com/questions/337695/source-safe-not-saving-exclude-sql-smo-dll-settings-in-visual-studio-2005 0 Source Safe not saving "exclude" SQL SMO dll settings in Visual studio 2005 Mostlyharmless 2008-12-03T16:14:37Z 2009-04-17T07:59:11Z <p>We use VS2005 and SourceSafe here at work for a project. I have this Setup and Deployment project for a couple of projects which have SQL SMO dll dependencies. I do not want to deliver these DLLs, so i set them all to "exclude" from the target. However when I check the solution in, and pull it back out from VSS, four of those 8 dlls come out not excluded. It always happens and it is always the same four dlls. </p> <p>Any ideas? Anything is very much appreciated. Thanks.</p> http://stackoverflow.com/questions/686112/how-to-consume-multiple-wcf-services-from-one-client 3 How to consume multiple WCF services from one client Mostlyharmless 2009-03-26T14:47:37Z 2009-04-01T16:01:59Z <p>I am still learning the whole WCF thing, so please bear with me here.</p> <p>What I have is two self hosted services created using C# and VS 2008:<br /> Service # 1 Adds two numbers and returns the result.<br /> Service # 2 Returns the square of a number. </p> <p>I want the client to be able to send in two numbers to Service 1, get the sum and then send the sum in to Service 2 and get the square. </p> <p>I have two generated proxies for both the services, and I am able to use Intellisense on them, so that part supposedly works.</p> <p>Now how do i configure my app.config file such that I can communicate with both the services? Right now, i get an exception every time I try to do that.</p> <p>[The client works fine if I only have one of the configurations in the app file at a time, and try to call only that server.]</p> <p>I suppose this is a very noobish question, and the answer probably is "structure the config file in <strong>_</strong> manner", but Google simply does not seem to have an example/guide.</p> <p>Anyone know how to do this?</p> <p>Note: <a href="http://stackoverflow.com/questions/487662/consume-multiple-wcf-services-from-one-">http://stackoverflow.com/questions/487662/consume-multiple-wcf-services-from-one-</a> client Though sounds like a duplicate is NOT what I am looking for.</p> <p><strong>Edit:</strong> Thanks to marc_s, I got it working</p> <p>With both the services running in different apps, I did not need to split the server config file, but here is what I did with the client config files: First auto-generated the config files using SvrUtil.exe and then merged them in this way:</p> <p></p> <pre><code>&lt;bindings&gt; &lt;wsHttpBinding&gt; &lt;binding&gt; ... &lt;/binding&gt; &lt;binding&gt; ... &lt;/binding&gt; &lt;/wsHttpBinding&gt; &lt;/bindings&gt; </code></pre> <p> ... </p> <pre><code> &lt;endpoint&gt; </code></pre> <p>... <br /> </p> <p></p> http://stackoverflow.com/questions/648450/refreshing-a-sql-database-connection/648458#648458 1 Answer by Mostlyharmless for Refreshing a SQL database connection Mostlyharmless 2009-03-15T20:11:23Z 2009-03-15T20:11:23Z <p>You are probably not commiting your chanes to the database. either that or not running the query again.</p> http://stackoverflow.com/questions/530394/visualstudio-msi-bootstrap-loader-bug-and-replacement 1 VisualStudio MSI Bootstrap Loader Bug and Replacement. Mostlyharmless 2009-02-09T22:40:41Z 2009-03-12T15:22:23Z <p>Right now, I am creating an msi and a setup.exe using the Visual Studio. It works quite well... till recently.<br /> I recently added a new dialog box with a Combo Box Control to the msi. Now when I install the app directly using the msi, everything is works just fine.<br /> But when I run the Setup.exe, the ComboBox is not displayed correctly. It only displays one element at a time in the drop down list. All the elements are still there, and I can even select them using the Up/Down keys or the letters ('S' for SQL Server, for instance). </p> <p>Has anyone seen this kind of a problem before? Moreover, when I use InstallShield to create the setup, the exe created by InstallShield again runs fine.</p> <p>So I suppose I need to fix the one with Visual Studio. Any ideas how to do fix the visual studio bootstrapper? </p> <p><strong>Platform:</strong></p> <p>Using Visual Studio 2005 for the builds. </p> <p>OS: Windows XP SP3.</p> <p>The build machine has Windows Installer 4.5 installed, but its not a pre-req. The msi itself runs fine with Windows Installer 3.</p> <p>Also, the problem is not that the setup exits too fast, or that it doesnt install properly... It does. The only issue is that the Combo Box is not displayed properly and that might confuse some users.</p> http://stackoverflow.com/questions/530394/visualstudio-msi-bootstrap-loader-bug-and-replacement/639132#639132 1 Answer by Mostlyharmless for VisualStudio MSI Bootstrap Loader Bug and Replacement. Mostlyharmless 2009-03-12T15:22:23Z 2009-03-12T15:22:23Z <p>I was unable to exactly find out WHY the VS bootstrapper was behaving the way it was, but grabbing another Setup.exe from another project (not built using VS) fixed the problem. </p> <p>[I was under the impression that the Setup.exe has some kind of identifying information or a link to the MSI that it is supposed to kick off. Apparently not. Just throwing in the other setup.exe did the trick.]</p> <p>Hope this helps someone.</p> http://stackoverflow.com/questions/493867/is-it-mvc-when-the-view-doesnt-interact-with-the-model/493880#493880 0 Answer by Mostlyharmless for Is it MVC when the view doesn't interact with the model? Mostlyharmless 2009-01-29T23:02:02Z 2009-02-14T21:39:05Z <p>In the strictest of sense, no. But does it have a WAY for the view to communicate with the Model if needed without changing the architecture/interfaces?</p> <p>[For instance if you have a TalkToModel() method implemented, even though you dont use it YET, its an MVC in my view.]</p> http://stackoverflow.com/questions/522528/have-you-ever-recognized-any-source-code-visible-in-a-movie/522542#522542 8 Answer by Mostlyharmless for Have you ever recognized any source code visible in a movie? Mostlyharmless 2009-02-06T22:39:40Z 2009-02-06T22:39:40Z <p>Yes. The falling green letters in The Matrix. I can even compile them in my head on the fly.</p> http://stackoverflow.com/questions/513445/what-application-have-you-integrated-with-developed-on-that-you-would-intention/513504#513504 0 Answer by Mostlyharmless for What application have you integrated with/developed on - that you would intentionally leave off your resume Mostlyharmless 2009-02-04T21:44:10Z 2009-02-04T21:44:10Z <p>Created a device driver and a disk scheduler for linux.</p> <p>Disk scheduler i could repeat. It really was fun. A device driver on the other hand... NO WAY.</p> <p>That is not how i want to spend the rest of my life. </p> <p>The issue isnt here with Linux per se. It just that i dont like the idea of dealing with user space and kernel space and all the registers and timings and buffers and DMA... it just keeps on coming and coming! The mail never stops! </p> <p>I wasnt an expert on either of those by a long shot btw. Before any of you think im some sort of a linux guru.</p> http://stackoverflow.com/questions/512699/website-for-soon-to-be-grad/512763#512763 1 Answer by Mostlyharmless for Website for soon-to-be-grad... Mostlyharmless 2009-02-04T18:54:14Z 2009-02-04T18:54:14Z <p>I think it is a very good idea to showcase your work. If you Roll your own, AND If you can put it to some remotely useful work, you can always promote it as a "real world personal project".</p> <p>I would recommend doing something which uses the technology that you are looking to work in, but something that does not conflict with the market of companies you are looking at. [Saying that you work on linux projects in personal time when interviewing with MS OS division will look like a conflict of interest.]</p> <p>You can always invite the person screening you/ interviewing you to check out the website. You should also preferably include a "meta" section on the website which describes the technical details of what you used for the website and all.</p> <p>Once you DO start working, i STRONGLY recommend keeping a blog of interesting problems you solve a work or anything that is an indication of what new you learnt, without giving out confidential information. For this you can use a wordpress blog.</p> <p><strong>[About the rolling your own part v/s using an available package part: If you use a framework etc, you can just sell it as an indication of your not trying to re-invent the wheel everytime.]</strong></p> http://stackoverflow.com/questions/512709/visual-studio-2008-linker-error-alink-operation-failed-80070005-access-is-de/512733#512733 0 Answer by Mostlyharmless for Visual Studio 2008 linker error: ALINK operation failed (80070005) : Access is denied Mostlyharmless 2009-02-04T18:47:59Z 2009-02-04T18:47:59Z <p>In the output window, can you see where it is failing while doing what operation?</p> <p>Often you might get an error because a file it is trying to modify is under source control / not writeable because of SOME reason.</p> <p>Also, you might just be missing some file which it is looking for.</p> http://stackoverflow.com/questions/511612/ethics-of-using-a-fringe-language-for-your-job/511627#511627 6 Answer by Mostlyharmless for Ethics of using a "fringe" language for your job? Mostlyharmless 2009-02-04T14:40:57Z 2009-02-04T14:40:57Z <p>It indeed is a bit crooked IF you use it only for that purpose.</p> <p>However, if you use it because it IS the best solution, youre in the clear.</p> <p>Also, they can just hire someone else who knows python. </p> <p>My work ethics dont allow me to do something like this just to keep me in business.</p> http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/507320#507320 3 Answer by Mostlyharmless for Should we select VB.NET or C# when upgrading our legacy apps? Mostlyharmless 2009-02-03T14:38:57Z 2009-02-03T14:38:57Z <p>I would personally recommend C#. That would also add a new skill to their skillset. We had the same situation were we work. A lot of apps are in VB6 - though I must say they are well designed and well documented for the most part. But for the upcoming versions, we are moving onto using C#.</p> http://stackoverflow.com/questions/505906/how-to-make-decisions-while-choosing-a-project-in-an-it-company/505951#505951 3 Answer by Mostlyharmless for How to make decisions while choosing a project in an IT company? Mostlyharmless 2009-02-03T03:41:33Z 2009-02-03T03:41:33Z <p>Return on investment is ofcourse the final product. But it takes a number of factors to get there:</p> <p>*Their own expertise: Do we have people with skills needed to do this? Can we hire some?</p> <p>*Available resources: Programmers, Managers, Hardware, Time, Financial resources.</p> <p>*PR: Even if we dont get paid that much, will this project get us more business?</p> <p>*PR: Pay is great, but do we really want to be associated with this client?</p> <p>*Their Mission/Goals: What fields/niche do they want to compete in. Do they want to expand?</p> <p>*Past experiences: We did a project like this, it was horrible. Lets not do that again.</p> <p>*Past experiences: It was fun last time, AND we can reuse half the code! Lets do it!</p> <p>Usually the management uses more sophisticated matrices and all to make their decision, but more or less, these are the factors they usually put in.</p> <p>I am sure someone can provide a more specific/scientific answer.</p> http://stackoverflow.com/questions/505882/out-of-memory-exception/505890#505890 1 Answer by Mostlyharmless for Out of Memory Exception Mostlyharmless 2009-02-03T03:03:43Z 2009-02-03T03:03:43Z <p>You should split into multiple classes anyways, just for the sake of a sane design.</p> <p>Are you closing your DB connections? If you are reading into files, are you closing/releasing them once you are done reading/writing? Same goes for other objects.</p> <p>You could cycle your class objects routinely just to release memory.</p> http://stackoverflow.com/questions/503130/what-do-you-want-inscribed-on-your-development-inspired-headstone/503492#503492 0 Answer by Mostlyharmless for What do you want inscribed on your development inspired headstone Mostlyharmless 2009-02-02T15:03:23Z 2009-02-02T15:03:23Z <p>Last Words: "Oh come on! Its not like this killing machine I just created is going to turn on its own creator and k....GAK!!!"</p> <p>OR</p> <p>Last Words: <a href="http://xkcd.com/371/" rel="nofollow">"Double checking your pointers before compiling is for sissies."</a></p> http://stackoverflow.com/questions/497240/what-is-the-most-effective-way-to-present-and-communicate-a-performance-improveme/497272#497272 0 Answer by Mostlyharmless for What is the most effective way to present and communicate a performance improvement (e.g. percentages, raw data, graphics)? Mostlyharmless 2009-01-30T21:13:36Z 2009-01-30T21:13:36Z <p>Rule of the thumb: Whichever sounds more impressive.</p> <p>If you went from 10 tasks done in a period to 12, you could say you improved the performance by 20% Saying you did two tasks more doesnt seem that impressive.</p> <p>In your case, both numbers sound good, but try different representations and see what you get!</p> <p>Sometimes graphics help a lot of the improvement is there on a number of factors, but the combined somehow does not look that cool</p> <p>Example: You have 5 params A, B, C, D, E. You could make a bar chart with those 5 params and "before and after" values side by side for each param. That sure will look impressive.</p> <p>God im starting to sound like my friend from marketing!</p> <p><em>runs away screaming</em></p> http://stackoverflow.com/questions/496817/do-you-find-that-programmers-generally-get-half-way-through-a-project-and-then-sl/496859#496859 20 Answer by Mostlyharmless for Do you find that programmers generally get half way through a project and then slow to a crawl and how to resolve this? Mostlyharmless 2009-01-30T19:26:33Z 2009-01-30T19:26:33Z <p>I have found it to be at the 80% point. At that point a number of things happen:</p> <p>1] You have proven that you CAN build the project and there is little else left to prove.</p> <p>2] Also, in conjunction with this, the remaining 20% is just plain boring work, or is something that involves stuff which you have never done before. Which brings us to...</p> <p>3] Roadblock. Often it happens that the project is stalled because of failure to implement SOME feature which is difficult to implement. The programmer is tired and mentally fatigued with the work, and often the unpleasant work seems to be pushed till the end.</p> <p>One way to do it is that if you KNOW that you are going to have to do something you arent very good at, implement atleast a prototype of that first, so you can solve the problem while you are still fresh.</p> <p>The threat of being laid off also works as an excellent motivator, IMHO.</p> http://stackoverflow.com/questions/474936/call-web-service-in-excel/474955#474955 2 Answer by Mostlyharmless for Call web service in excel Mostlyharmless 2009-01-23T22:53:50Z 2009-01-23T23:22:54Z <p>Yes You Can!</p> <p>I worked on a project that did that (see comment). Unfortunately no code samples from that one, but googling revealed these:</p> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc163837.aspx" rel="nofollow">How you can integrate data from several Web services using Excel and VBA</a></p> <p><a href="http://www.dotnetspider.com/resources/19-STEP-BY-STEP-Consuming-Web-Services-through-VBA-Excel-or-Word-Part-I.aspx" rel="nofollow">STEP BY STEP: Consuming Web Services through VBA (Excel or Word)</a></p> <p><a href="http://www.webcontinuum.net/ws_4.aspx" rel="nofollow">Calling a Web Service from Microsoft Office (Excel)</a></p> <p><a href="http://www.automateexcel.com/2004/11/14/excel_vba_consume_web_services/" rel="nofollow">VBA: Consume Soap Web Services</a></p> http://stackoverflow.com/questions/474803/how-to-simulate-network-failure-for-test-purposes-in-c/474821#474821 2 Answer by Mostlyharmless for How to simulate network failure for test purposes (in C#)? Mostlyharmless 2009-01-23T22:12:39Z 2009-01-23T22:19:20Z <p>Try blocking the connection with a firewall midway through the session maybe?</p> <p>I like the wrapper idea as well, but thats kind of abstracting the problem and you prolly might not get exact real world behavior. Also, inserting the wrapper layer and then removing it may be more trouble than its worth.</p> <p><strong>Edit</strong>: Run a script that turns the Network adapter on/off randomly or at set intervals?</p> http://stackoverflow.com/questions/473375/how-can-a-programmer-help-the-economy/473421#473421 1 Answer by Mostlyharmless for How can a programmer help the economy? Mostlyharmless 2009-01-23T15:54:34Z 2009-01-23T15:54:34Z <p>Work hard, make sure YOUR work is the best you can do. Push your team members to give it their best. </p> <p>Heres how it works:</p> <p>Programmers giving 100% > Products shine through > Company gets more business/profit > Does not need to lay people off > Might just pull some other business up > Jobs not lost are jobs earned in this economy.</p> <p>Especially if you work on projects for other companies, remember that their success probably depends on how good a work you do.</p> http://stackoverflow.com/questions/451771/whats-the-highest-level-math-youve-used-in-the-real-world/451801#451801 2 Answer by Mostlyharmless for What's the highest-level math you've used in the real world? Mostlyharmless 2009-01-16T20:13:01Z 2009-01-16T20:13:01Z <p>Linear equations for a graphics project. ["Real world" being a flexible concept]</p> <p>Also used some when trying to figure out how much kids tickets cost. [My cousin booked all the seats and I knew how much the Seniors and Adults cost. He gave us the total amount, but couldnt remember how much the Kids tickets cost... to complicate things, we had bought tickets in 2 batches...]</p> <p>Calculating compound interest.</p> <p>Oh almost forgot... I used to work for an investment advice firm a few years ago, and used a LOT of compounding and tax rates and all those things. </p> http://stackoverflow.com/questions/448515/static-html-blog-cms-to-run-on-a-usb-stick/448527#448527 -1 Answer by Mostlyharmless for static html blog/cms to run on a USB stick? Mostlyharmless 2009-01-15T21:28:00Z 2009-01-15T21:28:00Z <p>You could use the MoWeS Portable: The Modular Web Server. </p> <p><a href="http://www.chsoftware.net/en/useware/mowes/mowes.htm" rel="nofollow">http://www.chsoftware.net/en/useware/mowes/mowes.htm</a></p> <p>It lets you pick and choose a number of static and dynamic services to run on top of a web server straight off the USB drive or a virtual drive.</p> <p>I run a Wiki off a virtual drive using Mowes at work and at home, i run a personal blog from my usb stick. </p> <p>Its verrry easy to configure and powerful enough to be productive.</p> <p><strong><em>Edit:</em></strong> Heres a link to help you get started with it: <a href="http://www.mediawiki.org/wiki/Manual:Installing_on_WOS_Portable_" rel="nofollow">http://www.mediawiki.org/wiki/Manual:Installing_on_WOS_Portable_</a>(Windows)</p> <p><em>In the download section, you can select what packages you want to install. This is where you can select what CMS/Blog softwares you want to include.</em></p> http://stackoverflow.com/questions/448371/why-are-these-folders-share-names-appended-with-dollar-signs/448400#448400 0 Answer by Mostlyharmless for Why are these folders' share names appended with dollar signs? Mostlyharmless 2009-01-15T20:46:14Z 2009-01-15T20:46:14Z <p>I know for a fact that in order to access non-shared directories of the target machine, you need to do something like \machinename\c$ where c$ represents the C:\ drive. I am not sure if that is the case in this case.</p> http://stackoverflow.com/questions/141894/command-line-builds-for-vc-6/141914#141914 0 Answer by Mostlyharmless for Command line builds for VC 6? Mostlyharmless 2008-09-26T20:54:00Z 2009-01-13T16:46:48Z <p>We use automated builds at my work place. Essentially just a batch file i fire off from the command line. Let me make sure i am allowed to post some sample code before i go ahead and post it. But yes, it IS possible to automate the build.</p> <p>Sample Code:</p> <blockquote> <p>:::::::: CompileSolution :::::::::::::::::::::::::</p> <p>call X:\BuildTools\bin\BuildVbProj.bat %COMPONENTNAME% %SOLUTIONDIR% %PROJFILE% %BUILDOUTPUTFILE% %PREBUILDFILE% if %ERRORLEVEL% NEQ 0 goto BuildErrors</p> </blockquote> <p>goto Cleanup</p> <p><strong>EDIT:</strong> The BuildVbProj.bat file ultimately calls VB6.exe in the Program Files\MS Visual Studio\VB98\ folder. Try calling it with "VB6.exe /?" or "VB6.exe -?" and it will show you a list of options. You can basically automate your process using those options.</p> <p>There should be a similar exe for VC in the VC98 folder as well.</p> http://stackoverflow.com/questions/437082/how-to-get-from-xhtml-to-excel-to-xhtml/437124#437124 0 Answer by Mostlyharmless for How to get from xhtml to excel to xhtml Mostlyharmless 2009-01-12T21:43:13Z 2009-01-12T21:43:13Z <p>A solution I once implemented for my own personal use was that I wrote a macro in excel that parsed the html file and populated the excel sheet with only the data. When i was done, the macro would read the data in the sheet and generate the html file.</p> <p>My case however had a very simple html file, and i basically had to only parse for a very few tags. </p> <p>However you might be able to find a solution/utility which makes it easier for you to do that.</p> http://stackoverflow.com/questions/42438/whats-the-best-way-to-detect-the-presence-of-smo/291736#291736 1 Answer by Mostlyharmless for What's the best way to detect the presence of SMO? Mostlyharmless 2008-11-14T23:10:37Z 2008-11-14T23:10:37Z <p>What I do is just try to create an instance of some SMO object. If it fails, its not there.</p> http://stackoverflow.com/questions/686112/how-to-consume-multiple-wcf-services-from-one-client Comment by Mostlyharmless on How to consume multiple WCF services from one client Mostlyharmless 2009-11-08T05:11:49Z 2009-11-08T05:11:49Z @Jeremy: Haha thanks! It is unbelievable how long it was stuck at 1999. http://stackoverflow.com/questions/1260273/am-i-being-unreasonable-in-rejecting-candidates-with-poor-spelling-and-grammar/1260304#1260304 Comment by Mostlyharmless on Am I being unreasonable in rejecting candidates with poor spelling and grammar? Mostlyharmless 2009-08-11T15:32:12Z 2009-08-11T15:32:12Z Yeah, I intended to mention &quot;most&quot; but that was before my morning coffee. http://stackoverflow.com/questions/1168252/how-do-you-map-gui-labels-to-database-fields/1168296#1168296 Comment by Mostlyharmless on How do you map GUI labels to database fields? Mostlyharmless 2009-07-22T21:31:19Z 2009-07-22T21:31:19Z Depending on the use cases, you could simply load the lables into a class/structure with a single query at startup and be done with it. Typically your labels wont change all that often, right? http://stackoverflow.com/questions/1168252/how-do-you-map-gui-labels-to-database-fields/1168316#1168316 Comment by Mostlyharmless on How do you map GUI labels to database fields? Mostlyharmless 2009-07-22T21:25:23Z 2009-07-22T21:25:23Z So.. the OO model that represents the database table... if you store the labels in there, it would still be hard coding... right? (Never used any of those before, so i am not sure. Ergo, I need to ask.) http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/103763#103763 Comment by Mostlyharmless on What non-programming books should programmers read? Mostlyharmless 2009-07-01T22:05:27Z 2009-07-01T22:05:27Z Programming on Shrooms! http://stackoverflow.com/questions/772874/how-can-i-best-extract-transitions-in-a-transactional-table Comment by Mostlyharmless on How can I best extract transitions in a transactional table? Mostlyharmless 2009-04-21T14:35:39Z 2009-04-21T14:35:39Z I am not quite sure I understand the problem completely. Can you be more specific please? http://stackoverflow.com/questions/686112/how-to-consume-multiple-wcf-services-from-one-client/686770#686770 Comment by Mostlyharmless on How to consume multiple WCF services from one client Mostlyharmless 2009-04-01T15:53:02Z 2009-04-01T15:53:02Z Thanks, that worked! There were so many permutations to merge the config files, that I just decided to ask, rather than cover all permutations :P http://stackoverflow.com/questions/686112/how-to-consume-multiple-wcf-services-from-one-client/686142#686142 Comment by Mostlyharmless on How to consume multiple WCF services from one client Mostlyharmless 2009-03-26T15:51:08Z 2009-03-26T15:51:08Z I do have them both running on the same port, but I am able to call service A from Service B, both listening to port 8000. Suppose I do run them on different ports, how do i structure the app.config? http://stackoverflow.com/questions/648450/refreshing-a-sql-database-connection Comment by Mostlyharmless on Refreshing a SQL database connection Mostlyharmless 2009-03-15T20:10:54Z 2009-03-15T20:10:54Z You are probably not commiting your chanes to the database. either that or not running the query again. http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem Comment by Mostlyharmless on What's your "ceremony" after finishing your project or solving a hard problem? Mostlyharmless 2009-03-13T16:51:44Z 2009-03-13T16:51:44Z For a moment there i thought why are people talking about National Public Radio :P http://stackoverflow.com/questions/270401/is-oslo-going-to-make-the-role-of-developer-obsolete/270418#270418 Comment by Mostlyharmless on Is Oslo going to make the role of developer obsolete? Mostlyharmless 2009-02-19T23:44:36Z 2009-02-19T23:44:36Z More ambitiously, BATCH Files were supposed to make programmers obsolete too, by being a &quot;glue&quot; between different modules which could be assembled - lego style - to make an AutoBot. It also had the stability of a Lego AutoBot. http://stackoverflow.com/questions/530394/visualstudio-msi-bootstrap-loader-bug-and-replacement/548451#548451 Comment by Mostlyharmless on VisualStudio MSI Bootstrap Loader Bug and Replacement. Mostlyharmless 2009-02-15T03:50:26Z 2009-02-15T03:50:26Z I checked that the first thing. The height is set to a proper size. Also the msi itself <i>always</i> displays it correctly, so does the .exe generated by InstallShield. Only the VS exe is borked. http://stackoverflow.com/questions/1537/what-is-software-engineering/1583#1583 Comment by Mostlyharmless on What is software engineering? Mostlyharmless 2009-02-12T19:19:01Z 2009-02-12T19:19:01Z Neither will an electronics engineer stand before one, if a cell phone crashes and needs to be restarted. Neither will a mechanical engineer if the grandfather clock mechanism breaks. Whats your point? http://stackoverflow.com/questions/346033/vb-and-oracle-connectivity Comment by Mostlyharmless on VB and Oracle connectivity Mostlyharmless 2009-02-12T15:26:41Z 2009-02-12T15:26:41Z lol &quot;plzsendtehcodez&quot; sounds like a Gortok invention. http://stackoverflow.com/questions/533549/minimal-web-design/533567#533567 Comment by Mostlyharmless on minimal web design Mostlyharmless 2009-02-10T18:50:09Z 2009-02-10T18:50:09Z I would actually be impressed by a clean minimalist design. If the layout is elegant and the right information is displayed, it beats all the flash candy hands down.