June 27, 2011

Gujarati Movie : ઉંચી મેડી ના ઊંચા કાંગરા (Unchi Medi na Uncha Kangara)

Cast: Suresh Pal, Ajay Panchal, Bharti Sharma, Dilip Darbar, Kalyalni Thakkar, Amitesh Khotre, Heena Rajput, Devendra Pandit, Raksha Desai, Vijayta, Kirti Savli, Usha Lakod, Yogini Soni, Indrayani Bhatt, Sunil Dosani, Harshad Gadvi, Firoz Irani
Director: Sunil Prasad

Watch this movie on YouTube

Unchi Medi Na Uncha Kangara Gujarati Movie

 

List of all Gujarati Movies here

Enjoy!

June 26, 2011

Gujarati Natak : એક સોનેરી સવાર (Ek Soneri Savar)

Mr. Gandhi is the owner of Treckon Pharma. His daughter Sonam falls in love with Kishore, who is Gandhi's employee. Kishore changes the formula of the drug manufactured by Treckon without Gandhi's knowledge due to which a widow looses her son and she challenges Treckon in court. Mr. Gandhi learns that prolonged use of Treckon is harmful. A man of principles, Mr. Gandhi now faces a dilemma. On one is image of his company and his daughter's marriage with Kishore and on the other hand are his principles and justice to a widow. A story of justice and principles - Ek Soneri Savar.

Cast : Siddharth Randeria, Padmesh Pandit, Rohintan Chesam, Suraj Vyas, Sunil Visrani, Ravi Parmar, Vipra Rawal, Swati Shah

List of all Gujarati Natak here

Enjoy!

June 20, 2011

Gujarati Movie : સતી તોરલ (Sati Toral)

Cast : Arvind Trivedi, Sheela Sharma, Chandrakant Pandya, Narayan Rajgore, Meghna Roy, Deveyani Thakkar, Dinesh Mehta
Directed by : Vinod Parmar
Produced by : Dayabhai Kotecha

Watch this movie on YouTube

 

List of all Gujarati Movies here

Enjoy!

June 19, 2011

Gujarati Natak : રુપીયો નાચ નચાવે (Rupiyo Naach Nachave)

Cast : Dharmesh Vyas, Arvind Vekaria, Dilip Darbar, Ishawar Patel, Devyani Thakar, Surbhi Jhaveri

List of all Gujarati Natak here

Enjoy!

June 13, 2011

Gujarati Movie : તારો મલક મારે જોવો છે (Taro malak mare jovo chhe)

Cast : Hiten Kumar, Divya Trivedi, Prakash Patel, Mona Thoba, Arvind Trivedi, Jayshree Parikh, Gemini Trivedi, Pinky Parikh, Rupa Divetiya, Sameer Rajada, K G Vanraja, Devendra Pandit, Chruben Patel
Directed by : Govind Patel
Produced by : Govind Patel

Watch this movie on Youtube

Taro Malak Mare Jovo Che Gujarati Movie

 

List of all Gujarati Movies here

Enjoy!

June 12, 2011

Gujarati Natak : આ વેવાઈ નું કઈ કેહવાય નહિ (Aa vevai nu kain kehvay nahi)

The play is about a girl and a boy who wish to be married and are trying very hard to gain approval from their respective fathers. Their fathers are opposites in every way and cannot stand each other. They are brought face to face for the sake of their children and are trying to come to terms with each other. The girl's father (Rasik Dave) is an ex-colonel. He is a man of principles and believes in thorough discipline whereas the boy's father (Anurag Prapann) is an illiterate villager who lives life to enjoy it and doesn't believe in principles.


The plot revolves around the two fathers trying to jeopardize the relationship of their children and of their families trying to cope with them. A comedy, which centers around the two fathers trying to create different situations to break off the wedding.

List of all Gujarati Natak here

Enjoy!

June 6, 2011

How to find out most searched keywords in United States

In a recent personal task, I needed to extract most searched keywords in US on a daily or monthly basis. While doing some research, I found out that Google actually publishes something called Google Hot Trends on daily basis (on this site). What I wanted was exactly this but I wanted it in the text file so that an automation I had done in browser can read this file and take action.

