ASP.NET Custom role provider

Easy guide to write your custom role provider

Merge splitted .mkv files

Learn how to merge splitted .mkv files (.mkv001,.mkv002...)

How to Zoom in and Zoom out your sql execution plan ?

Tool to tune your sql query

send .exe files with gmail

How to send files having blocked extension with Gmail ?

Multiple home pages in Internet explorer

How to set multiple home pages in internet explorer ?

12/28/2008

How to save orkut profile display picture ?

Earlier we are able to save anyone 's orkut profile picture . Now after Google started concentrating on Orkut , they are trying to make it more secure for its users . One of the measures they had undertaken is preventing users from saving profile display pictures . But people used to go to source and get the URL of the image and copy it . So again they used iframe to prevent this .Now you can not see the URL of the image in source . So , how to save orkut profile display picture ? . There is a very simple solution to achieve this . Follow the steps below .
  • Once you open the profile of the person whose pic you want to save , go to Tools--> Page info in your firefox browser as shown in the figure .
  • Now Click on media tab and navigate through picture URL 's as shown in figure below .
  • Once you find the required Picture URL , click on save as and save the picture to your hard drive .

12/27/2008

Reality children

I am watching a show in one of the regional channels these days where they are organising a competition of singing for children with title Sarigamapa - little champs . I saw both series of this show . Its good to see kids singing , but the way they are made to , It dont seem to be entertaining . I dont know whether the government will ever come up with a law whether there is a lower limit on children's age before they get introduced to this unreal dramatic reality shows .

Did you notice the little kid on the right in the above picture ? She might be hardly 5 years old . She can not even speak properly . She can not even understand comments given to her song by judges properly . She never sang so beautifully till now that she get a chance to sing in a finale . I agree she used to sing very cutely as she is still a kid but ...... The only reason by which she probably would had got forwarded till grand finale is becase she is a reason for the increase in ratings of this show . People used to see the show as it was good seeing the kid singing very cutely .They even promoted the show 2 or 3 times showing the judges giving her bad comments and the kid getting embarassed as a trailer .So weird .

Itwas atleast fine . Now they brought her to finale and again they made her cry . That is the promo for the finale . They showed the same trailer 100 times a day . In the finale they made her sing for two hours and in the end they sent her home crying . It was soo embarassing to watch that show .When the show ended , I decided never to watch that channel again . Better you also dont .
Justify Full
And dear parents , next time you send your kid to a show , dont think just your kid will get name and fame . Think of their feelings before you send them in . For the channels , its just a commercial event . Send and encourage your kids to participate only when you think they really fit in there easily .

How to remove a value from array in javascript ?

Yesterday I was writing javascript and I came across a problem where I had to remove a value from a array in javascript . As usual I tried Array.remove[index] . But it did not work . So how to remove a element from Javascript array ?

Its quite simple . There are two functions which serves your purpose .

splice :

Usage : If you know index of the element / elements to be removed ,
ArrayName.splice(index,Noofelementstoberemoved) ;

E.g : If you want to remove single element from second position in Array=['one','two','three','four','five'];
use Array.splice(1,1) . The result will be ['one','three','four','five']; .

Remove :
If you dont know the index of a particular element to be removed but you know the value of it ,
You can use remove .

Usage : Array.remove('Valuetoberemoved') ;

E.g . To remove fifth element in the above array , use Array.remove('five') ;

12/25/2008

Merry Christmas

Dear readers , I pray that this christmas send all your difficulties away and give you new happiness . Merry christmas . Haffun . Thanks for staying with Technade .

12/24/2008

How to create a shortcut for Windows Search ?

It will be quite good if we have a shortcut to windows search on our desktop . Do you want to place a shortcut to windows on your desktop ? There is a simple solution for this . Just do as follows .
  • Open your notepad by typing Notepad in your start --> Run prompt .
  • Now in the text editor , type the below text .
Set wshshell = CreateObject("Shell.Application")
wshshell.findfiles
  • Now save the file in .vbs format by choosing options as shown in the figure . Filename is the Name of the shortcut and Save as type is All Files and click on Save .
  • Now the saved file is a shortcut to your windows search .Double click on it and it will open Search window.
Love my solution !! What are you waiting for ? subscribe to my blog or click here to get updates via email.