Posted by: intelbot on: June 5, 2009
Hey All,
Just wanted to let you know about an exciting event siliconindia is organizing on June 6th (Saturday in Bangalore). There will be 100 most promising technology startups showcasing their products.

Please be sure to visit the event website. http://www.siliconindia.com/startupcity_09/index.html
Roll up your Sleeves. Meet over 100 cool startups of your city. Learn new Technologies
Come. Meet the Startups that will become tomorrow’s industry leaders.
Watch live product demonstrations
Get a peek into cutting edge technologies
Lay hands on the best-of-breed solutions
Meet young, energetic, passionate geeks
Experience the culture of innovation in small companies
Visionary Keynotes
In-depth Panel Discussions
This is undoubtedly the biggest event for startups.
There are limited seats. You can register yourself for FREE at:http://www.siliconindia.com/startupcity_09/index.html
Posted by: intelbot on: May 30, 2009
Posted by: intelbot on: May 5, 2009
Here is the list of tips & insights compiled from StackOverFlow.
Posted by: intelbot on: May 5, 2009
Read about it at ReadWriteWeb
Posted by: intelbot on: May 5, 2009
Today I came across a post by Brier Dudley, about latest social networking site called Vine by Microsoft. Still its under beta & if you want to be part of it, then sign up.
As per the post, Microsoft planning to provide Vine to Emergency Management Officials, which helps them to broadcast & receive information during a disaster or other major event.
Posted by: intelbot on: May 5, 2009
Posted by: intelbot on: May 5, 2009
As you all know, Moore’s Law tells us that, the number of transistors on an integrated circuits doubles every two years.
Now the so-called “many core shift” is happening. It’s not a thing of the future and it will change our developers’ life.
What’s the many core shift?
This evolution has reached its physical limits (clock speed, power consumption, etc.).
Instead of building faster and more complex CPUs, the manufacturers started placing more CPUs, read cores, on a chip.
It started 2006 with Intel’s dual cores, today you won’t find a single core desktop machine anymore. High end consumer machines come with quad cores, and servers with 16 cores (delivered as 4 quad cores). Starting 2006 with 2 cores, five years from now we will have between 32 and 128 cores.
What does it mean?
Well, it probably means that today’s software runs a bit faster. Not much, certainly not the 32 times faster a 64 core machine is supposed to be compared to dual core. Why is that? Well, have a look at the following task manager of a 64 core machine:
Now look at your own desktop and count the open applications. Outlook, Word, PowerPoint, Internet Explorer, Acrobat Reader, Firefox, Visual Studio? All the applications utilize 1 to two cores and Most of today’s applications simply are not capable of employing these cores appropriately. Consequence: In order to leverage these cores we have to change the way we write our software!
You may ask, do we actually need that kind of processing power? And if so, how do we use it?
For first question the answer is yes, it is needed for Games, Video Conversion, File Compression, Graphics etc.
And for second question we need to know that there is a concept called Multithreading.
And “Most developers have avoided multithreading altogether. And those who did do multithreading probably did it just for optimizations.” So, now is the time we need to have multithreading in the mainstream of application development.
And with that in mind Microsoft is developing Visual Studio 2010. And I believe it will open up new possibilities.
I am really excited to work on Visual Studio 2010 and want to utilize the multi-core.
Let me know what you think about all this.
Posted by: intelbot on: May 5, 2009
I came across this wonderful site called Forvo where you can find the pronunciation of certain words and also you can add a word (your native language) and pronounce it.
Posted by: intelbot on: May 5, 2009
Steps:
1. Add wnvhtmlconvert.dll to Project Reference under Visual Studio
Posted by: intelbot on: May 5, 2009
Posted by: intelbot on: April 5, 2009
I thought to post it here and write something about it.
So now ICICI Bank has "mortgage paper", which is an asset. They can sell the mortgage to anyone they wish. Raj will then be required to pay the purchaser, who will get the benefit of the 6% interest. It's an investment which may (or may not) make more money in the future. A good idea if ICICI needs money immediately.
But old Raj doesn't have the money to pay this mortgage. At the same time, the house value has greatly reduced to Rs 150,000. Raj still owes Rs 199,000.
If Raj defaults on this, ICICI Bank will only be able to recover a portion of their money back. The mortgage paper has now become illiquid (the house can't pay the mortgage). ICICI Bank is now unable to sell it. Why would somebody pay for an asset that guarantees you will lose money?
That mortgage has become a "toxic asset".]
Posted by: intelbot on: April 5, 2009
Posted by: intelbot on: April 4, 2009

