A R Rahman Live Concert in Pune.
Unbelievable,
A R Rahman – The God of Music.
My Dream came true yesterday evening. I saw our God of Music “A R RAHMAN” at Balewadi Stadium Pune, I can’t imagine that ” was it really you?”. Me, my brother Anil and my friend Amit were there at 2.30 pm in a Q till 4.15 pm. After checking we ran to take our seats that were on first come first serve basis and we got perfect seats at 4.30 pm and waiting till 7pm for our God’s entry.
At 7.15 our Boss’ concert started with “Mausam and Escape” music and my temparature was going onnnnnnnnnnnn. For that moment I forgot all my existing world and gone into the wolrd of our God, What a Music man !!!, I don’t have any word to express the A R Rahman’s music but one thing I have to say that our God has power to dance dead bodies also.
After that, entry of our God was mind blowing. He was starting the song with “Jaage Hain” from Guru movie. What a voice man! His voice has all world music definitions to express music, no need music for A R Rahman voice, his voice is the music . Everybody were chilling at that moment.
We all enjoyed the whole show, mostly college guys were shouting with A R Rahman music and giving the slogan like ” You are a GOD, GOD of Music”. An amazing thing to see in the concert for Rahman who rules the hearts of many.
Here are list of songs played at concert by Rahman,
- Mausam & Escape (Slumdog Millionaire)
- Jaage Hain (Guru)
- Machan Machan (Tamil)
- Delhi-6 (Delhi -6)
- Roja Janeman (Roja)
- Masakalli (Delhi-6)
- Guzarish (Ghajini)
- Dil Se (Dil Se)
- Jiya Se Jiya
- Ringa Ringa ( Slumdog Millionaire)
- Genda Phool (Delhi-6)
- Tu Hi Re ( Bombay)
- Khamosh Raat ( Thakshak)
- Kahin Toh ( JTYJN)
- Sarfaroshi Ki Tamanna ( The legend of Bhagat Singh)
- Bharat Hamko Jaan Se Pyara (Roja)
- Kabhi Kabhi Aditi ( JTYJN)
- Chupke Se (Saathiys)
- Rehna Tu ( Delhi-6)
- Mayya Mayya (Guru)
- Kaise Mujhe (Ghajani)
- Kwaja Mere Khwaja (Jodha Akbar)
- Arziyaan ( Delhi-6)
- Mix of Azeem-O-Shaan Shahenshah and Tamil Song ( Awesome)
- DJ played all mixing of almost most famous rahman’s songs
- Hamma Hamma (Bombay)
- Jai Ho ( Slumdog Millionaire)
- Vande Mataram
All songs were outstanding. Importance of concert also raised by using the backdrop 150 ft * 80 ft LCD screen on stage. Sound System was great never heard like this.
Still feeling it…
Jai Ho
Santosh Wadghule.
IP address location in Ruby and Rails…
Here, I have made code that converts the IP address to the location using IP location tools. Code parses the XML file of IP Address Location and returns the string that contains location of IP Address. Code is below…
require 'net/http'
require 'rexml/document'
include REXML
class MapsController < ApplicationController
def index
@location = locateIp()
end
def locateIp
#ip = "123.123.123.123";
ip = request.remote_ip
ips = ip.to_s
url = "http://iplocationtools.com/ip_query.php?ip="+ips
xml_data = Net::HTTP.get_response(URI.parse(url)).body
xmldoc = REXML::Document.new(xml_data)
# Now get the root element
root = xmldoc.root
city = ""
regionName = ""
countryName = ""
# This will take country name...
xmldoc.elements.each("Response/CountryName") {
|e| countryName << e.text
}
# Now get city name...
xmldoc.elements.each("Response/City") {
|e| city << e.text
}
# This will take regionName...
xmldoc.elements.each("Response/RegionName") {
|e| regionName << e.text
}
ipLocation = city +", "+regionName+", "+countryName
return ipLocation
end #end of method locateIp
end
Learnig Ruby…
I had decided that I will learn ruby language in this new year, but can’t wait. So I started to learn ruby. For that first I want basic knowledge about the ruby language, so I have downloaded pdf of ” The little book of Ruby” . It is very simple to learn and understand. It covered the all basic concept. My next project will be in ruby language.
PHPCamp Pune for pretty hot programmer.
Last saturday, there was PHPCamp in pune for full day. I also was a part of that camp. More than 600 guys were came there. My brother Anil, his friend Rahul and me gone there but we were late. So we not only missed some important topics but also missed free T-shirt …bad. Topics were on OpenSocial, Drupal, Joomla Framework and so on. After lunch, I liked the topic on Orkut application which had given by Pravin Nirmal. My college friends Chirag, Kunal, Hardik and me were enjoying the PHPCamp with tea in rainy day. After Directi’s seminar they had given T-shirt. Thanks to Directi. All day was fresh and powerfull.
ubuntu & macintosh
As I explained in my previous post that I have installed ubuntu on my PC. When I operated ubuntu for 2 hours, I think ubuntu is quite similar to Macintosh as prototypes,structures,effects and some functions.Thats interresting, because I like macintosh. In college I use redhat9 linux (old version) for practical, but ubuntu is very powerfull than redhat and high graphic resountion as I think.
My Blog Fetcher…
Blog fetcher is program in PHP that i have made to fetch my blog heading titles (topics) and also the dates and categories. But this program is applicable only for my particular blog not for other blogs. So that I have used file handling for reading data of My blog. Blog fetcher is similar to the concept of RSS , But still it is not RSS. It catches the html tags of my blog and reads data of that tag and prints the data. Output is bellow…
php code is bellow :
$source = "http://programin.wordpress.com/";
$file = fopen("$source", "r") or exit("Unable to open file!");
while(!feof($file))
{
$line = fgets($file);
if($pos1 = strpos($line , "h2" )) //for catching the blog post titles
{
echo $line;
}
else if($pos2 = strpos($line,"meta")) //for catching the dates and categories
{
echo $line;
}
}
fclose($file);
?>
I have used css for attractive output. Code of css is bellow :
html,body{margin:0.5%;padding:0}
div#header h1{
height:80px;margin:0;
border-bottom:2px solid #00529B;
border-top:2px solid #00529B;
border-left:2px solid #00529B;
border-right:2px solid #00529B;
background: #BDE5F8;
padding-left:5px;
font-family :'Trebuchet MS';
color : #00529B;
}
h2{ font-family :'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
font-size: 15pt;
color: green;
text-align: left;
margin-top: 0.5%;
}
div#container{
border-bottom:2px solid #00529B;
border-top:2px solid #00529B;
border-left:2px solid #00529B;
border-right:2px solid #00529B;
padding:4px 6px;
width:800px;
margin:0 auto
}
div#content{padding-left:5px; margin-top:3%}
.meta {
border-bottom: 1px dotted #00529B;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
color:black;
padding:4px 6px;
margin:0 0 10px 0;
}
a:link {color: #00529B}
a:visited {color:gray}
a:hover {color:green;font-size: 100%}
a:active {color:black}
a {text-decoration: none}
span.small {
color : green;
font-size:15px;
}
Simple Time Machine in PHP
I am learning php. I have made one php program which is about the time machine. This is very simple program using mktime() and date() functions. For that you should make first html form page for accepting the name of user and number for to go further days (i.e. Future). The code is given below,
<form action = "welcome.php" method = "POST"> <table> <tr><td> Enter Name:</td><td><input type = "text" name = "name"> </td></tr> <br /> <tr><td> Enter Number:</td><td> <input type = "text" name = "num"> </td></tr> <br / > <tr><td> <input type = "submit"> </td><tr> </table> </form>
After that you should make another page for PHP code. The code is given below,
<?php
$name = $_POST['name'];
$num = $_POST['num'];
echo "Welcome <b> ".$name;
echo "</b> <br><br><hr>";
for($i=1;$i<=$num;$i++)
{
$tomorrow = mktime(0,0,0,date("m"),date("d")+$i,date("Y"));
if($i==$num)
{ echo "<br><hr><b>";
echo " Welcome to the future !!! ".date("m-d-Y",$tomorrow);
echo "</b> <br>";
echo $name.", You are in future... ";
}
else
{
echo date("m-d-Y",$tomorrow)." You was going through this date to the future<br>";
}
}
?>
Start the apache server or your any php supported server and run these program on server.
And Enjoy The Time Machine..




