User Simon Munro - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:10:38Z http://stackoverflow.com/feeds/user/3893 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1931045/why-does-code-require-maintenance/1931063#1931063 1 Answer by Simon Munro for Why does code require "maintenance "? Simon Munro 2009-12-18T22:30:33Z 2009-12-18T22:30:33Z <p>Because 'requirements' change. The the users change their minds, the systems being integrated with change. Database structures change. Reports need to be added and data captured for those reports. New 'better' architectures need to be implemented and the old style thrown out. New browsers come along and old ones hopefully die. Fashion changes - the cool looking UI of last year looks outdated.</p> <p>Things change and the code needs to change too</p> http://stackoverflow.com/questions/1906244/choosing-between-net-service-bus-queues-vs-azure-queue-service/1929674#1929674 1 Answer by Simon Munro for Choosing between .NET Service Bus Queues vs Azure Queue Service Simon Munro 2009-12-18T17:38:48Z 2009-12-18T17:38:48Z <p>I would recommed that you stick with Azure queues for communicating between web and worker roles. Using queues is the official and sanctioned way of communicating between Azure processes and I sincerely doubt that you will progrma yourself into a corner. Service Bus (AppFabric) has a higher overhead and although really good for talking to external apps, may not be optimal for quick and simple messages within your Azure app</p> http://stackoverflow.com/questions/1928563/sql-azure-reporting/1929620#1929620 0 Answer by Simon Munro for SQL Azure Reporting Simon Munro 2009-12-18T17:30:08Z 2009-12-18T17:30:08Z <p>Reporting Services will still connect and work as normal, BUT there is no SSRS service on the Azure platform. So it means that you will connect (most likely through ADO) from a different data centre (either your own or hosted SSRS) to SQL Azure, meaning that potentially a lot (too much) data has to come down the wire.</p> <p>SSRS and SSAS for Azure are not officially on the Azure roadmap yet</p> http://stackoverflow.com/questions/149226/characteristics-of-a-death-march-project 9 Characteristics of a Death March project Simon Munro 2008-09-29T15:37:21Z 2009-12-02T16:38:17Z <p>In software development, a death march project generally refers to a project that has a fixed release date with fixed functionality and fixed resources - resulting in crazy demands from management that developers work extra long hours and weekends.</p> <p>What do you think a death march project is and how does it come about?</p> http://stackoverflow.com/questions/448684/why-should-you-use-an-orm 3 Why should you use an ORM? Simon Munro 2009-01-15T22:13:26Z 2009-09-30T15:22:17Z <p>If you were to motivate the "pro's" of why you would use an ORM to management/client, what would the reasons be?</p> <p>Try and keep one reason per answer so that we can see what gets voted up as the best reasons</p> http://stackoverflow.com/questions/1194056/querying-table-storage-data-with-windows-azure/1207078#1207078 1 Answer by Simon Munro for Querying table storage data with Windows Azure Simon Munro 2009-07-30T14:44:45Z 2009-07-30T14:44:45Z <ol> <li>The SQLExpress intance that you can see is only in the dev fabric and has no equivalent once you deply, so be careful about using it.</li> <li>You can try and use Linqpad to query your tables. Look at <a href="http://blogs.conchango.com/jamiethomson/archive/2009/07/06/linqpad-and-azure.aspx" rel="nofollow">this post</a> by Jamie Thomson.</li> </ol> http://stackoverflow.com/questions/798701/rest-url-for-lists 1 REST Url for Lists Simon Munro 2009-04-28T16:03:53Z 2009-07-20T22:28:02Z <p>Let's say I have a method that returns a list of customers and as input has a list of states and list of sizes, something like</p> <p>return customers where state in (NY, CA, TX) and size in (Small, Medium)</p> <p>What would the best RESTFul URL that I should use? The problem that it is a query and does not point to a specific 'resource'. Here are some options that I am mulling over.</p> <ol> <li>somesite.com/customers?state=NY,CA,TX&amp;size=small,medium (old style)</li> <li>somesite.com/customers/state/NY,CA,TX/size/small,medium</li> <li>somesite.com/customers/state=NY,CA,TX/size=small,medium</li> <li>somesite.com/customers/state(NY,CA,TX)/size(small,medium)</li> </ol> http://stackoverflow.com/questions/944586/what-significant-google-products-are-open-source 2 What Significant Google Products Are Open Source? Simon Munro 2009-06-03T12:56:30Z 2009-06-03T15:16:41Z <p>I know that Google does <strong>some</strong> open source but a lot of their assets are very closed source. What are the main ones that are open source and those not?</p> <ul> <li>Android - fully open (I think) </li> <li>GMail - Closed </li> <li>Search - Obviously closed </li> <li>Chrome - Some open source bits (webkit)... but I'm not sure</li> <li>JavaScript compilers (that Steve Yegge is working with) </li> <li>Youtube - Closed</li> <li>Feedburner - Closed Blogger - Closed</li> </ul> <p>I am struggling to come up with big pro-OSS products from Google.</p> http://stackoverflow.com/questions/81108/runtime-page-optimizer-for-asp-net-any-comments 3 Runtime Page Optimizer for ASP.net - Any comments? Simon Munro 2008-09-17T08:25:33Z 2009-04-09T15:31:19Z <p>RPO 1.0 (Runtime Page Optimizer) is a recently (today?) released component for ASP and Sharepoint that compresses, combines and minifies (I can’t believe that is a real word) Javascript, CSS and other things.</p> <p>What is interesting is that it was developed for ActionThis.com a NZ shop that saw at TechEd last year. They built a site that quickly needed to be trimmed down due to the deployment scale and this seems to be the result of some of that effort.</p> <p>Anyone have any comments? Is it worthwhile evaluating this?</p> <p><a href="http://www.getrpo.com/Product/HowItWorks" rel="nofollow">http://www.getrpo.com/Product/HowItWorks</a></p> <p><strong>Update</strong> I downloaded this yesterday and gave it a whirl on our site. The site is large, complex and uses a lot of javascript, css, ajax, jquery etc as well as URL rewriters and so on. The installation was too easy to be true and I had to bang my head against it a few times to get it to work. The trick... entries in the correct place in the web.config and a close read through the AdvancedSetup.txt to flip settings manually. The site renders <strong>mostly</strong> correctly but there are a few issues which are probably due to the naming off css classed - it will require some close attention and a lot of testing to make sure that it fits, but so far it looks good and well worth the cost.</p> <p><strong>Second Update</strong> We are busy trying to get RPO hooked up. There are a couple of problems with character encoding and possibly with the composition of some of our scripts. I have to point out that the response and support from the vendor has been very positive and proactive</p> <p><strong>Third Update</strong> I went ahead and went ahead with the process of getting RPO integrated into the site that I was involved in. Although there were some hiccups, the RPO people were very helpful and put a lot of effort into improving the product and making it fit in our environment. It is definitely a no-brainer to use RPO - the cost for features means that it is simple to just go ahead and implement it. Job done. Move on to next task</p> http://stackoverflow.com/questions/161737/what-are-the-best-asp-net-performance-counters-to-monitor 11 What are the best ASP.NET performance counters to monitor? Simon Munro 2008-10-02T10:51:36Z 2009-02-27T21:21:24Z <p>There are truckloads of counters available in perfmon for ASP.NET. What are the best (I am thinking of choosing 5-10) that will be the best to monitor in our test environment so that we can feed back to developers.</p> <p>I am thinking of things like request time, request queue length, active sessions etc.</p> http://stackoverflow.com/questions/253324/how-can-i-get-sql-server-column-definition-with-parentheses-and-everything 0 How can I get SQL Server column definition with parentheses and everything? Simon Munro 2008-10-31T12:30:09Z 2009-01-19T10:19:21Z <p>I need a smart way to get the data types out of INFORMATION_SCHEMA.COLUMNS in a way that could be used in a CREATE TABLE statement. The problem is the 'extra' fields that need to be understood, such as NUMERIC<code>_</code>PRECISION and NUMERIC<code>_</code>SCALE.</p> <p>Obviously, I can ignore the columns for INTEGER (precision of 10 and scale of 0), but there are other types I would be interested in, such as NUMERIC. So without writing lots of code to parse the table, any ideas on how to get a sort of field shorthand out of the column definition?</p> <p>I would like to be able to get something like : int, datetime, money, numeric**(10,2)**</p> http://stackoverflow.com/questions/246185/how-do-you-balance-framework-api-design-and-tdd 2 How do you balance Framework/API Design and TDD Simon Munro 2008-10-29T09:09:48Z 2008-11-01T21:14:57Z <p>We are building a framework that will be used by other developers and for now we have been using a lot of TDD practices. We have interfaces everywhere and have well-written unit tests that mock the interfaces.</p> <p>However, we are now reaching the point where some of the properties/methods of the input classes need to be internal, and not visible to our framework users (for example object Id). The problem then is that we can't put those fields/methods on the interface as the interface does not describe accessibility.</p> <p>We could:</p> <ol> <li>Still use interfaces and upcast in the first line of the method, but that seems to defeat the purpose of interfaces.</li> <li>Use classes as input parameters - breaking the TDD rule that <em>everything</em> should be interfaces</li> <li>Provide another layer which does some translation between public interfaces and internal interfaces</li> </ol> <p>Is there an existing pattern/approach to deal with this? What do the TDD people say should be done?</p> http://stackoverflow.com/questions/218133/c-binaryformatter-how-can-i-find-out-the-class-of-the-binary-data 2 C# BinaryFormatter - How can I find out the class of the binary data? Simon Munro 2008-10-20T11:45:03Z 2008-10-20T11:53:30Z <p>I want to deserialize an object but don't know the class up front. So, consider the following code...</p> <pre><code>IFormatter formatter = new BinaryFormatter(); Stream stream = new FileStream("MyFile.bin", FileMode.Open, FileAccess.Read, FileShare.Read); MyObject obj = (MyObject)formatter.Deserialize(stream); </code></pre> <p>What could I do if I don't know the class up front? Say, for example "MyFile.bin" was a MyObject or a MyFoo. How do I determine which object to instantiate?</p> <p>Something like...</p> <pre><code>if (magic happens here == typeof(MyObject)) MyObject obj = (MyObject) formatter.Deserialize(stream); else if (more magic happens here == typeof(MyFoo)) MyFoo foo = (MyFoo)formatter.Deserialize(stream); </code></pre> http://stackoverflow.com/questions/211895/storing-documents-as-blobs-in-a-database-any-disadvantages/211910#211910 0 Answer by Simon Munro for Storing Documents as Blobs in a Database - Any disadvantages? Simon Munro 2008-10-17T12:13:57Z 2008-10-17T12:13:57Z <p>It depends on volumes. Once you start getting into 100's of documents you are going to have problems. The database becomes to big to backup, transaction logs are large and so on. If you can, use something like the SQL2008 filestream</p> http://stackoverflow.com/questions/201527/best-design-for-a-changelog-auditing-database-table/204089#204089 0 Answer by Simon Munro for best design for a changelog / auditing database table? Simon Munro 2008-10-15T08:49:41Z 2008-10-15T08:49:41Z <p>Some answers and ideas over <a href="http://stackoverflow.com/questions/39281/database-design-for-revisions">here</a></p> http://stackoverflow.com/questions/204025/database-design-for-database-agnostic-applications/204071#204071 0 Answer by Simon Munro for Database design for database-agnostic applications Simon Munro 2008-10-15T08:44:32Z 2008-10-15T08:44:32Z <p>Research up front the lowest common denominator for data types. For example, SQL Server has an integer but Oracle uses a number.</p> http://stackoverflow.com/questions/204025/database-design-for-database-agnostic-applications/204056#204056 1 Answer by Simon Munro for Database design for database-agnostic applications Simon Munro 2008-10-15T08:41:22Z 2008-10-15T08:41:22Z <p>Keep field and table names short (&lt;30 characters) and case insensitive. e.g. TABLE_NAME and FIELD_NAME</p> http://stackoverflow.com/questions/186314/where-in-javascript-is-the-request-coming-from 1 Where in JavaScript is the request coming from? Simon Munro 2008-10-09T07:53:48Z 2008-10-14T15:05:16Z <p>I am debugging a large, complex web page that has a lot of JavaScript, JQuery, Ajax and so on. Somewhere in that code I am getting a rouge request (I think it is an empty img) that calls the root of the server. I know it is not in the html or the css and am pretty convinced that somewhere in the JavaScript code the reqest is being made, but I can't track it down. I am used to using firebug, VS and other debugging tools but am looking for some way to find out where this is executed - so that I can find the offending line amongst about 150 .js files.</p> <p>Apart from putting in a gazzillion console outputs of 'you are now here', does anyone have suggestions for a debugging tool that could highlight where in Javascript requests to external resources are made? Any other ideas?</p> <p>Step by step debugging will take ages - I have to be careful what I step into (jQuery source - yuk!) and I may miss the crucial moment</p> http://stackoverflow.com/questions/191974/what-relational-database-innovations-have-there-been-in-the-last-10-years 6 What relational database innovations have there been in the last 10 years Simon Munro 2008-10-10T15:49:24Z 2008-10-12T12:21:33Z <p>The SQL implementation of relational databases has been around in their current form for something like 25 years (since System R and Ingres). Even the main (loosely adhered to) standard is ANSI-92 (although there were later updates) is a good 15 years old.</p> <p>What innovations can you think of with SQL based databases in the last ten years or so. I am specifically excluding OLAP, Columnar and other non-relational (or at least non SQL) innovations. I also want to exclude 'application server' type features and bundling (like reporting tools)</p> <p>Although the basic approach has remained fairly static, I can think of:</p> <ul> <li>Availability</li> <li>Ability to handle larger sets of data</li> <li>Ease of maintenance and configuration</li> <li>Support for more advanced data types (blob, xml, unicode etc)</li> </ul> <p>Any others that you can think of?</p> http://stackoverflow.com/questions/114765/how-can-i-write-freely-available-open-source-software-and-make-a-living-from-it-a/115226#115226 10 Answer by Simon Munro for How can I write freely available open-source software and make a living from it as well? Simon Munro 2008-09-22T14:41:37Z 2008-09-22T15:30:44Z <p>I cracks me up that Mark Shuttleworth, the money behind Ubuntu, evangelises the culture of open source. Of course he can, he sold his <strong>commercial</strong> company for a gazillion dollars and doesn't ever have to earn a cent out of software <strong>ever again</strong>. If I had that much money in the bank I would also do open source - and have a lot of fun doing it. I just can't take anything that mark Shuttleworth says seriously.</p> <p>This is a question that I have grappled with for years, but I can't reconcile the culture with the need to actually make a living and there are <em>very few</em> examples of people who have made it in open source. Obviously you're not going to get rich, but it would be great if you could at least make a living.</p> <p>To answer the question, it seems that the only way is to do OSS part time while you work at a paying job. Then you <strong>hope</strong> that your product makes it and you either get picked up into a better paid job or make some money off support/training/consulting. The former is more likely.</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/47823#47823 0 Answer by Simon Munro for Computer Language puns and jokes Simon Munro 2008-09-06T20:50:24Z 2008-09-21T19:50:53Z <p>A presenter and view are out clubbing. The view has had way too much to drink and the presenter leans over a model "Can you give me a lift home, I just can't depend on this guy"</p> http://stackoverflow.com/questions/800/object-oriented-vs-relational-databases/103718#103718 6 Answer by Simon Munro for Object Oriented vs Relational Databases Simon Munro 2008-09-19T17:02:19Z 2008-09-19T17:02:19Z <p>I worked with OODBs a few years ago and...</p> <ol> <li>They apply <strong>very</strong> well to <strong>niche</strong> situations. Those are generally caching type applications and complex objects for smaller sets of data (think 911 dispatcher type application)</li> <li>They do not handle schema changes well at all. You pretty much have to write code to mutate each object. Imagine writing objects that serialize to disk as binaries - if you change your class you lose the ability to load old files. Object databases have the same problem</li> <li>You can't 'report' off object databases in a traditional way. Every report has to be a program that loads the objects and does something with them so there is no concept of 'list all where...'</li> </ol> http://stackoverflow.com/questions/102278/active-flag-or-not/103634#103634 0 Answer by Simon Munro for `active' flag or not? Simon Munro 2008-09-19T16:49:49Z 2008-09-19T16:49:49Z <p>From a 'purist perspective' the realtional model doesn't differentiate between a view and a table - both are relations. So that use of a view that uses the discriminator is perfectly meaningful and valid provided the entities are correctly named e.g. Person/ActivePerson.</p> <p>Also, from a 'purist perspective' the table should be named person, not people as the name of the relation reflects a tuple, not the entire set.</p> http://stackoverflow.com/questions/103423/what-are-the-best-sql-server-performance-optimization-techniques/103568#103568 0 Answer by Simon Munro for What are the best SQL Server performance optimization techniques? Simon Munro 2008-09-19T16:41:44Z 2008-09-19T16:41:44Z <p>Make sure you are profiling using production volumes - in terms of number of rows <strong>and</strong> load. The queries and their plans behave differently under different load/volume scenarios</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101112#101112 0 Answer by Simon Munro for what is an ideal variable naming convention for loop variables? Simon Munro 2008-09-19T11:04:56Z 2008-09-19T11:04:56Z <p>My habit is to use 't' - close to 'r' so it follows easily aftewr typing 'for'</p> http://stackoverflow.com/questions/100772/c-training-videos/100800#100800 5 Answer by Simon Munro for C# Training videos Simon Munro 2008-09-19T09:45:06Z 2008-09-19T09:45:06Z <p><a href="http://www.dimecasts.net" rel="nofollow">http://www.dimecasts.net</a></p> <p>ALT.net content</p> http://stackoverflow.com/questions/87576/does-anyone-have-a-good-example-of-controlling-multiple-excel-instances-from-a-n/90833#90833 3 Answer by Simon Munro for Does anyone have a good example of controlling multiple Excel instances from a .Net app? Simon Munro 2008-09-18T08:01:33Z 2008-09-18T08:01:33Z <p>Don't do it!</p> <p>We tried for weeks to get something like that to work and it simply does not behave as advertised. Don't even start - give up immediately!</p> <p>The only options that you really have is a heavy server-side MOSS based implementation - Excel (Web) services (they call it something like that). Windows based COM Excel interop is pretty much dead and will be replaced by MOSS.</p> <p>The other option is to use SpreadsheetGear. It is actually a fantastic product</p> <ol> <li>It is lightlingly fast</li> <li>The engine is separate from the UI so you can use it to do Excel stuff server side (with no office installed)</li> <li>Fairly cheap</li> <li>Has an API similar to the existing Excel COM api so moving code across is relatively easy</li> </ol> <p>It all depends on the formulas that you need in your spreadsheet. Have a look at the formula list for Spreadsheet Gear and if there is a match go for it.</p> http://stackoverflow.com/questions/88489/when-is-a-browser-considered-dead/90788#90788 -2 Answer by Simon Munro for When is a browser considered "dead"? Simon Munro 2008-09-18T07:49:20Z 2008-09-18T07:49:20Z <p>It's simple - most users keep using the browser that came with the PC when they bought it (think of your mom). The browser is dead when the machines that it pre-installed with are not longer used for Internet access... which is probably around 5 years. As prices of new PC's drops and they become more of a consumer electronics item then this period will drop as people will easily buy a new PC</p> http://stackoverflow.com/questions/88651/best-way-of-getting-notifications-in-sql-server-reporting-services-using-notifica/90762#90762 0 Answer by Simon Munro for Best way of getting notifications in SQL Server Reporting Services using Notification Services Simon Munro 2008-09-18T07:44:04Z 2008-09-18T07:44:04Z <p>I wouldn't go down the ntofications services route - it is pretty much a deprecated feature of SQL Server and even if it is around in future it will stagnate. So don't build a dependency on it.</p> http://stackoverflow.com/questions/29743/how-to-select-an-sql-database/43590#43590 0 Answer by Simon Munro for How to select an SQL database? Simon Munro 2008-09-04T12:13:08Z 2008-09-04T12:13:08Z <ul> <li>Linux, Web Hosted - MySQL (PostreSQL maybe)</li> <li>Mainstream SME - MS SQL</li> <li>Big Iron (banking etc) - Oracle</li> </ul> <p>Thinking about anything other than those three is masturbation - any of the other databases becomes a discussion about niche products to solve particular problems that you probably haven't encountered yet. If you choose anything other than the three above you will -</p> <ol> <li>Struggle to find people to work on the project or keep the database going</li> <li>Struggle to motivate your decision without an academic discussion</li> <li>Someone will curse you, your ancestors and your lineage a few years down the line - and replace your choice anyway.</li> </ol> <p>Niche databases are not where architectural strides are made - it is technologies like middleware, messaging, cloud services etc where you can afford to (and should) go out on a limb to find good products.</p> http://stackoverflow.com/questions/1930537/how-do-you-generate-insert-stored-procedures-for-all-tables-in-a-sql2008-database Comment by Simon Munro on How do you generate INSERT stored procedures for all tables in a SQL2008 database? Simon Munro 2009-12-18T20:48:08Z 2009-12-18T20:48:08Z Duplicate question - <a href="http://stackoverflow.com/questions/422847/are-there-any-free-tools-to-generate-insert-into-scripts-in-ms-sql-server" rel="nofollow" title="are there any free tools to generate insert into scripts in ms sql server">stackoverflow.com/questions/422847/&hellip;</a> http://stackoverflow.com/questions/1907629/what-books-on-windows-azure-and-development-for-cloud-architectures-would-you-rec/1908841#1908841 Comment by Simon Munro on What books on Windows Azure and development for cloud architectures would you recommend? Simon Munro 2009-12-15T18:01:44Z 2009-12-15T18:01:44Z I would agree that Roger Jennings' was produced to soon to be completely useful http://stackoverflow.com/questions/482856/remove-xml-namespaces-from-wcf-restful-response/604801#604801 Comment by Simon Munro on Remove xml namespaces from WCF restful response Simon Munro 2009-04-30T14:31:45Z 2009-04-30T14:31:45Z This works but you may need to put [DataMember] attributes on fields to ensure that the xml is not empty http://stackoverflow.com/questions/639289/when-should-you-map-a-column-to-enum-type-in-code Comment by Simon Munro on When should you map a column to Enum type in code Simon Munro 2009-03-12T16:15:51Z 2009-03-12T16:15:51Z There are three genders in the domain (seriously). M, F &amp; U - U can be Unknown, Undeclared, (less seriosuly) Unsure, Undecided http://stackoverflow.com/questions/253324/how-can-i-get-sql-server-column-definition-with-parentheses-and-everything/253330#253330 Comment by Simon Munro on How can I get SQL Server column definition with parentheses and everything? Simon Munro 2008-10-31T12:39:32Z 2008-10-31T12:39:32Z I don't realy want a script for the whole table. I am trying to get resolvable datatypes in include in generated XQuery http://stackoverflow.com/questions/211895/storing-documents-as-blobs-in-a-database-any-disadvantages/211910#211910 Comment by Simon Munro on Storing Documents as Blobs in a Database - Any disadvantages? Simon Munro 2008-10-17T13:07:33Z 2008-10-17T13:07:33Z Sorry 1000's. But pushing it to 100,000's is going to cause problems http://stackoverflow.com/questions/204025/database-design-for-database-agnostic-applications/204060#204060 Comment by Simon Munro on Database design for database-agnostic applications Simon Munro 2008-10-15T08:45:31Z 2008-10-15T08:45:31Z I like the triggers suggestion http://stackoverflow.com/questions/191974/what-relational-database-innovations-have-there-been-in-the-last-10-years/191987#191987 Comment by Simon Munro on What relational database innovations have there been in the last 10 years Simon Munro 2008-10-10T16:04:52Z 2008-10-10T16:04:52Z Vendor specific is definitely important - after all that is where the innovation is since the ANSI92 departure http://stackoverflow.com/questions/186314/where-in-javascript-is-the-request-coming-from/186334#186334 Comment by Simon Munro on Where in JavaScript is the request coming from? Simon Munro 2008-10-10T10:13:39Z 2008-10-10T10:13:39Z I tried this. It is a cool add-in, but doesn't tell me where in the JavaScript the request is coming from http://stackoverflow.com/questions/186314/where-in-javascript-is-the-request-coming-from/186473#186473 Comment by Simon Munro on Where in JavaScript is the request coming from? Simon Munro 2008-10-09T09:57:42Z 2008-10-09T09:57:42Z thats not a bad idea http://stackoverflow.com/questions/149226/characteristics-of-a-death-march-project/149887#149887 Comment by Simon Munro on Characteristics of a Death March project Simon Munro 2008-10-07T08:05:02Z 2008-10-07T08:05:02Z This is so true. It is the difference in the reality of the situation between dev and management that makes it death-march http://stackoverflow.com/questions/165828/transactional-queueing-dequeueing/165873#165873 Comment by Simon Munro on Transactional queueing/dequeueing Simon Munro 2008-10-03T09:15:43Z 2008-10-03T09:15:43Z SSB uses endpoints that are configured to use a UDP port. So the firewall can be configured to match http://stackoverflow.com/questions/103422/simple-way-to-parse-a-persons-name-into-its-component-parts/103475#103475 Comment by Simon Munro on Simple way to parse a person's name into its component parts? Simon Munro 2008-09-19T17:10:23Z 2008-09-19T17:10:23Z Agreed. In additional to other comments you run the risk of <b>seriously</b> pissing people off because you are ignorant of the cultural issues on how their name is composed. http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102754#102754 Comment by Simon Munro on What was your first home computer? Simon Munro 2008-09-19T17:07:10Z 2008-09-19T17:07:10Z I 'moved up' to programming in SuperPilot