'+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);
}
});
}
//-->
Radio Stations
- Verdú
RADIO STATION
GENRE
LOCATION
Antxeta Irratia
Varied
Spain
Network Radio 4
Country
Spain
COPE Elche
News Talk
Spain
Ràdio Silenci
News Talk ,Pop
Spain
Yumbo FM
Dance
Spain
CatMúsica
Classical
Spain
Onda Cero Madrid
Varied
Spain
Radio Sevillanas
Varied
Spain
Ibiza Frenchy People Radio
Dance
Spain
UK Away FM
Varied
Spain
Alzira ràdio
Talk
Spain
Radixu Irratia
Varied
Spain
HOSPITALET FM
Dance
Spain
IB3 Radio // la radio autonomica de les Illes Balears //
News Talk ,Varied ,News
Spain
Radio San Miguel
Rock ,Latin Hits
Spain
Track FM Pamplona
Varied ,Dance ,Electronica
Spain
Begi FM 2 Classics
80s ,Oldies ,70s
Spain
Radio Taoro
Oldies
Spain
RadioRondo
Varied
Spain
Ràdio RSK
Alternative
Spain
Txolarre Irratia
Varied
Spain
Punto Radio Estrella
Talk
Spain
Tarragona Ràdio
Public
Spain
Radio Juventud Gran Canaria
Varied
Spain
RAC1
News ,Sports ,Talk
Spain
Onda Peñes
Varied ,Spanish
Spain
Ràdio Olot
Varied
Spain
Activa FM 93.0 - 101.0 - 104.5 - www.activafm.es
Pop
Spain
UD Radio Las Palmas
Sports
Spain
Begi FM
90s ,80s ,Adult Contemporary
Spain
Canary UK
Adult Contemporary
Spain
Radio Lux (ES)
Oldies
Spain
FLAIX eivissa
Dance
Spain
Ibiza Soncia
Electronica
Spain
EITB Euskadi Irratia
Talk
Spain
Radio Mi Amigo (deutsch)
Rock ,Oldies ,Pop
Spain
Loca Fm
Dance ,Electronica
Spain
XtraFM Costa Blanca
Adult Contemporary ,Oldies ,Top 40
Spain
RadioVoz Lugo
Talk
Spain
Radio Calella
Varied
Spain
Radio Atlantida Tenerife
Varied
Spain
Ràdio Horitzó
World
Spain
Radio Parpayuela
Discussion
Spain
Miribilla Irratia Euskera
Varied
Spain
HolaFm
Dance
Spain
Radio Gorbea
Pop
Spain
Ràdio Capital 93,7 FM
Adult Contemporary
Spain
Ràdio Flix 107,4 FM
Public
Spain
Ràdio Balaguer
Public
Spain
Efecto FM
Dance
Spain
Atlantis FM Tenerife
Adult Contemporary
Spain
SEARCH FOR RADIOS
Kulud Feat Verd -My Feelings [Official Audio ]
Classic throwback R&B hit
published: 06 Jan 2024
Be my Queen - Kulud Feat Verd [Official Audio]
Throwback R&B Hit
Classic club banger
published: 06 Jan 2024
Jerusha - For Life feat Verd
Released: 2003
Album: Got To Have It
Contact: [email protected]
Jerusha Onia (nee Naidoo) is a non-practicing South African doctor who is currently living in Malaysia in 2020, with a part time pop music career. Song features South African R&B boss Verd.
published: 01 Aug 2020
Baby - Kulud feat Verd [Official Audio ]
Throwback R&B Hit
published: 06 Jan 2024
Baby - Kulud Feat Verd and Kerry [Official Music Video ]
Easy Listening R&B Hit
Throwback R&B Hit
published: 27 Jan 2024
4. အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
English လေ့လာလို့ကောင်းတဲ့ YouTube Channel 10 ခု ( Top 10 YouTube channel for learning English)
https://www.youtube.com/watch?v=NhR68ejZA0E
အင်္ဂလိပ်လို နှုတ်ဆက်တဲ့အခါ အသုံးများတဲ့စကားများ ( ways to say 'Hello')
https://www.youtube.com/watch?v=Lf_G-bIhZdw
ခွဲခွာတဲ့အခါ အင်္ဂလိပ်လို နှုတ်ဆက်နည်း ၁၀ မျိုး (10 ways to say 'SORRY')
https://www.youtube.com/watch?v=k8OVsgzSYqw&t=1s
ကိုယ်မိသားစုအကြောင်းကို အင်္ဂလိပ်လို ရိုးရှင်းလွယ်ကူစွာပြောနည်း ( talking about family
https://www.youtube.com/watch?v=vMGJrYHVdb0
ကိုယ်ကိုကိုယ် အင်္ဂလိပ်လို နှုတ်ဆက်နည်း (how to introduce yourself in English)
https://www.youtube.com/watch?v=UIaUiJAS7-s
ဘယ်လို စကားတွေနဲ့ အင်္ဂလိပ်လို တောင်းပန်ကြမလဲ (ways to say sorry)
https://www.youtube.com/watch?v=oPUUfTUwEIU
ကျေးဇူးတင်တာ...
published: 09 Oct 2022
Still Luv U (feat. Verd)
Provided to YouTube by DistroKid
Still Luv U (feat. Verd) · Kulud · Verd
Verd
℗ Legaci Nova Entertainment
Released on: 2016-05-01
Auto-generated by YouTube.
published: 03 May 2016
VERD ft. Kerry Cherry - "Baby"
All We Wanna Do Is Make You Dance!!! Clap Your Hands!!!
Another BROTHERHOOD PRODUCTION!!!
published: 17 Sep 2011
Verde - ARAI (Official Music Video)
Subscribe : https://bit.ly/3SoZt9b
Buy/Stream "ARAI" : https://orcd.co/verde_ARAI
Black Money Records Official Playlist : https://open.spotify.com/playlist/7ulw7HrvHo9WUIogtYhxbz?si=89bfec3c43504434
Lyrics & Vocals by Verde
Recorded, Mixed & Mastered by ECHO
Produced by Lef
Directed By Manos Makrakis
Gaffer: George Lambropoulos
Drone/fpv: Apostolos Zygouris
Edited by Merlagne
Special Thanks
Og Market
https://ogmarketath.com/ - https://www.instagram.com/ogmarket_
Cultur3 - https://www.instagram.com/cultur3.fts
Omerta the Code - https://www.instagram.com/omerta_the_code_clo/
I-QUBE NOOTROPIC - https://www.instagram.com/iqube_nootropic/
Verde Instagram profile:
https://www.instagram.com/realverdee
FOLLOW BLACK MONEY RECORDS | BMR
https://www.instagram.com/blackmoneyrecordsgr
Booki...
published: 27 Jan 2024
Verd - My Feelings
To everyone who loves this song, please enjoy. 🙏🏻🕺🎉
published: 23 Mar 2023
3:50
Jerusha - For Life feat Verd
Released: 2003
Album: Got To Have It
Contact:
[email protected]
Jerusha Onia (nee Naidoo) is a non-practicing South African doctor who is currently l...
Released: 2003
Album: Got To Have It
Contact:
[email protected]
Jerusha Onia (nee Naidoo) is a non-practicing South African doctor who is currently living in Malaysia in 2020, with a part time pop music career. Song features South African R&B boss Verd.
https://wn.com/Jerusha_For_Life_Feat_Verd
Released: 2003
Album: Got To Have It
Contact:
[email protected]
Jerusha Onia (nee Naidoo) is a non-practicing South African doctor who is currently living in Malaysia in 2020, with a part time pop music career. Song features South African R&B boss Verd.
published: 01 Aug 2020
views: 344991
14:07
4. အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
English လေ့လာလို့ကောင်းတဲ့ YouTube Channel 10 ခု ( Top 10 YouTube channel for learning English)
https://www.youtube.com/...
အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
English လေ့လာလို့ကောင်းတဲ့ YouTube Channel 10 ခု ( Top 10 YouTube channel for learning English)
https://www.youtube.com/watch?v=NhR68ejZA0E
အင်္ဂလိပ်လို နှုတ်ဆက်တဲ့အခါ အသုံးများတဲ့စကားများ ( ways to say 'Hello')
https://www.youtube.com/watch?v=Lf_G-bIhZdw
ခွဲခွာတဲ့အခါ အင်္ဂလိပ်လို နှုတ်ဆက်နည်း ၁၀ မျိုး (10 ways to say 'SORRY')
https://www.youtube.com/watch?v=k8OVsgzSYqw&t=1s
ကိုယ်မိသားစုအကြောင်းကို အင်္ဂလိပ်လို ရိုးရှင်းလွယ်ကူစွာပြောနည်း ( talking about family
https://www.youtube.com/watch?v=vMGJrYHVdb0
ကိုယ်ကိုကိုယ် အင်္ဂလိပ်လို နှုတ်ဆက်နည်း (how to introduce yourself in English)
https://www.youtube.com/watch?v=UIaUiJAS7-s
ဘယ်လို စကားတွေနဲ့ အင်္ဂလိပ်လို တောင်းပန်ကြမလဲ (ways to say sorry)
https://www.youtube.com/watch?v=oPUUfTUwEIU
ကျေးဇူးတင်တာကို အင်္ဂလိပ်စကားနဲ့ ပြောတဲ့နည်းများ (ways to say thank you)
https://www.youtube.com/watch?v=qWYKVd_AhkE
မင်္ဂလာပါ ဒီ channel မှာ English စာနဲ့ ဆိုင်တဲ့ video တွေကိုတင်မှာဖြစ်ပါတယ်၊
ကျွန်တော် ဒီ channel ကို လုပ်ရတဲ့
အကြောင်းက အားလုံးလဲ သိတဲ့အတိုင်းပဲ YouTube ပေါ်မှာ English လေ့လာလိုရတဲ့
Channel တွေကများတယ်၊ ဒါပေမယ် ဆိုးတာက မြန်မာဘာသာစကားနဲ့ English
လေ့လာလို့ရတဲ့ channel က တော်တော်ရှားတယ်၊ channel ၅ခု ၆ခု လောက်ပဲရှိမယ်လို
ကျွန်တော်ထင်တယ်၊ ဒါကြောင့် ကျွန်တော် ဒီ channel ကို လုပ်ဖြစ်တာပါ၊ ဒီလိုတွေ
ပြောနေလို ကျွန်တော်ကို ဆရာတစ်ယောက်လိုမထင်စေချင်ပါဘူး၊
ကျွန်တော်ကိုယ်တိုင်လဲ English ကျွမ်းကျင်ချင်လိုလေ့လာနေတာပါ၊ ဒါကြောင့်
ကျွန်တော်နဲ့ ဘဝတူတဲ့ သူငယ်ချင်းတွေအတွက် ကိုယ်လေ့လာထားတာ တွေကို
ပြန်မျှဝေပေးမယ်ဆိုပြီး ဒီ channel ကို လုပ်ဖြစ်တာပါ၊ ဒီလို လုပ်လိုက်တဲ့အတွက်
ကျွန်တော်ကိုယ်တိုင်လဲ ကိုယ်လေ့လာထားတာတွေကို ပြန်မှတ်မိစေသလို
သူငယ်ချင်းတို့အတွက်လဲ အကျိုးရှိမယ်လိုမျှော်လင့်ပါတယ်၊ ဒီမှာတစ်ခုပြောချင်တာက
ကျွန်တော်ကိုယ်တိုင်လဲ လေ့လာနေတုန်းဖြစ်တဲ့အတွက် အမှားတွေပါနိုင်ပါတယ်၊
ဒါကြောင့် အမှားတွေပါသွားခဲမယ်ဆိုရင် အားလုံးကိုတောင်းပန်ပါတယ်၊ ပြီးတော
ကျွန်တော်မှား နေတာကိုလဲ ထောက်ပြပြောဆိုလိုရပါတယ်၊
ဒါပေမယ် ရိုင်းတာတွေ ဆဲတာတွေတော့ မလုပ်ပါနဲ့၊ အာ့လိုတွေ လုပ်ရင်တော့
Ban ပါမယ်၊ ကျွန်တော်လဲ အတတ်နိုင်ဆုံးအကောင်းဆုံး ဖြစ်အောင် ကြိုးစားပြီး
video တွေကို ဖန်တီးပေးမယ်လို ကတိပေးပါတယ်၊ video တွေကို တစ်ပတ်ကို
တစ်ပုဒ်နှုန်းတင်နှိုင်အောင် ကြိုးစားပေးပါမယ်၊ အားလုံးလဲ သိတဲ့အတိုင်းပဲ
Video တစ်ပုဒ် ဖန်တီးတယ်ဆိုတာ မလွယ်ပါဘူး၊ ဒါပေမယ် တတ်နိုင်သမျှပိုပြီး
ဖန်တီးနိုင်အောင် ကြိုးစားပါမယ်၊ ကျွန်တော် video တွေကို အချိန်ကုန်ခံ
ကြည့်ပေးတဲ့ မိတ်ဆွေတွေအတွက် အချိန်ကုန်ရကျိုးနပ်အောင် video တွေကို
ဖန်တီးပေးပါမယ်၊ နောက်ထူးခြားတာတစ်ခုက ကျွန်တော် ၁၀တန်းပြီးထဲက
အပြင်မှာ English စာသင်တန်းဆိုပြီး သီးသန်သွားမတတ်ပဲ online ကနေပဲ
English ကိုလေ့လာတာပါ၊ ဒါကြောင့် English စာလေ့လာနေတဲ့ မိတ်ဆွေတွေအတွက်
အသုံးဝင်မယ် website တွေ mobile application တွေနဲ့ YouTube channel တွေကို
လည်း ပြောပြပေးပါမယ်၊ နောက်ပိုင်းကျရင် ကျွန်တော် စဉ်းစားထားတာတစ်ခုရှိတယ်
ဒီ channel ကို ကြည်နေတဲ့ သူငယ်ချင်းတွေအတွက် zoom meeting တွေလုပ်ပြီး
Speaking လေ့ကျင်ဖို့ စီစဉ်ထားတာရှိပါတယ်၊ ဒါပေမယ် အခုတော့ မဟုတ်သေးပါဘူး
ကျွန်တော်မှာလဲ တစ်ခြားအလုပ်တွေရှိသေးတဲ့အတွက် မအားလို့ပါ၊ စိတ်မပူပါနဲ့၊
ဒီအစီအစဉ်လုပ်ဖြစ်တယ်ဆိုရင် YouTube ပေါ်မှာ အားလုံးကို အသိပေးပါမယ်၊
ဒါကြောင့် ကျွန်တော် channel ကို subscribe လုပ်ထားဖို့ မမေ့ပါနဲ့ ကျွန်တော်
Video အသစ်တင်တိုင်း သိချင်ရင်တော့ notification ball ကို နှိမ်ထားလို ရပါတယ်၊
Facebook မှာလဲ page ရော English စာလေ့လာတဲ့ group ရော ၂ခုလုံးရှိပါတယ်၊
Join ချင်တယ်ဆိုရင် description ထဲမှာ link ထည့်ပေးထားပါမယ်၊ link ကနေတစ်ဆင်
join လို့ရပါတယ်၊ Telegram မှာလဲ English စာလေ့လာနေတဲ့ မိတ်ဆွေတွေအတွက်
English short Story တွေကို တင်ပေးတဲ့ channel ရှိပါတယ်၊ စိတ်ဝင်စားတယ်ဆိုရင်
description ထဲက link ကနေတစ်ဆင် join လိုက်ပါ၊ နောက်ဆုံးပြောချင်တာက
မိတ်ဆွေတို့အနေနဲ့ English နဲ့ ပတ်သတ်ပြီးဘာတွေသိချင်လဲ၊ ကိုယ်သိချင်တာကို
Comment မှာရေးခဲ့ပါ၊ ကျွန်တော် တတ်နိုင်သမျှပြန်ဖြေပေးပါမယ်၊
Hello, welcome to my channel. On this channel, I will create about English lesson video.
Facebook -
https://www.facebook.com/LearnEnglishWithMe.MM
Facebook Group -
https://www.facebook.com/groups/631929194451809
Telegram -
https://t.me/LearnEnglishwithMe4u
Contact us -
[email protected]
Disclaimer: This Video is Just for educational purposes and does not have any intention to mislead or violate Google and youtube community guidelines or policies. I respect and follow all terms & conditions of Google & youtube.
https://wn.com/4._အင်္ဂလိပ်စာမှာ_အဓိကကျတဲ့_Verb_အကြောင်း
အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
English လေ့လာလို့ကောင်းတဲ့ YouTube Channel 10 ခု ( Top 10 YouTube channel for learning English)
https://www.youtube.com/watch?v=NhR68ejZA0E
အင်္ဂလိပ်လို နှုတ်ဆက်တဲ့အခါ အသုံးများတဲ့စကားများ ( ways to say 'Hello')
https://www.youtube.com/watch?v=Lf_G-bIhZdw
ခွဲခွာတဲ့အခါ အင်္ဂလိပ်လို နှုတ်ဆက်နည်း ၁၀ မျိုး (10 ways to say 'SORRY')
https://www.youtube.com/watch?v=k8OVsgzSYqw&t=1s
ကိုယ်မိသားစုအကြောင်းကို အင်္ဂလိပ်လို ရိုးရှင်းလွယ်ကူစွာပြောနည်း ( talking about family
https://www.youtube.com/watch?v=vMGJrYHVdb0
ကိုယ်ကိုကိုယ် အင်္ဂလိပ်လို နှုတ်ဆက်နည်း (how to introduce yourself in English)
https://www.youtube.com/watch?v=UIaUiJAS7-s
ဘယ်လို စကားတွေနဲ့ အင်္ဂလိပ်လို တောင်းပန်ကြမလဲ (ways to say sorry)
https://www.youtube.com/watch?v=oPUUfTUwEIU
ကျေးဇူးတင်တာကို အင်္ဂလိပ်စကားနဲ့ ပြောတဲ့နည်းများ (ways to say thank you)
https://www.youtube.com/watch?v=qWYKVd_AhkE
မင်္ဂလာပါ ဒီ channel မှာ English စာနဲ့ ဆိုင်တဲ့ video တွေကိုတင်မှာဖြစ်ပါတယ်၊
ကျွန်တော် ဒီ channel ကို လုပ်ရတဲ့
အကြောင်းက အားလုံးလဲ သိတဲ့အတိုင်းပဲ YouTube ပေါ်မှာ English လေ့လာလိုရတဲ့
Channel တွေကများတယ်၊ ဒါပေမယ် ဆိုးတာက မြန်မာဘာသာစကားနဲ့ English
လေ့လာလို့ရတဲ့ channel က တော်တော်ရှားတယ်၊ channel ၅ခု ၆ခု လောက်ပဲရှိမယ်လို
ကျွန်တော်ထင်တယ်၊ ဒါကြောင့် ကျွန်တော် ဒီ channel ကို လုပ်ဖြစ်တာပါ၊ ဒီလိုတွေ
ပြောနေလို ကျွန်တော်ကို ဆရာတစ်ယောက်လိုမထင်စေချင်ပါဘူး၊
ကျွန်တော်ကိုယ်တိုင်လဲ English ကျွမ်းကျင်ချင်လိုလေ့လာနေတာပါ၊ ဒါကြောင့်
ကျွန်တော်နဲ့ ဘဝတူတဲ့ သူငယ်ချင်းတွေအတွက် ကိုယ်လေ့လာထားတာ တွေကို
ပြန်မျှဝေပေးမယ်ဆိုပြီး ဒီ channel ကို လုပ်ဖြစ်တာပါ၊ ဒီလို လုပ်လိုက်တဲ့အတွက်
ကျွန်တော်ကိုယ်တိုင်လဲ ကိုယ်လေ့လာထားတာတွေကို ပြန်မှတ်မိစေသလို
သူငယ်ချင်းတို့အတွက်လဲ အကျိုးရှိမယ်လိုမျှော်လင့်ပါတယ်၊ ဒီမှာတစ်ခုပြောချင်တာက
ကျွန်တော်ကိုယ်တိုင်လဲ လေ့လာနေတုန်းဖြစ်တဲ့အတွက် အမှားတွေပါနိုင်ပါတယ်၊
ဒါကြောင့် အမှားတွေပါသွားခဲမယ်ဆိုရင် အားလုံးကိုတောင်းပန်ပါတယ်၊ ပြီးတော
ကျွန်တော်မှား နေတာကိုလဲ ထောက်ပြပြောဆိုလိုရပါတယ်၊
ဒါပေမယ် ရိုင်းတာတွေ ဆဲတာတွေတော့ မလုပ်ပါနဲ့၊ အာ့လိုတွေ လုပ်ရင်တော့
Ban ပါမယ်၊ ကျွန်တော်လဲ အတတ်နိုင်ဆုံးအကောင်းဆုံး ဖြစ်အောင် ကြိုးစားပြီး
video တွေကို ဖန်တီးပေးမယ်လို ကတိပေးပါတယ်၊ video တွေကို တစ်ပတ်ကို
တစ်ပုဒ်နှုန်းတင်နှိုင်အောင် ကြိုးစားပေးပါမယ်၊ အားလုံးလဲ သိတဲ့အတိုင်းပဲ
Video တစ်ပုဒ် ဖန်တီးတယ်ဆိုတာ မလွယ်ပါဘူး၊ ဒါပေမယ် တတ်နိုင်သမျှပိုပြီး
ဖန်တီးနိုင်အောင် ကြိုးစားပါမယ်၊ ကျွန်တော် video တွေကို အချိန်ကုန်ခံ
ကြည့်ပေးတဲ့ မိတ်ဆွေတွေအတွက် အချိန်ကုန်ရကျိုးနပ်အောင် video တွေကို
ဖန်တီးပေးပါမယ်၊ နောက်ထူးခြားတာတစ်ခုက ကျွန်တော် ၁၀တန်းပြီးထဲက
အပြင်မှာ English စာသင်တန်းဆိုပြီး သီးသန်သွားမတတ်ပဲ online ကနေပဲ
English ကိုလေ့လာတာပါ၊ ဒါကြောင့် English စာလေ့လာနေတဲ့ မိတ်ဆွေတွေအတွက်
အသုံးဝင်မယ် website တွေ mobile application တွေနဲ့ YouTube channel တွေကို
လည်း ပြောပြပေးပါမယ်၊ နောက်ပိုင်းကျရင် ကျွန်တော် စဉ်းစားထားတာတစ်ခုရှိတယ်
ဒီ channel ကို ကြည်နေတဲ့ သူငယ်ချင်းတွေအတွက် zoom meeting တွေလုပ်ပြီး
Speaking လေ့ကျင်ဖို့ စီစဉ်ထားတာရှိပါတယ်၊ ဒါပေမယ် အခုတော့ မဟုတ်သေးပါဘူး
ကျွန်တော်မှာလဲ တစ်ခြားအလုပ်တွေရှိသေးတဲ့အတွက် မအားလို့ပါ၊ စိတ်မပူပါနဲ့၊
ဒီအစီအစဉ်လုပ်ဖြစ်တယ်ဆိုရင် YouTube ပေါ်မှာ အားလုံးကို အသိပေးပါမယ်၊
ဒါကြောင့် ကျွန်တော် channel ကို subscribe လုပ်ထားဖို့ မမေ့ပါနဲ့ ကျွန်တော်
Video အသစ်တင်တိုင်း သိချင်ရင်တော့ notification ball ကို နှိမ်ထားလို ရပါတယ်၊
Facebook မှာလဲ page ရော English စာလေ့လာတဲ့ group ရော ၂ခုလုံးရှိပါတယ်၊
Join ချင်တယ်ဆိုရင် description ထဲမှာ link ထည့်ပေးထားပါမယ်၊ link ကနေတစ်ဆင်
join လို့ရပါတယ်၊ Telegram မှာလဲ English စာလေ့လာနေတဲ့ မိတ်ဆွေတွေအတွက်
English short Story တွေကို တင်ပေးတဲ့ channel ရှိပါတယ်၊ စိတ်ဝင်စားတယ်ဆိုရင်
description ထဲက link ကနေတစ်ဆင် join လိုက်ပါ၊ နောက်ဆုံးပြောချင်တာက
မိတ်ဆွေတို့အနေနဲ့ English နဲ့ ပတ်သတ်ပြီးဘာတွေသိချင်လဲ၊ ကိုယ်သိချင်တာကို
Comment မှာရေးခဲ့ပါ၊ ကျွန်တော် တတ်နိုင်သမျှပြန်ဖြေပေးပါမယ်၊
Hello, welcome to my channel. On this channel, I will create about English lesson video.
Facebook -
https://www.facebook.com/LearnEnglishWithMe.MM
Facebook Group -
https://www.facebook.com/groups/631929194451809
Telegram -
https://t.me/LearnEnglishwithMe4u
Contact us -
[email protected]
Disclaimer: This Video is Just for educational purposes and does not have any intention to mislead or violate Google and youtube community guidelines or policies. I respect and follow all terms & conditions of Google & youtube.
published: 09 Oct 2022
views: 68396
4:30
Still Luv U (feat. Verd)
Provided to YouTube by DistroKid
Still Luv U (feat. Verd) · Kulud · Verd
Verd
℗ Legaci Nova Entertainment
Released on: 2016-05-01
Auto-generated by YouTube...
Provided to YouTube by DistroKid
Still Luv U (feat. Verd) · Kulud · Verd
Verd
℗ Legaci Nova Entertainment
Released on: 2016-05-01
Auto-generated by YouTube.
https://wn.com/Still_Luv_U_(Feat._Verd)
Provided to YouTube by DistroKid
Still Luv U (feat. Verd) · Kulud · Verd
Verd
℗ Legaci Nova Entertainment
Released on: 2016-05-01
Auto-generated by YouTube.
published: 03 May 2016
views: 171671
3:16
VERD ft. Kerry Cherry - "Baby"
All We Wanna Do Is Make You Dance!!! Clap Your Hands!!!
Another BROTHERHOOD PRODUCTION!!!
All We Wanna Do Is Make You Dance!!! Clap Your Hands!!!
Another BROTHERHOOD PRODUCTION!!!
https://wn.com/Verd_Ft._Kerry_Cherry_Baby
All We Wanna Do Is Make You Dance!!! Clap Your Hands!!!
Another BROTHERHOOD PRODUCTION!!!
published: 17 Sep 2011
views: 484164
2:21
Verde - ARAI (Official Music Video)
Subscribe : https://bit.ly/3SoZt9b
Buy/Stream "ARAI" : https://orcd.co/verde_ARAI
Black Money Records Official Playlist : https://open.spotify.com/playlist/7ulw...
Subscribe : https://bit.ly/3SoZt9b
Buy/Stream "ARAI" : https://orcd.co/verde_ARAI
Black Money Records Official Playlist : https://open.spotify.com/playlist/7ulw7HrvHo9WUIogtYhxbz?si=89bfec3c43504434
Lyrics & Vocals by Verde
Recorded, Mixed & Mastered by ECHO
Produced by Lef
Directed By Manos Makrakis
Gaffer: George Lambropoulos
Drone/fpv: Apostolos Zygouris
Edited by Merlagne
Special Thanks
Og Market
https://ogmarketath.com/ - https://www.instagram.com/ogmarket_
Cultur3 - https://www.instagram.com/cultur3.fts
Omerta the Code - https://www.instagram.com/omerta_the_code_clo/
I-QUBE NOOTROPIC - https://www.instagram.com/iqube_nootropic/
Verde Instagram profile:
https://www.instagram.com/realverdee
FOLLOW BLACK MONEY RECORDS | BMR
https://www.instagram.com/blackmoneyrecordsgr
Bookings /Contact:
[email protected]
2024© + ℗ Black Money Records
#ARAI #VERDE #BLACKMONEYRECORDS
https://wn.com/Verde_Arai_(Official_Music_Video)
Subscribe : https://bit.ly/3SoZt9b
Buy/Stream "ARAI" : https://orcd.co/verde_ARAI
Black Money Records Official Playlist : https://open.spotify.com/playlist/7ulw7HrvHo9WUIogtYhxbz?si=89bfec3c43504434
Lyrics & Vocals by Verde
Recorded, Mixed & Mastered by ECHO
Produced by Lef
Directed By Manos Makrakis
Gaffer: George Lambropoulos
Drone/fpv: Apostolos Zygouris
Edited by Merlagne
Special Thanks
Og Market
https://ogmarketath.com/ - https://www.instagram.com/ogmarket_
Cultur3 - https://www.instagram.com/cultur3.fts
Omerta the Code - https://www.instagram.com/omerta_the_code_clo/
I-QUBE NOOTROPIC - https://www.instagram.com/iqube_nootropic/
Verde Instagram profile:
https://www.instagram.com/realverdee
FOLLOW BLACK MONEY RECORDS | BMR
https://www.instagram.com/blackmoneyrecordsgr
Bookings /Contact:
[email protected]
2024© + ℗ Black Money Records
#ARAI #VERDE #BLACKMONEYRECORDS
published: 27 Jan 2024
views: 68006
4:05
Verd - My Feelings
To everyone who loves this song, please enjoy. 🙏🏻🕺🎉
To everyone who loves this song, please enjoy. 🙏🏻🕺🎉
https://wn.com/Verd_My_Feelings
To everyone who loves this song, please enjoy. 🙏🏻🕺🎉
published: 23 Mar 2023
views: 3521
4:05
Kulud Feat Verd -My Feelings [Official Audio ]
Classic throwback R&B hit
Play in Full Screen
Kulud Feat Verd -My Feelings [Official Audio ]
Kulud Feat Verd -My Feelings [Official Audio ]
Classic throwback R&B hit
3:54
Be my Queen - Kulud Feat Verd [Official Audio]
Throwback R&B Hit
Classic club banger
Play in Full Screen
Be my Queen - Kulud Feat Verd [Official Audio]
Be my Queen - Kulud Feat Verd [Official Audio]
Throwback R&B Hit
Classic club banger
3:50
Jerusha - For Life feat Verd
Play in Full Screen
Jerusha - For Life feat Verd
Jerusha - For Life feat Verd
Released: 2003
Album: Got To Have It
Contact:
[email protected]
Jerusha Onia (nee Naidoo) is a non-practicing South African doctor who is currently living in Malaysia in 2020, with a part time pop music career. Song features South African R&B boss Verd.
3:37
Baby - Kulud feat Verd [Official Audio ]
Throwback R&B Hit
Play in Full Screen
Baby - Kulud feat Verd [Official Audio ]
Baby - Kulud feat Verd [Official Audio ]
Throwback R&B Hit
3:16
Baby - Kulud Feat Verd and Kerry [Official Music Video ]
Easy Listening R&B Hit
Throwback R&B Hit
Play in Full Screen
Baby - Kulud Feat Verd and Kerry [Official Music Video ]
Baby - Kulud Feat Verd and Kerry [Official Music Video ]
Easy Listening R&B Hit
Throwback R&B Hit
14:07
4. အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
English လေ့လာလို့ကောင်းတဲ့ YouTube Channel 10 ခု (...
Play in Full Screen
4. အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
4. အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
အင်္ဂလိပ်စာမှာ အဓိကကျတဲ့ Verb အကြောင်း
English လေ့လာလို့ကောင်းတဲ့ YouTube Channel 10 ခု ( Top 10 YouTube channel for learning English)
https://www.youtube.com/watch?v=NhR68ejZA0E
အင်္ဂလိပ်လို နှုတ်ဆက်တဲ့အခါ အသုံးများတဲ့စကားများ ( ways to say 'Hello')
https://www.youtube.com/watch?v=Lf_G-bIhZdw
ခွဲခွာတဲ့အခါ အင်္ဂလိပ်လို နှုတ်ဆက်နည်း ၁၀ မျိုး (10 ways to say 'SORRY')
https://www.youtube.com/watch?v=k8OVsgzSYqw&t=1s
ကိုယ်မိသားစုအကြောင်းကို အင်္ဂလိပ်လို ရိုးရှင်းလွယ်ကူစွာပြောနည်း ( talking about family
https://www.youtube.com/watch?v=vMGJrYHVdb0
ကိုယ်ကိုကိုယ် အင်္ဂလိပ်လို နှုတ်ဆက်နည်း (how to introduce yourself in English)
https://www.youtube.com/watch?v=UIaUiJAS7-s
ဘယ်လို စကားတွေနဲ့ အင်္ဂလိပ်လို တောင်းပန်ကြမလဲ (ways to say sorry)
https://www.youtube.com/watch?v=oPUUfTUwEIU
ကျေးဇူးတင်တာကို အင်္ဂလိပ်စကားနဲ့ ပြောတဲ့နည်းများ (ways to say thank you)
https://www.youtube.com/watch?v=qWYKVd_AhkE
မင်္ဂလာပါ ဒီ channel မှာ English စာနဲ့ ဆိုင်တဲ့ video တွေကိုတင်မှာဖြစ်ပါတယ်၊
ကျွန်တော် ဒီ channel ကို လုပ်ရတဲ့
အကြောင်းက အားလုံးလဲ သိတဲ့အတိုင်းပဲ YouTube ပေါ်မှာ English လေ့လာလိုရတဲ့
Channel တွေကများတယ်၊ ဒါပေမယ် ဆိုးတာက မြန်မာဘာသာစကားနဲ့ English
လေ့လာလို့ရတဲ့ channel က တော်တော်ရှားတယ်၊ channel ၅ခု ၆ခု လောက်ပဲရှိမယ်လို
ကျွန်တော်ထင်တယ်၊ ဒါကြောင့် ကျွန်တော် ဒီ channel ကို လုပ်ဖြစ်တာပါ၊ ဒီလိုတွေ
ပြောနေလို ကျွန်တော်ကို ဆရာတစ်ယောက်လိုမထင်စေချင်ပါဘူး၊
ကျွန်တော်ကိုယ်တိုင်လဲ English ကျွမ်းကျင်ချင်လိုလေ့လာနေတာပါ၊ ဒါကြောင့်
ကျွန်တော်နဲ့ ဘဝတူတဲ့ သူငယ်ချင်းတွေအတွက် ကိုယ်လေ့လာထားတာ တွေကို
ပြန်မျှဝေပေးမယ်ဆိုပြီး ဒီ channel ကို လုပ်ဖြစ်တာပါ၊ ဒီလို လုပ်လိုက်တဲ့အတွက်
ကျွန်တော်ကိုယ်တိုင်လဲ ကိုယ်လေ့လာထားတာတွေကို ပြန်မှတ်မိစေသလို
သူငယ်ချင်းတို့အတွက်လဲ အကျိုးရှိမယ်လိုမျှော်လင့်ပါတယ်၊ ဒီမှာတစ်ခုပြောချင်တာက
ကျွန်တော်ကိုယ်တိုင်လဲ လေ့လာနေတုန်းဖြစ်တဲ့အတွက် အမှားတွေပါနိုင်ပါတယ်၊
ဒါကြောင့် အမှားတွေပါသွားခဲမယ်ဆိုရင် အားလုံးကိုတောင်းပန်ပါတယ်၊ ပြီးတော
ကျွန်တော်မှား နေတာကိုလဲ ထောက်ပြပြောဆိုလိုရပါတယ်၊
ဒါပေမယ် ရိုင်းတာတွေ ဆဲတာတွေတော့ မလုပ်ပါနဲ့၊ အာ့လိုတွေ လုပ်ရင်တော့
Ban ပါမယ်၊ ကျွန်တော်လဲ အတတ်နိုင်ဆုံးအကောင်းဆုံး ဖြစ်အောင် ကြိုးစားပြီး
video တွေကို ဖန်တီးပေးမယ်လို ကတိပေးပါတယ်၊ video တွေကို တစ်ပတ်ကို
တစ်ပုဒ်နှုန်းတင်နှိုင်အောင် ကြိုးစားပေးပါမယ်၊ အားလုံးလဲ သိတဲ့အတိုင်းပဲ
Video တစ်ပုဒ် ဖန်တီးတယ်ဆိုတာ မလွယ်ပါဘူး၊ ဒါပေမယ် တတ်နိုင်သမျှပိုပြီး
ဖန်တီးနိုင်အောင် ကြိုးစားပါမယ်၊ ကျွန်တော် video တွေကို အချိန်ကုန်ခံ
ကြည့်ပေးတဲ့ မိတ်ဆွေတွေအတွက် အချိန်ကုန်ရကျိုးနပ်အောင် video တွေကို
ဖန်တီးပေးပါမယ်၊ နောက်ထူးခြားတာတစ်ခုက ကျွန်တော် ၁၀တန်းပြီးထဲက
အပြင်မှာ English စာသင်တန်းဆိုပြီး သီးသန်သွားမတတ်ပဲ online ကနေပဲ
English ကိုလေ့လာတာပါ၊ ဒါကြောင့် English စာလေ့လာနေတဲ့ မိတ်ဆွေတွေအတွက်
အသုံးဝင်မယ် website တွေ mobile application တွေနဲ့ YouTube channel တွေကို
လည်း ပြောပြပေးပါမယ်၊ နောက်ပိုင်းကျရင် ကျွန်တော် စဉ်းစားထားတာတစ်ခုရှိတယ်
ဒီ channel ကို ကြည်နေတဲ့ သူငယ်ချင်းတွေအတွက် zoom meeting တွေလုပ်ပြီး
Speaking လေ့ကျင်ဖို့ စီစဉ်ထားတာရှိပါတယ်၊ ဒါပေမယ် အခုတော့ မဟုတ်သေးပါဘူး
ကျွန်တော်မှာလဲ တစ်ခြားအလုပ်တွေရှိသေးတဲ့အတွက် မအားလို့ပါ၊ စိတ်မပူပါနဲ့၊
ဒီအစီအစဉ်လုပ်ဖြစ်တယ်ဆိုရင် YouTube ပေါ်မှာ အားလုံးကို အသိပေးပါမယ်၊
ဒါကြောင့် ကျွန်တော် channel ကို subscribe လုပ်ထားဖို့ မမေ့ပါနဲ့ ကျွန်တော်
Video အသစ်တင်တိုင်း သိချင်ရင်တော့ notification ball ကို နှိမ်ထားလို ရပါတယ်၊
Facebook မှာလဲ page ရော English စာလေ့လာတဲ့ group ရော ၂ခုလုံးရှိပါတယ်၊
Join ချင်တယ်ဆိုရင် description ထဲမှာ link ထည့်ပေးထားပါမယ်၊ link ကနေတစ်ဆင်
join လို့ရပါတယ်၊ Telegram မှာလဲ English စာလေ့လာနေတဲ့ မိတ်ဆွေတွေအတွက်
English short Story တွေကို တင်ပေးတဲ့ channel ရှိပါတယ်၊ စိတ်ဝင်စားတယ်ဆိုရင်
description ထဲက link ကနေတစ်ဆင် join လိုက်ပါ၊ နောက်ဆုံးပြောချင်တာက
မိတ်ဆွေတို့အနေနဲ့ English နဲ့ ပတ်သတ်ပြီးဘာတွေသိချင်လဲ၊ ကိုယ်သိချင်တာကို
Comment မှာရေးခဲ့ပါ၊ ကျွန်တော် တတ်နိုင်သမျှပြန်ဖြေပေးပါမယ်၊
Hello, welcome to my channel. On this channel, I will create about English lesson video.
Facebook -
https://www.facebook.com/LearnEnglishWithMe.MM
Facebook Group -
https://www.facebook.com/groups/631929194451809
Telegram -
https://t.me/LearnEnglishwithMe4u
Contact us -
[email protected]
Disclaimer: This Video is Just for educational purposes and does not have any intention to mislead or violate Google and youtube community guidelines or policies. I respect and follow all terms & conditions of Google & youtube.
4:30
Still Luv U (feat. Verd)
Provided to YouTube by DistroKid
Still Luv U (feat. Verd) · Kulud · Verd
Verd
℗ Legaci ...
Play in Full Screen
Still Luv U (feat. Verd)
Still Luv U (feat. Verd)
Provided to YouTube by DistroKid
Still Luv U (feat. Verd) · Kulud · Verd
Verd
℗ Legaci Nova Entertainment
Released on: 2016-05-01
Auto-generated by YouTube.
3:16
VERD ft. Kerry Cherry - "Baby"
All We Wanna Do Is Make You Dance!!! Clap Your Hands!!!
Another BROTHERHOOD PRODUCTION!...
Play in Full Screen
VERD ft. Kerry Cherry - "Baby"
VERD ft. Kerry Cherry - "Baby"
All We Wanna Do Is Make You Dance!!! Clap Your Hands!!!
Another BROTHERHOOD PRODUCTION!!!
2:21
Verde - ARAI (Official Music Video)
Subscribe : https://bit.ly/3SoZt9b
Buy/Stream "ARAI" : https://orcd.co/verde_ARAI
Black Mo...
Play in Full Screen
Verde - ARAI (Official Music Video)
Verde - ARAI (Official Music Video)
Subscribe : https://bit.ly/3SoZt9b
Buy/Stream "ARAI" : https://orcd.co/verde_ARAI
Black Money Records Official Playlist : https://open.spotify.com/playlist/7ulw7HrvHo9WUIogtYhxbz?si=89bfec3c43504434
Lyrics & Vocals by Verde
Recorded, Mixed & Mastered by ECHO
Produced by Lef
Directed By Manos Makrakis
Gaffer: George Lambropoulos
Drone/fpv: Apostolos Zygouris
Edited by Merlagne
Special Thanks
Og Market
https://ogmarketath.com/ - https://www.instagram.com/ogmarket_
Cultur3 - https://www.instagram.com/cultur3.fts
Omerta the Code - https://www.instagram.com/omerta_the_code_clo/
I-QUBE NOOTROPIC - https://www.instagram.com/iqube_nootropic/
Verde Instagram profile:
https://www.instagram.com/realverdee
FOLLOW BLACK MONEY RECORDS | BMR
https://www.instagram.com/blackmoneyrecordsgr
Bookings /Contact:
[email protected]
2024© + ℗ Black Money Records
#ARAI #VERDE #BLACKMONEYRECORDS
4:05
Verd - My Feelings
To everyone who loves this song, please enjoy. 🙏🏻🕺🎉
Play in Full Screen
Verd - My Feelings
Verd - My Feelings
To everyone who loves this song, please enjoy. 🙏🏻🕺🎉
');
} 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));
}
});
});
});
// -->
Anels Over Me
by:
Virtue
[Verse 1] They camp all around me So I have no fear They tell me he loves me Whisper it in my ear It means the world to me To have him near here These are my angels over me They come from the throne above Before his face They carry the light of love Cover me with grace They wanna see me complete this race These are my Angels Over me Oooh Help me sing [Chorus] I got Angels watching over me Watching my way both night and day I got Angels watching over me Fanning away the hurt the pain I got Angels watching over me They'll never fly away Angels over me [Verse 2] They silently hold me with their mighty wings When i cry they consume me with the songs they sing (ooh) When I sleep they watches over me Fan away evil things These are my Angels over me (oh) Say we don't even know this The protection they give Fall asleep on the road and yes I continue to live Sometimes I even which that they Wouldn't answer my calls But await vuring Angels They just won't let me fall No they won't (Repeat chorus 2x) But they'll never fly away They'll never, never let me down
Latest News for: verd
Edit
The Lufkin News
27 Dec 2024
The kitchen is the perfect place to let your creativity shine. I’ve spent my whole life in the kitchen, even teaching culinary classes, yet there are still times when branching out and trying something new feels intimidating. This recipe is ... .
Edit
Public Technologies
27 Dec 2024
Verde Clean Fuels, Inc . .. VERDE CLEAN FUELS, INC ... To the Stockholders of Verde Clean Fuels, Inc. .. Verde Clean Fuels, Inc ... Verde Clean Fuels, Inc ... Verde Clean Fuels, Inc ... That the name of this corporation is Verde Clean Fuels, Inc ... Verde Clean Fuels Inc.
Edit
The Brunswick News
26 Dec 2024
Authorities launched a search Thursday along the Palos Verdes Peninsula, a day after a human leg washed up along the shoreline. Palos Verdes Estates Police Department said in a written statement that the limb was found in the 800 block ... .
Edit
The Journal Durango
25 Dec 2024
On the afternoon of Dec. 12, a red-tailed hawk was released in Mesa Verde National Park , about a month after it was injured there. In early November, it had “reportedly flew into a car,” so the park’s... .