Monthly Archives June 2010

Inside/Outside

You look at a thing and you want to describe and understand it. There are many ways, but we can broadly define two principal ways. Outside View Point (OVP): Everything has external view to its environment. When a thing is described with less focus on its internals, that is OVP. Inside View Point (IVP): Everything [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon

Interesting predictions for out sourcing

It is highly likely that India will be challanged even more for cost efficiency and higher valued services. Here are some observations and predictions from Gartner, Bernstein Research and Forrester Research; with my interpretation for implications. Evolving From Evolving To Implications Offshore labor primarily in India Labor in multiple geographies India will have competition; also [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon

Design is a contexual process

(Though following is written from point of view of software designer, ideas are valueable to any engineering designer.) Software design is creative process. Design involves significant mental efforts towards creating new ideas or using existing ones for a purpose. Software does not exist before you design it. You, as a designer, play a role of [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon

New features of C# 3.0

Look at simple source code to learn few of new features of C# 3.0. 12345678910111213141516171819202122232425262728293031323334353637public class Book {     //Auto implemented properties     public string Name { get; set; }     public int ID { get; set; } } public class AllLINQ {     public static void ShowAll()     { [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon

C# and .Net Delegates

Please read following simple source to know more about delegates in C# and .Net. Note that this article is for people who wants to learn by looking at simple sample source code without reading too much weed. 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465using System; namespace Delegates {     class Program     {         //Following is [...]

  • RSS
  • Print
  • PDF
  • Twitter
  • del.icio.us
  • Facebook
  • LinkedIn
  • Google Bookmarks
  • Digg
  • Add to favorites
  • StumbleUpon