I thought the best way to extract these keywords would be to write a small C# utility that extracts keywords for a given day.  Here is the source code I wrote to do just that.

   1: StringBuilder sb = new StringBuilder();
   2:  
   3: for (int counter = 0; counter < 15; counter++)
   4: {
   5:     string strURL = "http://www.google.com/trends/hottrends?sa=X&date=";
   6:     string strDateString = string.Format("{0:yyyy-M-d}", DateTime.Now.AddDays(counter * -1));
   7:     Console.WriteLine("Finding most searched keywords for : {0}", strDateString);
   8:     WebRequest request = WebRequest.Create(strURL + strDateString);
   9:     HttpWebResponse response = (HttpWebResponse)request.GetResponse();
  10:     Stream dataStream = response.GetResponseStream();
  11:     StreamReader reader = new StreamReader(dataStream);
  12:     string responseFromServer = reader.ReadToEnd();
  13:     int nStartLocation = responseFromServer.IndexOf("Site Feed</a>");
  14:     int nEndLocation = responseFromServer.IndexOf("<script type=\"text/javascript\">", nStartLocation);
  15:     if (nEndLocation > nStartLocation)
  16:     {
  17:         string strStringtobeProcessed = responseFromServer.Substring(nStartLocation, nEndLocation - nStartLocation);
  18:         string[] delim = { "</a></td>" };
  19:         string[] strArray = strStringtobeProcessed.Split(delim, StringSplitOptions.RemoveEmptyEntries);
  20:         foreach (string strProcess in strArray)
  21:         {
  22:             string strTemp = strProcess.Substring(strProcess.LastIndexOf('>') + 1, strProcess.Length - (strProcess.LastIndexOf('>') + 1));
  23:             Console.WriteLine(strTemp);
  24:             if(strTemp != "\n") sb.AppendLine(strTemp);
  25:         }
  26:     }
  27: }
  28:  
  29: using (StreamWriter outfile = new StreamWriter(@".\SearchKeywords.csv"))
  30: {
  31:     outfile.Write(sb.ToString());
  32: }

If you put above code in any console based application (and add couple of using references on top like System.Net and System.IO), it will create a text file in the current directory called “SearchKeywords.csv” which will look something similar following. Basically it goes and fetches last 15 days most searched keywords and writes them into the file.


image


It also dumps on the command prompt, what it gets from HotTrends website.


image


Sometimes, its interesting to see what people are looking for (I love to go and find out why many people are searching for that, there’s a one or the other reason behind that!)

Gujarati Movie : મહિયર માં મનડું નથી લાગતું (Mahiyar ma manadu nathi lagtu)

Cast : Hiten Kumar, Anandi Tripathi, Arvind Trivedi
Director: Jasvant Gangani

 

Mahiyar Maa Mandu Nathi Lagtu Gujarati Movie Online

 

List of all Gujarati Movies here

Enjoy!

June 5, 2011

Gujarati Natak : સોમ થી શુક્ર તારો, શનિવારે હું મારો (Som thi shukra taro, Shanivare hu maro)

A domestic comedy based on the theme of menage-a-trois, SOM THI SHUKRA TARO, SHANIVARE HUN MARO! has one of the most well-known duos of Gujarati stage, Padma Rani and Arvind Rathod in action.


The title of the play is self-evident of the play's subject.Arvind Rathod who plays husband to Padma Rani and father to actors Chirag Desai and Vaishali Parmar comes under duress when his affair with a widow (Shetal Rajda) is discovered.


Typically, the wife (Padma Rani) is devastated and for her untold grief, she gets her husband (Arvind Rathod) to will all his wealth to him. The children however want to go with their father. In a comic vein, all the other actors in the play including the daughter's fiance (Hemant Bhatt) support the father and thereby wish to live with him!


And as is usual, the twist to this threesome story occurs towards the end with the wife assuming the role of the virtuous and the sacrificing woman who thinks that her husband has fulfilled his social responsibility by supporting and loving a widow.

 

List of all Gujarati Natak here

Enjoy!

June 1, 2011

Gujarati Comedy Show : કારણ વગર નું રાજકારણ (Karan vagar nu Rajkaran)

Jokes on Politician by Sairam Dave. Politicians never change. So does our very own Sairam Dave. Here once more he comes back with his arsenal of jokes to make fun of those "Politician" in Karan Vagar Nu Rajkaran.

List of all Comedy Stage Shows here

Enjoy!