Tuesday, December 24, 2013

PHP Functions And their usages- learn more with @s.shivasurya

power of php
Just like real life we assign functions to be executed by passing inputs as hardwork and outcome as happiness :) by the way integrating them to programming languages functions are important tasks to be provided with input and obtain outputs in desired manner.


PHP FUNCTIONS

PHP is known For it's inbuilt power of functions.The fact is You can design your own function in php and they too can be passed with arguments to execute the corresponding statements!.And this is kn own as USER DEFINED FUNCTIONS.those functions work only when they are called from the program.defining a function in php program is easy job to run a code straight away.It is very helpful when we run a large files in a simpler manner.programmers can feel easy while using functions assigning to different functions and determining the way to be executed while the code runs on the machine.Usage of functions reduce the time and coding lines.Just like we could pass arguments and run the codes to attain desirable results.

For the beginners may fing difficult with moving through the functions of PHP.but when you integrate yourselves,mostly You will find out functions to execute in better manner & you could manage the codings efficiently and fix the bugs in all possible ways.it will be very helpful while arranging in a squence and calling a function and execution.

let's have a small example here about the simple program in php:

this is how beginners write their coding:

<?php
echo "shivasurya.s is a programmer & skilled person.<br>";
echo "boyka is a programmer & skilled person.<br>";
echo "sharukh khan is a programmer & skilled person.<br>";
echo "muzzamil musthafa is a programmer & skilled person.<br>";
?>

this is how experienced programmers write their coding:

<?php
function familyName($fname)
{
echo "$fname is a programmer & skilled person.<br>";
}

familyName("shivasurya.s");
familyName("boyka");
familyName("shahrukh khan");
familyName("muzzamil musthafa");

?>
in this example both generates same results, but the usage of functions plays a vital role and helps to fix the bug in the code easier and identify.This may also Reduce Your coding lines and makes the program to work efficient manner.

Let's see a real life Example here:


A small snippet to Insert Database with functions :

Here we could assume that we can insert the database with consumers data after complete validation and cleaning  :P :P

<?php
function insertdb_user($name,$company,$age,$website,$income)
{
 $update=mysql_query('insert into users (name,comapny,age,website,income)  values("$name","$company","$age","$website","$income")');
 echo "Updated successfully here.";
}

insertdb_user($userpostedname,$userpostedcompany,$userpostedage,
$userpostedwebsite,$userpostedincome
);

?>

here programmer can use many arguments as their wish and create many functions of their own and execute to obtain desired results.apart form the user defined functions ,there a huge amount of PHP inbuilt functions You can read it in Documentation or Manuals of PHP websites.

here is a small example of PHP inbuilt function date()  :

<?php

// Assuming today is March 10th, 2001, 5:16:18 pm, and that we are in the


// Mountain Standard Time (MST) Time Zone


$today date("F j, Y, g:i a");                 // March 10, 2001, 5:16 pm


$today date("m.d.y");                         // 03.10.01


$today date("j, n, Y");                       // 10, 3, 2001


$today date("Ymd");                           // 20010310


$today date('h-i-s, j-m-y, it is w Day');     // 05-16-18, 10-03-01, 1631 1618 6 Satpm01


$today date('\i\t \i\s \t\h\e jS \d\a\y.');   // it is the 10th day.


$today date("D M j G:i:s T Y");               // Sat Mar 10 17:16:18 MST 2001


$today date('H:m:s \m \i\s\ \m\o\n\t\h');     // 17:03:18 m is month


$today date("H:i:s");                         // 17:16:18


$today date("Y-m-d H:i:s");                   // 2001-03-10 17:16:18 (the MySQL DATETIME format)


?>

here in the above pre defined functions are already built inside PHP ,we just call them with suitable arguments and they provide us the correct,desired results in the form of html codes and they are displayed in browsers.thus we can learn more function using the MANUAL website by PHP. & soon you too can create your own functions in PHP and implement in your php websites!



yup!You guys Gone through functions in this tutorial! functions are quite easy according to me,they are easy to handle and maintain huge set of codes and makes the task simpler and easier!

