Newsletter

“I guess this is the end” Coupang Play sense relieves anger over defeat

if(redisJson.articles[i].article_image !== ” || redisJson.articles[i].article_image !== null){
html += ‘ ‘;
html += ‘ ‘;
html += ‘ ‘;
}

html += ‘ ‘;
html += ‘

‘; html += ‘Notification settings’; html += ‘Close notification’; html += ‘

‘;
html += ”;
$loginBox.after(html);
autoRemoveToast(redisJson.articles[i].apppush_Id); // Expiration time check: If it exists, analyze the content and expose if the expiration time is within the current time // Cookie exposure check: When exposed, check the exposure of the article in the cookie and then final exposure // If exposed, the article key is stored in the cookie // Cookie name: hk_sokbo_article_viewend let fcmArticleId = getFCMCookie(‘hk_sokbo_article_viewend’); let cookieData = Boolean(fcmArticleId) ? decodeURIComponent(fcmArticleId) + ‘,’ + redisJson.articles[i].article_id : redisJson.articles[i].article_id;
this.setFCMCookie(‘hk_sokbo_article_viewend’, cookieData, 1);
// 쿠키내용 : 기사키,기사키,기사키
// 쿠키만료시간 : 1일
// 쿠키 등록
}
$(“.toast-container .toast-item:not(.login-box-tst)”).addClass(“show”);

}

generateFcmToast = (rst) => {
let html=””;
let readArticles = decodeURIComponent(this.getFCMCookie(‘hk_sokbo_article_viewend’));
let denialAlarmType = decodeURIComponent(this.getFCMCookie(‘hk_denial_alarm_type’));
if(denialAlarmType.includes(denialAlarmType.includes(rst.data.apppush_type))){
return false;
}
if(readArticles.includes(denialAlarmType.includes(rst.data.apppush_type))){
return false;
}
const appuserPushId = Cookies.get(‘appuserPushId’);

html += ”;
html += ‘ ‘;
html += ‘ ‘;

if(rst.notification.image !== ” || rst.notification.image !== null){
html += ‘ ‘;
html += ‘ ‘;
html += ‘ ‘;
}

html += ‘ ‘;
html += ‘

‘; html += ‘Notification settings’; html += ‘Close notification’; html += ‘

‘; html += ”; $loginBox.before(html); autoRemoveToast(rst.fcmMessageId); // Expiration time check: If it exists, analyze the content and expose if the expiration time is within the current time // Cookie exposure check: When exposed, check the exposure of the article in the cookie and then final exposure // If exposed, the article key is stored in the cookie // Cookie name: hk_sokbo_article_viewend // let fcmArticleId = getFCMCookie(‘hk_sokbo_article_viewend’); // let cookieData = Boolean(fcmArticleId) ? decodeURIComponent(fcmArticleId) + ‘,’ + redisJson.articles[i].article_id : redisJson.articles[i].article_id;
// this.setFCMCookie(‘hk_sokbo_article_viewend’, cookieData, 1);
// 쿠키내용 : 기사키,기사키,기사키
// 쿠키만료시간 : 1일
// 쿠키 등록
$(“.toast-container .toast-item:not(.login-box-tst)”).addClass(“show”);
}

