'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Kilimanoor

Kilimanoor is a census town in the state of Kerala, India. It is located on MC/SH 1 Road, 36 kilometres (22 mi) from the city of Thiruvananthapuram (Trivandrum). The town area is administered by two grama panchayats, Pazhayakunnummel and Kilimanoor grama panchayat. Kilimanoor town is an important business centre and one of the potential fast-growing towns in south Kerala. Kilimanoor is looking forward to become a municipality.

History

Kilimanoor ("land of the parrot and the deer") was ruled by a tribal chief during time of the Ettuveetil Pillamar in the kingdom of Travancore. The chief rebelled against the Maharajah Marthanda Varma, and the region was annexed and given to the Royal House of Kilimanoor.

This Royal House of Kilimanoor has a history of more than 300 years. In 1705 (ME 880), the son and two daughters of Ittammar Raja of Beypore Thattarikovilakam, a Kolathunadu royal house, were adopted by the Royal house of Venad. Ittammar Raja's sister and her sons, Rama Varma and Raghava Varma, settled in Kilimanoor and married the now-adopted sisters. Marthanda Varma, the founder of the Kingdom of Travancore was the son of Raghava Varma. Raghava Varma's nephew, Ravi Varma Koil Thampuran, married Marthanda Varma's sister. Their son came to be known as Dharma Raja Kartika Thirunnal Rama Varma. In 1740, when an allied force led by Dutch Captain Hockert supporting the Deshinganadu king attacked Venad, an army from Kilimanoor tactfully resisted and then defeated them. Although a small victory, this was the first time an Indian army defeated a European power. In recognition of this feat, Marthanda Varma, in 1753, exempted the areas under control of Kilimanoor Palace from taxes and proclaimed autonomous status. The present palace complex was also built during this time along with the Ayyappa temple for the family deity.

Kilimanoor Assembly Constituency

The Kilimanoor Assembly Constituency of Kerala Legislative Assembly consists of Pazhayakunnummel Pulimath, Kilimanoor Grama Panchayath, Nagaroor, Madavoor, Pallickal-Kilimanoor, Karavaram, Mudakkal and Navaikkulam Panchayats. Adv. N. Rajan has represented this constituency since 2001.