human errors are common!lets make it error free by helping one another!.so,
feel free to comment below!

Saturday, December 21, 2013

Root Your Android Phone Samsung galaxy S Duos- learn more with @chandeesh.android



How to root Samsung galaxy s duos





Rooting is meant to gain access to the system files by creating a new administrator.After rooting superuser app will be created.
1.Download the rooting kit for Samsung galaxy s duos and extract it to your computer.The rooting kit contains recovery tar.zip file,odin.zip,cwm super user and stock recovery.zip files.putCWM-SuperSU-v0.96file in root of the sd card. LINK

2:charge your phone to atleast 60%.Enable usb debugging in your phone.Install Samsung galaxy s duos usb driver in your computer.connect your phone to pc via usb
3:Extract odin.zip to your computer and open odin.exe.
4:switch off your phone remove the battery and insert.Now go to the download mode by pressing volume down+home button +power button
5:If your phone has been connected, one of the COM port turns yellow

6:Now ensure that Auto reboot and F.reset Time check boxes are ticked.
7:click on PDA and select cwm recovery .tar file
8:Click start and be ready to remove the battery when it shows the result PASS.
When it shows PASS remove the battery wait for few seconds and insert it.Now boot to clockworkmod recovery(volume up+home+power button).The touch screen will not work use volume up and volume down keys to move up and down home button to select.


9:Now choose “install from sd card” option then select “choose zip from sdcard”.selectCWM-SuperSU-v0.96 navigate to yes option and click home button to select.After the setup is finished go back and select reboot system now.Now super user app is installed.


NOTE:ROOTING MAY VOID YOUR WARRANTY OR MAY BRICK YOUR PHONE.TRY AT YOUR OWN RISK.

Monday, December 16, 2013

PHP Top vulnerability methods - learn more with @s.shivasurya i-vision blog





We are living in the challenging world,where one Amazes peoples by creating New tecnology ,where the other tries to crack and reveal the secret.The developer tries to fix them by implementing new techniques and hackers tries to explore the vulnerability and this game always go on. Does'nt Ends :P

so lets here some glance about top vulnerabilities!


SQL Injections:



Sql injection is the first black listed here.sql injection occurs when the user doesnt sanitize his user input values and directly updates or inserts in Database.It is mostly commonly seen vulnerability in PHP sites!so,to prevent this now PHP has introduced Prepared statements PDO ,which can let the developers with low level of vulnerability.once the hacker identifies the vulnerability in codings then he could access the database like an ADMIN and he could retrieve data and update data of the users.


XSS




Cross Site Scripting (generally called as XSS) is also a famous well known attack.generally before SQL injection is done XSS plays a vital role in verifying the vulnerability in coding of developers.If so then the hackers start their nasty attacks on the Database.when a programmer doesn't cleans the input values retrieved from users and verifies using preg_match() then he would be surely down by XSS attacks.these attacks are commonly done by two methods $_POST & $_GET in PHP.

for example in $_POST : 


when the user(YOU) submit username and password through this types of forms:

<form action="post.php" method="post">
 <input type="text" name="comment" value="">
 <input type="submit" name="submit" value="Submit">
</form>

when the processing script process like this:
-------------------------------------------------------
"<?php
echo $_POST["comment"];
"
-------------------------------------------------------
and the hackers can just submit this form like this :

--------------------------------------------------------
"<script>alert("hacked")</script>"
--------------------------------------------------------
this may be not vulnerable untill the QUERIES are unmodified ! :D

for example in $_GET : 


when the user searches by get method in PHP:
------------------------------------------------------------------------------------------

"<?php
// Get search results based on the query
echo "You searched for: " . $_GET["query"];
// List search results
..."
--------------------------------------------------------------------------
The example can be a very unsecure results page where the search query is displayed back to the user. The problem here is that the $_GET["query"] variable isn’t validated or escaped, therefore an attacker could send the following link to the victim:

