• Posts Tagged ‘Windows’

    Windows Phone 7 Gestures

    by  • September 23, 2010 • Programming • 2 Comments

    For those of you who haven’t heard, the Windows Phone 7 is coming out in October (I think the official release date is October 11th). I’m usually not very interested in news related to smart phones, in fact, I didn’t even know Microsoft had a Mobile division until the announcement of the new phone coming out. However, all Microsoft Summer 2010 interns were promised free Windows Phone 7s by Steve Ballmer himself.

    As such, I have begun to explore the SDK a fair bit, and plan on attempting to release a few apps to the marketplace. All development is done in C#, which when developing in Visual Studio is generally just a beautiful programming experience compared to working with Objective C in Xcode.…

    Read more →

    How to set up a Subversion server for Windows

    by  • September 21, 2010 • Guide, Programming • 1 Comment

    Version control is a crucial part of any sort of software development – whether it be school projects or high end software systems. It gives you a chance to back up your code to a repository or server, and relieves the worry of breaking your build without having anything to go back on.

    The model of checking into a repository is especially useful when the development of the project is distributed – either across different machines (from laptop to desktop) or with multiple developers that all need access to the source code for development.

    In the following guide, I outline an easy way to set up a lightweight version control system for personal use.…

    Read more →

    Installing Qwt on Windows

    by  • September 17, 2010 • Guide, Programming • 20 Comments

    I am writing this guide as a follow up to my Qt installation guide. Qwt is a graphics library built specifically for the Qt framework. I use it in my ReplayParser application to draw the APM chart, and it definitely saved a lot of time in that area of development. I haven’t had any problems in terms of the functionality of the library, but as many of the sourceforge users point out, the documentation is weak at best. So, I’ve decided to write a quick installation guide for those who are interested in utilizing this graphics library.

    This guide assumes that you have installed the latest version of Qt using my previous guide as well as Visual Studio 2008. As always, please feel free to comment if any of the instructions are misleading or I have left anything out in the guide.…

    Read more →

    Installing Qt 4.6 on Windows

    by  • January 5, 2010 • Guide, Programming • 13 Comments

    I have been using the Qt framework for awhile now and I started learning it from scratch to build my ReplayParser. Despite the great documentation that Nokia provides, getting everything installed and working isn’t as easy as it should be for someone completely new to the software. I put together this quick installation guide to help those interested in learning Qt on a Windows machine.

    Because this guide is intended for Windows users I compile everything using Visual Studio 2008, but MinGW builds are also possible (although not shown in this guide). The steps outlining the installation and building process are shown below.…

    Read more →