• .net

    Tweaking MSDeploy arguments to keep existing files in folder during deployment to IIS

    by  • January 31, 2012 • .net, tfs, visual studio • 0 Comments

    I recently got into MSDeploy in order to automate the deployment of web application packages to IIS. A great resource that got me most of the way was Web Deployment Painkillers: Microsoft Visual Studio 2010 & MS Deploy, very useful in getting me started via TFS 2010/VS 2010. What this gave me was the following [...]

    Read more →

    Creating a MessageBox in Java

    by  • January 5, 2010 • .net, c#, java • 0 Comments

    I wanted to see if there was a Java equivalent of .NET’s MessageBox class. Turns out there is but it’s a little more hidden away as a static method on JOptionPane, so I’ve pasted the code here for referring to it in the future: JOptionPane.showMessageDialog(null,”message”,”title”)); This creates and shows a message dialog with no parent [...]

    Read more →

    Creating your own custom Grammar, and filtering recognition based on confidence

    by  • January 8, 2009 • .net, c#, grammar, speech recognition • 0 Comments

    This follows on from an earlier post, Speech Recognition and the System.Speech namespace, where I was trying to find out roughly what the the topic of a given set of unannotated lectures was. As expected, using the DictationGrammar didn’t help too much, in fact some of the results from the recogniser were pretty funny! So [...]

    Read more →

    Converting .doc to .docx programmatically

    by  • July 25, 2007 • .net, c# • 1 Comment

    I’ve been looking for something that can aid me in converting doc files and other formats to html, or some internal representation that I can do additional parsing on server side, and have come across some interesting applications such as PurePage, ConvertDoc etc. These are great, and have some nice, simple and effective API’s but unfortunately [...]

    Read more →

    .NET Evolved

    by  • May 18, 2007 • .net, c# • 0 Comments

    This year has been a great year for developers with the general release of the .NET Framework 3.0 that provides a new set of APIs to produce visually stunning client applications with the Windows Presentation Foundation (WPF), create distributed applications with the Windows Communication Foundation (WCF) and design and manage long-running, interconnected processes with the [...]

    Read more →