so he might the targeted people may get link like this:
------------------------------------------------------------
"http://example.com/search.php?query=<script>alert("hacked")</script>"
------------------------------------------------------------
and output would be like this :
----------------------------------------------------------------------------
"You searched for: <script>alert("hacked")</script>"
----------------------------------------------------------------------------

Data Sanitization:


Data Sanitization is mainly focus on cleaning the variable with unwanted scripts inside them.the are just converted in to special format rather than from their native form and inserted in database.
example follows here!
-----------------------------------------------------------
"<?php
// sanitize HTML from the comment
$comment = strip_tags($_POST["comment"]);"
-----------------------------------------------------------

Data validation:




Data validation is an important key factor in terms of PHP to prevent attacks on Database and to maintain the quality of Database just like unfilled columns and other updation in Database.so here nowadays experts in PHP recommend to use preg_match() function to verify the user input details to utmost level and send them for further proccessing and updation.
-----------------------------------------------------------------

have a quick example below:

"<?php
// validate a US phone number
if (preg_match('/^((1-)?d{3}-)d{3}-d{4}$/', $phone)) {
    echo $phone . " is valid format.";
}"
-------------------------------------------------------------------

Data encryption using PHP :


As you may know that how much extent the techniques are developed to prevent such activities the hacker tries to break the mechanism and enters the database to steal the information.so Here Encryption of data plays a vital role here.Facebook & Google heavily encrypt the users database through their own encryption techniques like making it as functions and implementing them. encrypting the data is very easy for developers but decrypting the data by their own is a big part unless they are expert in PHP and logics.PHP has some encrypting functions such as HASH SALT methods, the popular MD methods and so on,refer here for complete guidance.
--------------------------------
example before encryption :

username :s.shivasurya  || password :i_know_u_would_lookup_here:D

after Encryption:

username:s.shivasurya || password :5dsfcv82fvbd2fvsdfv52dvsdv512vsdfv
-------------------------------

thus YOU may GET slight thinking of your vulnerabiltiy in your codings.just get updated with PHP website manual .if the function is no longer supperted then it will be noted as "This function has been DEPRECATED as of PHP 5.5.0. Relying on this function is highly discouraged."

only hackers can challenge the programmers! :D






Sunday, December 15, 2013

How Does Facebook Earns money ? - learnmore with @s.shivasurya i-vision blog


Have you ever wondered why facebook allows you to use their service free! though they run about 30,000 servers(app.) huge amount of electricity,about 3000 employees & one billon active users.
so why do they offer us free service for us.are we relatives to them or they run free organization.the answer is simply NO .you would have seen this quote "It's free and always will be.
so coming to the conclusion that they show as advertisements and generate revenue through advertisements.

base for advertisements?

facebook target all kinds of peoples such as programmers, bloggers. business peoples , musicians , advertisers . publishers each and every corner in the world . so they have futures like status updates ,photo updates ,pages events, groups which target common peoples in life. so, and it act as user friendly environment for users all around the world.so it has more than one billion active connection around the world.

according to business , generally they advertise where peoples activities are more.so they targeted facebook were a huge mass of peoples flow in to it. you would have seen in our cities, advertisers advertise in exhibition,parks, and other malls.take this in to computer world ,they just target where peoples activities are more.

why advertisements?

At the beginning facebook was utilized by Harvard university students.but later it was integrated in to big giant website and it was integrated and used by whole public peoples.after 2008, advertisements were included in facebook which made them a huge profit for them.this made a big revolution in the filed of advertisements were users can generate their own ads using facebook and could target many number of peoples with click impressions that makes their business success and increase traffic for their websites.

how much you're worth for facebook?


have you ever wondered how much you're valued by facebook per year.It's $100 or $50 or $25 .no it's just $4.84 per year.but they bring about a huge profit because there are one billion active connections around the world . nowadays facebook shows more advertisements,you would have experienced it newsfeeds bannered as sponsored or promoted .And you might regular advertisements in side of your newfeeds. and this year they had started facebook marketing which target business success using facebook.

what do You gain from facebook ?