Members of Legislative Assembly

  • Adv. N. Rajan2001-2006
  • Bhargavi Thankappan 1996-2001
  • References


    Podcasts:

    • വഴിയോരത്ത് കോഴിപെരട്ടും താറാവും | M C Road restaurant for Kerala food - Vazhiyorakkada Kilimanoor

      വർഷങ്ങളായി നല്ല പെരട്ടും താറാവും മറ്റു രുചികളും വിളമ്പുന്ന കിളിമാനൂർ ഉള്ള വഴിയോരക്കടയിലെ രുചികളാണ് ഇന്ന് നമ്മടെ വിഡിയോയിൽ. For several years now this restaurant is serving Kerala food to people who travels between Kottayam and Trivandrum on MC Road. For contacting Villa projects in Perumbavoor: +91 90743 27918 Vlog: 1073 Subscribe Food N Travel: https://goo.gl/pZpo3E Visit our blog: FoodNTravel.in Today's Food Spot: 🥣 Vazhiyorakkada - on MC Road, Kilimanoor 🥣 Location Map: https://maps.app.goo.gl/TDctFYs4ZuShGQzK7 Address: Kuravankuzhi,Kilimanoor P.O, Kerala 695614 ⚡FNT Ratings for this restaurant⚡ Food: 😊😊😊😊😑 (4.2/5) Service: 😊😊😊😊😑 (4.1/5) Ambiance: 😊😊😊😊 (4.0/5) Accessibility: 😊😊😊😊😑(4.2/5) Parking facility: Yes Google rating for this restaurant at the time of shoot: 4.1 from 11,630 r...

      published: 19 Jul 2024
    • Unreal Veg & Non-Veg KERALA FOOD at Vazhiyorakkada Restaurant | Kilimanoor, India

      🧳 VISHNU: https://www.instagram.com/vishnukg007/ 🎥 WATCH: Dosa Breakfast in Hyderabad https://www.youtube.com/watch?v=v0aAS0GfPs8 👕 DAVID’S BEEN HERE SHIRTS & MERCH: https://teespring.com/stores/davids-been-here My second day in God’s Own Country, Kerala, India continued with an unbelievable lunch at a local restaurant. Come along with me as I enjoy veg and non-veg Kerala food like seafood, duck, chicken, and liver at Vazhiyorakkada Restaurant in Kilimanoor, India, and visit Varkala Beach! After leaving the massive Jatayu sculpture in Chadayamangalam, my boy Vishnu and I continued at Vazhiyorakkada, a traditional Kerala restaurant in Kilimanoor. They make some of the most traditional cuisine in Kerala and sell mostly non-veg foods and lots of different types of curries. Everything is lo...

      published: 25 Mar 2020
    • തിരുവനന്തപുരത്ത് ക്ഷേത്രത്തിൽ പാചകവാതകംചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Trivandrum

      തിരുവനന്തപുരം കിളിമാനൂർ പുതിയകാവ് ഭഗവതി ക്ഷേത്രത്തിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തി മരിച്ചു Melsanthi died after gas leak explode in Thiruvananthapuram Kilimanoor Puthiyakavu Bhagavathy temple #trivandrum #newsupdate #latestnews

      published: 11 Oct 2024
    • ക്ഷേത്ര തിടപ്പള്ളിയില്‍ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kilimanoor

      പാചകവാതക ചോര്‍ച്ച; ക്ഷേത്രത്തിൽ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kilimanoor Puthiyakavu Temple #kilimanoor #puthiyakavutemple Join this channel to get access to perks: https://www.youtube.com/channel/UCFx1nseXKTc1Culiu3neeSQ/join ഏറ്റവും പുതിയ വാർത്തകൾ തത്സമയം കാണുന്നതിനായി സന്ദർശിക്കുക == https://www.youtube.com/live/HGOiuQUwqEw == https://www.reporterlive.com Watch Reporter TV Full HD live streaming around the globe on YouTube subscribe to get alerts. == https://www.youtube.com/reporterlive To catchup latest updates on the trends, news and current affairs Facebook : https://www.facebook.com/reporterlive Twitter : https://twitter.com/reporter_tv?t=Cqb... Instagram : https://www.instagram.com/reporterliv... WhatsApp Channel: https://whats...

      published: 11 Oct 2024
    • Puthiyakavu Temple Fire | Kilimanoor ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്തെറി ; പൊള്ളലേറ്റ മേൽശാന്തി മരിച്ചു

      Puthiyakavu Temple Fire : തിരുവനന്തപുരം കിളിമാനൂർ പുതിയകാവ് ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്തെറിയുടെ ഞെട്ടിക്കുന്ന ദൃശ്യം പുറത്ത്. ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ നിവേദ്യം ഒരുക്കി പുറത്തിറങ്ങിയ ശേഷം പാചകവാതകം ചോരുന്നതറിയാതെ വിളക്കുമായി അകത്ത് കയറുമ്പോഴാണ് തീപിടിത്തമുണ്ടായത്. ചിറയിൻകീഴ് ഇലങ്കമഠത്തിൽ ജയകുമാരൻ നമ്പൂതിരിയാണ് മരിച്ചത്. Shocking images of the explosion at the new temple in Kilimanoor, Thiruvananthapuram, have emerged. The fire broke out when someone unknowingly entered the kitchen with a lamp after preparing offerings in the temple's cooking area, while a gas leak was present. Jayakumaran Namboothiri from Chirayinkeezhu Ilankamath died in the incident. #puthiyakavutemplefire #templefiredeath #kilimanoordeath #puthiyakavu #news18kerala #malayalamnews #keralanews #newsinmalayalam #new...

      published: 11 Oct 2024
    • A tour of Kilimanoor Palace, the home of eminent artist Raja Ravi Varma | The Hindu

      The Kilimanoor Palace near Thiruvananthapuram in Kerala was where eminent artist Raja Ravi Varma was born in 1848. The palace has a majestic archway entrance, built in the native architectural style of Kerala, with wide verandahs, courtyards and long corridors. In a sunlit room, Raja Ravi Varma painted some of his masterpieces. At present, there are only prints of some of his famous paintings, a few photographs, a majestic portrait of the artist and a marble bust of his younger sister Mangala Bayi. The Palace Trust had drawn up elaborate plans to celebrate his 175th birth anniversary on April 29. The Trust unveiled his unfinished painting of the Parsi Lady and a portrait of Thriketta Thirunal Uma Bayi Thampuratti. Read the full story here: https://www.thehindu.com/arts/two-of-raja-ravi-...

      published: 01 May 2023
    • Republic TV's Ground Report From Kilimanoor, Kerala | Kerala Floods 2018

      Republic TV is India's no.1 English news channel since its launch. It is your one-stop destination for all the live news updates from India and around the world. Republic TV makes news accessible for you at your convenience, at all times and across devices. At Republic we keep you updated with up-to-the-minute news on politics, sports, entertainment, lifestyle, gadgets and much more. We believe in Breaking the story and Breaking the Silence. But most importantly, for us ‘You Are Republic, We Are Your Voice.’ Also, Watch ► Republic TV Live News Updates ►http://bit.ly/RepublicTVLiveNews The Debate With Arnab Goswami ► http://bit.ly/TheDebateWithArnabGoswami Patriot With Major Gaurav Arya ► http://bit.ly/PatriotFullEpisodes Exclusive Sunday Debate With Arnab Goswami ► http://bit.ly/Sunday...

      published: 20 Aug 2018
    • Former radio jockey hacked to death near Kilimanoor | FIR

      Former radio jockey hacked to death near Kilimanoor Asianet News - Kerala's No.1 News and Infotainment TV Channel Check out the latest news from Kerala, India and around the world. Latest news on Mollywood, Politics, Business, Cricket, Technology, Automobile, Lifestyle & Health and Travel. More on asianetnews.com Subscribe to Asianet News YouTube Channel here ► http://goo.gl/Y4yRZG Website ► http://www.asianetnews.com Facebook ► https://www.facebook.com/AsianetNews Twitter ► https://twitter.com/asianetnewstv #asianetnews #AsianetNewsLive #KeralaNewsLive #MalayalamNewsLive Subscribe to Asianet News YouTube Channel here ► http://goo.gl/Y4yRZG for Malayalam News Live updates Website ► http://www.asianetnews.com Facebook ► https://www.facebook.com/AsianetNews Twitter ...

      published: 27 Mar 2018
    • 'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു'; ക്ഷേത്ര ഭരണ സമിതി അംഗം

      'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു', മേൽശാന്തി ഗ്യാസ് ഓഫാക്കാൻ മറന്നുപോയെന്ന് ക്ഷേത്ര ഭരണ സമിതി അംഗം മോഹൻകുമാര്‍ #kilimanoor #gascylinder #fire #cctv

      published: 11 Oct 2024
    • ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി | Kilimanoor fire

      #kairalinews #kairalitv #malayalamnews #keralanewslive ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തിക്ക് ദാരുണാന്ത്യം Cooking gas leaked and exploded in the temple #Kilimanoor #Thiruvananthapuram Kairali News Subscribe to Kairali News YouTube Channel here 👉 https://bit.ly/3cnqrcL Kairali TV Subscribe to Kairali TV YouTube Channel here 👉 https://bit.ly/2RzjUDM Kairali News is one of the most viewed online news platform with its supreme status of credibility, entertainment and commitment to journalistic integrity. It focuses to cater the needs of the viewers with enriched contents. Kairali news online endows malayalees across the globe with its precise, accurate and trustworthy particulars. The news media portrays the emotions of its viewers scattered all over the...

      published: 11 Oct 2024
    വഴിയോരത്ത് കോഴിപെരട്ടും താറാവും | M C Road restaurant for Kerala food - Vazhiyorakkada Kilimanoor
    15:00

    വഴിയോരത്ത് കോഴിപെരട്ടും താറാവും | M C Road restaurant for Kerala food - Vazhiyorakkada Kilimanoor

    • Order:
    • Duration: 15:00
    • Uploaded Date: 19 Jul 2024
    • views: 81145
    വർഷങ്ങളായി നല്ല പെരട്ടും താറാവും മറ്റു രുചികളും വിളമ്പുന്ന കിളിമാനൂർ ഉള്ള വഴിയോരക്കടയിലെ രുചികളാണ് ഇന്ന് നമ്മടെ വിഡിയോയിൽ. For several years now this restaurant is serving Kerala food to people who travels between Kottayam and Trivandrum on MC Road. For contacting Villa projects in Perumbavoor: +91 90743 27918 Vlog: 1073 Subscribe Food N Travel: https://goo.gl/pZpo3E Visit our blog: FoodNTravel.in Today's Food Spot: 🥣 Vazhiyorakkada - on MC Road, Kilimanoor 🥣 Location Map: https://maps.app.goo.gl/TDctFYs4ZuShGQzK7 Address: Kuravankuzhi,Kilimanoor P.O, Kerala 695614 ⚡FNT Ratings for this restaurant⚡ Food: 😊😊😊😊😑 (4.2/5) Service: 😊😊😊😊😑 (4.1/5) Ambiance: 😊😊😊😊 (4.0/5) Accessibility: 😊😊😊😊😑(4.2/5) Parking facility: Yes Google rating for this restaurant at the time of shoot: 4.1 from 11,630 reviews Contact Number: 09895648406 Price of the items that we tried here: 1. Nadan kozhi curry: Rs. 175.00 (Country chicken curry) 2. Tharavu curry: Rs. 220.00 (duck curry) 3. Appam: Rs. 11.00 4. Idiyappam: Rs. 11.00 5. Chaya: Rs. 12.00 Vazhiyorakkada is a roadside restaurant that is located near Kilimanoor on MC Road. They serve traditional Kerala flavors in a decent ambiance. There is a common dining space and cottage-style dining rooms. Nice food, good service, and ample parking space are the highlights of this restaurant. Timestamps 0:00 Intro 1:48 Villa project 3:25 Inside Vazhiyorakada kitchen 7:00 Meter tea 9:48 Palappam and tharavu curry 12:31 Idiyappam and nadan kozhicurry #vazhiyorakkada #keralafood #chickenperattu #tharavucurry #duckcurry
    https://wn.com/വഴിയോരത്ത്_കോഴിപെരട്ടും_താറാവും_|_M_C_Road_Restaurant_For_Kerala_Food_Vazhiyorakkada_Kilimanoor
    Unreal Veg & Non-Veg KERALA FOOD at Vazhiyorakkada Restaurant | Kilimanoor, India
    22:07

    Unreal Veg & Non-Veg KERALA FOOD at Vazhiyorakkada Restaurant | Kilimanoor, India

    • Order:
    • Duration: 22:07
    • Uploaded Date: 25 Mar 2020
    • views: 2044870
    🧳 VISHNU: https://www.instagram.com/vishnukg007/ 🎥 WATCH: Dosa Breakfast in Hyderabad https://www.youtube.com/watch?v=v0aAS0GfPs8 👕 DAVID’S BEEN HERE SHIRTS & MERCH: https://teespring.com/stores/davids-been-here My second day in God’s Own Country, Kerala, India continued with an unbelievable lunch at a local restaurant. Come along with me as I enjoy veg and non-veg Kerala food like seafood, duck, chicken, and liver at Vazhiyorakkada Restaurant in Kilimanoor, India, and visit Varkala Beach! After leaving the massive Jatayu sculpture in Chadayamangalam, my boy Vishnu and I continued at Vazhiyorakkada, a traditional Kerala restaurant in Kilimanoor. They make some of the most traditional cuisine in Kerala and sell mostly non-veg foods and lots of different types of curries. Everything is locally-made by a woman in the kitchen! We took a tour of the kitchen, where saw some papadum, dried fish, super hot chilies, onions, fish curry, parottas, squid thoran, prawn fry, a curry made from the head of a huge fish, and more. Everything looked phenomenal! I sampled a super buttery prawn that was covered in an incredible masala before we went out to the dining hall to eat! The restaurant has one big dining hall and family rooms on the other side. We ate in the dining hall and ordered their oonu, which is a meal served on a banana leaf. We had a bunch of different vegetable curries, rice, fish curry, liver, chicken curry, duck, and more. Everything looked unreal! I started with some buttery chicken liver and then went with the parippu, papadum, and rice. It was a delicious first bite! Then, I added a delicious, spicy prawn. I also loved the greenish gravy of the duck roast, which wasn’t spicy at all. I could taste the curry leaf and black pepper in it. Then, I went for the squid, which contained lots of amazing coconut flavor. I couldn’t get enough of it! The squid was soft and I could tell it was fresh and had never been frozen. Then, I took some of the fish gravy and mixed it into the rice, a bony but deliciously spicy chicken curry, a ginger pickle, and a smoky fish curry! I then drank some pachadi (pineapple, cheera, and beetroot) right out of my hand. It was spicy and sweet at the same time! Then, I tried a phenomenal quail egg, which was like the best hardboiled egg I’ve had in my life! Everything was so good because it was so fresh and came from the area. To finish up, I mixed the squid thoran, prawns, rice, coconut with chili, mixed it up, and dug in. It was the best thing ever! When you finish your meal, you always fold your banana leaf away from you, throw it away, and then wash your hands well. What an unreal veg and non-veg Kerala food meal at Vazhiyorakkada Restaurant in Kilimanoor, India! It was the grandest meal I’d had on my trip so far and one of my favorite meals ever in India. From there, we drove from Kilimanoor to Varkala. We passed by six or seven small towns along the main highway, which connects half of India! Finally, after going the wrong way for a while and getting stuck in a crazy traffic jam because of a passing train, we arrived at the Varkala Cliff Helipad. Right down a narrow alley between lots of houses was our Airbnb, the Palm Bay Beach Residences. It’s a big house with lots of different rooms and is located on the cliffs. I had a king-sized bed and a nice bathroom. They have an apartment and 12 rooms in total. What an epic afternoon enjoying veg and non-veg Kerala food at Vazhiyorakkada Restaurant in Kilimanoor, India! I hope you enjoyed coming with us to Vazhiyorakkada Restaurant and Varkala! If you did, please give this video a thumbs up and leave a comment below. Also, please subscribe to my YouTube channel and click the notification bell so you don’t miss any of my travel/food adventures around the world! Vazhiyorakkada Restaurant: http://vazhiyorakkada.com/ Subscribe Here! http://bit.ly/DavidsbeenhereSub Check out my top videos! http://bit.ly/DavidsbeenhereTopVideos Follow Me: + INSTAGRAM ► https://instagram.com/davidsbeenhere + FACEBOOK ► https://www.facebook.com/davidsbeenhere + TWITTER ► https://twitter.com/davidsbeenhere + MY BLOG! ► http://davidsbeenhere.com/ Contact Me: +BUSINESS EMAIL ► david@godandbeauty.com #Kerala #India #DavidInIndia #Davidsbeenhere About Me: My name is David Hoffmann. For the last 12 years, I have been traveling around the world in search of unique culture, food, and history! Since starting David’s Been Here in 2008, I have traveled to over 1,100 destinations in 77 countries, which I welcome you to check out on my YouTube channel, travel blog, and social media sites. I focus a great deal on food and historical sites, as you probably have seen! I love to experience the different flavors that each destination has to offer, from casual street food to gourmet restaurant dining. I’m also passionate about learning about the local history and culture. P.S. Thank you for watching my videos and subscribing!
    https://wn.com/Unreal_Veg_Non_Veg_Kerala_Food_At_Vazhiyorakkada_Restaurant_|_Kilimanoor,_India
    തിരുവനന്തപുരത്ത് ക്ഷേത്രത്തിൽ പാചകവാതകംചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Trivandrum
    2:04

    തിരുവനന്തപുരത്ത് ക്ഷേത്രത്തിൽ പാചകവാതകംചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Trivandrum

    • Order:
    • Duration: 2:04
    • Uploaded Date: 11 Oct 2024
    • views: 273418
    തിരുവനന്തപുരം കിളിമാനൂർ പുതിയകാവ് ഭഗവതി ക്ഷേത്രത്തിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തി മരിച്ചു Melsanthi died after gas leak explode in Thiruvananthapuram Kilimanoor Puthiyakavu Bhagavathy temple #trivandrum #newsupdate #latestnews
    https://wn.com/തിരുവനന്തപുരത്ത്_ക്ഷേത്രത്തിൽ_പാചകവാതകംചോർന്ന്_പൊട്ടിത്തെറി_മേൽശാന്തിക്ക്_ദാരുണാന്ത്യം_|_Trivandrum
    ക്ഷേത്ര തിടപ്പള്ളിയില്‍ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kilimanoor
    1:12

    ക്ഷേത്ര തിടപ്പള്ളിയില്‍ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kilimanoor

    • Order:
    • Duration: 1:12
    • Uploaded Date: 11 Oct 2024
    • views: 2055
    പാചകവാതക ചോര്‍ച്ച; ക്ഷേത്രത്തിൽ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kilimanoor Puthiyakavu Temple #kilimanoor #puthiyakavutemple Join this channel to get access to perks: https://www.youtube.com/channel/UCFx1nseXKTc1Culiu3neeSQ/join ഏറ്റവും പുതിയ വാർത്തകൾ തത്സമയം കാണുന്നതിനായി സന്ദർശിക്കുക == https://www.youtube.com/live/HGOiuQUwqEw == https://www.reporterlive.com Watch Reporter TV Full HD live streaming around the globe on YouTube subscribe to get alerts. == https://www.youtube.com/reporterlive To catchup latest updates on the trends, news and current affairs Facebook : https://www.facebook.com/reporterlive Twitter : https://twitter.com/reporter_tv?t=Cqb... Instagram : https://www.instagram.com/reporterliv... WhatsApp Channel: https://whatsapp.com/channel/0029VaASjaE3GJP2Co5OI120 With Regards Team RBC
    https://wn.com/ക്ഷേത്ര_തിടപ്പള്ളിയില്‍_പൊട്ടിത്തെറി,_പൊള്ളലേറ്റ_മേൽശാന്തിക്ക്_ദാരുണാന്ത്യം_|_Kilimanoor
    Puthiyakavu Temple Fire | Kilimanoor ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്തെറി ; പൊള്ളലേറ്റ മേൽശാന്തി മരിച്ചു
    4:07

    Puthiyakavu Temple Fire | Kilimanoor ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്തെറി ; പൊള്ളലേറ്റ മേൽശാന്തി മരിച്ചു

    • Order:
    • Duration: 4:07
    • Uploaded Date: 11 Oct 2024
    • views: 13287
    Puthiyakavu Temple Fire : തിരുവനന്തപുരം കിളിമാനൂർ പുതിയകാവ് ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്തെറിയുടെ ഞെട്ടിക്കുന്ന ദൃശ്യം പുറത്ത്. ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ നിവേദ്യം ഒരുക്കി പുറത്തിറങ്ങിയ ശേഷം പാചകവാതകം ചോരുന്നതറിയാതെ വിളക്കുമായി അകത്ത് കയറുമ്പോഴാണ് തീപിടിത്തമുണ്ടായത്. ചിറയിൻകീഴ് ഇലങ്കമഠത്തിൽ ജയകുമാരൻ നമ്പൂതിരിയാണ് മരിച്ചത്. Shocking images of the explosion at the new temple in Kilimanoor, Thiruvananthapuram, have emerged. The fire broke out when someone unknowingly entered the kitchen with a lamp after preparing offerings in the temple's cooking area, while a gas leak was present. Jayakumaran Namboothiri from Chirayinkeezhu Ilankamath died in the incident. #puthiyakavutemplefire #templefiredeath #kilimanoordeath #puthiyakavu #news18kerala #malayalamnews #keralanews #newsinmalayalam #newslivemalayalam #malayalamnewslive #livenewsmalayalam #todaynews #latestnews About the Channel: -------------------------------------------- News18 Kerala is the Malayalam language YouTube News Channel of Network18 which delivers News from within the nation and world-wide about politics, current affairs, breaking news, sports, health, education and much more. To get the latest news first, subscribe to this channel. ന്യൂസ്18 കേരളം, നെറ്റ്വർക്ക് 18 വാർത്താ ശൃoഖലയുടെ മലയാളം യൂട്യൂബ് ചാനൽ ആണ്. ഈ ചാനൽ, രാഷ്ട്രീയം, സമകാലിക വൃത്താന്തം, ബ്രേക്കിംഗ് ന്യൂസ്, കായികം, ആരോഗ്യം, വിദ്യാഭ്യാസം, തുടങ്ങി ദേശീയ അന്തർദേശീയ വാർത്തകൾ കാണികളിലേക്ക് എത്തിക്കുന്നു. ഏറ്റവും പുതിയ വാർത്തകൾ ഏറ്റവും വേഗം ലഭ്യമാവാൻ ഈ ചാനൽ സബ്സ്ക്രൈബ് ചെയ്യൂ... Subscribe our channel for latest news updates: https://tinyurl.com/y2b33eow Follow Us On: ----------------------------- Facebook: https://www.facebook.com/news18Kerala/ Twitter: https://twitter.com/News18Kerala Website: https://bit.ly/3iMbT9r News18 Mobile App - https://onelink.to/desc-youtube
    https://wn.com/Puthiyakavu_Temple_Fire_|_Kilimanoor_ക്ഷേത്രത്തിലുണ്ടായ_പൊട്ടിത്തെറി_പൊള്ളലേറ്റ_മേൽശാന്തി_മരിച്ചു
    A tour of Kilimanoor Palace, the home of eminent artist Raja Ravi Varma | The Hindu
    2:47

    A tour of Kilimanoor Palace, the home of eminent artist Raja Ravi Varma | The Hindu

    • Order:
    • Duration: 2:47
    • Uploaded Date: 01 May 2023
    • views: 19737
    The Kilimanoor Palace near Thiruvananthapuram in Kerala was where eminent artist Raja Ravi Varma was born in 1848. The palace has a majestic archway entrance, built in the native architectural style of Kerala, with wide verandahs, courtyards and long corridors. In a sunlit room, Raja Ravi Varma painted some of his masterpieces. At present, there are only prints of some of his famous paintings, a few photographs, a majestic portrait of the artist and a marble bust of his younger sister Mangala Bayi. The Palace Trust had drawn up elaborate plans to celebrate his 175th birth anniversary on April 29. The Trust unveiled his unfinished painting of the Parsi Lady and a portrait of Thriketta Thirunal Uma Bayi Thampuratti. Read the full story here: https://www.thehindu.com/arts/two-of-raja-ravi-varmas-unfinished-works-will-be-unveiled-at-kilimanoor-palace-near-thiruvananthapuram/article66776574.ece Story: Saraswathy Nagarajan Videos: Sreejith R. Kumar Production: Richard Kujur Thank you for watching our video! You can subscribe to our channel here: https://bit.ly/3c8Adi6 Visit https://www.thehindu.com/ for the latest updates, analysis, opinions, and more. You can also download our apps: Android: https://bit.ly/3nboBEi iOs: https://apple.co/3EDCwt4 The Hindu is committed to keeping you up-to-date with information on the developments in India and the world. We promise to deliver quality journalism that stays away from vested interest and political propaganda. You can support us by subscribing to our digital offerings here: https://bit.ly/3emywiz Follow us: Twitter: https://twitter.com/the_hindu Instagram: https://www.instagram.com/the_hindu/ #rajaravivarma #ravivarma #kilimanoor #thiruvananthapuram #trivandrum
    https://wn.com/A_Tour_Of_Kilimanoor_Palace,_The_Home_Of_Eminent_Artist_Raja_Ravi_Varma_|_The_Hindu
    Republic TV's Ground Report From Kilimanoor, Kerala | Kerala Floods 2018
    3:12

    Republic TV's Ground Report From Kilimanoor, Kerala | Kerala Floods 2018

    • Order:
    • Duration: 3:12
    • Uploaded Date: 20 Aug 2018
    • views: 1583
    Republic TV is India's no.1 English news channel since its launch. It is your one-stop destination for all the live news updates from India and around the world. Republic TV makes news accessible for you at your convenience, at all times and across devices. At Republic we keep you updated with up-to-the-minute news on politics, sports, entertainment, lifestyle, gadgets and much more. We believe in Breaking the story and Breaking the Silence. But most importantly, for us ‘You Are Republic, We Are Your Voice.’ Also, Watch ► Republic TV Live News Updates ►http://bit.ly/RepublicTVLiveNews The Debate With Arnab Goswami ► http://bit.ly/TheDebateWithArnabGoswami Patriot With Major Gaurav Arya ► http://bit.ly/PatriotFullEpisodes Exclusive Sunday Debate With Arnab Goswami ► http://bit.ly/SundayDebate Checkmate With Major Gaurav Arya (Retd.) ► https://bit.ly/3EtPj0s The Grand Strategy With Maj Gen G.D Bakshi (Retd) ► https://bit.ly/3EPZ6xF R.Explained ► https://bit.ly/3sOLT5K R.Uninterrupted ► https://bit.ly/34isZdh You can stay connected with Republic TV on - Facebook - https://www.facebook.com/RepublicWorld Twitter - https://twitter.com/republic Website - https://www.republicworld.com Instagram: https://www.instagram.com/republicworld #republictv #republicworld #republictvlive #englishnews #news #arnabgoswami #arnabgoswamilive #arnabdebates #nationwantstoknow
    https://wn.com/Republic_Tv's_Ground_Report_From_Kilimanoor,_Kerala_|_Kerala_Floods_2018
    Former radio jockey hacked to death near Kilimanoor | FIR
    0:45

    Former radio jockey hacked to death near Kilimanoor | FIR

    • Order:
    • Duration: 0:45
    • Uploaded Date: 27 Mar 2018
    • views: 6410
    Former radio jockey hacked to death near Kilimanoor Asianet News - Kerala's No.1 News and Infotainment TV Channel Check out the latest news from Kerala, India and around the world. Latest news on Mollywood, Politics, Business, Cricket, Technology, Automobile, Lifestyle & Health and Travel. More on asianetnews.com Subscribe to Asianet News YouTube Channel here ► http://goo.gl/Y4yRZG Website ► http://www.asianetnews.com Facebook ► https://www.facebook.com/AsianetNews Twitter ► https://twitter.com/asianetnewstv #asianetnews #AsianetNewsLive #KeralaNewsLive #MalayalamNewsLive Subscribe to Asianet News YouTube Channel here ► http://goo.gl/Y4yRZG for Malayalam News Live updates Website ► http://www.asianetnews.com Facebook ► https://www.facebook.com/AsianetNews Twitter ► https://twitter.com/AsianetNewsML Download India’s No. 1 Malayalam Live News Asianet Mobile App: ► For Android users: https://play.google.com/store/apps/details?id=com.vserv.asianet ► For iOS users: https://apps.apple.com/in/app/asianet-news-official/id1093450032 Asianet News - Kerala's No.1 News and Infotainment TV Channel Check out the latest news from Kerala, India and around the world. The latest news on Mollywood, Politics, Business, Cricket, Technology, Automobile, Lifestyle & Health and Travel. More on asianetnews.com #asianetnews #AsianetNewsLive #KeralaNewsLive #MalayalamNewsLive Subscribe to Asianet News YouTube Channel here ► http://goo.gl/Y4yRZG for Malayalam News Live updates Website ► http://www.asianetnews.com Facebook ► https://www.facebook.com/AsianetNews Twitter ► https://twitter.com/AsianetNewsML Download India’s No. 1 Malayalam Live News Asianet Mobile App: ► For Android users: https://play.google.com/store/apps/details?id=com.vserv.asianet ► For iOS users: https://apps.apple.com/in/app/asianet-news-official/id1093450032 Asianet News - Kerala's No.1 News and Infotainment TV Channel Check out the latest news from Kerala, India and around the world. The latest news on Mollywood, Politics, Business, Cricket, Technology, Automobile, Lifestyle & Health and Travel. More on asianetnews.com #asianetnews #AsianetNewsLive #KeralaNewsLive #MalayalamNewsLive Subscribe to Asianet News YouTube Channel here ► http://goo.gl/Y4yRZG for Malayalam News Live updates Website ► http://www.asianetnews.com Facebook ► https://www.facebook.com/AsianetNews Twitter ► https://twitter.com/AsianetNewsML Download India’s No. 1 Malayalam Live News Asianet Mobile App: ► For Android users: https://play.google.com/store/apps/details?id=com.vserv.asianet ► For iOS users: https://apps.apple.com/in/app/asianet-news-official/id1093450032 Asianet News - Kerala's No.1 News and Infotainment TV Channel Check out the latest news from Kerala, India and around the world. The latest news on Mollywood, Politics, Business, Cricket, Technology, Automobile, Lifestyle & Health and Travel. More on asianetnews.com #asianetnews #AsianetNewsLive #KeralaNewsLive #MalayalamNewsLive Asianet News Live : https://youtu.be/Ko18SgceYX8 Subscribe to Asianet News YouTube Channel here ► http://goo.gl/Y4yRZG for Malayalam News Live updates Website ► http://www.asianetnews.com Facebook ► https://www.facebook.com/AsianetNews Instagram ► https://www.instagram.com/asianetnews/ Twitter ► https://twitter.com/AsianetNewsML Download India’s No. 1 Malayalam Live News Asianet Mobile App: ► For Android users: https://play.google.com/store/apps/details?id=com.vserv.asianet ► For iOS users: https://apps.apple.com/in/app/asianet-news-official/id1093450032 Asianet News - Kerala's No.1 News and Infotainment TV Channel Check out the latest news from Kerala, India and around the world. The latest news on Mollywood, Politics, Business, Cricket, Technology, Automobile, Lifestyle & Health and Travel. More on asianetnews.com #asianetnews #AsianetNewsLive #KeralaNewsLive #MalayalamNewsLive Asianet News Live : https://youtu.be/Ko18SgceYX8 Subscribe to Asianet News YouTube Channel here ► http://goo.gl/Y4yRZG for Malayalam News Live updates Website ► http://www.asianetnews.com Facebook ► https://www.facebook.com/AsianetNews Instagram ► https://www.instagram.com/asianetnews/ Twitter ► https://twitter.com/AsianetNewsML Download India’s No. 1 Malayalam Live News Asianet Mobile App: ► For Android users: https://play.google.com/store/apps/details?id=com.vserv.asianet ► For iOS users: https://apps.apple.com/in/app/asianet-news-official/id1093450032 Asianet News - Kerala's No.1 News and Infotainment TV Channel Check out the latest news from Kerala, India and around the world. The latest news on Mollywood, Politics, Business, Cricket, Technology, Automobile, Lifestyle & Health and Travel. More on asianetnews.com
    https://wn.com/Former_Radio_Jockey_Hacked_To_Death_Near_Kilimanoor_|_Fir
    'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു'; ക്ഷേത്ര ഭരണ സമിതി അംഗം
    3:02

    'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു'; ക്ഷേത്ര ഭരണ സമിതി അംഗം

    • Order:
    • Duration: 3:02
    • Uploaded Date: 11 Oct 2024
    • views: 105792
    'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു', മേൽശാന്തി ഗ്യാസ് ഓഫാക്കാൻ മറന്നുപോയെന്ന് ക്ഷേത്ര ഭരണ സമിതി അംഗം മോഹൻകുമാര്‍ #kilimanoor #gascylinder #fire #cctv
    https://wn.com/'ഗ്യാസ്_ലീക്ക്_ആകുന്നുണ്ടെന്ന്_ഒരു_ഭക്തൻ_പറഞ്ഞിരുന്നു'_ക്ഷേത്ര_ഭരണ_സമിതി_അംഗം
    ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി | Kilimanoor fire
    1:16

    ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി | Kilimanoor fire

    • Order:
    • Duration: 1:16
    • Uploaded Date: 11 Oct 2024
    • views: 4776
    #kairalinews #kairalitv #malayalamnews #keralanewslive ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തിക്ക് ദാരുണാന്ത്യം Cooking gas leaked and exploded in the temple #Kilimanoor #Thiruvananthapuram Kairali News Subscribe to Kairali News YouTube Channel here 👉 https://bit.ly/3cnqrcL Kairali TV Subscribe to Kairali TV YouTube Channel here 👉 https://bit.ly/2RzjUDM Kairali News is one of the most viewed online news platform with its supreme status of credibility, entertainment and commitment to journalistic integrity. It focuses to cater the needs of the viewers with enriched contents. Kairali news online endows malayalees across the globe with its precise, accurate and trustworthy particulars. The news media portrays the emotions of its viewers scattered all over the world. With its presentation it is the bosom friend of malayalee community in every nook and cranny. *All rights reserved by Malayalam Communications LTD. The use of any copyrighted work without the permission of the owner amounts to copyright infringement. violation of IPR will lead to legal actions
    https://wn.com/ക്ഷേത്രത്തിലെ_തിടപ്പള്ളിയിൽ_പാചകവാതകം_ചോർന്ന്_പൊട്ടിത്തെറി_|_Kilimanoor_Fire
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • വഴിയോരത്ത് കോഴിപെരട്ടും താറാവും | M C Road restaurant for Kerala food - Vazhiyorakkada Kilimanoor
      15:00
      വഴിയോരത്ത് കോഴിപെരട്ടും താറാവും | M C Road restaurant for Kerala food - Vazhiyorakkada Kilimanoorremove from playlist
    • Unreal Veg & Non-Veg KERALA FOOD at Vazhiyorakkada Restaurant | Kilimanoor, India
      22:07
      Unreal Veg & Non-Veg KERALA FOOD at Vazhiyorakkada Restaurant | Kilimanoor, Indiaremove from playlist
    • തിരുവനന്തപുരത്ത് ക്ഷേത്രത്തിൽ പാചകവാതകംചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Trivandrum
      2:04
      തിരുവനന്തപുരത്ത് ക്ഷേത്രത്തിൽ പാചകവാതകംചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Trivandrumremove from playlist
    • ക്ഷേത്ര തിടപ്പള്ളിയില്‍ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kilimanoor
      1:12
      ക്ഷേത്ര തിടപ്പള്ളിയില്‍ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kilimanoorremove from playlist
    • Puthiyakavu Temple Fire | Kilimanoor ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്തെറി ; പൊള്ളലേറ്റ മേൽശാന്തി മരിച്ചു
      4:07
      Puthiyakavu Temple Fire | Kilimanoor ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്തെറി ; പൊള്ളലേറ്റ മേൽശാന്തി മരിച്ചുremove from playlist
    • A tour of Kilimanoor Palace, the home of eminent artist Raja Ravi Varma | The Hindu
      2:47
      A tour of Kilimanoor Palace, the home of eminent artist Raja Ravi Varma | The Hinduremove from playlist
    • Republic TV's Ground Report From Kilimanoor, Kerala | Kerala Floods 2018
      3:12
      Republic TV's Ground Report From Kilimanoor, Kerala | Kerala Floods 2018remove from playlist
    • Former radio jockey hacked to death near Kilimanoor | FIR
      0:45
      Former radio jockey hacked to death near Kilimanoor | FIRremove from playlist
    • 'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു'; ക്ഷേത്ര ഭരണ സമിതി അംഗം
      3:02
      'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു'; ക്ഷേത്ര ഭരണ സമിതി അംഗംremove from playlist
    • ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി | Kilimanoor fire
      1:16
      ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി | Kilimanoor fireremove from playlist
    PLAYLIST TIME: 0:00 / 55:32

    വഴിയോരത്ത് കോഴിപെരട്ടും താറാവും | M C Road restaurant for Kerala food - Vazhiyorakkada Kilimanoor

    വർഷങ്ങളായി നല്ല പെരട്ടും താറാവും മറ്റു രുചികളും വിളമ്പുന്ന കിളിമാനൂർ ഉള്ള വഴിയോരക്കടയിലെ രുചികളാണ് ഇന്ന് നമ്മടെ വിഡിയോയിൽ. For several years now this restaurant is serving Kerala food to people who travels between Kottayam and Trivandrum on MC Road. For contacting Villa projects in Perumbavoor: +91 90743 27918 Vlog: 1073 Subscribe Food N Travel: https://goo.gl/pZpo3E Visit our blog: FoodNTravel.in Today's Food Spot: 🥣 Vazhiyorakkada - on MC Road, Kilimanoor 🥣 Location Map: https://maps.app.goo.gl/TDctFYs4ZuShGQzK7 Address: Kuravankuzhi,Kilimanoor P.O, Kerala 695614 ⚡FNT Ratings for this restaurant⚡ Food: 😊😊😊😊😑 (4.2/5) Service: 😊😊😊😊😑 (4.1/5) Ambiance: 😊😊😊😊 (4.0/5) Accessibility: 😊😊😊😊😑(4.2/5) Parking facility: Yes Google rating for this restaurant at the time of shoot: 4.1 from 11,630 reviews Contact Number: 09895648406 Price of the items that we tried here: 1. Nadan kozhi curry: Rs. 175.00 (Country chicken curry) 2. Tharavu curry: Rs. 220.00 (duck curry) 3. Appam: Rs. 11.00 4. Idiyappam: Rs. 11.00 5. Chaya: Rs. 12.00 Vazhiyorakkada is a roadside restaurant that is located near Kilimanoor on MC Road. They serve traditional Kerala flavors in a decent ambiance. There is a common dining space and cottage-style dining rooms. Nice food, good service, and ample parking space are the highlights of this restaurant. Timestamps 0:00 Intro 1:48 Villa project 3:25 Inside Vazhiyorakada kitchen 7:00 Meter tea 9:48 Palappam and tharavu curry 12:31 Idiyappam and nadan kozhicurry #vazhiyorakkada #keralafood #chickenperattu #tharavucurry #duckcurry
    15:00
    വഴിയോരത്ത് കോഴിപെരട്ടും താറാവും | M C Road restaurant for Kerala food - Vazhiyorakkada Kilimanoor
    വർഷങ്ങളായി നല്ല പെരട്ടും താറാവും മറ്റു രുചികളും വിളമ്പുന്ന കിളിമാനൂർ ഉള്ള വഴിയോരക്കടയിലെ ര...
    published: 19 Jul 2024
    Play in Full Screen
    22:07
    Unreal Veg & Non-Veg KERALA FOOD at Vazhiyorakkada Restaurant | Kilimanoor, India
    🧳 VISHNU: https://www.instagram.com/vishnukg007/ 🎥 WATCH: Dosa Breakfast in Hyderabad http...
    published: 25 Mar 2020
    Play in Full Screen
    2:04
    തിരുവനന്തപുരത്ത് ക്ഷേത്രത്തിൽ പാചകവാതകംചോർന്ന് പൊട്ടിത്തെറി; മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Trivandrum
    തിരുവനന്തപുരം കിളിമാനൂർ പുതിയകാവ് ഭഗവതി ക്ഷേത്രത്തിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി; മേൽശാ...
    published: 11 Oct 2024
    Play in Full Screen
    1:12
    ക്ഷേത്ര തിടപ്പള്ളിയില്‍ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kilimanoor
    പാചകവാതക ചോര്‍ച്ച; ക്ഷേത്രത്തിൽ പൊട്ടിത്തെറി, പൊള്ളലേറ്റ മേൽശാന്തിക്ക് ദാരുണാന്ത്യം | Kil...
    published: 11 Oct 2024
    Play in Full Screen
    4:07
    Puthiyakavu Temple Fire | Kilimanoor ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്തെറി ; പൊള്ളലേറ്റ മേൽശാന്തി മരിച്ചു
    Puthiyakavu Temple Fire : തിരുവനന്തപുരം കിളിമാനൂർ പുതിയകാവ് ക്ഷേത്രത്തിലുണ്ടായ പൊട്ടിത്ത...
    published: 11 Oct 2024
    Play in Full Screen
    2:47
    A tour of Kilimanoor Palace, the home of eminent artist Raja Ravi Varma | The Hindu
    The Kilimanoor Palace near Thiruvananthapuram in Kerala was where eminent artist Raja Ravi...
    published: 01 May 2023
    Play in Full Screen
    3:12
    Republic TV's Ground Report From Kilimanoor, Kerala | Kerala Floods 2018
    Republic TV is India's no.1 English news channel since its launch. It is your one-stop des...
    published: 20 Aug 2018
    Play in Full Screen
    0:45
    Former radio jockey hacked to death near Kilimanoor | FIR
    Former radio jockey hacked to death near Kilimanoor Asianet News - Kerala's No.1 News a...
    published: 27 Mar 2018
    Play in Full Screen
    3:02
    'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു'; ക്ഷേത്ര ഭരണ സമിതി അംഗം
    'ഗ്യാസ് ലീക്ക് ആകുന്നുണ്ടെന്ന് ഒരു ഭക്തൻ പറഞ്ഞിരുന്നു', മേൽശാന്തി ഗ്യാസ് ഓഫാക്കാൻ മറന്നുപോ...
    published: 11 Oct 2024
    Play in Full Screen
    1:16
    ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാതകം ചോർന്ന് പൊട്ടിത്തെറി | Kilimanoor fire
    #kairalinews #kairalitv #malayalamnews #keralanewslive ക്ഷേത്രത്തിലെ തിടപ്പള്ളിയിൽ പാചകവാ...
    published: 11 Oct 2024
    Play in Full Screen

    Kilimanoor

    Kilimanoor is a census town in the state of Kerala, India. It is located on MC/SH 1 Road, 36 kilometres (22 mi) from the city of Thiruvananthapuram (Trivandrum). The town area is administered by two grama panchayats, Pazhayakunnummel and Kilimanoor grama panchayat. Kilimanoor town is an important business centre and one of the potential fast-growing towns in south Kerala. Kilimanoor is looking forward to become a municipality.

    History

    Kilimanoor ("land of the parrot and the deer") was ruled by a tribal chief during time of the Ettuveetil Pillamar in the kingdom of Travancore. The chief rebelled against the Maharajah Marthanda Varma, and the region was annexed and given to the Royal House of Kilimanoor.

    This Royal House of Kilimanoor has a history of more than 300 years. In 1705 (ME 880), the son and two daughters of Ittammar Raja of Beypore Thattarikovilakam, a Kolathunadu royal house, were adopted by the Royal house of Venad. Ittammar Raja's sister and her sons, Rama Varma and Raghava Varma, settled in Kilimanoor and married the now-adopted sisters. Marthanda Varma, the founder of the Kingdom of Travancore was the son of Raghava Varma. Raghava Varma's nephew, Ravi Varma Koil Thampuran, married Marthanda Varma's sister. Their son came to be known as Dharma Raja Kartika Thirunnal Rama Varma. In 1740, when an allied force led by Dutch Captain Hockert supporting the Deshinganadu king attacked Venad, an army from Kilimanoor tactfully resisted and then defeated them. Although a small victory, this was the first time an Indian army defeated a European power. In recognition of this feat, Marthanda Varma, in 1753, exempted the areas under control of Kilimanoor Palace from taxes and proclaimed autonomous status. The present palace complex was also built during this time along with the Ayyappa temple for the family deity.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×