/* top notice EVT */
function closeNotice() {
$(“#topNotiArea .close”).on(‘click’, function () {
$(“#topNotiArea .close”).css(“display”, “none”);
$(“#topNotiArea”).slideUp(500);
});
}

function initAlarm() {
var $list = $(‘.toast-container .toast-item’);
var $pushList = $(‘.toast-container .toast-item:not(.login-box-tst)’);
var $loginBox = $(‘.toast-container .toast-item.login-box-tst’);

if ($($list.hasClass(“login-box-tst”)).length) {
$loginBox.removeClass(“hide”).addClass(“show”);
}
$pushList.each(function (idx) {
var $item = $(this);
setTimeout(function () {
$item.addClass(“show”);
}, 500 * (idx + 1));
});
}

function showAlarm() {
let redisJson = [];

$.ajax({
url: ”
method: “POST”,
data: {‘key’ : ‘whk_sokbo_article’},
success: function (response) {
if(response.code === ‘0000’){
if(response.data !== ‘notfound’){
redisJson = JSON.parse(response.data);
generateSokboToast(redisJson);
}
}
},
fail: function (err) {
}
});
}
// hk_denial_alarm_type
function setDenialAlarmType(denialType){
this.setFCMCookie(‘hk_denial_alarm_type’, denialType, 1);
}

function getFCMCookie(key){
key = new RegExp(key + ‘=([^;]*)’); return key.test(document.cookie) ? unescape(RegExp.$1) : ”; // Returns a value if there is a key corresponding to the key received as an argument } function setFCMCookie(key, value, expiredays) { let todayDate = new Date(); todayDate.setDate(todayDate.getDate() + expiredays); // Change cookie expiration date by current time + days //todayDate.setTime(todayDate.getTime() + (expiredays * 24 * 60 * 60 * 1000)); // Change cookie expiration date in milliseconds // document.cookie = key + “=” + escape(value) + “; path=/; expires=” + todayDate.toGMTString() + “;”; fn_setCookie(key, escape(value), {path:” expires: todayDate}); } function deleteCookie(name) { document.cookie = name + ‘=; expires=Thu, 01 Jan 1999 00:00:10 GMT;’ ; } function hideAlarm() { $(document).on(“click”, ‘.imp-toast .btn-close’, function () { var $this = $(this); $this.parents(“.toast -item”).removeClass(“show”).addClass(“hide”); }); $(document).on(“click”, ‘.login-box-tst .close’, function () { $( ‘.login-box-tst’).removeClass(“show”).addClass(“hide”); }); } function toggleAlarm() { $(document).on(“click”, ‘.imp-toast . btn-alarm’, function () { var $this = $(this); if (!($this.hasClass(“btn-alarm-disable”))) { $this.addClass(“btn-alarm-disable” ).attr(“title”, “Turn on notifications for today”); console.log(‘### ‘ + $this.data(‘denial’)); let denialType = $this.data(‘denial’); let hk_denial_alarm_type = getFCMCookie(‘hk_denial_alarm_type’); if(hk_denial_alarm_type.includes(denialType)) { return false; } denialType = Boolean(hk_denial_alarm_type) ? decodeURIComponent(hk_denial_alarm_type) + ‘,’ + denialType : denialType; setDenialAlarmType(denialType); } else { $this.removeClass(“btn-alarm-disable”).attr(“title”, “Turn off notifications for today”); let hk_denial_alarm_type = getFCMCookie(‘hk_denial_alarm_type’); const denialType = $this.data(‘denial’); if(hk_denial_alarm_type.includes(denialType)){ let str = hk_denial_alarm_type; let arr = str.split(‘,’); let filtered = arr.filter((element) => element !== denialType); deleteCookie(‘hk_denial_alarm_type’); setDenialAlarmType(filtered.join()); } // console.log(denialType); // deleteCookie(hk_denial_alarm_type); } }); } function fnOneDayNotView(){ this.setFCMCookie(‘hk_denial_login_area’, ‘Y’, 1); } function loginInfoView(){ if(!Boolean(Cookies.get(‘accessToken’))){ if(!Boolean(getFCMCookie(‘hk_denial_login_area’))){ var $loginBox = $(‘.toast-container .toast- item.login-box-tst’); $loginBox.removeClass(“hide”).addClass(“show”); } } } // Web push automatic deletion (10 minutes) var FCM_TOAST_LOG = {}; function autoRemoveToast(fcmMessageId){ FCM_TOAST_LOG[fcmMessageId] = setTimeout(function(){
$(“.toast-item[data-push-id='”+ fcmMessageId +”‘]”).find(‘.btn-close’).trigger(“click”);
delete FCM_TOAST_LOG[fcmMessageId]; }, 600000); }; $(function () { showAlarm(); // Close top notification area closeNotice(); loginInfoView(); // Display push alarm // initAlarm(); // Breaking news / single item inquiry setInterval( () => showAlarm( ) , 1000 * 60 * 1 ); // Close push alarm, toggle off alarm hideAlarm(); toggleAlarm(); }); “I guess this is the end.” Coupang Play sense relieves frustration over defeat “) } else { $(‘#top-area’).html(“

n” + ” Hello.n” + ” ” + data.memPenName + “

“)
}

// 이벤트 및 프로모션 수신 동의 체크
$(‘#email-setting-switch’).prop(‘checked’, data.eventAgreeEmail === ‘Y’);
$(‘#sms-setting-switch’).prop(‘checked’, data.eventSmsAgree === ‘Y’);
$(‘#nLetter-setting-switch’).prop(‘checked’, data.nLetterAgree === ‘Y’);
},
error: function (req, stat, err) {
// console.log(err);
}
});
}