as a part of facebook, you are the users just get connected through the worls with your friends , post share and message ,pokes . but there is a big process going on behind each and every clicks in facebook.you just gain information and traffic for your websites.for a business peoples they gain advertisements through few clicks and few payments.And it has many developer options like facebook plugins such as likes, send button,share button where you share this out of facebook. Facebook developer are allowed to use Software Development Kit (SDK) in various field such as Android ,I-OS, PHP,JavaScript ways.They allow the developers to access their database and allow them to use Application Out of facebook and inside to.

What Do You Learn from Facebook?


for developers it provides an Excellent platform for developing applications using Android,I-OS,PHP. you could develop using SDK pack provided by facebook. When users use facebook application,they provide the apps developer permission to access your details and use it up in the application.this is known as Third party applications. for more details developer.facebook.com

what is facebook IPO ?


"An Initial Public Offering, or IPO, is when a company first goes public and issues stock certificates, or ownership interest, in that company. Every company traded on the stock market, whether the Dow Industrial index, the S&P 500, the NYSE, the NASDAQ, or a foreign exchange, will go through an IPO to begin its life as a publicly-traded company.
The process is quite complex, but in a nutshell, the company decides what it thinks it's worth, and then tries to sell its stock at a certain price to raise the amount of money they think they need for capital investments or to pay off private investors. However, the problem is that a company never knows how highly it will be valued on the market, which means that it may overprice its stock, leading to low sales and a bad image (first impressions, right?). Or, the company may undervalue its stock, leading to lost potential earnings from its offering.
Facebook's IPO is different, however, since Mark Zuckerberg & Co. have estimated the worth of their brainchild at a rather staggering $100 billion (later reduced to a much more reasonable $96 billion ... but then revised higher). If successful, this will rank as the largest Internet IPO in history, as well as one of the largest IPOs in any industry. 
However, to your potential disappointment, you're not going to be able to get in on the sale through eTrade or your friendly local stockbroker. IPOs are exclusive events that are typically reserved for deep-pocketed mutual fund companies, like Berkshire Hathaway, and other large institutions, as well as the customers of the firms underwriting the IPO.
The conundrum arises form the fact that the going price of stocks typically fluctuates wildly upon their release. For instance, Facebook's target price is currently $34-$38 per share, which isn't too bad for a tech stock, but depending on investor confidence, that price may rise rapidly, providing a "stag profit" for early adopters, or the share price could plummet, leaving initial investors high and dry.
As it stands, Facebook's IPO is unusual, especially in the tech industry, since many companies try to go public as soon as possible and seek to raise funds right away. In the case of Zuckerberg & Co., however, they waited until they were basically forced to go public. Considering that they were able to write a $1 billion check for Instagram (since put on hold), FB, as it will be traded on the NASDAQ, hardly needs the capital they will raise from this offering. Yet going public will allow Facebook to become an even greater power in the tech sector, and fulfill the idea that Facebook, and not Bing, Yahoo, Amazon, or even Apple, is the biggest threat to Google's search-based empire."

learn more here

and all around I Would say in a just a picture about Facebook!




Eye Opener Madurai - amaze more with @harish

திருக்குறள் இயற்ற பட்ட இடம் 

2000 வருஷம் தொன்மை உடைய மதுரைய பத்தின என்னோட கோபம் இது .மதுரைய பத்தி ஆர்வம் இல்லாதவங்க ;சினிமாக்கரங்களும் ,அரசியல்வாதிகளும் மதுரைய சபிக்கர மாதிரி skip பண்ணிடுங்க ..

செமஸ்டர் பரிட்சைன்னு   இல்லாத முளைய test பண்ணி முடிச்ச சாய்ந்தரமே ,என் உயிர் நண்பன் என் உயிரை எடுபதர்காக  தகராறு பண்ணி தகராறுக்கு குட்டிட்டு போனான் பகல் கொள்ளையா 120 ரூபாய் போனது தான் மிச்சம்.



