Visual Studio – Team System

VSTSStadium_3

Visual Studio Team System – VSTS 2010 Editions

Visual Studio Team System 2010 comes along Client and Server components:

Server Component:

Team Foundation Server 2010 is the Server component which manages the source control, assets, communication between VSTS client tools and integration of VSTS with other Microsoft family products like Project, Exchange, BizTalk, SharePoint etc.

Client Component:

Architecture Edition:

Helps Architects to visually model the applications, automatically generates code, logically verifies deployments etc.

Development Edition:

In the 2010 release Microsoft has merged the Database and Development editions. The combined editions now facilitate you with profiling tools, database design and development tools and .NET code analysis.

Test Edition:

Tool for testers for load testing, quality testing, test modeling, More >

facebook_logo.png

.NET API Get Facebook User Status, Comments, Picture and other details

Before you just jump into reading and implementing this post, please take a look on my posts earlier on how to get access_token and profile id (uid) for the current user on whose behalf you are making requests to Facebook.

http://geekdeck.com/vb-net-facebook-get-access-token-for-desktop-application/

http://geekdeck.com/net-get-facebook-user-profile-id-uid/

Once you have access to Access Token, Profile Id and you know to make HTTP requests and how to deal with XML responses, you can query Facebook to return you user status XML

Dim uristatus As String = “https://api.facebook.com/method/status.get?uids=” & _ProfileID & “&access_token=” & accesstoken & “&limit=3″        requesturl = GetPageAsString(uristatus)        ParseXML(requesturl)        TextBox1.Text = requesturl

You can have User’s last 3 statuses More >

facebook_logo

How to access Facebook API from .NET?

 No doubt Facebook has turned out to be the largest ever social networking platform. This gives an opportunity to developers to storm ideas and turn them into Facebook Apps which indeed are really popular in users today. I also tried to play around with data calling in Facebook API or using Facebook SDK. So if you are working on Microsoft Platform then Facebook doesn’t offers you much as all the layered SDKs which you will see available and documented on Facebook site are supporting JAVA, PHP, Python, Android, IPhone., So there is no deal available for developers who are on More >

image.png

Multi Touch – Top Usage Scenarios Identified

According to a recent research by Microsoft the following have been identified as Top Customer scenarios for Multi Touch technology:

Web Browsing: Browsing web pages, Zooming in on  parts of the web page, Snipping sections of web page to paste elsewhere.

Photos: Flicking through photos in an album, Spreading photos out like you would do on a table, Zooming in and out/ Resizing, Simple editing

Media: Scrolling through playlists and other Media

Email & Calendar: Triaging email, dragging and dropping, Moving appointments, Handwriting an email with a stylus, Signing name =more personalized

Casual Games: Simple games like chess and solitaire that don’t require multiple controllers, children’s learning More >

windows-phone-7

Windows phone 7 developer tools CTP

Microsoft has just released an updated version of its existing Windows phone 7 developer tools CTP that was announced in MIX conference in March. With new release, developers can now build windows phone 7 applications on the final release of visual studio 2010. This is refresh is available at http://developer.windowsphone.com.

New and changed features in the latest CTP are as followed.

  • The release is compatible with Visual Studio 2010
  • An updated Windows Phone 7 OS image for the Windows Phone Emulator.
  • A few APIs in the frameworks have been added and or changed.
  • The documentation has been updated with new and expanded topics.
  • limited support for More >
microsoft dot net

The dot Net Client Profile

The .NET Client Profile

The client profile is the subset of the .NET Framework that’s required for rich client applications like

WPF (windows presentation foundation). It doesn’t include server-side features such as ASP.NET, debuggers, developer tools, code compilers, and legacy features (such as Oracle database support). More importantly, the client is smaller—it requires a download that’s about 30 MB, while the full .NET Framework 4 redistributable

tops 100 MB. Of course, if your application targets the .NET Framework 4 Client Profile and the client

has the full version of the .NET Framework, it will still run without a hitch.

The client profile concept was introduced More >