An Idea can change your life.....

Sunday, March 29, 2009

Will U ask for a Second Chance...??? (Worth Reading)

Here’s a story which I have read and
wanted you also to read… a really good one…!!!

===========================================================================

It’s another morning..

….. Again I have to go to office.

Ohh, this is me… I shouted having a glance on
my snap in today’s news paper.

But what the HELL it is doing in the death
column??

Strange…

One sec... Let me think, last night when I was
going to bed I had a severe pain in my chest, but I don’t remember anything
after that, I think I had a sound sleep.

Its morning now, ohh….. It’s already 10:00 AM,
where is my coffee?

I will be late for office and my boss will get
a chance to irritate me.

Where is everyone…??? I screamed.

“I think there is a crowed outside my room, let
me check.” I said to myself.

So many people….. Not all of them crying…

But why some of them crying…

WHAT IS THIS??? I m laying there on the floor…

“I AM HERE” … I shouted!!! No one listen.

“LOOK I AM NOT DEAD” … I screamed once again!!!
No one is interested in me.

They all were looking me on the bed.

I went back to my bed room.

“Am I dead??” I asked myself.

Where is my wife, my children, my mom-DAD, my
friends?

I found them in the next room, all of them were
crying… still trying to console each other.

My wife was crying… she was really looking sad.

My little kid was not sure what happened, but
he was crying just coz his mom was sad.

How can I go without saying my kid that I
really love him, I really do care of him. ??

How can I go without saying my wife that she is
really most beautiful and most caring wife in this world..??

How can I go without saying my parents that I m
… just because of u ??

How can I go without telling my friends that
without them perhaps I have done most of the wrong things in my life… thanks
for being there always when I need them… and sorry for not being there when
they really need me..

I can see a person standing in the corner and
trying to hide his tears…

Ohh… he was once my best friend, but a small
misunderstanding made us part, and we both have strong enough ego to keep us
disconnect.

I went there.. And offered him my hand, “Dear
friend… I just want to say sorry for everything, we r still best friend, please
forgive me.”

No response from other side, what the hell?? He
is still preserving his ego, I am saying sorry… even then!!!

I really don’t care for such people.

But one sec…. it seems he is not able to see me!!!!
He did not see my extended hand.

My goodness… AM I REALLY DEAD???

I just sat down near ME; I was also feeling
like crying…

“OHH ALMIGHTY!!!! PLEASE JUST GIVE ME FEW MORE
DAYS…”

I just wasn’t to make my wife, my parents; my friends
realize that how much I love them.

My wife entered in the room, she looks
beautiful.

“YOU R BEAUTIFUL” I shouted.

She didn’t hear my words, in fact she never
heard these words coz I never said this to her.

“GOD!!!!” I screamed… a little more time
plzzzzzzzzzzzzzz..

I cried…

One more chance please… to hug my child, to
make my mom smile just once, to feel my dad proud on me at least for a moment,
to say sorry to my friends for everything I have not given to them, and thanks
for still being in my life….

Then I looked up and cried!!!!

I shouted….

“GOD!!!! ONE MORE CHANCE PLEASE!!!!”

"You shouted in your sleep," said my
wife as she gently woke me up. "Did you have a nightmare?"

I was sleeping….

Ohh that was just a dream….

My wife was there… she can hear me…

This is the happiest moment of my life…

I hugged her and whispered…. “U R THE MOST
BEAUTIFUL AND CARING WIFE IN THIS UNIVERSE…. I REALLY LOVE U DEAR”

I can’t understand the reason of the smile on Jher
face with some tears in her eyes, still I m happy….

“THANK YOU GOD FOR THIS SECOND? CHANCE.”

SO, Now it’s not late.. forget Ur Egos, Past…
and Xpress Ur love to others… Be friendly… Keep smiling… for ever…….

Monday, March 23, 2009

CodeRush Xpress for C#


Here's a sampling of what you get:

Find any File or Symbol...

Go to any file or symbol in the solution efficiently.


Type in a few letters of the name to filter...


Or hold down the SHIFT key to filter only on uppercase letters...


Uppercase characters can appear anywhere. Any uppercase characters not specified in the filter are highlighted in blue...


