'); 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_state173334['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_state173334['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_state173334']; 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_state173334']; 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; };
A South Bend police officer, accused of having an inappropriate relationship with a 16-year old girl, had another job not long ago working directly with teenagers.
ABC57 obtained the personnel file of South Bend police officer Timothy Barber through a public records request. Barber isstill on unpaid leave, while he faces multiple charges for sex crimes involving a minor. Shortly before SBPD hired Officer Barber, he worked for a year at First Baptist Church of Mishawaka as its youth director.
According to Barber's resume, he ran youth group activities and had an ongoing relationship with teens as a counselor. Barber's application says he graduated with a degree in biblical counseling, to start a career as a youth pastor.
Barber is accused of repeatedly having sex with a 16-year old girl, while on the job as a sworn police officer. According to court records, the victim said Barber showed up to her place of work, in uniform, and exposed himself. She told investigators she felt pressured to continue the relationship with Barber because he was a cop.
ABC57 has reached out to First Baptist Church of Mishawaka to ask about Barber's time as a youth director, and have yet to hear back.
View post:
Officer accused of sex with a minor has a history of working with teenagers - ABC 57 News
- US GAO - About GAO - 100 Years of GAO - Government Accountability Office [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Oklahoma football: Baker Mayfield making OU history in the NFL - Stormin' in Norman [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Here are the 5 biggest HRs in Padres history - MLB.com [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Corey Crawford retires as one of the best in Chicago Blackhawks history - Da Windy City [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Cardinal Koch: History of separation can be part of history of reconciliation - Vatican News [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- The Local Take Talks Health, History and African Americans - WCLK [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- In Depth: What history tell us about the US Capitol riots - RADIO.COM [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Brighton Women's History Roll Of Honor Accepting Nominations For 2021 Inductees - WHMI [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Who Has the Most Rushing Yards and Touchdowns in NFL Playoff History? - Sportscasting [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Denver's cataloguing its Latino and Chicano history through places and buildings - Denverite [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- The Apple Car would wreck Apple, and Tesla's incredibly volatile history shows why - Business Insider [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- America Is Not Exceptional. It Has a History of Violence. - The Intercept [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- A brief history of the headscarf - CNN [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- On this date in history: -60 temperature reported in Cameron, WI - WQOW TV News 18 [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Morning Flurries: WHL announcement and the Toronto Marlies make history - Mile High Hockey [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- How Warnock and Ossoff's victories evoked the history of the Black freedom struggle - CNN [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Presidential Pours: A History of Wine in the White House - The Wall Street Journal [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Today in History - MyMotherLode.com [Last Updated On: January 9th, 2021] [Originally Added On: January 9th, 2021]
- Today in History: George Washington approved adding two stars, two stripes to the American flag - Lompoc Record [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- More inclusive: Local principal, teacher to help review history education in Virginia - WYDaily [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- Here's a salute to one of Ohio women's suffrage pioneers - Richland Source [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- Police Commissioners brother, an SFPD sergeant, has a history of shootings and excessive force complaints - Mission Local [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- On January 13 in NYR history: The longest unbeaten streak ever in the NHL - Blue Line Station [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- Democratic Party history from the year you were born - Buffalo News [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- A US history teacher tries to explain attacks - The Hechinger Report [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- Ron Rivera Embraced History To Find Success In His First Season In Washington - Forbes [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- The Mother Lode: This is history in the making - again - for kids - CT Insider [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- The History Behind 'Mob' Mentality - The New York Times [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- 'I saw my life flash before my eyes': An oral history of the Capitol attack | TheHill - The Hill [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- The US Capitol attack fits into the history of White backlash - CNN [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- Bylaws of the Department of History - Nevada Today [Last Updated On: January 13th, 2021] [Originally Added On: January 13th, 2021]
- Subversive Capital Acquisition Corp. Closes The Largest Cannabis SPAC In History And Announces The Launch Of The Parent Company With Shawn... [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- Out of the Attic: The Moss Kendrix Collection at the Black History Museum - Alexandria Times [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- How Does the Nets' Big Three Compare to Other Big Threes in NBA History? - InsideHook [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- The Ku Klux Klans history is a warning about the Capitol riot - Vox.com [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- New Phillies reliever made postseason history vs. Pat Neshek - That Balls Outta Here [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- Lionel Gossman, specialist in French literature and history and 'one of the great humanists and scholar-teachers of his generation,' dies at 91 -... [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- 'Southern Charm': Leva Bonaparte Is on The Right Side Of History. Are You? - Decider [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- This Place in History: Warren Austin - Local 22/44 News [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- Here's how Tom Brady and the Buccaneers could make NFL history if they win their next two playoff games - CBS Sports [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- A History of the Trump Era Through Stories About Toilets - New York Magazine [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- 'Alarmingly Similar.' What the Chaos Around Lincoln's First Inauguration Can Tell Us About Today, According to Historians - TIME [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- A Brief Cultural History of Work Sucking - The New Republic [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- Naples Underground Featured on the History Channel - PRNewswire [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- Derby history is not kind to the Lecomte - VSiN [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- Gandhi, History, and the Lessons of the Events at the Capitol - The New Yorker [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- Will Donald Trump go down as the worst president in history? - CNN [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- View and delete your browsing history in Internet Explorer [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- View and delete browser history in Microsoft Edge [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- This Day in History - What Happened Today - HISTORY [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- History | discipline | Britannica [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- History - Wikipedia [Last Updated On: January 15th, 2021] [Originally Added On: January 15th, 2021]
- The most memorable walkoff wins in Cubs history, Part 2: Original NL teams - Bleed Cubbie Blue [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Dustin Pedroia will always have a place in Red Sox history; what about the Hall of Fame? - CBS Sports [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Sundance: 'Judas and the Black Messiah' introduces 'a history thats been buried in this country' - USA TODAY [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Virginia teacher uses bowties to share history and teach life lessons - WAVY.com [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Kremlin critic Navalny tells court that Putin will go down in history as nothing but an 'underpants poisoner' - Yahoo News [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Trump's impeachment lawyers have a history of being involved in controversial legal matters - KCTV Kansas City [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- 'Black History is a Verb': A young poet's message about Black history in America - KARE11.com [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- February is Black History Month and Heart Month. Why one cardiologist says thats a good coincidence. - ABC27 [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Thanks to the Internet Archive, the history of American newspapers is more searchable than ever - Nieman Journalism Lab at Harvard [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Creativity Is the Focus of Black History Month 2021 | | SBU News - Stony Brook News [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- This Black History Month, remember: History isnt here to make you feel good - Chicago Sun-Times [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Black History Month: How did it start, and why February? - 11Alive.com WXIA [Last Updated On: February 2nd, 2021] [Originally Added On: February 2nd, 2021]
- Comparing COVID-19 to other deadly diseases in U.S. history - CBS News 8 [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- Talk of the Times: Touring the rich history of Cape Ann - Gloucester Daily Times [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- Vice President Harris inspiring Black women and girls everywhere during Black History Month - Wink News [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- Brookshire Grocery Company publishes book to share 92-year history - Weatherford Democrat [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- Black History Month: Wyoming County was active on the Underground Railroad - The Daily News Online [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- Suspect in NMSP officers death had an extensive criminal history - KTSM 9 News [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- This week in history: Historical Society votes to move forward with fundraising for museum - Albert Lea Tribune - Albert Lea Tribune [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- The topsy-turvy history of the Nissan Pathfinder - Autoblog [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- God and government linked in history | Religion And Values | messenger-inquirer.com - messenger-inquirer [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- Black History and Heritage - The San Diego Union-Tribune [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- Behringer Crawford's NKY History Hour will feature Travis Brown and Locks and Dams of Ohio River - User-generated content [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- History and Hope: A conversation with Seaside's John Nash - KSBW Monterey [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- Today in History | National News - Tulsa World [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- NFL: Protesting players 'on the right side of history,' union says - Reuters [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- The True History Behind Netflix's 'The Dig' and Sutton Hoo - Smithsonian Magazine [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]
- A look at the top rotations in Dodgers history - Los Angeles Times [Last Updated On: February 6th, 2021] [Originally Added On: February 6th, 2021]