JavaScript tutorial series
I will begin a series on how to create a JavaScript framework from the ground up. The purpose of the posts is to explore and create a base library for all the examples in the blog. The library will be called simplex and you may find the main sequence by following the tag “simplex” in the JavaScriptFramework blog. See: http://www.javascriptframework.com/tag/simplex/
Create thumbnails with C#
I added a quick snip on how to use the .NET’s Image class to create thumbnail’s from an image. See it here: http://www.developercaster.com/2011/05/create-thumbnails-with-c-image-class.html
Bing API – Using the Bing Translator with C#
This will be the first post of a series about creating a class library for Microsoft Bing APIs in C#. I had ignore Microsoft offering in the past because Google APIs have always done the work for me; however, I recently worked in my first WP7 application and found Bing services to be really mature and capable of delivering results just as good as Google’s. Let’s Begin NOTE: You need to register and create an AppID at http://www.bing.com/developers. Create a new project called .NET 4.0 Class Library called DeveloperCaster.Bing; we will wrap all API calls within this class library. I want to be able to expand this library beyond the translation API so I will leave room to extend it in future posts. We will begin by adding the following objects: The Bing...