Christophe Geers' Blog

?

Channel Reputation Rank

#17
?

Activity Status

Stale

last updated

According to the data and stats that were collected, 'Christophe Geers' Blog' channel has an outstanding rank. Despite such a rank, the feed was last updated more than a year ago. In addition 'Christophe Geers' Blog' includes a significant share of images in comparison to the text content. The channel mostly uses long articles along with sentence constructions of the basic readability level, which is a result indicating a well-balanced textual content on the channel.

About 'Christophe Geers' Blog' Channel

Christophe Geers' Blog about .NET programming

? Updates History Monthly Yearly
? Content Ratio
? Average Article Length

'Christophe Geers' Blog' provides mostly long articles which may indicate the channel’s devotion to elaborated content.

short

long

? Readability Level

'Christophe Geers' Blog' provides texts of a basic readability level which can be quite comfortable for a wide audience to read and understand.

advanced

basic

? Sentiment Analysis

'Christophe Geers' Blog' contains texts with mostly positive attitude and expressions (e.g. it may include some favorable reviews or words of devotion to the subjects addressed on the channel).

positive

negative

Recent News

Unfortunately Christophe Geers' Blog has no news yet.

But you may check out related channels listed below.

SkyDrive: Listing Folders and Files

[...] add more. The same goes for the Video object. I’ll not list it here, just check out the source code that comes with this article. Did you notice the Type (string) property on the FileSystemInfo [...]

Getting Started with the Live SDK: Authorization

[...] token. Remark: The UrlEncode(…) method encodes the redirect URI. Check out the source code of this article to see how the method works. I already explained it in Part 5 of the Dropbox [...]

WPD: Transfer Content To A Device

[...] Method Required Properties Transferring Content TransferContentToDevice Method Get the source code of the fourth article, #69: WPD: Deleting Resources, from the download page. Unzip it and open [...]

WPD: Deleting Resources

[...] my Kindle and see if I can’t delete a book from it. Table Of Contents Introduction Source Code Content What to delete? Deleting Resources Source Code If you haven’t read the previous [...]

Dropbox REST API Part 6: OAuth Callback

[...] need to retrieve the request token / secret from the session state. Then you can retrieve an access token. You need to store this access token somewhere, so that you can use it next time instead of [...]

Bitly API: Authentication

[...] redirect to a page where he can grant your applicion access to his Bitly account. Top of page Access Token When the user authorizes your application, he will be redirected to the URL specified by the [...]

Getting Started with the Live SDK: Authorization

[...] parameter. The redirect URI will be appended with 5 parameters, namely: access_token: The access token authentication_token token_type expires_in: The number of seconds the access token is valid [...]

SkyDrive: Listing Folders and Files

[...] to a user’s photos, videos, audio, and albums. So let’s quickly generate a new access token: Remark: Each scope value needs to be separated by a space (%20). For brevity’s sake I&# [...]

Dropbox REST API Part 5: File Upload

[...] the code of part #4 (article 66) from the download page, unzip it and open the solution in Visual Studio. Let’s get started… Table Of Contents Introduction URL Encoding Uploading a File [...]

Dropbox REST API Part 4: Download a File

