Songs Added to My Playlist (2023) (2024)

Can you name the artists of the songs added to my likes songs in 2023?

By cupcakemh

25m

359 Questions

114 Plays114 Plays

114 Plays

Give Quiz Kudos

Give Quiz Kudos

-

")$objective.click(() => {window.onClickObjective(reckoningQuestObjective.quest_number, reckoningQuestObjective.objective_number, reckoningQuestObjective.quest_id, reckoningQuestObjective.objective_id, $objective);});if (!window.mweb) {$j('#snark').hide();$objective.insertAfter($j('#gameOverMsg'));} else if (is_flagship_app_view) {$j('#snark').html();$objective.appendTo($j('#snark'));} else {$objective.appendTo($j('#reckoning .stats-wrapper'));}} else if (showSnark) {var snark = getSnark(userPct);var attachSnarkModalListener = false;if (snark !== '') {snark = ""+snark+"";if (!window.mweb) {if (false) {attachSnarkModalListener = true;snark += "";} else {snark += "";}}} else {$j('#snark').hide();}$j('#snark').html(snark);if(attachSnarkModalListener){ $j('#hide-snark-open-confirmation-modal').on('click', function () { var modalArgs = {title: 'Hide These Messages?',message: 'Are you sure you want to hide post-quiz messages?', onYes: function(remodal){ $j.ajax({ type: "GET", url: "/ajax/user_settings.php", data: {s: 0}, success: function(response) { if (response.success) { $j('#snark').hide(); remodal.close(); } else { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }, error: function(response) { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }); } }; SporcleLib.Modal._openConfirmationModal(modalArgs); }); }} else {$j('#snark').hide();}// Update get reckoning with playlist infovar playlistData;if (mweb) {playlistData = typeof window.playlist === 'object' && window.playlist.hasOwnProperty('games') ? window.playlist : null;} else {playlistData = window.Sporcle.gameData.playlist ? window.Sporcle.gameData.playlist.vm.data : null;}if (playlistData) {playlistReckoning(playlistData, userPct, false && !stopwatch);}$j('#playGameBar').addClass('reckoning');$j('#reckonBox').show();if (mweb) {/* mobile games only */$j('#reckoning-numright').html(numRight);$j('#reckoning-time').html(displayTime(timerSecs));if (stopwatch) {$j('#reckoning-time-title').text("Stopwatch");$j('#reckoning-time, #reckoning-score').addClass('timePast');}var checkToOpenFlorinPlayGoalModal = () => {if (userPct == 0) {return;}if (!florinsPlayGoalData) {return;}var openModal = false;if (florinsPlayGoalData.reward_claimable) {openModal = true;} else if (florinsPlayGoalData.curr_streak + 1 == florinsPlayGoalData.goal_days && florinsPlayGoalData.plays_today == 0) {// First play of the day, this should complete their play goalopenModal = true;}if (openModal) { window.SporcleLib.Modal.openFlorinPlayGoalModal({ // Fudge these values to be at the goal, since we haven't necessarily logged this play yet and it might be the 7th curr_streak : florinsPlayGoalData.goal_days, reward_claimable : true, plays_today : florinsPlayGoalData.plays_today + 1, goal_days : florinsPlayGoalData.goal_days, reward_amount : florinsPlayGoalData.reward_amount, })}}if (is_flagship_app_view) {let animations = window.animations;let hapticType = 'success';let completeMsg;let animConfig = {animationData : animations.checkmark,loop : true,playSegments : [[0, 30], [31, 75]]};if (userPct == 1) {animConfig.animationData = animations.perfectScore;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Perfect Score!";} else if (timerSecs == 0) {hapticType = 'error';animConfig.animationData = animations.outOfTime;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Out of Time!";} else if (_spks && !didGiveUp) {hapticType = 'error';animConfig.animationData = animations.bomb;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "You Hit a Mine!";}window.SporcleLib.Modal.openModalFromTpl($j('#post-game-modal-tpl').html(), {show_loading : false,onInit : (modal) => {let $modal = modal.$modal; $modal.attr('id', 'postGameModal'); postGameAnim = lottie.loadAnimation({container : $modal.find('#postGameIcon')[0],animationData : animConfig.animationData,loop : animConfig.loop,autoplay : false});$modal.find('.modal-close').on('click', () => {window.continuePostQuiz();}); $modal.find('#completeMsg').html(completeMsg); $modal.find('#postPct').html(roundPercentScore(userPct));$modal.find('#postCorrect').html($j('#reckoning-score').text());if (snark) {$modal.find('#snark').html(snark);} else {$modal.find('#snark').hide();}setTimeout(() => {postGameAnim.playSegments(animConfig.playSegments, true);// if (hapticType) {// setTimeout(() => {// window.SporcleApp.api.playHaptic(hapticType);// }, 150);// }}, 150);},onClose : () => {checkToOpenFlorinPlayGoalModal();}});} else {checkToOpenFlorinPlayGoalModal();}}$j('#playGameBox').empty().hide();$j('#postGameBox').show();}function toggleshow() {showans = !showans;}function roundPercentScore(pctScore) {return _.round(100 * pctScore);}function updateBadge(userPct) {var earned = false;if (quizBadge && userPct > 0) { if (quizBadge.criteria && quizBadge.criteria.length) { var requiredCount = quizBadge.criteria.length; var earnedCount = 0; //Loop through possible badge criteria to see if we earned them quizBadge.criteria.forEach(function (criterion) { var comparison = parseInt(criterion.compare); if(criterion.name === 'percent'){ if ((comparison === 0 && userPct === parseFloat(criterion.value)) || //'0' means percent needs to equal (comparison === 1 && userPct > parseFloat(criterion.value)) || //'1' means percent needs to be greater than (comparison === -1 && userPct < parseFloat(criterion.value)) //'-1' means percent needs to be less than (at the time of writing, no badge exists like this) ) { earnedCount++; } } else if (criterion.name === 'month'){ var d = new Date(); //getMonth() starts at 0 if((d.getMonth() + 1 == criterion.value && comparison === 0) || (d.getMonth() + 1 > criterion.value && comparison === 1) || (d.getMonth() + 1 < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day'){ var d = new Date(); if((d.getDate() == criterion.value && comparison === 0) || (d.getDate() > criterion.value && comparison === 1) || (d.getDate() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day_of_the_week'){ var d = new Date(); if((d.getDay() == criterion.value && comparison === 0) || (d.getDay() > criterion.value && comparison === 1) || (d.getDay() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'avg_percent' && typeof averageScore !== 'undefined') {var roundedUserPct = _.round(userPct, 2); //matches backend precision in badge trackervar roundedAvgPct = _.round(averageScore, 2);if((roundedUserPct == roundedAvgPct && comparison === 0) || (roundedUserPct > roundedAvgPct && comparison === 1) || (roundedUserPct < roundedAvgPct && comparison === -1) ){ earnedCount++; } }}); earned = earnedCount == requiredCount;} else {earned = true;}} if (earned) {quizBadge.condition_earned = true;quizBadge.achieved_count++; var spliceIndex = null;_(quizBadge.remaining_conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {spliceIndex = index;}});_(quizBadge.conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {condition.earned = true;}});if (spliceIndex !== null) {quizBadge.remaining_conditions.splice(spliceIndex, 1); quizBadge.condition_earned_date = (new Date()).toLocaleDateString(undefined, { year: 'numeric', month: 'long', day: 'numeric' });; }if (quizBadge.remaining_conditions.length === 0 ) {if (quizBadge.badge_earned && quizBadge.levelable) {quizBadge.achieved_count = 0;quizBadge.level++;var currDate = new Date();quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();} else {quizBadge.badge_earned = true;var currDate = new Date();quizBadge.earned_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();if (quizBadge.levelable) {quizBadge.level = 1;quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();quizBadge.achieved_count = 0;}}}if (badgeTooltip) {badgeTooltip.deactivate();}if (badgeTooltipRightRail) {badgeTooltipRightRail.deactivate();}var template = _.template($j('#quiz-badge-template').html());if (window.mweb) {$j('#main-wrapper .quiz-badge').replaceWith($j(template(quizBadge)));} else {quizBadge.tooltip_trigger_id = 'quiz-badge-art';$j('#main-quiz-content .quiz-badge').replaceWith($j(template(quizBadge)));quizBadge.tooltip_trigger_id = 'quiz-badge-art-right-rail';$j('#right-rail .quiz-badge').replaceWith($j(template(quizBadge)));if (!quizBadge.badge_earned) {if (window.setupUnearnedBadgeTooltip) {window.setupUnearnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupUnearnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);} else {var conditionsTemp = _.template($j('#badge-conditions-template').html());var tooltipHtml = $j(conditionsTemp(quizBadge));const badgeTooltipOptions = { //this should match /sporcle-ui/tooltips/functionalTooltipstarget : true,tipJoint : 'bottom middle',showOn : 'mouseover',hideTriggers : ['target','tip'],stemLength : 8,stemBase : 12,hideOn : 'mouseout',removeElementsOnHide : true,background : 'white',borderColor : '#d8d8d8',borderWidth : 1,shadowOffset : [3,3],shadowBlur : 10,showEffect : 'slide',showEffectDuration : 0.1,hideEffectDuration : 0.3,className : 'badge-tooltip',shadowColor : 'rgba(0,0,0,0.25)'};badgeTooltip = new Opentip('#quiz-badge-art', tooltipHtml.html(), badgeTooltipOptions);badgeTooltipRightRail = new Opentip('#quiz-badge-art-right-rail', tooltipHtml.html(), badgeTooltipOptions);}} else {if (window.setupEarnedBadgeTooltip) {window.setupEarnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupEarnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);}}}}}function showHintTooltip(x, y, hint) {$hint = $j('#hintTooltip');if ($hint.length == 0) {$hint = $j('

' +'

' +'

' +'

' +'

' +'

').appendTo($j('body'));}if (hint) {var $afterContainer = $hint.find('.afterContainer');var $after = $hint.find('.after');// Set to max width before resize$afterContainer.css({width: '120px'});$hint.show();// Set tooltip text to hint$after.html(hint);// Get width of tooltip with textvar width = Math.ceil($after[0].offsetWidth) + 1;var leftShift = 0;if (mweb) {// Make sure the tooltip doesn't go off either side of the screenvar leftBound = 51;var rightBound = $j('body').width() - 71;var buf = 11;// Shift based on width of textvar shiftLimit = Math.max(width/2 - 20, 0);if (x < leftBound) {// Too close to left edge of screenleftShift = -shiftLimit;x = Math.max(x, buf);} else if (x > rightBound) {// Too close to right edge of screenleftShift = shiftLimit;x = Math.min(x, $j('body').width() - buf);}}// Set the position of the hint$hint.css({left: x + 'px',top: y + 'px',});// Set outer container size and position$afterContainer.css({width: width + 'px',left: '-' + ((width / 2) + leftShift) + 'px'});} else {$hint.hide();}}function getRandomColor() {var r = Math.round(Math.random() * 255);var g = Math.round(Math.random() * 255);var b = Math.round(Math.random() * 255);return 'rgb(' + r + ',' + g + ',' + b + ')';}function hintTooltipIsDisplayed() {return $j('#hintTooltip').is(':visible');}function getCurrentHintText() {return $j('#hintTooltip .afterContainer .after').text();}async function runStartCode(stopwatch) {if (typeof gamePageIsLoaded != "undefined" && gamePageIsLoaded) {if (window.startTriggered) {return;} else {window.startTriggered = true;}if (typeof stopwatch !== 'undefined') {if (stopwatch) {window.selectTimerSetting('stopwatch');} else {window.selectTimerSetting('timer');}}startGame(1500);callSPHooks('postStart');}}function callSPHooks(name) {if (typeof _spHooks != 'undefined') {var hlen = _spHooks[name].length;for (var i = 0; i < hlen; i++) {_spHooks[name][i]();}}}

0/359

Quiz is untimed. Quiz plays in practice mode will not be counted towards challenge completion or badge progress.

25:00

SongArtist
Forgive Me
blOssOm
Scared
Breakthrough (Full Version)
Black Hole
OMG
Hate U
Pricey Hangover
UTOPIA
HALAZIA
Acrobat
Mirror Mirror
The Last
Chamber of Reflection*
Love Cycle
Monologue
Paranoid*
Compensation
not gonna love
Uh-Heung
Raise y_our glass
Pray (I'll be your man)
Chase
Back Down
Lay Low
MotoSpeed 24
Witch Hunt
Lowlife Princess
City Love
Swan Song
Wet Nightmare
Harder Than A Prayer
Dies Irae
Monster Slayers
Fighting
O.O
Intro : Save Me
Sweet Juice
Intro : Bye Bye Bully
There
THE SOUND
Lost Me
DLMLU
Novel
Hanryang
Never in vain
Steal The Show
Rover
SET ME FREE
Young, Dumb, Stupid
ON AND ON
Chico malo
Set Me Free Pt.2
KARMA
Folks
Gimme Chocolate!!*
Is this bad b****** number?
Paradigm
Dystopia
Drowning
Kitsch
Tiger*
Cherry Blossom
TRICKY HOUSE
FLOWER
Dawn
All Eyes On Me
Headbangeeeeerrrrr!!!!!*
METAL KINGDOM*
Megitsune*
KARATE*
YOLO-konde*
I'm a Controversy*
Tot Musica*
Odo*
Domestic De Violence*
28 Reasons
0X1=LOVESONG (I Know I Love You)
100°C
13IVI
About Last Night
Anthem of Teen Spirit
Bonnie & Clyde
ESPER
Goblin
Hold On Tight
Doorbell Ringing
Dynamic (Cheongryang)
ROCKSTAR
XIKEY
Oh My Gosh
Asphalt
I AM
KNOCK
Cherry co*ke
Panic
섬찟 (Hypnosis)
I Don't Wanna Know
Nightmare
Guitar Pick
koi geba*
WOO! GO!*
Pineapple Kryptonite*
CANDY*
The Edge*
HANAKO*
koinosyadanki*
Creep*
Temporary
Frown
Sticks And Stones
アイドル*
Come into my head
Freakin' Bad
Bicycle
checkmate
Good Enough
Man in the Box
Dear H.
Macarena
SongArtist
Super
Tantara
Haegeum
D-Day
HUH?!
AMYGDALA
Need you
When I Close My Eyes
BE FREE
SMOG
INTRO
DANDELION
UNIVERSE
The Nation
Be The One
Persona
Prayer
Icarus
Not Alone
Shelter Of Dreams
Find The Light
Golden Hour
Buck
FRIEND THE END
Already go ready
Wind And Wish
Welcome To MY World
MIMEW
Spicy
Eve, Psyche & The Bluebeard's wife
ERASE ME
WAVE
BAD BOY
UFO
HI YA YA*
1, 2, 3 Go Shoot
Rollin'
Cha Cha Cha*
Rocking
Love Is Dead
Devil by the Window
MORE
KILLING ME
Ring Ding Dong
DROP*
束の間の恋
C.h.a.o.s.m.y.t.h.
Hall of Fame
S-Class
ITEM
Super Bowl
DLC
GET LIT
Collision
Youtiful
FNF
WOW
All Night
Acrobat2
Heartbeat Drum
JUMP
This World
Dune
Wake Up
Strangers
NIPPON KARA KONNICHIWA*
History Maker*
Not Sorry
EXCEL
Twenty
BOUNCY (K-HOT CHILLI PEPPERS)
Beautiful Life
Cloud Thought
White Night
ALIENS
Burning
Drink it, Girls!
Merkwürdige Nacht
PSYCHO
Intro
Venom
McMorning
Lover
I CAN'T STOP ME
Love, Maybe
perfect blues*
Stranger
Do not touch
Like We Just Met
GO HARD
BAD HOBBY
WICKED LOVE
Smoke Sprite
Back To Me
Alive
鉄の檻*
VORTEX*
Love Me A Little
Cherry Bomb
GOOD BOY
INSIDE OUT
VERY NICE
LOVE DIVE
Knock
YES or YES
VAMOS
Danger
Feel Special
WONDERLAND
DADDY
Signal
Maria
How You Like That
Gentleman
CHEERS
BET ON ME
None of My Business
Roll With Me
REALiZE*
Behind The Curtain
SongArtist
It's not easy for you
KICK BACK*
DO or DIE
cancellation*
愛錠*
WONDERLAND (Symphony No.9 'From The Wonderland')
OLeander*
Home
After LIKE
CRY FOR ME
Super Shy
CLAP
DINOSAUR
Burn Like A Star
FANCY
Like Ooh-Ahh
Marionette
Eclipse
MANINGEN*
Closer
Room
BONVOYAGE
くちびるにロマンス*
Rising sun*
METAL!!*
SLAY
Exchange ID
let it be summer
Killin' Me Good
Social Path
This is our time
BUNGEE
Hellokittybalacurrihellokitty美味しい*
Fly High
Butterflies
Top or Cliff
Voyager
Hello
Sage
All Of My Life
Broken
Intoxicating
Propose
Show*
Be With You!
this is what autumn feels like*
Love Lee
TROUBLE
GOOD NIGHT
About Time
RINGO
FULL METAL JACKET
I Want That
Eyes Roll
Goodbye Winter
Wolf Totem*
Sad But True*
Freddy
Break the Brake
PLUTO
Enemy
Bad Chemical
Paranoid
AGAIN? AGAIN!
f
hercules!
Say No*
FIRST CLASS
All My Life (Stray Kids Remix)*
Psycho
Baddie
Growing Pain
Where Am I
shootamoviewithu
Can't tie me down
Carnival*
My Palace
BTB
Sudden Attack
MACARONI CHEESE
砂の惑星*
Everything Stays*
Dance Dance Dance
Don't Go Insane
Tokyo Calling*
Get Out
Cactus Boy
Hate You
AGASSY
LALALALA
MEGAVERSE
BLIND SPOT
COMFLEX
Cover Me
Leave
LALALALA (Rock Ver.)
不屑·NEVERMIND*
我的世代*
Goblin (Favorite Boys)
Young Boy
Stay With You
RE8EL
NY(f)C
ROSETTA
INCUBATOR
Knock Knock
Snow Globe
파피용
MAD DOG
Sweet Chaos
Shake Tramp*
Adaeh
HBD
Love Affair
Crime And Punishment*
Sorry for my late reply
DUMB
Rebel
FORM
Songs Added to My Playlist (2023) (2024)

References

Top Articles
Latest Posts
Article information

Author: Gov. Deandrea McKenzie

Last Updated:

Views: 6182

Rating: 4.6 / 5 (46 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Gov. Deandrea McKenzie

Birthday: 2001-01-17

Address: Suite 769 2454 Marsha Coves, Debbieton, MS 95002

Phone: +813077629322

Job: Real-Estate Executive

Hobby: Archery, Metal detecting, Kitesurfing, Genealogy, Kitesurfing, Calligraphy, Roller skating

Introduction: My name is Gov. Deandrea McKenzie, I am a spotless, clean, glamorous, sparkling, adventurous, nice, brainy person who loves writing and wants to share my knowledge and understanding with you.