இந்த போஸ்டர் பார்த்து ஏமாந்து தாங்க நானும் போனேன், பயபுள்ள  இவ்ளோ பயபக்திய போஸ் கொடுத்திருக்கானே, நம்ம தமிழ் சினிமாலே மதுரையே இப்புடிஎல்லாம் கூட காட்டுவாங்க போலிருக்க்னு நம்பி உள்ள போய்  உட்கார்ந்தேன். ஆனா எல்லாம் ஒரே குட்டைலே ஊருன மட்டைக தான் ரொம்ப சீக்கிரமே  புரிஞ்சுருச்சு.

(இப்புடி தான் எனக்கும் என் friend க்கும் இருந்துச்சு படம் பார்த்து theatre  லே இருந்து வந்தபோது )

தகராறு  படத்த பார்த்து நேரத்தையும் பணத்தையும் (மருத்துவ செலவு உட்பட ) வீணடித்து ,அருள்நிதி புண்ணியத்துல தலை வலி பெற்றதால review பண்ண விரும்பல.
                     
                     என் எதிரிக்கு  கூட(நமக்கு அப்படி யாரும் இல்லையே) இந்த நிலைமை வரக்கூடாது  

ஆனா ஒன்னு இந்த படம் பார்த்ததுக்கு அப்புறம்  வேலாயுதம் சந்தானம் மாதிரி இல்லாத மனசாட்சி கலர் கலரா தோன்றி  செறுப்பால அடிச்சுது .

இப்போ நாம மதுரைலே இருக்குறத சொல்லபடுற சில அமானுஷ்ய சக்திகள்  பத்தி பாப்போம் வாங்க ,

1.சினிமாவில் காட்டப்படும் மதுரை :

நம்ம ஊர்லே director எல்லார்க்கும் மதுரை அப்படினா ஒரு விதமா ஓபன் பண்ணுவாங்க பாருங்க 

"அய்யோ, அப்போ அவங்க அவங்களுக்குள்ள இருக்குற steven spielberg கண்டு பிடிச்சு வெளிய கொண்டு வருவாங்க பாருங்க அதை தாங்க முடியாது "

ஓபன் பண்ணா  நம்ம ஹீரோ ஒரு அலுக்கு லுங்கி லே வருவார் அவர் கூட சம்பந்தமே இல்லமே friends  ன்னு  ஒரு நாலு பேர் இருப்பாங்க அவங்க  மதுரை பாஷைன்னு ஒன்னு பேசுவாங்க நீங்க அப்படியே அத  நம்பிரனும்.

நம்ம producer  எல்லாம் ஏன் மதுரையே choose பண்ணறாங்கன்னு இப்போ தான் புரியுது, dress செலவு கொறையும் பாருங்க  

நான் சொன்னத நம்ப மாட்டீங்களா இப்போ பாருங்க நான் காட்டுறேன் 





பார்த்தீங்களா நான் சொன்னமாதிரியே இருக்கா இது trailer தான் main picture நீங்களே  பார்த்திருப்பீங்க. இது போக இத விட நெறைய அற்புத காவியங்கள் இருக்கு உதாரணத்துக்கு தூங்காநகரம் , மாயாண்டி குடும்பத்தார் etc .

நம்ம ஊர்லே படம் எடுக்குற cameraman எல்லார்கிட்டயும் பெரிய camera இல்ல போலிருக்கு, பசங்க வெறும் ரெண்டு floor க்கு மேல காட்டவே மாட்டேங்குராங்க, கேட்ட மதுரையோட அழகு காடுரோம்னு சொல்லிக்க வேண்டியது. ஆனா உண்மையிலே நம்ம மதுரை லே பெரிய பில்டிங் இல்லைன்னு  நெனைசுக்குரங்க வெளியூர் காரங்க, இதுல கொடுமை என்னனா இப்படி காட்டுற  சினிமா காரங்க எல்லாம் 5 ஸ்டார் ஹோட்டல் தான் தங்குவாங்க. 

(source  போட்டால் மட்டுமே நம்பும் நண்பர்களுக்கு )




இப்படி பல mall கல் இருக்கும் போதும் என் தன் இப்படி காட்டுறாங்களோ இந்த நிலைமை மாறனும்.