Posted by: intelbot on: April 1, 2009
Recently i was thinking about my strengths and weaknesses, what i realized was, my weaknesses are mirrored reflections of my strengths.
Now i am trying to find out whether it is same with every body else or not.
Let me know about yours.
Posted by: intelbot on: April 1, 2009
I need to write comments for the below code, bcoz of lack of time i am posting only abstract things,if you want to know something, write comment, i will reply.
HTML login control
< input type="text" name="txtUserName" id="txtUserName" class="textBoxes" />
jQuery Rule: Add the below rule into script tag in header & add reference to jquery-1.2.6.js,jquery.validate.js in Head Element
$(document).ready(function() {
$("#frmSelfRegister").validate({
rules: {
txtUserName:
{
required: true,
remote: { type: "post",
url: "Register/IsLoginAvailable" }
},
messages:{
txtUserName: { required: "User Name is Required.",
remote: jQuery.format("{0} is not available.")}
}
});
});
The above validation code executed when the focus changes from txtUserName to some other, it will call IsLoginAvailable method available in the RegisterController, as specified in the url.
Controller Code :
Below code is the one which checks for availability of a username & returns the status to above jQuery Method. The following methods return type is JsonResult because remote method of jQuery accepts the JsonResult object only.
[AcceptVerbs(HttpVerbs.Post)]
public JsonResult IsLoginAvailable(FormCollection collection)
{
JsonResult result = new JsonResult();
try
{
ilogIn.Text = this.GetLoginByUsername(collection.Get("txtUserName").
ToString().Trim());
}
catch (Exception ex)
{
Helper.ErrLogger(ex.Message);
}if (ilogIn.Text == collection.Get("txtUserName").ToString())
{
result.Data = false;
}
else
{
result.Data = true;
}
return result;
}
Posted by: intelbot on: March 25, 2009
Suppose you have two interfaces, lets say Interface-IA, Interface-IB & in both you have declared Name as a property as follows.
public interface IA
{string Name { get; set; }
String Adress { get; set; }}
public interface IB
{string Name { get; set; }
}
Now, you write an interface -IC which derives from above 2 Interfaces as below,
public interface IA
{int Id { get; set; }
}
When you are try to do the following, you will get an error saying ‘Ambiguity between IA.Name and IB.Name’.
class Test
{public void GetSomething()
{
IC objIc = new IC();
Textbox1.Text = objIc.Name();
}}
It can be solved by upcasting as below.
class Test
{public void GetSomething()
{
IC objIc = new IC();
Textbox1.Text = ((IA)objIc).Name();
}}
Posted by: intelbot on: March 23, 2009
Today would mark 78 years of the sacrifice three young men gave for the nation. Bhagat Singh- Raj Guru- Sukh Dev.
So today no one in news would talk about Bhagat Singh, Sukh Dev and Raj Guru the three young men who were hanged on this day near Ferozpur near the present India-Pakistan border. These men never cared about religion and fought for the freedom of the nation.

Indians seem to have forgotten the sacrifice and keep remembering Gandhi. It is definitely an unfortunate thing that people who were not in congress and worked for India’s freedom never got the credit they deserve.Bhagat Singh, Sukhdev and Rajguru shall remain in my heart till I die. These are the people whom the young generation should have as idols. Their sacrifice, their patriotism & their principles, we should never forget them.