[...] page and download the code for the third part (article #65). Unzip it and open it up in Visual Studio. Table Of Contents Introduction A New Method Expanding FileSystemInfo Downloading the File A [...]

Dropbox REST API Part 3: Create, Delete and Move Folders

[...] page and download the source code of part 2 (Article #63). Unzip and open the solution in Visual Studio. Make sure you modify the API key and secret located in the console application (Program.cs [...]

Enabling SSL for a WCF Service

[...] create your own certificates. Let’s quickly create a certificate. Start up an elevated Visual Studio Command Prompt and enter the following command: Make sure to replace the term “ [...]

Single-page Application with Knockout.js, Part 3

[...] create in the first two articles, skim through them if you want to get up to speed. Single-page Application with Knockout.js, Part 1 (READ) Single-page Application with Knockout.js, Part 2 ( [...]

Single-page Application with Knockout.js, Part 4

[...] Introduction Let’s wrap up our little Knockout powered single-page application. We already covered 3 out of 4 parts of the timesheets application. Displaying a list of [...]

Single-page Application with Knockout.js, Part 1

[...] two technologies with ASP.NET MVC 4, Web API and Knockout.js to create a simple Single-page Application. The goal is to fit all the necessary code – HTML, JavaScript and CSS on one single [...]

Single-page Application with Knockout.js, Part 2

Introduction Let’s start where we left off. Go ahead and download the source code of the previous part, unzip it and open it up in Visual Studio. La [...]

Getting Started with Twitter Bootstrap

[...] of the session showed how you can quickly setup an ASP.NET MVC application and integrate Twitter Bootstrap into it. For those not familiar with [...] [...]

GitHub Service Hooks: AppHarbor

[...] The last 7 posts discussed how you can create a single-page application using GitHub, Twitter Bootstrap, MongoDB and Knockout.js. One last thing I touched briefly during my session in September is [...]

Single-page Application with Knockout.js, Part 1

[...] Introduction The last two posts were introductory posts to Twitter Bootstrap and MongoDB. Let’s combine these two technologies with ASP.NET MVC 4, Web API and Knockout. [...]

Single-page Application with Knockout.js, Part 4

[...] timesheets Time to finish up with the fourth and final part, deleting timesheets. Using some Twitter Bootstrap and Knockout magic it shouldn’t take that long. [...] [...]

Getting Started with the Live SDK: Authorization

[...] 2.0 protocol to authenticate users. I already covered OAuth in the following articles: Dropbox REST API Part 1: Authentication Dropbox REST API Part 6: OAuth Callback Bitly API: Authentication The [...]

Dropbox REST API Part 6: OAuth Callback

Introduction With this entry into the Dropbox series we come back to the beginning of the cycle. We started with authentication and that’s wher [...]

Dropbox REST API Part 5: File Upload

Introduction In the last part of the Dropbox series, we handled file downloads. This time I’ll show you how you can easily upload files to your [...]

Dropbox REST API Part 4: Download a File

Introduction So far we’ve covered the following topics in the Dropbox series: Part 1: Authentication Part 2: API Requests Part 3: Create, De [...]

Bitly API: Authentication

[...] Introduction I was playing around this morning with the Bitly API. Like the Dropbox API they use OAuth for authentication. But instead of version 1.0 they use the OAuth 2 draft [...]

Dropbox REST API Part 5: File Upload

[...] method as follows: Let’s implement the method. First let’s compose the URL of the Dropbox API which we’ll need to call. This will give you the following URI: https://api-content. [...]

Dropbox REST API Part 3: Create, Delete and Move Folders

[...] /test info %2ftest. The slash (/) is translated to %2f. However if you use that value with the Dropbox API you’ll get an error informing you that the signature is invalid. Apparently the Dropbox [...]

Dropbox REST API Part 5: File Upload

[...] easy that was? Now you can upload a file using two lines of code. Check out the Dropbox REST API documentation if you want to explore it further and implement new features. https://www. [...]

Dropbox REST API Part 4: Download a File

[...] the previous parts, this turned out to be a rather short article. Check out the Dropbox REST API documentation if you want to explore it further and implement new features on your own. https://www. [...]

Dropbox REST API Part 3: Create, Delete and Move Folders

[...] completeness, here’s the entire flow of the client application. Check out the Dropbox REST API documentation if you want to explore it further. https://www.dropbox.com/developers/reference/api [...]

Getting Started with the Live SDK: Authorization

[...] Connect API. Let’s quickly cover the authorization flow. First you need to compose the authorization URL to which you’ll redirect the users. Fill in your client ID and make sure that the [...]

Dropbox REST API Part 6: OAuth Callback

[...] like this: http://localhost:53291/Home/Authorized Last, but not least you retrieve the authorization URL and redirect the user to it so he can start the authorization process. The user will now be [...]

?Key Phrases
SkyDrive: Listing Folders and Files

[...] add more. The same goes for the Video object. I’ll not list it here, just check out the source code that comes with this article. Did you notice the Type (string) property on the FileSystemInfo [...]

Getting Started with the Live SDK: Authorization

[...] token. Remark: The UrlEncode(…) method encodes the redirect URI. Check out the source code of this article to see how the method works. I already explained it in Part 5 of the Dropbox [...]

WPD: Transfer Content To A Device

[...] Method Required Properties Transferring Content TransferContentToDevice Method Get the source code of the fourth article, #69: WPD: Deleting Resources, from the download page. Unzip it and open [...]

WPD: Deleting Resources

[...] my Kindle and see if I can’t delete a book from it. Table Of Contents Introduction Source Code Content What to delete? Deleting Resources Source Code If you haven’t read the previous [...]

Related channels