'+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;
}));
});
-->
Please tell us which country and city you'd like to see the weather in.
'
}else{
weather_info += '
'+tempC+' °C
'
}
weather_info += '
Pressure: '+weather_data.main.pressure+' hPa '
if (weather_data.main.humidity) { weather_info += 'Humidity: '+weather_data.main.humidity+' % '; }
if (clouds) {
weather_info += 'Clounds: '+clouds.all+'% '
}
if (weather) {
weather_info += ''+weather.description+' '
}
weather_info += ' '
}
}
global_geo_obj.html(weather_info);
var global_geo = jQuery('#forecast');
get_forecast_details(city, 4, global_geo, country);
})
});
});
function forecast_status(msg) {
jQuery('#forecast-header').html(msg);
}
function get_forecast_details(city, days_count, global_geo, country) {
global_geo.html('Loading forecast ...');
jQuery.ajax({
data: {
city: city,
report: 'daily'
},
dataType: 'jsonp',
url: 'https://upge.wn.com/api/upge/cheetah-photo-search/weather_forecast_4days',
success: function(data) {
if(!data) { text = ('weater data temporarily not available'); }
// loop through the list of weather info
weather_info = '';
var weather_day_loop = 0;
jQuery.each(data.list, function(idx, value) {
if (idx < 1) {
return;
}
if (weather_day_loop >= days_count) {
return false;
}
weather = value.weather.shift()
clouds = value.clouds
d = new Date(value.dt*1000)
t = d.getMonth()+1 + '-' + d.getDate() + '-' + d.getFullYear()
moment.lang('en', {
calendar : {
lastDay : '[Yesterday]',
sameDay : '[Today]',
nextDay : '[Tomorrow]',
lastWeek : '[last] dddd',
nextWeek : 'dddd',
sameElse : 'L'
}
});
mobj = moment(value.dt*1000)
// skip today
if (t == today) {
return;
}
tempC = parseInt(parseFloat(value.temp.day)-273.15)
tempF = parseInt(tempC*1.8+32)
today = t;
weather_day_loop += 1;
weather_info += '
'+mobj.calendar()+'
';
weather_info += '
'
weather_info += '
'
if (country == 'United States'){
weather_info += '
'+tempF+' °F
'
}else{
weather_info += '
'+tempC+' °C
'
}
weather_info += '
'+value.pressure+' hPa '
if (value.humidity) { weather_info += 'Humidity: '+value.humidity+' % '; }
if (clouds) {
weather_info += 'Clouds: '+clouds+'% '
}
if (weather) {
weather_info += '' +weather.description+' '
}
weather_info += ''
});
global_geo.html(weather_info);
}
});
}
//-->
Driving Around Northern Pathein in 4K
This is the continuation of my drive around Pathein on September 17th, 2019.
We drove along the Pathein Yangon Road, then on the Tawn Paw Road up to Yan Kinn Taung and back to the city centre along the Strand Road.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
#Pathein #CityDrive #DrivingDowntown
Music from YouTube Audio Library
1. Si Señorita by Chri...
published: 12 Dec 2020
Welcome To Pathein
Test Video
published: 19 Sep 2020
Roadtrip to Pathein
ဒီ vlog လေးကတော့ ရန်ကုန်ကနေ ပုသိမ်ကို အလုပ်ကိစ္စနဲ့ခရီးသွားရင်း ရန်ကုန်-ပုသိမ် အဝေးပြေးလမ်းတလျှောက် လမ်းခရီးအခြေအနေနဲ့ လမ်းတလျှောက်လုံးတွေ့ မြင်ရတဲ့ ပတ်ဝန်းကျင်အလှအပတွေ၊ လမ်းတလျှောက် ဖြတ်သန်းခဲ့ရတဲ့ မြို့လေးတွေကို ဗဟုသုတ ရစရာအဖြစ် တင်ဆက်ပေးလိုက်ရပါတယ်ခင်ဗျာ။
published: 13 Mar 2024
Pathein(Mini Blog) ပုသိမ် ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင်
Pathein Blog ပုသိမ် blog
"ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင် "
covid ကာလနဲ့ တခြားအကြောင်းတွေကြောင့် ခရီးမသွားရတဲ့သူတွေ တွက် ပုသိမ်မြို့လမ်းတွေကို ကိုတိုင်ရောက်သွားသလို ခံစားရအောင် အပျင်းပြေ လိုက်ကြည့်လိုက်ရအောင်နော် 🚐🚐🚐
ပုသိမ်ရောက်ဖူးသူတွေလဲ အလွမ်းပြေ ခံစားကြည့်ပေးနော် 🚐🚐
published: 27 Nov 2021
Scenic Myanmar Countryside: Train Travel From Yegyi To Pathein, Myanmar 🇲🇲 in 4K
This is the video which I took on September 16th, 2019.
My friend and I travelled from Pathein to Yegyi for sightseeing in Myanmar countryside. Although it is the monsoon season, the weather is very good, very sunny and warm.
We left Pathein at 5:30 AM.
This is the return train journey from Yegyi to Pathein. The distance between Yegyi and Pathein is 85 km (53 miles) but it took three and a half hours to travel.
Myanmar Railways is state-owned. The quality of the railway infrastructure is generally poor. and the tracks are in poor condition especially in this part of the country, Ayeyarwady Division.
The network has steadily increased in size over the last two decades, from nearly 5,500 kilometres (3,400 mi) in 1988 to 10,296.01 kilometres (6,397.64 mi) in 2010. Myanmar Railways is curr...
published: 11 Oct 2020
Walking Tour St Peter's Cathedral, Pathein in September 2019 in 4K
My walking tour of St Peter's Cathedral, which is situated in Central Pathein, Ayeyarwady Division in Myanmar. I visited late morning and I was not able to tour inside the cathedral.
This Cathedral was built in 1872 and was a landmark for Catholic education.
#Pathein #CatholicEducation #Cathedral
if you don't want to miss my upcoming new videos, please subscribe to my channel here.
http://www.youtube.com/mayancho21?sub_confirmation=1
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
published: 05 Mar 2020
Driving Downtown Pathein in 4K ပုသိမ်မြို့လယ် တုတ်တုတ်နဲ့လည်
A late afternoon driving around downtown Pathein.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
#Pathein #CityDrive #DrivingDowntown
published: 16 Dec 2020
Pathein University Main Street
published: 28 Jun 2022
မမ ပုသိမ်သူ(Ma Ma Pathein Thu)
တေးရေး ကိုလေးလွင်
lyrics-Ko Lay Lwin
vocal-Poe Ei San
published: 16 May 2022
"Chan" Myanmar Cafeteria in Pathein, December 2018 ချမ်းကဖေး နှင့် စားဖွယ်စုံ ပုသိမ်မြို့
Most of Myanmar people do not prepare breakfast at home in the morning. We usually go to the Cafe or restaurant to have breakfast.
Moke Hin Gar, noodles with fish soup is the top in the list. Some have Nan Gyi Thoke, a salad dish with think round rice noodle with specially prepared chicken curry.
You can get all these breakfast dishes in most Cafe and restaurants.
"Chan" Cafe is on Mayancho Road.
You can get varieties of locally popular foods, hot and cold drinks.
The price is very reasonable and I would recommend to try whilst you are in Pathein.
#ပုသိမ် #MyanmarFood #MyanmarStreetFood #MyanmarRestaurant #MyanmarCafeteria
published: 09 Dec 2018
36:21
Driving Around Northern Pathein in 4K
This is the continuation of my drive around Pathein on September 17th, 2019.
We drove along the Pathein Yangon Road, then on the Tawn Paw Road up to Yan Kinn T...
This is the continuation of my drive around Pathein on September 17th, 2019.
We drove along the Pathein Yangon Road, then on the Tawn Paw Road up to Yan Kinn Taung and back to the city centre along the Strand Road.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
#Pathein #CityDrive #DrivingDowntown
Music from YouTube Audio Library
1. Si Señorita by Chris Haugen
2. Quarantine Waltz by Nat Keefe & Hot Buttered Rum
3. Longer Distance by TrackTribe
4. Back To Portland by TrackTribe
5. Terrier Waltz by Nat Keefe with The Bow Ties
6. Oceanside Bonfire by The Great North Sound Society
7. Waltz in Low Light by Nat Keefe & Hot Buttered Rum
https://wn.com/Driving_Around_Northern_Pathein_In_4K
This is the continuation of my drive around Pathein on September 17th, 2019.
We drove along the Pathein Yangon Road, then on the Tawn Paw Road up to Yan Kinn Taung and back to the city centre along the Strand Road.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
#Pathein #CityDrive #DrivingDowntown
Music from YouTube Audio Library
1. Si Señorita by Chris Haugen
2. Quarantine Waltz by Nat Keefe & Hot Buttered Rum
3. Longer Distance by TrackTribe
4. Back To Portland by TrackTribe
5. Terrier Waltz by Nat Keefe with The Bow Ties
6. Oceanside Bonfire by The Great North Sound Society
7. Waltz in Low Light by Nat Keefe & Hot Buttered Rum
published: 12 Dec 2020
views: 10413
15:35
Roadtrip to Pathein
ဒီ vlog လေးကတော့ ရန်ကုန်ကနေ ပုသိမ်ကို အလုပ်ကိစ္စနဲ့ခရီးသွားရင်း ရန်ကုန်-ပုသိမ် အဝေးပြေးလမ်းတလျှောက် လမ်းခရီးအခြေအနေနဲ့ လမ်းတလျှောက်လုံးတွေ့ မြင်ရတဲ့ ပတ်ဝန်းကျင်...
ဒီ vlog လေးကတော့ ရန်ကုန်ကနေ ပုသိမ်ကို အလုပ်ကိစ္စနဲ့ခရီးသွားရင်း ရန်ကုန်-ပုသိမ် အဝေးပြေးလမ်းတလျှောက် လမ်းခရီးအခြေအနေနဲ့ လမ်းတလျှောက်လုံးတွေ့ မြင်ရတဲ့ ပတ်ဝန်းကျင်အလှအပတွေ၊ လမ်းတလျှောက် ဖြတ်သန်းခဲ့ရတဲ့ မြို့လေးတွေကို ဗဟုသုတ ရစရာအဖြစ် တင်ဆက်ပေးလိုက်ရပါတယ်ခင်ဗျာ။
https://wn.com/Roadtrip_To_Pathein
ဒီ vlog လေးကတော့ ရန်ကုန်ကနေ ပုသိမ်ကို အလုပ်ကိစ္စနဲ့ခရီးသွားရင်း ရန်ကုန်-ပုသိမ် အဝေးပြေးလမ်းတလျှောက် လမ်းခရီးအခြေအနေနဲ့ လမ်းတလျှောက်လုံးတွေ့ မြင်ရတဲ့ ပတ်ဝန်းကျင်အလှအပတွေ၊ လမ်းတလျှောက် ဖြတ်သန်းခဲ့ရတဲ့ မြို့လေးတွေကို ဗဟုသုတ ရစရာအဖြစ် တင်ဆက်ပေးလိုက်ရပါတယ်ခင်ဗျာ။
published: 13 Mar 2024
views: 3979
6:51
Pathein(Mini Blog) ပုသိမ် ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင်
Pathein Blog ပုသိမ် blog
"ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင် "
covid ကာလနဲ့ တခြားအကြောင်းတွေကြောင့် ခရီးမသွားရတဲ့သူတွေ တွက် ပုသိမ်မြို့လမ်းတွေကို ကိုတိုင်ရေ...
Pathein Blog ပုသိမ် blog
"ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင် "
covid ကာလနဲ့ တခြားအကြောင်းတွေကြောင့် ခရီးမသွားရတဲ့သူတွေ တွက် ပုသိမ်မြို့လမ်းတွေကို ကိုတိုင်ရောက်သွားသလို ခံစားရအောင် အပျင်းပြေ လိုက်ကြည့်လိုက်ရအောင်နော် 🚐🚐🚐
ပုသိမ်ရောက်ဖူးသူတွေလဲ အလွမ်းပြေ ခံစားကြည့်ပေးနော် 🚐🚐
https://wn.com/Pathein(Mini_Blog)_ပုသိမ်_ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင်
Pathein Blog ပုသိမ် blog
"ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင် "
covid ကာလနဲ့ တခြားအကြောင်းတွေကြောင့် ခရီးမသွားရတဲ့သူတွေ တွက် ပုသိမ်မြို့လမ်းတွေကို ကိုတိုင်ရောက်သွားသလို ခံစားရအောင် အပျင်းပြေ လိုက်ကြည့်လိုက်ရအောင်နော် 🚐🚐🚐
ပုသိမ်ရောက်ဖူးသူတွေလဲ အလွမ်းပြေ ခံစားကြည့်ပေးနော် 🚐🚐
published: 27 Nov 2021
views: 6998
40:55
Scenic Myanmar Countryside: Train Travel From Yegyi To Pathein, Myanmar 🇲🇲 in 4K
This is the video which I took on September 16th, 2019.
My friend and I travelled from Pathein to Yegyi for sightseeing in Myanmar countryside. Although it is ...
This is the video which I took on September 16th, 2019.
My friend and I travelled from Pathein to Yegyi for sightseeing in Myanmar countryside. Although it is the monsoon season, the weather is very good, very sunny and warm.
We left Pathein at 5:30 AM.
This is the return train journey from Yegyi to Pathein. The distance between Yegyi and Pathein is 85 km (53 miles) but it took three and a half hours to travel.
Myanmar Railways is state-owned. The quality of the railway infrastructure is generally poor. and the tracks are in poor condition especially in this part of the country, Ayeyarwady Division.
The network has steadily increased in size over the last two decades, from nearly 5,500 kilometres (3,400 mi) in 1988 to 10,296.01 kilometres (6,397.64 mi) in 2010. Myanmar Railways is currently undertaking an ambitious expansion program that will add another 3,645 km (2,265 mi) to its network, making it spread in to 13,941 km (8,663 mi) including extensions to Myeik in the south, Kyaingtong in the east, Sittwe in the west. Ref. Wikipedia
Myanmar is an agricultural country and agriculture sector is the backbone of the economy.
You will see paddy fields along the journey as if the land is fitted with velvety green carpet.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
Don’t forget to LIKE 👍 the video, SUBSCRIBE 💖
http://www.youtube.com/mayancho21?sub...
and hit the ‘’BELL’’ button🔔to turn on notifications! Also, please, share this video on social media!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
#TrainTravel #TrainJourney #Pathein
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
https://wn.com/Scenic_Myanmar_Countryside_Train_Travel_From_Yegyi_To_Pathein,_Myanmar_🇲🇲_In_4K
This is the video which I took on September 16th, 2019.
My friend and I travelled from Pathein to Yegyi for sightseeing in Myanmar countryside. Although it is the monsoon season, the weather is very good, very sunny and warm.
We left Pathein at 5:30 AM.
This is the return train journey from Yegyi to Pathein. The distance between Yegyi and Pathein is 85 km (53 miles) but it took three and a half hours to travel.
Myanmar Railways is state-owned. The quality of the railway infrastructure is generally poor. and the tracks are in poor condition especially in this part of the country, Ayeyarwady Division.
The network has steadily increased in size over the last two decades, from nearly 5,500 kilometres (3,400 mi) in 1988 to 10,296.01 kilometres (6,397.64 mi) in 2010. Myanmar Railways is currently undertaking an ambitious expansion program that will add another 3,645 km (2,265 mi) to its network, making it spread in to 13,941 km (8,663 mi) including extensions to Myeik in the south, Kyaingtong in the east, Sittwe in the west. Ref. Wikipedia
Myanmar is an agricultural country and agriculture sector is the backbone of the economy.
You will see paddy fields along the journey as if the land is fitted with velvety green carpet.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
Don’t forget to LIKE 👍 the video, SUBSCRIBE 💖
http://www.youtube.com/mayancho21?sub...
and hit the ‘’BELL’’ button🔔to turn on notifications! Also, please, share this video on social media!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
#TrainTravel #TrainJourney #Pathein
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
published: 11 Oct 2020
views: 217033
13:12
Walking Tour St Peter's Cathedral, Pathein in September 2019 in 4K
My walking tour of St Peter's Cathedral, which is situated in Central Pathein, Ayeyarwady Division in Myanmar. I visited late morning and I was not able to tour...
My walking tour of St Peter's Cathedral, which is situated in Central Pathein, Ayeyarwady Division in Myanmar. I visited late morning and I was not able to tour inside the cathedral.
This Cathedral was built in 1872 and was a landmark for Catholic education.
#Pathein #CatholicEducation #Cathedral
if you don't want to miss my upcoming new videos, please subscribe to my channel here.
http://www.youtube.com/mayancho21?sub_confirmation=1
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
https://wn.com/Walking_Tour_St_Peter's_Cathedral,_Pathein_In_September_2019_In_4K
My walking tour of St Peter's Cathedral, which is situated in Central Pathein, Ayeyarwady Division in Myanmar. I visited late morning and I was not able to tour inside the cathedral.
This Cathedral was built in 1872 and was a landmark for Catholic education.
#Pathein #CatholicEducation #Cathedral
if you don't want to miss my upcoming new videos, please subscribe to my channel here.
http://www.youtube.com/mayancho21?sub_confirmation=1
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
published: 05 Mar 2020
views: 1214
23:47
Driving Downtown Pathein in 4K ပုသိမ်မြို့လယ် တုတ်တုတ်နဲ့လည်
A late afternoon driving around downtown Pathein.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please...
A late afternoon driving around downtown Pathein.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
#Pathein #CityDrive #DrivingDowntown
https://wn.com/Driving_Downtown_Pathein_In_4K_ပုသိမ်မြို့လယ်_တုတ်တုတ်နဲ့လည်
A late afternoon driving around downtown Pathein.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
#Pathein #CityDrive #DrivingDowntown
published: 16 Dec 2020
views: 8601
4:55
မမ ပုသိမ်သူ(Ma Ma Pathein Thu)
တေးရေး ကိုလေးလွင်
lyrics-Ko Lay Lwin
vocal-Poe Ei San
တေးရေး ကိုလေးလွင်
lyrics-Ko Lay Lwin
vocal-Poe Ei San
https://wn.com/မမ_ပုသိမ်သူ(Ma_Ma_Pathein_Thu)
တေးရေး ကိုလေးလွင်
lyrics-Ko Lay Lwin
vocal-Poe Ei San
published: 16 May 2022
views: 3813
1:35
"Chan" Myanmar Cafeteria in Pathein, December 2018 ချမ်းကဖေး နှင့် စားဖွယ်စုံ ပုသိမ်မြို့
Most of Myanmar people do not prepare breakfast at home in the morning. We usually go to the Cafe or restaurant to have breakfast.
Moke Hin Gar, noodles with f...
Most of Myanmar people do not prepare breakfast at home in the morning. We usually go to the Cafe or restaurant to have breakfast.
Moke Hin Gar, noodles with fish soup is the top in the list. Some have Nan Gyi Thoke, a salad dish with think round rice noodle with specially prepared chicken curry.
You can get all these breakfast dishes in most Cafe and restaurants.
"Chan" Cafe is on Mayancho Road.
You can get varieties of locally popular foods, hot and cold drinks.
The price is very reasonable and I would recommend to try whilst you are in Pathein.
#ပုသိမ် #MyanmarFood #MyanmarStreetFood #MyanmarRestaurant #MyanmarCafeteria
https://wn.com/Chan_Myanmar_Cafeteria_In_Pathein,_December_2018_ချမ်းကဖေး_နှင့်_စားဖွယ်စုံ_ပုသိမ်မြို့
Most of Myanmar people do not prepare breakfast at home in the morning. We usually go to the Cafe or restaurant to have breakfast.
Moke Hin Gar, noodles with fish soup is the top in the list. Some have Nan Gyi Thoke, a salad dish with think round rice noodle with specially prepared chicken curry.
You can get all these breakfast dishes in most Cafe and restaurants.
"Chan" Cafe is on Mayancho Road.
You can get varieties of locally popular foods, hot and cold drinks.
The price is very reasonable and I would recommend to try whilst you are in Pathein.
#ပုသိမ် #MyanmarFood #MyanmarStreetFood #MyanmarRestaurant #MyanmarCafeteria
published: 09 Dec 2018
views: 1546
36:21
Driving Around Northern Pathein in 4K
This is the continuation of my drive around Pathein on September 17th, 2019.
We drove alo...
Play in Full Screen
Driving Around Northern Pathein in 4K
Driving Around Northern Pathein in 4K
This is the continuation of my drive around Pathein on September 17th, 2019.
We drove along the Pathein Yangon Road, then on the Tawn Paw Road up to Yan Kinn Taung and back to the city centre along the Strand Road.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
#Pathein #CityDrive #DrivingDowntown
Music from YouTube Audio Library
1. Si Señorita by Chris Haugen
2. Quarantine Waltz by Nat Keefe & Hot Buttered Rum
3. Longer Distance by TrackTribe
4. Back To Portland by TrackTribe
5. Terrier Waltz by Nat Keefe with The Bow Ties
6. Oceanside Bonfire by The Great North Sound Society
7. Waltz in Low Light by Nat Keefe & Hot Buttered Rum
1:27
Welcome To Pathein
Test Video
Play in Full Screen
Welcome To Pathein
Welcome To Pathein
Test Video
15:35
Roadtrip to Pathein
ဒီ vlog လေးကတော့ ရန်ကုန်ကနေ ပုသိမ်ကို အလုပ်ကိစ္စနဲ့ခရီးသွားရင်း ရန်ကုန်-ပုသိမ် အဝေးပြေးလမ်...
Play in Full Screen
Roadtrip to Pathein
Roadtrip to Pathein
ဒီ vlog လေးကတော့ ရန်ကုန်ကနေ ပုသိမ်ကို အလုပ်ကိစ္စနဲ့ခရီးသွားရင်း ရန်ကုန်-ပုသိမ် အဝေးပြေးလမ်းတလျှောက် လမ်းခရီးအခြေအနေနဲ့ လမ်းတလျှောက်လုံးတွေ့ မြင်ရတဲ့ ပတ်ဝန်းကျင်အလှအပတွေ၊ လမ်းတလျှောက် ဖြတ်သန်းခဲ့ရတဲ့ မြို့လေးတွေကို ဗဟုသုတ ရစရာအဖြစ် တင်ဆက်ပေးလိုက်ရပါတယ်ခင်ဗျာ။
6:51
Pathein(Mini Blog) ပုသိမ် ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင်
Pathein Blog ပုသိမ် blog
"ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင် "
covid ကာလနဲ့ တခြားအကြော...
Play in Full Screen
Pathein(Mini Blog) ပုသိမ် ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင်
Pathein(Mini Blog) ပုသိမ် ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင်
Pathein Blog ပုသိမ် blog
"ပုသိမ်မြို့လေးကိုလျှောက်လည်ကြည့်ရအောင် "
covid ကာလနဲ့ တခြားအကြောင်းတွေကြောင့် ခရီးမသွားရတဲ့သူတွေ တွက် ပုသိမ်မြို့လမ်းတွေကို ကိုတိုင်ရောက်သွားသလို ခံစားရအောင် အပျင်းပြေ လိုက်ကြည့်လိုက်ရအောင်နော် 🚐🚐🚐
ပုသိမ်ရောက်ဖူးသူတွေလဲ အလွမ်းပြေ ခံစားကြည့်ပေးနော် 🚐🚐
40:55
Scenic Myanmar Countryside: Train Travel From Yegyi To Pathein, Myanmar 🇲🇲 in 4K
This is the video which I took on September 16th, 2019.
My friend and I travelled from Pa...
Play in Full Screen
Scenic Myanmar Countryside: Train Travel From Yegyi To Pathein, Myanmar 🇲🇲 in 4K
Scenic Myanmar Countryside: Train Travel From Yegyi To Pathein, Myanmar 🇲🇲 in 4K
This is the video which I took on September 16th, 2019.
My friend and I travelled from Pathein to Yegyi for sightseeing in Myanmar countryside. Although it is the monsoon season, the weather is very good, very sunny and warm.
We left Pathein at 5:30 AM.
This is the return train journey from Yegyi to Pathein. The distance between Yegyi and Pathein is 85 km (53 miles) but it took three and a half hours to travel.
Myanmar Railways is state-owned. The quality of the railway infrastructure is generally poor. and the tracks are in poor condition especially in this part of the country, Ayeyarwady Division.
The network has steadily increased in size over the last two decades, from nearly 5,500 kilometres (3,400 mi) in 1988 to 10,296.01 kilometres (6,397.64 mi) in 2010. Myanmar Railways is currently undertaking an ambitious expansion program that will add another 3,645 km (2,265 mi) to its network, making it spread in to 13,941 km (8,663 mi) including extensions to Myeik in the south, Kyaingtong in the east, Sittwe in the west. Ref. Wikipedia
Myanmar is an agricultural country and agriculture sector is the backbone of the economy.
You will see paddy fields along the journey as if the land is fitted with velvety green carpet.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
Don’t forget to LIKE 👍 the video, SUBSCRIBE 💖
http://www.youtube.com/mayancho21?sub...
and hit the ‘’BELL’’ button🔔to turn on notifications! Also, please, share this video on social media!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
#TrainTravel #TrainJourney #Pathein
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
13:12
Walking Tour St Peter's Cathedral, Pathein in September 2019 in 4K
My walking tour of St Peter's Cathedral, which is situated in Central Pathein, Ayeyarwady ...
Play in Full Screen
Walking Tour St Peter's Cathedral, Pathein in September 2019 in 4K
Walking Tour St Peter's Cathedral, Pathein in September 2019 in 4K
My walking tour of St Peter's Cathedral, which is situated in Central Pathein, Ayeyarwady Division in Myanmar. I visited late morning and I was not able to tour inside the cathedral.
This Cathedral was built in 1872 and was a landmark for Catholic education.
#Pathein #CatholicEducation #Cathedral
if you don't want to miss my upcoming new videos, please subscribe to my channel here.
http://www.youtube.com/mayancho21?sub_confirmation=1
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
23:47
Driving Downtown Pathein in 4K ပုသိမ်မြို့လယ် တုတ်တုတ်နဲ့လည်
A late afternoon driving around downtown Pathein.
I hope that you all enjoy my channel. P...
Play in Full Screen
Driving Downtown Pathein in 4K ပုသိမ်မြို့လယ် တုတ်တုတ်နဲ့လည်
Driving Downtown Pathein in 4K ပုသိမ်မြို့လယ် တုတ်တုတ်နဲ့လည်
A late afternoon driving around downtown Pathein.
I hope that you all enjoy my channel. Please, rest assured that I read all of your comments, therefore please, comment and leave your feedback, as it indeed helps me to understand what you like the most and what I can do better!
© All rights reserved. This content may not be uploaded anywhere. You can share the YouTube link.
You can follow me on
Facebook: http://www.facebook.com/mayancho21
Instagram http://www.instagram.com/mayancho21
Twitter: http://www.twitter.com/mayancho21
#Pathein #CityDrive #DrivingDowntown
0:45
Pathein University Main Street
Play in Full Screen
Pathein University Main Street
Pathein University Main Street
4:55
မမ ပုသိမ်သူ(Ma Ma Pathein Thu)
တေးရေး ကိုလေးလွင်
lyrics-Ko Lay Lwin
vocal-Poe Ei San
Play in Full Screen
မမ ပုသိမ်သူ(Ma Ma Pathein Thu)
မမ ပုသိမ်သူ(Ma Ma Pathein Thu)
တေးရေး ကိုလေးလွင်
lyrics-Ko Lay Lwin
vocal-Poe Ei San
1:35
"Chan" Myanmar Cafeteria in Pathein, December 2018 ချမ်းကဖေး နှင့် စားဖွယ်စုံ ပုသိမ်မြို့
Most of Myanmar people do not prepare breakfast at home in the morning. We usually go to t...
Play in Full Screen
"Chan" Myanmar Cafeteria in Pathein, December 2018 ချမ်းကဖေး နှင့် စားဖွယ်စုံ ပုသိမ်မြို့
"Chan" Myanmar Cafeteria in Pathein, December 2018 ချမ်းကဖေး နှင့် စားဖွယ်စုံ ပုသိမ်မြို့
Most of Myanmar people do not prepare breakfast at home in the morning. We usually go to the Cafe or restaurant to have breakfast.
Moke Hin Gar, noodles with fish soup is the top in the list. Some have Nan Gyi Thoke, a salad dish with think round rice noodle with specially prepared chicken curry.
You can get all these breakfast dishes in most Cafe and restaurants.
"Chan" Cafe is on Mayancho Road.
You can get varieties of locally popular foods, hot and cold drinks.
The price is very reasonable and I would recommend to try whilst you are in Pathein.
#ပုသိမ် #MyanmarFood #MyanmarStreetFood #MyanmarRestaurant #MyanmarCafeteria
');
} 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('
VIDEO
');
}
}
});
}
}
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));
}
});
});
});
// -->
by Melanie C (Melanie Chisholm)
Be the One
by:
Yes
(Anderson/Squire/Howe) I.THE ONE Never underestimate the loving How we intertwine our very soul How we fill each other's spaces to lose control When you're talking, be the children Who stand on solid ground Never underestimate the giving that will bring you around I'll be there, to bring this love in the morning I'll be there, to bring you the stars at night I'll be there, hust waiting to hear you singing Never underestimate a giver The gift of love will surely be Whe you're asking for the secrets to set you free When you're talking to the friendship That love of higher self This gift of love is the answer to all your doubts Be the one, giving in to love Never let the good in life desert you Be the one, giving in to love Never let the fools destroy your dreams Be the one, giving in to love I can dream myself every minute So how did we become, masters of limitation? I'll be there, I'll be there, I'll be there To make it right for you Giving in, giving in to love It's the balance of this everyday feeling Giving in, giving in to love Without love our dreams become illusion Giving in, giving in to love I can hear you singing every minute So you can sing the song, and see the truth II.HUMANKIND So we worked all around amidst the glory of life Any fire of the flame would be made Should the famine of change to disguise everyone Who cannot see the soul of truth ready made But all because we're changing now As the prophets of doom speak their mind It's a long, long, way from where the system began It's a long, long, way humankind So we dance down on nature as we try to repeat All our efforts as one sent today Taking back instead of giving, taking back more or less Taking back a sense of being afraid So all this is necessary changes now, as the will to help all man And the children of the crucified will be better off, better dead But all this senseless killing, and all these chains and lies I want to know right now, I want to know right now I want to know where we come from For it's a long, long, way from where the system began It's a long, long, way humankind It's a long, long, way from where the system began It's a long, long, way humankind, yeah Chorus Giving in, giving in to love I can see and feel the truth every minute Giving in, giving in to love Be the one to rescue you, rescue you Giving in, giving in to the right love There's no way that you can live without it So how can we become, masters of our invention III.SKATES REPEAT CHORUS Never underestimate the power