User Unsliced - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T11:16:25Zhttp://stackoverflow.com/feeds/user/2902http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1443446/bloomberg-api-request-timing-out0Bloomberg API request timing out Unsliced2009-09-18T09:28:15Z2009-11-24T14:57:37Z
<p>Having set up a ReferenceDataRequest I send it along to an EventQueue </p>
<pre><code>Service refdata = _session.GetService("//blp/refdata");
Request request = refdata.CreateRequest("ReferenceDataRequest");
/* append the appropriate symbol and field data to the request
*/
EventQueue eventQueue = new EventQueue();
Guid guid = Guid.NewGuid();
CorrelationID id = new CorrelationID(guid);
_session.SendRequest(request, eventQueue, id);
long _eventWaitTimeout = 60000;
myEvent = eventQueue.NextEvent(_eventWaitTimeout);
</code></pre>
<p>Normally I can grab the message from the queue, but I'm hitting the situation now that if I'm making a number of requests in the same run of the app (normally around the tenth), I see a <code>TIMEOUT</code> EventType </p>
<pre><code>if (myEvent.Type == Event.EventType.TIMEOUT)
throw new Exception("Timed Out - need to rethink this strategy");
else
msg = myEvent.GetMessages().First();
</code></pre>
<p>These are being made on the same thread, but I'm assuming that there's something somewhere along the line that I'm consuming and not releasing. </p>
<p>Anyone have any clues or advice? </p>
<p>There aren't many references on SO to BLP's API, but hopefully we can start to rectify that situation. </p>
http://stackoverflow.com/questions/1443446/bloomberg-api-request-timing-out/1790616#17906160Answer by Unsliced for Bloomberg API request timing out Unsliced2009-11-24T14:57:37Z2009-11-24T14:57:37Z<p>I didn't really ever get around to solving this question, but we did find a workaround. </p>
<p>Based on a small, apparently throwaway, comment in the Server API documentation, we opted to create a second session. One session is responsible for static requests, the other for real-time. e.g. </p>
<pre><code>_marketDataSession.OpenService("//blp/mktdata");
_staticSession.OpenService("//blp/refdata");
</code></pre>
<p>The means one session operates in subscription mode, the other more synchronously - I think it was this duality which was at the root of our problems. </p>
<p>Since making that change, we've not had any problems. </p>
http://stackoverflow.com/questions/178141/unknown-significant-moments-of-computing-history8Unknown significant moments of computing historyUnsliced2008-10-07T12:04:57Z2009-11-22T08:19:24Z
<p>Computing as a discipline in its own right (rather than as a discussion of whether it is Mathematics or Physics) is a reasonably young science. Wherever you trace its roots (e.g. Turing's paper in 1936, Babbage's engines, ATLAS, ENIAC or LEO) it's much younger than most modern nation states. </p>
<p>I've been programming (using the loosest definition) for close to 30 years but it still seems to me that I come across parts of its history that are new to me. While it shouldn't surprise me that while I studied computing at school, at University, post-grad and now as a day-job, that there is stuff I don't know, it still causes a small pause when I read an article about something which seems pivotal but about which I know absolutely nothing. </p>
<p>For instance, <a href="http://www.theregister.co.uk/2008/10/07/software_engineering_birthday/" rel="nofollow">this news item</a> describes a conference which looks to have sown the seeds for many things that have come since. It was 1968, the world was young, IBM was old, Microsoft and Sun barely in glint in their creators' eyes; the notion of separating hardware and software was new, the largest institutions had networks that numbered in the dozens of machines. Yet some of their conclusions are fresh and remain unresolved, in particular managing large projects. (The <a href="http://www.europrog.ru/book/nato1968e.pdf" rel="nofollow">proceedings</a> are fascinating and full of lessons for the future software engineer.) </p>
<p>The question is YASOP (*) - what piece of computing history do you think still has significance to our current industry but you feel people don't know enough about? </p>
<p>(*) Yet Another Stack Overflow Poll </p>
http://stackoverflow.com/questions/200314/strange-cross-threading-ui-errors4Strange cross-threading UI errorsUnsliced2008-10-14T07:58:32Z2009-11-20T09:37:41Z
<p>I'm writing a WinForms app which has two modes: console or GUI. Three projects within the same solution, one for the console app, one for the UI forms and the third to hold the logic that the two interfaces will both connect too. The Console app runs absolutely smoothly. </p>
<p>A model which holds the user-selections, it has an <code>IList<T></code> where T is a local object, <code>Step</code>, which implements <code>INotifyPropertyChanged</code>, so in the UI this is mounted on to a DataGridView. All is fine at runtime, the initial state of the objects is reflected on the screen. </p>
<p>Each of the <code>Step</code> objects is a task which is performed in turn; some of the properties will change, being reflected back to the IList and passed on to the DataGridView. </p>
<p>This action in the UI versions is done by creating a BackgroundWorker raising events back to the UI. The <code>Step</code> does it thing and generates a <code>StepResult</code> object which is an enumerated type indicating a result (e.g. Running, NotRun, OK, NotOK, Caveat) and a string to indicate a message (because the step ran but not quite as expected, i.e. with a Caveat). Normally the actions will involve a database interaction, but in debug mode I randomly generate a result. </p>
<p>If the message is null, there's never a problem, but if I generate a response like this: </p>
<pre><code>StepResult returnvalue = new StepResult(stat, "completed with caveat")
</code></pre>
<p>I get an error saying that the DataGridView was being accessed from a thread other than the thread it was created on. (I'm passing this through a custom handler which should handle the invoking when required - maybe it doesn't?) </p>
<p>Then if I generate a unique response, e.g. using a random number <code>r</code>: </p>
<pre><code>StepResult returnvalue = new StepResult(stat, r.ToString());
</code></pre>
<p>the actions succeed with no problem, the numbers are written cleanly to the DataGridView.</p>
<p>I'm baffled. I'm assuming it's somehow a string literal problem, but can anyone come up with a clearer explanation? </p>
http://stackoverflow.com/questions/1098870/is-ankhsvn-a-good-alternative-to-visual-sourcesafe/1729579#17295790Answer by Unsliced for Is AnkhSVN a good alternative to Visual SourceSafe?Unsliced2009-11-13T14:33:11Z2009-11-13T14:33:11Z<p>I use a combination of SmartSVN, with Ankh's integration into Visual Studio is a winner. They sit side-by-side very well. </p>
<p>VSS was awful, but being able to use it within the VS IDE was about its only plus point. </p>
http://stackoverflow.com/questions/1721312/i-have-two-lists-of-e-mail-addresses-that-i-paste-into-outlook-how-can-i-remove/1721329#17213290Answer by Unsliced for I have two lists of e-mail addresses that I paste into outlook. How can I remove duplicates?Unsliced2009-11-12T10:31:51Z2009-11-12T10:31:51Z<p>To be honest, this doesn't really sounds like much of a programming problem, but if it were then you've got a code-based approach</p>
<ol>
<li>Grab the two lists into arrays</li>
<li>merge the arrays </li>
<li>remove duplicates</li>
<li>Use this list </li>
</ol>
<p>or a database-based approach </p>
<ol>
<li>Insert each list into a database table </li>
<li>Do a select distinct</li>
<li>Now paste the results into Outlook. </li>
</ol>
http://stackoverflow.com/questions/1195346/unsolved-problems-in-software-engineering5Unsolved problems in Software EngineeringUnsliced2009-07-28T16:51:36Z2009-11-07T03:47:21Z
<p>In a recent question on unsolved issues in Computer Science, one answer was, probably correctly, criticised for not strictly being a CS problem, but a <a href="http://stackoverflow.com/questions/1192573/computer-science-problems-that-have-yet-to-be-solved/1192600#1192600">software engineering one</a>. </p>
<p>In software engineering we have best practices, patterns, methodologies and templates, perhaps because <a href="http://stackoverflow.com/questions/141502/what-differentiates-software-engineering-from-any-other-engineering-discipline">it's quite a woolly</a> area - probably more art than science - everyone has their own way of solving their problems, whether big or little (we've all got our utility library, right?) </p>
<p>So what are the big unsolved problems in Software Engineering? And why are they still unsolved, what's stopping us from having nailed-on solutions? </p>
http://stackoverflow.com/questions/1672588/funniest-code-names-for-software-projects/1673064#16730642Answer by Unsliced for Funniest code names for software projectsUnsliced2009-11-04T10:57:45Z2009-11-04T10:57:45Z<p>We code-named the projects within our business area after lakes, we were an international group so it was one way for the project leaders to honour their home countries, we had Michigan, Ohio, Lucerne, Windermere and so on. </p>
<p>My favourite was Ness. After a while the project, as many do, started to go late but it had way more bugs than were expected. So we obviously blamed the mythical monster lurking in its depths ... </p>
http://stackoverflow.com/questions/1543605/getting-no-of-rows-affected-after-running-select-query-in-sql-server-2005/1543622#15436220Answer by Unsliced for Getting no. of rows affected after running select query in SQL Server 2005Unsliced2009-10-09T13:05:11Z2009-10-09T13:05:11Z<pre><code>select @@ROWCOUNT
</code></pre>
<p>(e.g. <a href="http://stackoverflow.com/questions/174143/counting-the-number-of-deleted-rows-in-a-sql-server-stored-procedure">http://stackoverflow.com/questions/174143/counting-the-number-of-deleted-rows-in-a-sql-server-stored-procedure</a> ) </p>
http://stackoverflow.com/questions/1502507/where-do-you-go-to-get-high-quality-distributed-developers/1502522#15025220Answer by Unsliced for Where do you go to get high quality distributed developers?Unsliced2009-10-01T07:59:53Z2009-10-01T07:59:53Z<p><a href="http://jobs.stackoverflow.com/" rel="nofollow">http://jobs.stackoverflow.com/</a> </p>
http://stackoverflow.com/questions/1496792/how-to-store-a-date-in-a-mysql-database/1496879#14968791Answer by Unsliced for how to store a date in a mysql database?Unsliced2009-09-30T08:54:31Z2009-09-30T08:54:31Z<p>I think you're mixing up what you are storing - the date itself - with how that date is subsequently referred to. </p>
<p>Why do you want to store in a particular format? Do you want to insert in that format? In which case you might be able to get away with it, depending on the localisation of your install, but otherwise convert - insert would be the way to do it (depending, of course, on how you're inserting). </p>
<p>Are you creating a SQL command from strings? </p>
http://stackoverflow.com/questions/1486420/how-can-i-enhance-the-aesthetics-of-an-ugly-windows-form-packed-with-too-many-ne/1486535#14865350Answer by Unsliced for How can I enhance the aesthetics of an ugly windows form packed with too many (necessary) features?Unsliced2009-09-28T11:17:42Z2009-09-28T11:17:42Z<p>Duplication - they might all have to be available instantly, but they could be available elsewhere as well. So you can have a keyboard accelerator, menu option, detachable panel, tabbed area ... </p>
<p>So this existing form could be the main, default interface (albeit improved with some of the other good design tips in other answers), but why not create an "expert" panel which can be a lot neater and try to work your users on to that, and away from this old "do everything" blotter. </p>
http://stackoverflow.com/questions/1431670/underestimate-and-therefore-undercharge-your-clients-what-would-you-do/1431711#14317113Answer by Unsliced for Underestimate and therefore undercharge your clients-- what would you do?Unsliced2009-09-16T08:34:06Z2009-09-16T08:34:06Z<p>Talk to your client. There are numerous variables in estimating and if there were honest reasons for the misculation then they're not going to want you to do a slapdash job just to not lose too much money. </p>
<p>@Jay Riggs is probably right though, especially if you won the contract against other higher bidders, you will probably have to eat it. </p>
http://stackoverflow.com/questions/674071/group-and-subtotal-columns-in-reporting-services-20050Group and subtotal columns in Reporting Services 2005 Unsliced2009-03-23T16:24:16Z2009-09-02T07:00:03Z
<p>I have a report (RS2005, against a MSSS2005 instance) which I have inherited. It shows a basic table of data: a handful of key fields which are used to group rows together, a few basic numeric fields, then a number of dated ('bucketed') fields (e.g. 1 month away, 2 months, 6 months, a year, 2 years, etc.) </p>
<p>The user would like to group together these dated fields in aggregated groups and be able to collapse or expand the <strong>columns</strong> as you can the rows. So we'd be able to show the next year's values' subtotal or expand it to break it out by month. Hiding the invidual months if the subtotal is shown. </p>
<p>This is basic pivot table behaviour (and can be done with the Group/Subtotal feature on Excel - that's the closest analogous behaviour I could use to describe the requirements). </p>
<p>While grouping by rows seems trivial in RptgSvcs, grouping columns and collapsing a group into a single subtotal and blowing it out again, seems hard to impossible. </p>
<p>Unless someone knows better? </p>
http://stackoverflow.com/questions/1346565/is-age-a-problem-to-being-recruited-as-programmer/1346650#13466500Answer by Unsliced for Is age a problem to being recruited as programmer?Unsliced2009-08-28T12:16:55Z2009-08-28T12:16:55Z<p>Yes and no. As <a href="http://stackoverflow.com/questions/37671/should-developers-worry-about-ageism/37860#37860">I answered to a very similar question</a>, it's a very definite problem but sometimes there are solid reasons for why older programmers struggle to find work, e.g. experience costs, go young means going cheap. That works for my budget. </p>
http://stackoverflow.com/questions/1339624/sql-select-unique-rows-from-a-group-of-results/1339687#13396870Answer by Unsliced for SQL - Select unique rows from a group of resultsUnsliced2009-08-27T08:35:34Z2009-08-27T08:35:34Z<p>You want embedded queries, which not all SQLs support. In t-sql you'd have something like </p>
<pre><code>select r.registration, r.recent, t.id, t.unittype
from (
select registration, max([date]) recent
from @tmp
group by
registration
) r
left outer join
@tmp t
on r.recent = t.[date]
and r.registration = t.registration
</code></pre>
http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/750802#7508027Answer by Unsliced for What technologies are you using even though they are embarassingly out of date?Unsliced2009-04-15T08:37:39Z2009-08-26T13:41:57Z<p>By definition, anything still being used is not obsolete, but in terms of deprecated processes, we still have some Windows/DOS batch files knocking around - they still work and we don't have the time or inclination to rebuild them solely to have a newer technology achieve exactly the same result. </p>
http://stackoverflow.com/questions/1333317/output-a-watched-visual-studio-variable-to-a-file0Output a watched Visual Studio variable to a fileUnsliced2009-08-26T08:59:37Z2009-08-26T10:16:52Z
<p>Is there a way in Visual Studio (2008 if it matters) that I can, in debug/break mode, write the contents of a variable to a text/XML file? </p>
<p>The scenario is that I have a long process running in debug and I have realised too late that I haven't logged enough detail about the events that the process has been monitoring, but fortunately a history is still available within a variable in the code. </p>
<p>I could trawl through the tens of thousands of items in this list, but it's not going to persist once I hit stop on the app ... there is no obvious context option for this, but is there any way, a better way than manual? Or is there no hope and I just need to hit stop, re-tool the logging function and run the thing again? </p>
<p>Aside from trying to hit a break point, modify the code and re-write to make a better logger, is there a way of not losing that in-memory data? </p>
http://stackoverflow.com/questions/1195346/unsolved-problems-in-software-engineering/1198758#11987580Answer by Unsliced for Unsolved problems in Software EngineeringUnsliced2009-07-29T08:25:11Z2009-08-25T09:24:13Z<p>Databases under source control. </p>
<p>How to ensure that schema changes, data updates, permissions and so on are accurately reflected. In particular, the deltas between versions. </p>
<p>The database pro version of Visual Studio/TFS seems to have some good tools but having a <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">Subversion</a>-like view on the database would be a great thing. </p>
http://stackoverflow.com/questions/1311762/design-patterns-and-interview-question/1311854#13118543Answer by Unsliced for Design patterns and interview questionUnsliced2009-08-21T13:12:25Z2009-08-21T13:12:25Z<p>In the same way as interviewees will be reciting stock answers to questions like this one, the interviewer might well be doing the same thing. I have a list of questions that I run through with candidates, many of these questions are easy, none of them are tricks, none of them particularly inventive. </p>
<p>Believe me, I've seen many candidates whose resume/CV looks stunning but, when confronted with relatively straightforward questions, just crumbled. By asking this question they are hoping to hear you talk about your experience - even if you just say what you've just written, that you've used them in a particular way but not another, you're helping them out. A good interviewer is listening to what you say and how you get there, not just for the stock answer on their sheet. </p>
<p>The difference between someone giving you a book answer and someone actively trying to describe their own thoughts and experiences is gratifyingly obvious. </p>
<p>Your first answer might have disappointed as you might not have seemed like you were trying to meet the interviewer halfway - why are you being asked the question? The questions might be better thought out, but the bad candidates will react worse than the good - and that's the key. </p>
http://stackoverflow.com/questions/9314/could-not-find-type-error-loading-a-form-in-the-designer/1293135#12931350Answer by Unsliced for "Could not find type" error loading a form in the DesignerUnsliced2009-08-18T10:52:14Z2009-08-18T10:52:14Z<p>I had something similar - a user control was referring to a remote serice (which I couldn't guarantee being available at design time). </p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/6d3147b0-8343-44aa-a191-f0e58b96c7ea" rel="nofollow">This post on MSDN</a> suggested that I add </p>
<pre><code>if (this.DesignMode) return;
</code></pre>
<p>to the Load function of the control, or in my case to the point before the WCF client was initialised. That did the trick. </p>
<p>So</p>
<pre><code>private readonly Client _client = new Client();
</code></pre>
<p>becomes</p>
<pre><code>private Client _client;
public new void Load()
{
if(DesignMode) return;
_client = new Client();
}
</code></pre>
http://stackoverflow.com/questions/1255148/how-can-i-make-my-web-page-not-be-copied/1255231#12552310Answer by Unsliced for How can I make my web page not be copied?Unsliced2009-08-10T14:29:32Z2009-08-10T14:29:32Z<p>Anything on a web browser that can be seen by eyes can be copied by computer - by definition that has to be the case because at least one computer (your viewer's) is already doing just that. </p>
<p>If a user wants to copy your data they will do, the best you can do is impose conditions on their accessing your site that penalises later transgression. </p>
http://stackoverflow.com/questions/1220541/comparison-between-crystal-report-and-raq-report/1226624#12266241Answer by Unsliced for Comparison between Crystal Report and RAQ ReportUnsliced2009-08-04T09:54:27Z2009-08-04T09:54:27Z<p>I notice that the asker seems related to the product. Might I suggest the SO question "<a href="http://stackoverflow.com/questions/44402/is-it-bad-etiquette-to-mention-your-own-products-in-a-stackoverflow-answer/44418#44418">Is it bad etiquette to mention your own products in a StackOverflow answer?</a>" as being relevant here? </p>
http://stackoverflow.com/questions/1220541/comparison-between-crystal-report-and-raq-report/1223180#12231802Answer by Unsliced for Comparison between Crystal Report and RAQ ReportUnsliced2009-08-03T16:05:25Z2009-08-03T16:05:25Z<p>If you're considering Crystal Reports you should probably audition MSFT's own Reporting Services. Many of the key points of CR (API, canned reports, export to various formats) are just as applicable to Reporting Services. </p>
<p>I've never used RAQ, but if it's a new product you'd have to wonder about how long it will be around, how easy it will be to maintain going forward and whether you can employ someone with skills in it. While CR might not be the easiest platform and its future under SAP isn't entirely clear, it is a mature product with a decent ecosystem and plenty of sources of help. </p>
<p>(The same can also be said of MSRS.) </p>
http://stackoverflow.com/questions/1193697/storing-password-in-databases-in-plain-text-vs-customer-needs/1193773#11937730Answer by Unsliced for Storing Password in Databases in plain text vs Customer NeedsUnsliced2009-07-28T12:26:53Z2009-07-28T12:26:53Z<p>Demonstrations and explanations are most useful, but when you say you are to "renew" the Application, are you working from documentation, a functional or technical specification? </p>
<p>Asking to be involved in finalising these documents and included in their sign-off would be a good idea. </p>
<p>Ultimately, it <strong>is</strong> a need for the customer, they just don't realise it yet. </p>
http://stackoverflow.com/questions/1187279/what-are-the-best-cities-of-europe-to-pursue-a-career-as-a-software-developer-eng/1187300#11873003Answer by Unsliced for What are the best cities of Europe to pursue a career as a Software developer/engineer?Unsliced2009-07-27T09:43:23Z2009-07-27T09:43:23Z<p>Wherever the company you want to work for is located, using a language you're comfortable in. </p>
<p>Personally, I'd say that's London because there is a lot of work here, I speak English and I've lived here for 20 years. </p>
<p>There's no one answer to the question. </p>
http://stackoverflow.com/questions/1137113/which-is-more-advantageous-learning-new-languages-or-increasing-knowledge-of-one/1160563#11605632Answer by Unsliced for Which is more advantageous: Learning new languages or increasing knowledge of ones you already know?Unsliced2009-07-21T17:24:45Z2009-07-21T17:24:45Z<p>As an employer I want to see a varied background - it shows to me an ability and willingness to learn, but you need to be able to be good enough in one/some so as to be able to jump the qualification hurdles. </p>
<p>So if there are too many, especially if it is at the expense of becoming too skilled in any one, then I will wonder about your motives. Are you doing them to pad out your skills or because you've genuinely found them to be useful. I want to employ someone who'll be doing the job, not always playing around with the shiniest new toys. </p>
http://stackoverflow.com/questions/1147151/should-net-test-classes-reside-in-a-different-project/1147167#11471670Answer by Unsliced for Should .Net test classes reside in a different project?Unsliced2009-07-18T10:08:42Z2009-07-18T10:08:42Z<p>Yes - you're testing external references. You can be in the same solution, although even that is considered a bit of a shortcut by some purists. </p>
http://stackoverflow.com/questions/371897/when-do-you-say-i-have-learnt-this-new-language/1118531#11185310Answer by Unsliced for When do you say "I have learnt this new language"Unsliced2009-07-13T09:46:24Z2009-07-13T09:46:24Z<p>A lesson I learned when I was teaching and taking tutorials: stay (at least) one step ahead of your class. </p>
<p>Whether you say something (and how you say it) is determined by your audience. You might be a Perl guru, but if you're chatting to Larry Wall, then you'll react differently to if you're talking to your Dad. </p>
<p>But for new languages there are normally "ah-hah" moments, when you realise why they're different (or how they're similar) and why you might choose them over other options. That's normally my moment. </p>
http://stackoverflow.com/questions/1092117/msss-management-studio-object-explorer-changes-from-2005-to-20081MSSS Management Studio Object Explorer changes from 2005 to 2008Unsliced2009-07-07T12:46:55Z2009-07-07T14:15:06Z
<p>I'm connecting to a database server (MSSS 2005, 9.0 SP2) which is almost totally without my control. </p>
<p>If I connect to it using Management Studio 2005 I can browse the list of tables, views, other objects in some of the databases using object explorer. </p>
<p>If I connect to it using Management Studio 2008, I cannot see the list. I can write queries against them so the objects are there, but I cannot browse them.</p>
<p>Can anyone suggest what permissions I'm lacking or what (default) options are changed in the newer version? </p>
http://stackoverflow.com/questions/1705914/programmatically-generating-excel-workbook-with-pivots-and-charts/1705946#1705946Comment by Unsliced on Programmatically generating Excel workbook with pivots and chartsUnsliced2009-11-13T09:11:56Z2009-11-13T09:11:56ZI would absolutely concur: creating pivots on the fly is doable in VBA, but much easier to set one up in advance and then just pump in the data and recalc. http://stackoverflow.com/questions/506549/convert-dates/506596#506596Comment by Unsliced on Convert Dates Unsliced2009-11-09T17:02:57Z2009-11-09T17:02:57ZVirtual +1 for the HH comments to Jon and Marc. I've just spent an hour thinking "that worked this morning" ... :) http://stackoverflow.com/questions/407448/the-application-that-helped-your-programming-the-most-in-2008/407481#407481Comment by Unsliced on The Application that helped your programming the most in 2008Unsliced2009-10-23T10:20:19Z2009-10-23T10:20:19ZHow is that 2008, though, hasn't Firebug been around for longer? http://stackoverflow.com/questions/1502507/where-do-you-go-to-get-high-quality-distributed-developersComment by Unsliced on Where do you go to get high quality distributed developers?Unsliced2009-10-01T07:59:14Z2009-10-01T07:59:14ZDo you mean the development of distributed applications, e.g. client-server, grid, parallised apps, etc., or remote working in small geo-distributed teams? http://stackoverflow.com/questions/1443446/bloomberg-api-request-timing-out/1443610#1443610Comment by Unsliced on Bloomberg API request timing out Unsliced2009-09-18T12:38:35Z2009-09-18T12:38:35ZThanks. That's a very similar construction (and does like like the example code) - there are no unconsumed messages that I can see in previous calls through this function.
If I call it just once, it's fine, but it's barfing after multiple calls. I think it might be related to a concurrent subscription to some RealTime fields, but it's quite hard to nail down ... http://stackoverflow.com/questions/1385243/how-to-write-a-calculation-query-in-sqlComment by Unsliced on How to write a calculation query in SQL?Unsliced2009-09-06T09:04:51Z2009-09-06T09:04:51ZIn what way does that query not work for you?http://stackoverflow.com/questions/1339624/sql-select-unique-rows-from-a-group-of-results/1339687#1339687Comment by Unsliced on SQL - Select unique rows from a group of resultsUnsliced2009-08-28T08:13:29Z2009-08-28T08:13:29Zviews can certainly be expensive - consider perhaps taking a snapshot of the needed data into a temporary table/table variable? http://stackoverflow.com/questions/1283640/selecting-random-rows-in-mysql/1283642#1283642Comment by Unsliced on Selecting Random Rows in MySQLUnsliced2009-08-19T10:24:43Z2009-08-19T10:24:43ZStore the questions that that user has seen in a table and then construct this query left joining to that table and where the seen table's field is null. http://stackoverflow.com/questions/1288696/linkedlistt-2-0-removing-items-iteratively/1288753#1288753Comment by Unsliced on LinkedList<T> (2.0): removing items iterativelyUnsliced2009-08-17T15:54:36Z2009-08-17T15:54:36ZI actually quite like that idea ... http://stackoverflow.com/questions/375801/when-hiring-testers-and-or-developers-what-do-you-do-with-resumes-and-spelling/377847#377847Comment by Unsliced on When Hiring Testers (and/or Developers) what do you do with resumes and spelling mistakes?Unsliced2009-08-11T16:18:29Z2009-08-11T16:18:29ZIn an ideal world, you're quite right. Unfortunately this is rarely an ideal world. It's a rare recruitment organisation that doesn't butcher your CV in some way - mostly to remove personal references so that the employer can't contact you directly. Most will willingly show you how they are representing you - you should ask. You should definitely ask. http://stackoverflow.com/questions/1259686/school-timetable-generation-algorithmComment by Unsliced on School Timetable Generation AlgorithmUnsliced2009-08-11T11:37:04Z2009-08-11T11:37:04ZTo mis-quote Fermat, "I have a solution but this margin cannot contain it". http://stackoverflow.com/questions/1220541/comparison-between-crystal-report-and-raq-reportComment by Unsliced on Comparison between Crystal Report and RAQ ReportUnsliced2009-08-04T09:51:54Z2009-08-04T09:51:54ZIs it a coincidence that the user who asked the question has their website cited in the first answer? Looks like a shill to me. http://stackoverflow.com/questions/1205329/c-var-keyword-usageComment by Unsliced on C# var keyword usageUnsliced2009-07-30T09:05:48Z2009-07-30T09:05:48ZIt's still as good a question as when it was asked the last few times ... http://stackoverflow.com/questions/1195346/unsolved-problems-in-software-engineering/1195523#1195523Comment by Unsliced on Unsolved problems in Software EngineeringUnsliced2009-07-29T08:22:48Z2009-07-29T08:22:48ZI'd hesitate to accept an answer (and in a Community Wiki question, it's not really my place to impose an answer) - but this one is certainly my favourite so far. http://stackoverflow.com/questions/1192573/computer-science-problems-that-have-yet-to-be-solved/1192600#1192600Comment by Unsliced on Computer Science problems that have yet to be solvedUnsliced2009-07-28T16:41:00Z2009-07-28T16:41:00ZAnd, similarly, how to a database under source control. Definitely not a CS problem, but definitely not solved either.