Nav Bar

jueves, 18 de octubre de 2012

Hi all,
As you should know, when developing an application, it is extremely important to keep track of the different versions and updates that we come up with. At some point, we might want to take a different approach and do a new branch of our code, we could be considering trying new features or any fancy new things. With version control softwares we can do this and still keep our main thread of the code, the trunk. These kind of software also provide great capabilities for teamworking. Another great feature these softwares have, is the possibility to close a version. Sometimes in app developing, you might have to hand in a deliverable during the process of development, that is why tags exist. They close a version, and provide the possiblity to come back and start developing from that checkpoint.


 Possible scenario for an app lifecycle
I usually use Eclipse for application programming, depending on the platform obviously, and there are two possiblities for using the Subversion (version control software) in this IDE: Subclipse or Subversive. The one I decided to use? Subversive, which is developed and supported by the eclipse team. Now I´m going to try to explain how to fork a project and start developing and looking around different folders.
After Subversive is installed, we should open a new perspective window in our Eclipse in order to be able to browse through our repository. To open the perspective: Window > Open Perspective > Other and we look for the SVN Repository Exploring.
In that perspective, we have two main options: Create a new repository, or set a new location where we already have a repository. We would have to fill in a couple of settings, and we should see the repository in that view.
Now, to start working or checking code from the project, we must download it to our computer. To do so, we check the trunk or brunch we want to download, right-click with the mouse, and select Check-out. Then we will have the project in our projects view.

Image from: Resource

Installing Groovy on Rails Tool Suite

I just found out this amazing video tutorial to step-by-step install correctly all the environment to start coding in grails. I thought I´d share it because I was having issues with my installation:
Resource

lunes, 15 de octubre de 2012

Creating a project for MS Surface


Today I want to talk about first steps with Microsoft Surface SDK. After installing the necessary versions of Visual Studio and XNA Framework our computer should be ready for the SDK 2.0 installation. I will be following the steps on: http://goo.gl/gFAkz Download the SDK from: http://goo.gl/mxrxH
  • Creating our first project: Open Visual Studio or Microsoft Visual C# 2010 and click on File>New Project and select the 2.0 SDK under Surface. Create a new Surface Application (WPF). WPF stands for Windows Presentation Foundation, and these applications can be built as .NET Framework executables (.exe), libraries (.dll) or a combination of both types (more info: http://goo.gl/xMqOC).
  • The XAML file created is the base for the User Interface (UI) of the application. Its base element is the SurfaceWindow element. The C# code generated contains three different event holders.