Pages

23 February 2013

Samsung Galaxy Note 8.0 Spotted at MWC

8-inch flavor of Samsung's Galaxy Note lineup was spotted at MWC show floor. Looks like it will cover up your hand whenever you are holding it.
Photo of Samsung Galaxy Note 8 at MWC.
Same as the predecessor, it will come with a stylus as well. As of now, there is no exact date when this device will be launched.

22 February 2013

Apple Release iOS 6.1.3 Beta

This Beta version is only available for registered developers and supports the iPhone, iPad, and iPod Touch. Some of the fixes for this future update:
  • Hole that can let someone gain access to your iPhone by sneaking past the lock screen.
  • Some enhancements to the Maps app for Japan.

Remove IBM ClearCase Bindings from a Visual Studio Solution

The ClearCase binding information is stored in the solution (.sln) and project (.##proj) files.

1) Browse to the solution_path\solution.sln file. Remove the entire GlobalSection entitled RationalClearCase, seen below, and save the file:
GlobalSection(RationalClearCase) = preSolution
SourceControlProvider = RationalClearCase
EndGlobalSection
2) For each project to unbind, browse to the project_path\project.sln file. Remove the SCC sections as shown below, and save the file:
SccProjectName="Rational ClearCase"
SccAuxPath="Rational ClearCase"
SccLocalPath="Rational ClearCase"
SccProvider="Rational ClearCase"
3) At this point the project can be reloaded into Visual Studio.