function onClickSignUp() {
authType=”enroll”;
// Cookies.set(‘authType’, ‘enroll’, {path: ”
fn_setCookie(‘authType’, ‘enroll’, {path: ”
if (navigator.userAgent.indexOf(‘Mobile-App’) > -1) {
var data = {
type: ‘SIGN_UP_NICE’
};
window.ReactNativeWebView.postMessage(JSON.stringify(data));
} else {
openCpPopup();

}
}

function onClickMyPage() {
if (Cookies.get(‘accessToken’) != null) {
location.href=”
} else {
location.href=”
}
}

“I guess this is the end” List of Coupang Play songs that relieve even the anger of defeat

Entered 2024.02.07 12:30 Modified 2024.02.07 14:43

Online broadcast Coupang Play ending song topic
Singer Kim Gwang-jin’s ‘letter’ after Jordan’s complete defeat
‘Long-haired duo’s performance, “She with long straight hair~”
Victory against Australia in the quarterfinals is “holding SON to SON”

Kim Gwang-jin’s ‘letter’ is flowing after losing to Jordan in the semifinals of the 2023 Qatar Asian Cup on the 7th. Online community capture

“I guess this is the end~.”

Singer Kim Gwang-jin’s ‘Letter’ was played in the background of the highlight video immediately after the 2023 Qatar Asian Cup semifinals broadcast by Coupang Play on the 7th. The lyrics, “Now I will turn back,” overlapped exquisitely with the images of the players feeling despondent, adding to the disappointment of defeat.

Netizens responded positively to the background music selection, saying, “The background music selection is amazing,” “I’m sad because I lost, but when that song comes on, it makes me laugh (both funny and sad),” and “I was angry after watching the game, but I felt relieved after hearing the song.”

The ending song played after the group match against Bahrain on the 15th of last month (left) and Lee Kang-in appearing on the 2005 KBS entertainment program ‘Fly, Shooting Dori’. YouTube capture/KBS broadcast screen capture

‘); // For Android update if (location.href.indexOf(‘/News/Read’) > -1 && navigator.userAgent.indexOf(‘Update’) > -1) { $(‘.end-ad-container’) .addClass(‘blind’); }

Coupang Play’s ‘Ending Song’, which was in charge of online broadcasting of the 2023 Qatar Asian Cup, is a hot topic. Starting from the group stage, a song suited to the situation of the Korean national team was selected for each game and received a positive response from viewers.

The song played after the team won 3-1 in the first group match against Bahrain on the 15th of last month was singer Kim Guk-hwan’s ‘Soccer King Shooting’, a 1990s cartoon theme song. Lee Kang-in, who was making his first appearance in the Asian Cup in that game, led the team to victory by scoring multiple goals in the second half. It was a song selected for Lee Kang-in, a former member of the 2005 KBS entertainment program ‘Fly, Shooting Dori’.

In the second group match (Jordan) and third match (Malaysia), a somewhat heavy song was selected. In both games, the Korean national team ended up with a draw with a goal scored in the last minute of the game. When the game against Jordan ended 2-2, Coupang Play aired singer Tak Jae-hoon’s song ‘I’m so glad’ along with coach Jurgen Klinsmann’s face sighing. After the match against Malaysia, which confirmed second place in the group, ended 3-3, singer Lim Jeong-hee’s ‘It Can’t Be Real’ was played as the ending song.

After the match against Malaysia ended in a draw on the 25th of last month, a song is playing along with a highlight video. Coupang Play YouTube capture

‘); // For Android update if (location.href.indexOf(‘/News/Read’) > -1 && navigator.userAgent.indexOf(‘Update’) > -1) { $(‘.end-ad-container’) .addClass(‘blind’); }

The atmosphere took a turn for a moment when the Korean national team demonstrated ‘Jungkkeutma (the important thing is an unbreakable mind)’ and created a dramatic game. In the round of 16 (against Saudi Arabia) on the 31st of last month, Cho Gyu-seong (Midtjylland) dramatically scored the equalizer in extra time in the second half. Goalkeeper Cho Hyun-woo made a save in the ensuing penalty shoot-out, re-proving that he was ‘Bright Hyun-woo’ and leading the team to a 4-2 victory. On this day, Coupang Play selected Teen Top’s ‘She with Long Straight Hair’ as the ending song along with a photo of ‘long-haired duo’ Jo Kyu-sung and Jo Hyun-woo.

Cho Gyu-seong is in action in the round of 16 match against Saudi Arabia on the 31st of last month. X Capture

The ending song of the quarterfinals (against Australia), won by captain Son Heung-min’s brilliant performance, was the 88 Seoul Olympics theme song ‘Hand in Hand’. When Son Heung-min scored a penalty kick in extra time in the second half to tie the score, and then scored a free kick in overtime to make it 2-1, there was a flood of responses saying, “Son Heung-min did it all.” Comments were made online, quoting the lyrics, saying, “SON (Son Heung-min) caught SON (free kick) and went over the wall.”

Korea lost 2-0 in the semifinals against Jordan on the 7th, preventing it from advancing to the finals. The goal of winning the Asian Cup for the first time in 64 years since 1960 was unfortunately defeated.

Sohee Kim Reporter kimsh@hankookilbo.com

0 0 Share Save

Balance in viewing the world, Hankook Ilbo Copyright © Hankookilbo

‘);
document.write(‘

‘);
document.write(‘

Issues you may be interested in

‘);
document.write(‘