Jan 29 2011

Search Multiple Strings Using Regular Expression

Category: .net,CodeProject,TipsJebarson @ 11:10 pm

This is small piece of code snippet which I wanted to share as we face this necessity in our day to day programming. Suppose you have a need when you need to search multiple string, say you need to search strings like “int”, “float”, “string” in a piece of text. Below is how you will [...]


Jan 20 2011

Get / Set Site Properties Using Powershell For Sharepoint Site

Category: CodeProject,Powershell,SharepointJebarson @ 3:19 am

Powershell is a very powerful tool which can be used to automate almost everything by writing scripts. It’s already making the life easier for people who does the deployment. Recently, I came across a need where I wanted to set and get the site properties for a sharepoint site and wrote the following code for [...]


Jan 05 2011

Azure Tutorial; Be in cloud (Part 5) [Storage Account - Introduction]

Category: .net,Azure,CodeProject,TutorialJebarson @ 9:51 pm

Windows Azure – Storage Now that we have already completed the part of compute, we will now dive into another bigger advantage of the Azure; the storage. This shouldn’t be confused with the hosting space provided by many hosting vendors. Unlike the hosting space, or disk space provided by most of the vendors, this is [...]


Dec 12 2010

Azure Tutorial; Be in cloud (Part 4) [Worker Role]

Category: Azure,CodeProject,TutorialJebarson @ 10:11 am

  Windows Azure – Compute (Worker Role) Before we start of with the worker role, we might talk about few things over the course which we have already discussed on our previous part. If you haven’t read the previous part and you aren’t able to follow something, I would recommend reading the previous part.   [...]


Dec 05 2010

A Leap In Embedded Programming; .Net Micro Framework

Category: .net Micro,CodeProjectJebarson @ 9:56 am

Introduction We .net programmers are definitely proud that .net is everywhere. Today .net is everywhere from controlling satellites to controlling bicycles. You heard it right, my fellow employee Colin Miller has already developed an application using .Net micro framework which reads every data from a bicycle through cloud. So whats interesting? Right from the device [...]


Dec 02 2010

Highlighted Features & Improvements In Silverlight 5

Category: CodeProject,SilverlightJebarson @ 9:50 am

While I am watching the live streaming of the much awaited Silverlight Fire Starter, I decided to write on the new interesting and highlighted features of the upcoming Silverlight 5 as pointed out by Scott Guthire. Highlighted New Features Hardware Decode : All the media streamed in Silverlight can now take the advantage of GPU [...]


Nov 28 2010

Azure Tutorial; Be in cloud (Part 3) [Web Role]

Category: Azure,CodeProject,TutorialJebarson @ 10:51 pm

  Windows Azure – Compute (Web Role) As the title says, we are now going to talk about the service which allows the programmer to create application which will enable the cloud to exhibit it’s potential on computing.   Roles Azure development is categorized based on the roles and they are widely categorized as below. [...]


Nov 24 2010

Multi Language / Multicultural Exception Handling In WCF Using FaultReason

Category: CodeProject,Exceptions,WCFJebarson @ 10:45 pm

It was during the Virtual Tech Days when I was presenting the “Exception Handling In WCF” session, one attendee wanted on how to use the fault reason to have multilingual / multicultural exceptions being handled and shown without any extra code. And so I promised him to post an article on the same and here [...]


Nov 22 2010

Exception Handling In WCF – Virtual Tech Days Presentation

Category: CodeProject,Exceptions,WCFJebarson @ 10:40 pm

I am making this post explicitly for the people who attended the my presentation on Exception Handling In WCF at Virtual Tech Days. Below are the url where you can download my presentation and Demo application. I will write another posting explaining the demo for the persons who didn’t attend my session. To give an [...]


Nov 13 2010

Ping remote machines using .net

Category: .net,CodeProject,NetworkJebarson @ 10:34 pm

If you are looking for to ping a remote machine and you want to record the state along with status and return time, below example can help you.   private void Ping_Click(object sender, EventArgs e) { List domains = new List(); domains.Add(“www.bing.com”); domains.Add(“www.yahoo.com”); domains.Add(“jebarson.info”); foreach (string domain in domains) { Ping pinger = new Ping(); [...]


Next Page »