'); if(!WVM.IS_STREAMING){ $videoEl.append('' + '' + ''); } setTimeout(function(){ $('.mute-overlay').on('touchstart click', function(e){ if(e.handled === false) return; e.stopPropagation(); e.preventDefault(); e.handled = true; player.muted(false); //console.log("volumee " + WVM.activePlayer.volume()); $(this).hide(); $(this).css('display', 'none'); var currentTime = player.currentTime(); if(currentTime 0){ if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); //console.log("container height: " + WVM.CONTAINER_HEIGHT); $(window).on( "resize", function() { if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); console.log("container height: " + WVM.CONTAINER_HEIGHT); }); //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); $(window).on( "scroll", function() { if(!WVM.IS_FLOATING){ if(deviceName == 'desktop'){ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); }else{ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId + " .hlsvideo-wrapper").height() + $('#media-container-' + videoId + " .now-playing-container").height(); } } //var top = $('#media-container-' + videoId).offset().top; var offset = WVM.VIDEO_TOP + (WVM.VIDEO_HEIGHT / 2); var offsetBack = WVM.VIDEO_TOP; var changed = false; //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); //console.log("scrolltop " + $(window).scrollTop()); //only float if playing var isPlaying = WVM['player_state' + videoId]['IS_PLAYING'] || WVM['player_state' + videoId]['AD_IS_PLAYING']; if(isPlaying){ $('.vjs-loading-spinner').hide(); } var offsetFloatAd = 99999999; if(deviceName == 'desktop' && $('#float_anchor').length > 0){ offsetFloatAd = $('#float_anchor').offset().top - WVM.VIDEO_HEIGHT; //console.log("float anchor offset top " + offsetFloatAd); } if($(window).scrollTop() > offset && isPlaying && !WVM['player_state' + videoId]['CANCEL_FLOATING']){ $('#media-placeholder-' + videoId).height(WVM.CONTAINER_HEIGHT); $('#media-placeholder-' + videoId).css('display', 'block'); if(!WVM.IS_FLOATING){ changed = true; } WVM.IS_FLOATING = true; $('#media-container-' + videoId).addClass('floating-video'); var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(sWidth > 900 && WADS.IS_STICKING){ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky'); } else if(WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky-noad'); } } else if(!WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).removeClass('desktop-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky-noad'); } } //set right var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(deviceName == 'desktop' || sWidth > 900){ var leftPos2 = $('aside').get(0).getBoundingClientRect().left; var leftPos = $('aside').offset().left ; $('#media-container-' + videoId).css('left', leftPos + "px"); var newWidth = Math.floor(sWidth / 3.5); $('#media-container-' + videoId).css('width', newWidth + "px"); } else{ $('#media-container-' + videoId).css('width', "100% !important"); $('#media-container-' + videoId + ' .now-playing-container').css('display', 'block'); $('#media-container-' + videoId + ' .next-dropdown-accordion').css('display', 'block'); } //floating-video $('#media-container-' + videoId + " " + '.page-carousel-wrapper').hide(); setTimeout(function(){ var hWrapper = $('.floating-video .hlsvideo-wrapper').height(); var npWidth = $('.floating-video .now-playing-container').height(); var ndWidth = $('.floating-video .next-dropdown-header').height() + 20; var scrollerHeight = sHeight - (hWrapper + npWidth + ndWidth); scrollerHeight = 180; //scrollerHeight = parseInt(scrollerHeight * 0.5); if(WVM.device_name == 'desktop'){ $('#media-container-' + videoId + " " + " .mobile-list-videos").height(scrollerHeight); } }, 100); }else if($(window).scrollTop() 0){ var container = document.querySelector('#page-carousel-' + fullVideoId); imagesLoaded( container, function() { var screenWidth = window.innerWidth || document.documentElement.clientWidth; if(screenWidth > 850){ WVM.IS_DESKTOP = true; $('#page-carousel-' + fullVideoId + ' .page-carousel-lg-slides').css('display', 'block'); WVM['player_settings' + fullVideoId].slider = $('#page-carousel-' + fullVideoId).bxSlider({ maxSlides: 4, minSlides: 4, slideWidth: 305, infiniteLoop: false, hideControlOnEnd: true, useCSS: true, pager: false, slideMargin: 15, moveSlides: 1, nextText: '', prevText: '' }); }else{ WVM.IS_DESKTOP = false; $('.page-carousel-wrapper').css('display', 'block'); } }); } }; WVM.setupToggleButton = function(fullVideoId, player){ if($('.nextplay-switch-' + fullVideoId).length > 0){ new DG.OnOffSwitchAuto({ cls:'.nextplay-switch-' + fullVideoId, height: 24, trackColorOn:'#F9F9F9', trackColorOff:'#222', textColorOn: '#222', textColorOff: '#222', textOn:'On', textOff:'Off', listener:function(name, checked){ var theVal = 1; if(!checked){ theVal = 0; } $.ajax({ url: '/ajax/update_autoplay_video/', data: { autoplay_on: theVal }, type: 'POST', dataType: 'json', success: function(data) { WVM['player_settings' + fullVideoId]['autoplay'] = checked; }, error : function(){ console.log("Error loading video"); } }); } }); } }; WVM.setupAccordionButton = function(fullVideoId){ var deviceName = 'desktop'; $('#next-dropdown-accordion-button-' + fullVideoId).on('click', function(){ if($(this).find('i').hasClass('fa-chevron-up')){ //hide $(this).find('i').removeClass('fa-chevron-up'); $(this).find('i').addClass('fa-chevron-down'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); } var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); //playerId, mediaId, fieldName var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //alert("Getting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }else{ //expand $(this).find('i').addClass('fa-chevron-up'); $(this).find('i').removeClass('fa-chevron-down'); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').css('display', 'block'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').css('display', 'block'); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); if(!WVM.player_state143499['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); if(!$('#media-container-' + fullVideoId).hasClass('floating-video')){ if(!WVM.player_state143499['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } } } $('#video-slider-nexttitle' + fullVideoId).css('display', 'none'); } }); var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; //console.log("current Video " + currVideoId); var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //console.log("setting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }; WVM.sendbeacon = function(action, nonInteraction, value, eventLabel) { var eventCategory = 'Video'; if (window.ga) { //console.log("sending action: " + action + " val: " + value + " label " + eventLabel); ga('send', 'event', { 'eventCategory': eventCategory, 'eventAction': action, 'eventLabel': eventLabel, 'eventValue': value, 'nonInteraction': nonInteraction }); } }; WVM.getNextPlaylistIndex = function(mediaId, returnArrayIndex){ var currId = null; if(mediaId == null){ return null; } for(var x =0; x 20){ if(fullDuration > 1 && ((fullDuration - fullCurrent) > 1) && !$('.vjs-loading-spinner').hasClass('badspinner')){ console.log("hiding spinner"); $('.vjs-loading-spinner').addClass('badspinner'); } } var duration_time = Math.floor(this.duration()); //this is a hack because the end video event is not firing... var current_time = Math.floor(this.currentTime()); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 10) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ if('desktop' == "iphone" && playerState.AD_ERROR){ console.log("skipped timeupdate end"); }else{ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } } if(!playerState.START_SENT){ WVM.sendbeacon('start', true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); playerState.START_SENT = true; } var currentTime, duration, percent, percentPlayed, _i; currentTime = Math.round(this.currentTime()); duration = Math.round(this.duration()); percentPlayed = Math.round(currentTime / duration * 100); for (percent = _i = 0; _i = percent && __indexOf.call(playerState['PERCENTS_TRACKED'], percent) 0) { playerState['PERCENTS_TRACKED'].push(percent); } } } }); //player.off('ended'); player.on('ended', function(){ console.log("ended"); playerState.IS_PLAYING = false; WVM.sendbeacon("complete", true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); }else{ console.log("Playlist complete (no more videos)"); } }); //player.off('adserror'); player.on('adserror', function(e){ //$('#ima-ad-container').remove(); WVM.lastAdRequest = new Date().getTime() / 1000; console.log(e); console.log("ads error"); var errMessage = e['data']['AdError']['l']; playerState.AD_IS_PLAYING = false; playerState.IS_PLAYING = false; // && errMessage == 'The VAST response document is empty.' if(!playerState.AD_ERROR){ var dTime = new Date().getTime(); WVM.firstPrerollTagUrl = WVM.getFirstPrerollUrl(); console.log("calling backup ad tag url: " + WVM.firstPrerollTagUrl); WVM.activePlayer.ima.changeAdTag(WVM.firstPrerollTagUrl + "?" + dTime); WVM.activePlayer.ima.requestAds(); //WVM.activePlayer.src({ // src: masterSrc, // type: 'video/mp4' //}); //WVM.firstPrerollTagUrl = ""; } playerState.AD_ERROR = true; }); //player.off('error'); player.on('error', function(event) { if (player.error().code === 4) { player.error(null); // clear out the old error player.options().sources.shift(); // drop the highest precedence source console.log("now doing src"); console.log(player.options().sources[0]); player.src(player.options().sources[0]); // retry return; } }); //player.off('volumechange'); player.on('volumechange', function(event) { console.log(event); var theHeight = $('#media-container-' + playerState.ORIGINAL_ID + ' .vjs-volume-level').css('height'); var cssVolume = 0; if(theHeight){ cssVolume = parseInt(theHeight.replace('%', '')); } var theVolume = player.volume(); if(theVolume > 0.0 || cssVolume > 0){ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'none'); }else{ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'block'); } }); WVM.reinitRawEvents(playerState.ORIGINAL_ID); setInterval(function(){ WVM.reinitRawEvents(playerState.ORIGINAL_ID); }, 2000); } if(!WVM.rawCompleteEvent){ WVM.rawCompleteEvent = function(e){ var playerState = WVM['player_state143499']; console.log("firing raw event due to all other events failing"); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } }; } if(!WVM.rawTimeupdateEvent){ WVM.rawTimeupdateEvent = function(e){ var playerState = WVM['player_state143499']; var rawVideoElem = document.getElementById('html5-video-' + playerState['ORIGINAL_ID'] + '_html5_api'); var fullCurrent = rawVideoElem.currentTime * 1000; var fullDuration = rawVideoElem.duration * 1000; var current_time = Math.floor(rawVideoElem.currentTime); console.log("raw timeupdate: " + fullCurrent + " out of " + fullDuration); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 50) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); if(newMediaId){ console.log("loading new video from rawtimeupdate"); WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } if(!$('.vjs-loading-spinner').hasClass('badspinner')){ $('.vjs-loading-spinner').addClass('badspinner') } }; } WVM.reinitRawEvents = function(playerId){ var playerState = WVM['player_state' + playerId]; var rawVideoElem = document.getElementById('html5-video-' + WVM['player_state' + playerId]['ORIGINAL_ID'] + '_html5_api'); //COMPLETE EENT if( WVM['player_state' + playerId].COMPLETE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawCompleteEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawCompleteEvent, false); //TIME UPDATE EVENT if( WVM['player_state' + playerId].TIMEUPDATE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawTimeupdateEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawTimeupdateEvent, false); WVM['player_state' + playerId].COMPLETE_EVENT = true; WVM['player_state' + playerId].TIMEUPDATE_EVENT = true; };
WAUWATOSA, Wis. (CBS 58) -- A lot of holiday celebrations are looking different this year, but that isnt stopping a dedicated group of Santas helpers at the Ronald McDonald House in Wauwatosa. Every year, the visual marketing team from Kohls comes out to deck the halls. They set an elaborate light display outside featuring presents, ornaments and Christmas trees.
Whoa! They're coming, Shelly, one of the volunteers yelled as a three-foot ornament started rolling down the hill in front of the house.
Nearby, massive gift boxes were being stacked up, and lights were being strung everywhere.
The team and I are really excited, every year, to be able to do this event, said Sandy Cherry. We look forward to it all year long.
Cherry is the visual presentation manager at Kohls. The team is responsible for all of the displays and decorations you see at the stores.
We've had a great day today weather-wise, sometimes it's freezing, she said with a laugh. But, either way, we're thrilled to volunteer for Ronald McDonald.
Considering the job they do all week long, it makes sense Cherry and the team are good at decorating.
They're the little elves that show up in the store and make everything look pretty, said Tara Geiter, Kohls director of community relations.
Each piece is staked into place, so it can withstand any winter weather. Every year for the last 10, these volunteers have been decorating at the Ronald McDonald House.
This year, it looks like a lot of candy canes and Santa hats and Christmas lights outside, Geiter said, surveying the scene.
But this year, these elves are all wearing masks and trying to stay six feet apart, even when carrying the bulky decorations.
Definitely volunteering has looked different, Geiter said. Normally, you'd see high fives and hugs and all that, and obviously that's not something we're doing.
Inside the Ronald McDonald House, it looks a little different, too. The Kohls team picked out shiny green garland to decorate inside.
Last year we did new green trim in 100 stores, so we decided we'd use some of the prototypes from that, Cherry said.
But its Ronald McDonald House volunteers putting it up.
Typically, we would invite them in and really have them deck the halls inside. This year of course, like everything else, that's different, said Melissa Marney.
Marney is the marketing director at the Ronald McDonald House Eastern Wisconsin. She said keeping families safe during the pandemic is their top priority. Families are here from far away to get medical care for their sick kids.
Even during Covid, we've never closed our doors or stopped admitting families, Marney said.
That means families will be staying at the house through the holidays, and kids need to know Santa can still find them. Marney took CBS 58 on a tour inside, stopping at one special door.
Dropping that token into this fountain is what unlocks the magical door, she said, pointing at a fountain next to the door.
Once inside, the Magic Room as they call it, looks a little like Santas Workshop. Shelves are lined with toys from the floor to the ceiling.
As you can imagine, a lot of ooh and ahhing, Marney said.
Each child can select one toy and one book. There are even gift cards available for the older kids.
The generosity of our community is what makes this house a home, Marney said.
The Ronald McDonald House can serve 70 families at a time. Theyre hosting 20-30 families right now. Making it feel like home is important.
They get so excited when they see the lights come on. We plug them in and they're like, oh my gosh, Santa's coming, Cherry said.
Geiter said its an important gift Kohls can give this time of year.
I think our associates have been able to see that kind of impact first-hand and it's pretty meaningful and important, she said.
And its a reminder of what this time of year is all about.
When those lights twinkle, so do their eyes. It's just the best thing to see, Marney said.
Marney said RMDH is using toys differently this Christmas, since they have fewer children than usual staying at the house. But she said gift card donations always go a long way towards helping families celebrate the holidays.
For more information, visit https://rmhc-easternwi.org/.
And if youd like to nominate someone for Natalies Everyday Heroes, send Natalie a message at NShepherd@cbs58.com.
See the original post here:
Natalie's Everyday Heroes: Kohl's marketing team decks the halls of Ronald McDonald House in Wauwatosa - WDJT
- Walmart's bestselling $100 deck box is on sale for $30, and it's a 'must-have' for extra outdoor storage - TheStreet - March 26th, 2025 [March 26th, 2025]
- Grab three top-rated Steam Deck games for just $3.69 in this Fanatical bundle - PCGamesN - March 26th, 2025 [March 26th, 2025]
- Step Aside Pole Wrap, This $25 Costco Find Will Help You Kick Off Your Outdoor Projects - Apartment Therapy - March 26th, 2025 [March 26th, 2025]
- New Real Housewives of Sydney star decks herself out in Chanel as she meets up with a talent agency to discuss - Daily Mail - March 26th, 2025 [March 26th, 2025]
- This Stunning Tiny House Has a Roomy Rooftop Deck Thats Made for Warm-Weather Entertaining - Food & Wine - March 26th, 2025 [March 26th, 2025]
- There's no denying the MSI Claw 8 AI+ has better performance than Steam Deck - Windows Central - March 26th, 2025 [March 26th, 2025]
- Disney Lorcana's Best Set 7 Deck is The Most Expensive Ever - GameRant - March 26th, 2025 [March 26th, 2025]
- Assassins Creed Shadows is the Steam Deck surprise of the year so far - Rock Paper Shotgun - March 26th, 2025 [March 26th, 2025]
- Top Decks And Winners From SCG CON Charlotte - Star City Games - March 17th, 2025 [March 17th, 2025]
- 49ers clear the decks for Brock Purdy: Say goodbye to the Mr. Irrelevant storyline - The Mercury News - March 17th, 2025 [March 17th, 2025]
- 'The future of hardware at Valve is bright': Valve celebrates the success of Steam Deck and Steam OS - PC Gamer - March 17th, 2025 [March 17th, 2025]
- 5 best decks for Evolutions Mayhem event in Clash Royale - The Times of India - March 17th, 2025 [March 17th, 2025]
- Why Now is The Best Time to Get One Disney Lorcana Legendary, The Worst For Another - GameRant - March 17th, 2025 [March 17th, 2025]
- Interview: Hearthstone team talks Into the Emerald Dream decks, slower meta, and more! - Esports.gg - March 17th, 2025 [March 17th, 2025]
- See The Department Of Temporal Investigations Drop By In Preview Of Star Trek: Lower Decks #5 - TrekMovie - March 17th, 2025 [March 17th, 2025]
- Steam Deck hits 18,000 games playable and verified - GamingOnLinux - March 17th, 2025 [March 17th, 2025]
- Upper Decks First DC Annual Trading Cards Are Finally Here - ComicBook.com - March 17th, 2025 [March 17th, 2025]
- As Epic Games continue ignoring Linux / Steam Deck for Fortnite they're putting it on Windows Arm - GamingOnLinux - March 17th, 2025 [March 17th, 2025]
- LETTER: 'All hands on deck' needed to address climate change - Rocky Mountain Outlook - Bow Valley News - March 17th, 2025 [March 17th, 2025]
- Disney Lorcana: Archazia's Island has one major advantage over MTG, and the new decks prove it - Gamesradar - March 9th, 2025 [March 9th, 2025]
- Where a Witch moves, tarot decks are soon to follow - The Wild Hunt - March 9th, 2025 [March 9th, 2025]
- Top 6 Historic & Alchemy Decks Enabled by New Alchemy: Aetherdrift Cards - MTG Arena Zone - March 9th, 2025 [March 9th, 2025]
- Pokemon Pocket: 10 Decks That Improved In Triumphant Light - TheGamer - March 9th, 2025 [March 9th, 2025]
- 18 Popular Deck Updates That Are Worth the Investment, According to Architectural Experts - House Beautiful - March 9th, 2025 [March 9th, 2025]
- With Single-Pokemon Decks On The Rise, Pokemon TCG Pocket Players Are Turning To Rotom - TheGamer - March 9th, 2025 [March 9th, 2025]
- This Arceus ex Deck Is the Best, It Killed Off TCG Pockets #1 Duo in a Day - GameRant - March 9th, 2025 [March 9th, 2025]
- Garchomp exs Best Deck Is This Fighting-Type Shell with Lucario - GameRant - March 9th, 2025 [March 9th, 2025]
- Below Deck: Ben Robinson Should Never Have Been Cast (I Think He Brought Nothing But Melodrama To The High Seas) - Screen Rant - March 9th, 2025 [March 9th, 2025]
- Pokmon TCG Pocket: The Best Barry & Staraptor Deck That Hits Incredibly Hard - Screen Rant - March 9th, 2025 [March 9th, 2025]
- Steam Deck beta update lets you write notes on the go - Polygon - March 9th, 2025 [March 9th, 2025]
- Pokemon TCG Pocket's Triumphant Light Expansion Just Gave Water Decks Another Powerful Card, and Everyone's a Little Over It - IGN - March 9th, 2025 [March 9th, 2025]
- The best microSD cards for the Steam Deck - Rock Paper Shotgun - March 9th, 2025 [March 9th, 2025]
- Prep Your Patio for Spring with Wayfairs Outdoor Furniture and Rug Deals Up to 76% Off - PEOPLE - March 9th, 2025 [March 9th, 2025]
- Pokemon Pocket: 10 Decks That Improved In Space-Time Smackdown - TheGamer - February 8th, 2025 [February 8th, 2025]
- Darkrai ex is the nightmare of Pokmon TCG Pocket - Polygon - February 8th, 2025 [February 8th, 2025]
- EXO-6 Brings the Strange New Worlds / Lower Decks Crossover to Life with Unique Collectibles - Star Trek - February 8th, 2025 [February 8th, 2025]
- Here's what you need to know about Aetherdrift, new Magic the Gathering cards, bundles - The Providence Journal - February 8th, 2025 [February 8th, 2025]
- This Steam Deck mount looks silly, but greatly reduces the risk of dropping Valve's handheld on your face while gaming in bed - PC Gamer - February 8th, 2025 [February 8th, 2025]
- Hitting the Decks with Penns DJs - 34th Street Magazine - February 8th, 2025 [February 8th, 2025]
- First Look: Real Skateboards' Limited 'Skate Shop Day' Decks by Natas Kaupas and Todd Francis - TransWorld SKATEboarding - February 8th, 2025 [February 8th, 2025]
- Pokmon TCG Pocket: The Yanmega Ex & Dialga Ex Deck You Need To Try - Screen Rant - February 8th, 2025 [February 8th, 2025]
- Every Card In Magic: The Gathering's Aetherdrift - TheGamer - February 8th, 2025 [February 8th, 2025]
- Star Trek: Lower Decks Peanut Hamper episode was the show's satirical take on Dances with Wolves - Popverse - February 8th, 2025 [February 8th, 2025]
- Star Trek: Lower Decks showrunner Mike McMahan would love to take on a live-action Star Trek project - Popverse - February 8th, 2025 [February 8th, 2025]
- Magic: The Gathering - The 10 Best Reprints In The Eternal Might Commander Deck - TheGamer - February 8th, 2025 [February 8th, 2025]
- Every Balatro Deck Ranked By Difficulty - DualShockers - February 8th, 2025 [February 8th, 2025]
- DJ Teaches His Parents How to Use DecksNow They Host Kitchen Raves Whenever They Want (WATCH) - Good News Network - February 8th, 2025 [February 8th, 2025]
- Pokemon TCG Pocket Space-Time Smackdown Emblem Event: Missions, rewards, and best decks to use - Sportskeeda - February 8th, 2025 [February 8th, 2025]
- Square Enix's Chocobo Steam Deck is cute, fluffy, and unfortunately gets in-KWEH-dibly warm - PC Gamer - February 8th, 2025 [February 8th, 2025]
- The best Steam Deck dock 2025: the handheld docking stations I'd recommend - Gamesradar - February 8th, 2025 [February 8th, 2025]
- Pokmon TCGs newest precon is tournament ready and great value for money - Wargamer - February 8th, 2025 [February 8th, 2025]
- Steam Deck OLED, ROG Ally, and more: all the news about the handheld PC gaming revolution - The Verge - January 31st, 2025 [January 31st, 2025]
- I Stopped Wasting Money On Magic: The Gathering With A Simple $20 Investment - Screen Rant - January 31st, 2025 [January 31st, 2025]
- Hololive Super Expo 2025 Will Have TCG Deck Giveaways - Siliconera - January 31st, 2025 [January 31st, 2025]
- One crafty user proved you can make the Steam Deck more portable by turning it into a brick - TechRadar - January 31st, 2025 [January 31st, 2025]
- Hit the Decks! It's Odymel - Music Connection Magazine - January 31st, 2025 [January 31st, 2025]
- Yellowjackets Season 3 Cast Tackle Questions From The Deck of Cards - Bleeding Cool News - January 31st, 2025 [January 31st, 2025]
- Pokmon Pockets most overhyped deck finally wins big just in time to retire - Wargamer - January 31st, 2025 [January 31st, 2025]
- Steam Deck fans, you're in for a good one - AMD's FSR 3 frame generation is now available on Valve's handheld thanks to a new Decky plugin - TechRadar - January 31st, 2025 [January 31st, 2025]
- Lucky Tower Ultimate is hilarious and now Steam Deck Verified with a big update - GamingOnLinux - January 31st, 2025 [January 31st, 2025]
- At Last, Star Trek Just Called Out My Biggest Issue with Lower Decks - Screen Rant - January 21st, 2025 [January 21st, 2025]
- Metagame Mentor: The Top 20 Modern Decks for the Regional Championships - Magic.gg - January 21st, 2025 [January 21st, 2025]
- Pokemon TCG Pocket best decks and tier list for the Meta (Jan 2025) - Gamesradar - January 21st, 2025 [January 21st, 2025]
- Top 8 Explorer Decks for the Best of 1 Play-In Event - MTG Arena Zone - January 21st, 2025 [January 21st, 2025]
- Next Flesh And Blood Armory Deck To Feature Aurora - Star City Games - January 21st, 2025 [January 21st, 2025]
- Star Trek: Lower Decks showed that Star Trek should avoid catering to niche crowds - Redshirts Always Die - January 21st, 2025 [January 21st, 2025]
- Marvel SNAPs Moonstone Is a Glass Cannon, and You Cant Fix That - GameRant - January 21st, 2025 [January 21st, 2025]
- 'All hands on deck': How Seattle responded to the bomb cyclone - KING5.com - January 21st, 2025 [January 21st, 2025]
- 10 Non-Steam Apps You Should Install on Your Steam Deck Right Away - How-To Geek - January 21st, 2025 [January 21st, 2025]
- Best Gyarados EX deck in Pokemon TCG Pocket that is making big waves in the meta - ONE Esports - January 21st, 2025 [January 21st, 2025]
- The Nintendo Switch 2 doesn't have to be as powerful as a Steam Deck for me to love it - Gamesradar - January 21st, 2025 [January 21st, 2025]
- The best turntables 2025, tested and chosen by TechRadar experts for all budgets - TechRadar - January 21st, 2025 [January 21st, 2025]
- Below Deck Sailing Yacht: 4 Cast Members Who Shouldn't Return In Season 6 (And 4 Who Can Replace Them) - Screen Rant - January 21st, 2025 [January 21st, 2025]
- How Star Trek: Lower Decks Managed To Get Enterprises Jolene Blalock To Appear, And Why Shes Only Credited By Her First Name - CinemaBlend - January 3rd, 2025 [January 3rd, 2025]
- 'Star Trek: Lower Decks': the 25 best 'Trek' callbacks from the show's five-year mission - Space.com - January 3rd, 2025 [January 3rd, 2025]
- Pokmon TCG Pocket: How to Build the Perfect Mewtwo Deck - CBR - January 3rd, 2025 [January 3rd, 2025]
- Sols 4402-4415: Rover Decks and Sequence Calls for the Holidays - Science@NASA - January 3rd, 2025 [January 3rd, 2025]
- These 3 Fighting-Type Decks Could Be the New META in Pokemon Pocket - GameRant - January 3rd, 2025 [January 3rd, 2025]
- I'm Certain The Below Deck Franchise Needs To Introduce A New Spinoff (Below Deck Sailing Yacht Hurt The Network) - Screen Rant - January 3rd, 2025 [January 3rd, 2025]
- Pokmon TCG Pocket Blastoise event: All Battle Tasks and rewards - Sports Illustrated - January 3rd, 2025 [January 3rd, 2025]