இதுல மதுரை பத்தின படம் மதுரையே சுத்தி நடக்குதுன்னு சொல்வாங்க , ஆனா ஷூட்டிங்  மதுரைக்கு ரொம்ப பக்கதுல நடக்கும், இன்னும் ரியல் எஸ்டேட் ப்ரோமொடேர்ஸ் பாஷை லே சொல்லனும்ன 

" மதுரைக்கு மிக ஆறுகமையில் சும்மா ஒரு 1000 km  தான் நம்ம ஹைதராபாத் லே நடக்கும் "

இதற்க்கு நல்ல உதாரணம் நம்ம தளபதி படம் ஜில்லா படம் மதுரை சுத்தியே நடக்குமாம், ஆனா ஷூட்டிங் ஹைதராபாத் லே தான் நடக்கும். 



இதையெல்லாம்  கூட அட்ஜஸ்ட் பண்ணி படம் பார்த்தீங்க அப்படின்னு சொன்னிங்கனா மதுரை slang அப்படின்னு சொல்லி நம்ம காது கிழியுற வரைக்கும் கத்தி தொலைவங்க அத கேக்கமுடியாது . 


"தமிழ் சினிமா director  மற்றும் writers க்கு ஒரு சின்ன செய்தி இல்ல வேண்டுகோள் தயவு செஞ்சு இனிமேல் மதுரை slang ன்னு  சொல்லி எதாவுது எழுதி உசுர வாங்கதீங்க....!"

2. ரௌடிகள் பிடியில் மதுரை 



எல்லா படத்துலயும் மதுரைன்னா பொண்ணுங்கள பிடிச்சு கலாயிக்குரா மாதிரி காட்டுவாங்க, ஆனா உண்மை என்ன வென்று மதுரை மாணவர்கள் மற்றுமே அறிவோம் அதுலயும் நான் நன்கு அறிவேன்.

அது போக மதுரை லே கொலை,கொள்ளைன்னு  சொல்லுவாங்களே  அதுவும் நடக்கும், but  அது மதுரை லே நடந்த அது பெரிய நியூஸ் ஆகிடுது but  என்ன பண்ண  எல்லாம் அவன் செயல்.

ஆனா சத்தியமா சொல்றேங்க இது வரைக்கும் நான் மதுரையின் மறுபக்கத பார்த்ததே இல்லை 

புரியலயா  உங்களுக்கு ?

அதாவுது நான் இது வரைக்கும்  ஒரு கொலையே  கூட என் கண்ணால பார்த்ததே இல்லை.

மதுரையும் தமிழ்நாடு லே இருக்குற ஒரு சாதரணமான சிட்டி தான் இங்க நல்லவங்களும் இருக்காங்க ,கெட்டவங்களும் இருக்காங்க.

இன்னும் சொல்லனும்னா  இங்க 

பயந்தவர்களும் இருக்கோம், வீரர்கள் மட்டும் இல்லை.(இங்க நான் என்னை தன் குறிப்பிடிகிறேன் )

3.பெண்களை போற்றி பாதுகாக்கும் மதுரை 

மதுரைலே தன் பொண்ணுங்களே ரொம்பவும் மதிக்குறோம், இதற்கு உதாரணம்  மற்றும் அத்தாட்சி,

நார்த் ஈஸ்ட் பக்கத்தில் இருந்து ( simple  சொல்லனும்னா நீங்க பாக்குற எல்லா எடத்துலயும் வேல பாக்குற  chineese தான் ) வந் து உழைக்கும் பெண்கள் நம்ம ஊர பத்தி என்ன நேனைகுரங்க நு ஹி ஹிந்து நாளிதழ் பெட்டி எடுத்தது .

இப்போ நம்ம naturals spa லே எடுத்துகோங்க ,


இங்க வந்து வேலை பாக்குறவங்க லே ரெண்டு மூணு பேர் சொன்னது மட்டும் போடுறேன்......................................

Sentei Lalrem from Meghalaya, a beautician working at a salon in the town says that she and her friends are sometimes late from work but have never faced any danger. “Once we went for ice creams at eleven in the night. Except for a few men smoking at a petty shop, the road was empty. They didn’t misbehave. I feel safe in Madurai,” she says.