The uppercase letters need not be sequential. Notice how "RD" in the screen shot below matches both "ResolveDelegate.cs" and "ResolveCallbackDelegate.cs".

Tab to Next Reference

This is a really cool navigation feature that takes you to the next (and previous) reference just by pressing the TAB key (or SHIFT+TAB to go backwards) when the caret is inside an identifier, member, or a type. For example, in the following code, the caret was inside the last Person type reference (in the "newPerson()" instantiation call) when the TAB key was pressed, causing the Person reference at the top of the file to become highlighted.

Expand/Shrink Selection

This feature allows you to increase a selection by logical blocks, or decrease an expanded selection by the same logical blocks. This feature is perfect when refactoring, since many refactorings work on a contiguous selection of code (e.g., extract method, introduce local, etc.).

TDD-Style Intelligent Declaration Based on Usage

Place the caret on any undeclared element in your code and press the Refactor/Code key (CTRL+`) to see a list of intelligent suggestions for the type of the new variable. For example, in the screen shot below two appropriate types are suggested, even though Console.WriteLine has many overloads that accept a wide variety of types.


You can even turn a function call or property access into a variable declaration.


This makes writing code with Visual Studio's Intellisense really fast. Just use Intellisense to produce the property reference or function call, and then press the Refactor/Code key to declare a new local variable of the appropriate type. Here's an example with a function call—notice the caret can be just about anywhere on the function call, even at the end of the line.


You can even declare a local from a simple instantiation, like this:


And it's worth noting you can declare all kinds of elements based on usage, not just locals. Anything you need types, members, fields—the full list of elements that can be declared appears below.

Professional Grade Refactorings

CodeRush Xpress includes many powerful refactorings to help improve the quality of your code. For example, consider the following:

private static void ShowInt(int n)
{
Console.WriteLine(n);
}
private static void ShowEntries(List<int> entries)
{
entries.ForEach((
Action<int>)ShowInt);
}

With the caret on the ShowInt method reference, you can press the Refactor! key...

and then select Inline Delegate. This will produce the following code:

private static void ShowEntries(List<int> entries)
{
entries.ForEach(
delegate(int n)
{
Console.WriteLine(n);
});
}

Notice the caret is on the delegate keyword. You can immediately press the Refactor! key again...


Note that we can go in two directions now. We can either convert the anonymous method to a named method (in essence reversing the Inline Delegate refactoring we just performed), or we can take it a step further and compress the anonymous method into a lambda expression. Choosing Compress to Lambda Expression, we get the following:

private static void ShowEntries(List<int> entries)
{
entries.ForEach(n =>
Console.WriteLine(n));
}

CodeRush Xpress is loaded with powerful refactorings taken from Refactor! Pro. One of our favorites, Extract Method to Type, allows you to extract a method from one type into another, updating both the calling code and the extracted method appropriately. For an example, consider the following code:

class Person
{
public string Name { get; set; }
public bool IsAnOrphan { get; set; }
public Person Mother { get; set; }
public Person Father { get; set; }
}
// ...
class BabyMaker
{
public Person MakeOne(Person mother, Person father, string name)
{
Person newBaby = new Person();
newBaby.Name = name;
newBaby.Mother = mother;
newBaby.Father = father;
newBaby.IsAnOrphan = newBaby.Mother == null && newBaby.Father == null;
return newBaby;
}
}

Notice that the code in the MakeOne method contains a local variable that's an instance of type Person, and that code sets the IsAnOrphan property. There is some logic in this method that pertains to Person, but it feels like it's in the wrong class!

We already have the class Person in our solution, so it makes sense to move some of this code to the proper class. With CoderRush Xpress installed, all we need to do is select the code we want to move....


Press the Refactor key...


And choose "Extract Method to Person". CodeRush Xpress analyzes the selection and determines there's at least one local variable of a type you have declared elsewhere in the solution. Now let's apply this refactoring...


Press the UP and/or DOWN ARROW keys to select a location for this new method, and press ENTER to commit. Give the method a meaningful name...

Cool. Now we have the logic (that should have been inside Person to start with) right where it belongs. Notice how the new SetParents instance method works on the instance itself (compare that code with the original code that operated on the newBaby local). The code is easier to read and cleaner in both locations.

Notice also that tiny dark blue triangle, in the code above. That's a stack-based marker, and CodeRush Xpress drops markers automatically whenever you apply a refactoring or TDD-style declaration that takes you away from the original location. You can jump back at any time to the top marker on the stack by pressing ESCAPE.

There are many more refactorings and cool features in CodeRush Xpress. This is just a preview. Here's the full list of what you get:

Editor Features

  • Duplicate Line
  • Highlight Usages
  • Clipboard Features
    • Smart Cut/Copy
    • Paste Replace
  • Enhanced Selection Abilities
    • Extend/reduce selection
    • Camel-case selection

Navigation Features

  • Camel-case Navigation
  • Tab to Next Reference
  • Go to File
  • Go to Symbol (QuickNav)

TDD - Declaration from Usage

  • Types
    • Declare Class
    • Declare Delegate
    • Declare Enum
    • Declare Enum Element
    • Declare Interface
    • Declare Struct
  • Members
    • Declare Constructor
    • Declare Event Handler
    • Declare Getter
    • Declare Method
    • Declare Property
    • Declare Property (auto-implemented)
    • Declare Property (with backing field)
    • Declare Setter
  • Variables
    • Declare Field
    • Declare Local
    • Declare Local (implicit)

Refactorings

  • Add/Remove Block Delimiters
  • Combine Conditionals (merge nested "If" statements)
  • Compress to Lambda Expression
  • Compress to Ternary Expression
  • Convert to Auto-implemented Property
  • Convert to Initializer (use object/collection initialize when possible)
  • Create Backing Store (converts Auto-implemented Property to standard Property with get and set)
  • Decompose Initializer
  • Decompose Parameter
  • Expand Lambda Expression
  • Expand Ternary Expression
  • Extract Method to Type
  • Flatten Conditional
  • Introduce Local (introduce variable)
  • Inline Delegate
  • Inline Temp (inline variable)
  • Make Explicit
  • Make Implicit
  • Move Type to File
  • Name Anonymous Method
  • Name Anonymous Type
  • Reverse Conditional (invert "if")
  • Split Conditional (split complex "If" statements)
  • Use StringBuilder
  • Use String.Format

Automatic SQL code formatter

SqlFormatter
SQLinForm is an automatic SQL code formatter for all major databases ( ORACLE, SQL Server, DB2 / UDB, Sybase, Informix, PostgreSQL, Teradata, MySQL etc) with many formatting options .
Format 10,000 lines of SQL code in 3 seconds!
Instant Sql Formatter

Wednesday, March 18, 2009

Forgot Subject line? Add this script to outlook

Several times we forget to write in the subject line in mail, which might make us feel bad at times.
Simply follow these steps and it’ll prompt every time a mail is sent without a subject line,

1. Open Outlook.
2. Press Alt+F11 to open VBA editor and then Press Ctrl+R which in turn opens a Project-Project 1 (projects tree on left)
3. Expand this and you’ll see “ThisOutLookSession”.
4. Double click on “ThisOutLookSession” to open its code window.
5. Copy and Paste the following procedure and save it.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim strSubject As String
strSubject = Item.Subject
If Len(Trim(strSubject)) = 0 Then
Prompt$ = “Subject is Empty. Are you sure you want to send the Mail?”
If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, “Check for Subject”) = vbNo Then
Cancel = True
End If
End If
End Sub

6. If the Prompt$ string literal doesn’t show properly, then just re-type the double quotes around it by removing existing ones. Do same for “Check for Subject” literal as well in MsgBox() function. Save code once done.
7. Now whenever you try to send a mail without subject, it’ll raise a pop-up to remind you.

Friday, March 13, 2009

Free Screen Recording Software



CamStudio is able to record all screen and audio activity on your computer and create industry-standard AVI video files and using its built-in SWF Producer can turn those AVIs into lean, mean, bandwidth-friendly Streaming Flash videos (SWFs)

Here are just a few ways you can use this software:

* You can use it to create demonstration videos for any software program
* Or how about creating a set of videos answering your most frequently asked questions?
* You can create video tutorials for school or college class
* You can use it to record a recurring problem with your computer so you can show technical support people
* You can use it to create video-based information products you can sell
* You can even use it to record new tricks and techniques you discover on your favourite software program, before you forget them



Download

Measure the speed of your website



Stopwatch

Would you like to know how long it takes to load a webpage? This program will measure the time for you. Enter the URL to be measured and watch the top of the window.

The StopWatch can only measure websites that can be displayed in a frame. Some websites use javascript to break out of frames. This is not a StopWatch bug.

Stopwatch

Create your own Chat Room Tiny Chat

With TinyChat you can create your own chatroom and
invite people through one simple link. Try it.




Create your own website for free

Create your own free web page
Build your own FREE web site.
Many of the greedy money makers on the web would prefer I didn't publish this information. They want to charge you money for what is available for absolutely free... Totally free websites!
It's easy to bring a site to life on Webs. You'll find everything you need to grow a dynamic site for you, your group, or your business.

http://sites.google.com
http://www.webs.com
http://www.synthasite.com
http://www.50megs.com
http://www.mysite.com
http://www.sitebuilder.freewebsites.com
http://www.freewebsites.com





Thursday, March 12, 2009

PowerCommands visual studio addon

PowerCommands is a set of useful extensions for the Visual Studio 2008 adding additional functionality to various areas of the IDE. The source code is included and requires the VS SDK for VS 2008 to allow modification of functionality or as a reference to create additional custom PowerCommand extensions.

PowerCommands.jpg

Visit the VSX Developer Center at http://msdn.com/vsx for more information about extending Visual Studio

Features provided by it

Enable/Disable PowerCommands in Options dialog
Format document on save / Remove and Sort Usings on save
Clear All Panes
Copy Path
Email CodeSnippet
Show All Files
Undo Close
Collapse Projects
Copy Class
Paste Class
Copy References
Paste References
Copy As Project Reference
Edit Project File
Open Containing Folder
Open Command Prompt
Unload Projects
Reload Projects
Remove and Sort Usings
Extract Constant
Clear Recent File List
Clear Recent Project List
Transform Templates
Close All

Download

Clone Detective Visual Studio Addon

Clone Detective is a Visual Studio integration that allows you to analyze C# projects for source code that is duplicated somewhere else (AKA clone detection). Having duplicates can easily lead to inconsistencies and often is an indicator for poorly factored code.

ScreenshotSmall.png



Download

SQLDBX sql server tool

SqlDbx is a fast and easy to use database SQL development IDE for database administrators and application or database developers who work in heterogeneous Database Server environments.
SqlDbx built around an advanced SQL Editor and Database Object Explorer.
SqlDbx provides a consistent user interface between different DBMS Systems.
The intuitive and straight forward interface allows developers to improve their productivity by having easy access to the most commonly used features. Run queries, execute scripts and browse database objects without leaving editor window. SqlDbx is a standalone executable file, so no installation is necessary. Furthermore, SqlDbx does not install or modify anything on the user's computer.

Supported DBMS Systems
Oracle® 8i - 11g
Microsoft® SQL Server 6.5 - 2008
IBM DB2 UDB® 7.x - 9.x, DB2 for zOS/i390 7.x - 9.x
Sybase® ASE 10.x - 15.x
Sybase Anywhere® 9.x - 11.x
Sybase IQ® 12.5 - 12.7
ODBC 3.0 compliant sources

Download

Happy Birth Day Song (Telugu Version)

Ammaga Korukuntunna

This feature is powered by Dishant.com - Home of Indian Music

Teen Maar music (High Clarity)

Teen Maar (High Clarity)
Download

Wednesday, March 11, 2009

It's all in your MIND! And we actually FUEL this recession much more than we think

This story is about a man who once upon a time was selling Hotdogs by the roadside. He was illiterate, so he never read newspapers. He was hard of hearing, so he never listened to the radio. His eyes were weak, so he never watched television. But enthusiastically, he sold lots of hotdogs. He was smart enough to offer some attractive schemes to increase his sales. His sales and profit went up.

He ordered more a more raw material and buns and sold more. He recruited more supporting staff to serve more customers. He started offering home deliveries. Eventually he got himself a bigger and better stove.

As his business was growing, the son, who had recently graduated from college, joined his father.
Then something strange happened. The son asked, "Dad, aren't you aware of the great recession that is coming our way?" The father replied, "No, but tell me about it."

The son said, "The international situation is terrible. The domestic situation is even worse. We should be prepared for the coming bad times."
The man thought that since his son had been to college, read the papers, listened to the radio and watched TV.

He ought to know and his advice should not be taken lightly. So the next day onwards, the father cut down the his raw material order and buns, took down the colorful signboard, removed all the special schemes he was offering to the customers and was no longer as enthusiastic.


He reduced his staff strength by giving layoffs. Very soon, fewer and fewer people bothered to stop at his Hotdog stand. And his sales started coming down rapidly and so did the profit. The father said to his son, "Son, you were right". "We are in the middle of a recession and crisis. I am glad you warned me ahead of time." Moral of the Story: It's all in your MIND! And we actually FUEL this recession much more than we think.

Educational Freeware

http://www.educational-freeware.com

High-quality free learning software and websites from the Internet - mostly for kids, but also for grown-ups.
A large selection of web-based software (check the Online tab), as well as Windows software to download (under the Downloads tab).

Visible Body 3D Human Anatomy

http://www.visiblebody.com/

Argosy's Visible Body is the best human anatomy visualization tool available today.


The Visible Body features:
  • Complete, fully interactive, 3D human anatomy model
  • Detailed models of all body systems
  • Dynamic search capability
  • Easy-to-use, 3D controls
  • Seamless compatibility with all the most popular web browsers
This entirely Web-delivered application offers an unparalleled understanding of human anatomy. The Visible Body includes 3D models of over 1,700 anatomical structures, including all major organs and systems of the human body.

Friday, March 06, 2009

Tuesday, March 03, 2009

Day in Hell & Heaven

One day while walking down the street a highly successful Human Resources Manager was tragically hit by a bus and she died. Her soul arrived up in heaven where she was met at the Pearly Gates by St. Peter himself.


"Welcome to Heaven," said St. Peter. "Before you get settled in though, it seems we have a problem. You see, strangely enough, we've never once had a Human Resources Manager make it this far and we're not really sure what to do with you."

"No problem, just let me in," said the woman.

"Well, I'd like to, but I have higher orders. What we're going to do is let you have a day in Hell and a day in Heaven and then you can choose whichever one you want to spend an eternity in."

"Actually, I think I've made up my mind, I prefer to stay in Heaven", said the woman

"Sorry, we have rules..."

And with that St. Peter put the executive in an elevator and it went down-down-down to hell.

The doors opened and she found herself stepping out onto the putting green of a beautiful golf course. In the distance was a country club and standing in front of her were all her friends - fellow executives that she had worked with and they were well dressed in evening gowns and cheering for her. They ran up and kissed her on both cheeks and they talked about old times. They played an excellent round of golf and at night went to the country club where she enjoyed an excellent steak and lobster dinner.

She met the Devil who was actually a really nice guy (kind
of cute) and she had a great time telling jokes and dancing. She was having such a good time that before she knew it, it was time to leave. Everybody shook her hand and waved goodbye as she got on the elevator.

The elevator went up-up-up and opened back up at the Pearly Gates and found St. Peter waiting for her.

"Now it's time to spend a day in heaven," he said. So she spent the next 24 hours lounging around on clouds and playing the harp and singing. She had great time and before she knew it her 24 hours were up and St. Peter came and got her.

"So, you've spent a day in hell and you've spent a day in heaven. Now you must choose your eternity,"

The woman paused for a second and then replied, "Well, I never thought I'd say this, I mean, Heaven has been really great and all, but I think I had a better time in Hell."

So St. Peter escorted her to the elevator and again she went down-down-down back to Hell.

When the doors of the elevator opened she found herself standing in a desolate wasteland covered in garbage and filth. She saw her friends were dressed in rags and were picking up the garbage and putting it in sacks.

The Devil came up to her and put his arm around her.

"I don't understand," stammered the woman, "yesterday I was here and there was a golf course and a country club and we ate lobster and we danced and had a great time. Now all there is a wasteland of garbage and all my friends look miserable."

The Devil looked at her smiled and told...
...
...
...

...
...
....
....
....
....
....
....
....
....
....
.....
....
....
....
....
....
....
....
....
"Yesterday we were recruiting you, today

you're an Employee"