Shabina Nipatra from Jorhat in Assam says,  We are used to wearing modern clothes and this being a conservative town, initially we invited strange looks. But now, after nearly 3 years, I feel people don’t really mind.” She adds, “We are few here and become friends easily. Though we don’t mingle much with the locals, in our respective work places, we come in contact with many and get along well with all,” she says.

நம்பா  குமாரசாமிகளுக்காக link தரேன் பொய் பாருங்க 


இப்படி பட்ட ஒரு ஊரை எப்படி எல்லாம் மாத்தி  காட்டுறங்க ?

4. அரவாணிகளை கூட அரவணைக்கும்  மதுரை 

நம்ம எல்லாருமே வெறுத்து ஒதுக்கும் கடவுளின் அறுப்புதமான படைப்புகளான திருநங்கைகளை கூட அரவணைக்குற இடம் தான்  மதுரை 



இதை பற்றி இன்னும் தெரிஞ்சுக்க இங்க போங்க :


5. மதுரை உண்மையில் ஒரு தூங்காநகரம் 

எல்லா படத்துலயும் பார்த்தீங்கனா ஹீரோ வந்து மதுரை லே ஒரு தொழிலாளி இல்லலைனா  வெட்டிபயல மாதிரி  தான் காட்டுவாங்க, ஆனா மதுரைக்கு நிறைய  சிறப்பு இருக்குன்னு  மறந்து போய்ட்ரங்க. 

உண்மையில் மதுரை ஒரு வெகு ஜன நகரம்( cosmopolitain ), இங்க நெறைய மற்றும் வெவ்வேறு மொழிகள்  இருக்கு 




மதுரையில் பிற மொழி சகோதரர்கள் பற்றிய விஷயங்களை அறிந்து கொள்ள செல்லவும்:


அது மற்றும் இல்லமா மதுரை லே உலக புகழ் பெற்ற தியாகராசர் பொறியியற் கல்லூரி (நான் அங்க தானே படிக்குறேன் அப்புறம் எப்படி சொல்லுவேன் )இருக்கு .

மதுரையின் சிறப்புகள்னு  அடுக்கிநோம்னா  நெறைய இருக்கு, தமிழ்நாட்டின் முதல் 4k  projector  theatre (குரு), சர்வதேச விமான நிலையம், மல்லி, பெப்சிக்கு  tough  fight தரும் போவொண்டோ

இன்னும் தெளிவா சொல்லனும்னா

 corporate  என்னும்  சனியனிடம் முழுசாக மாட்டிகொள்ளாமல் இருக்கும் ஒரே ஊருநம்ம மதுரை தான் .

இது எல்லாத விட முக்கியம் marrybrown , KFC இருக்கு(இது இருந்த தான் அதா ஒரு ஊராவேமதிக்குரங்க நம்ம பசங்க ).

இப்போவவுது ஒதுகொங்க மதுரையும் பெரிய ஊரு தான்.

மதுரை பற்றிய உண்மைத்தன்மை ஊடகங்கள் மறந்ததா இல்ல மறைக்குதான்னு தெரியலை. 20 வருஷம் எனக்கு  இடம் குடுத்ததாலையோ என்னமோ தெரியலை மதுரையை பத்தி சொன்னா வேட்டைக்காரன் விஜய் போல நரம்பு எல்லாம்  ஏகிரிடும்,

  
                                         (நரம்பு தளர்ச்சியான்னு  test  பண்ணனும்)





மாற்றம் ஒன்று தான் மாறதுனு சூரியா சொல்ற மாதிரி மற்றதை எதிர் பார்த்து நொந்து நூட்லஸ் ஆனவன்

p .s -எப்டி என்ன புலம்ப வெச்ச தகராறு டைரக்டர்கு நன்றி சொல்லிகறேன்

pictures and info courtesy: allaboutmadurai,guna amuthan photography,skycrappercity etc .

note: i-vision blog doesn't promote any offensive issues.we don't specify any peoples particularly here.
be feel free to comment below