This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This will run in the background | |
var videos = document.getElementsByTagName("video"); | |
for(var i = 0; i < videos.length; i++){ | |
videos[i].removeAttribute("autoplay"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var link = document.createElement('link'); | |
link.setAttribute('rel', 'stylesheet'); | |
link.setAttribute('type', 'text/css'); | |
// add your custom font link down here 👇 | |
link.setAttribute('href', 'https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap'); | |
document.head.appendChild(link); | |
const home = document.querySelector('#Home') | |
link = home.children[0] | |
link.href = 'http://blackboard.usc.edu/webapps/portal/frameset.jsp?tab_id=_1_1' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Implements a dictionary's functionality | |
#include <stdbool.h> | |
#include <string.h> | |
#include <ctype.h> | |
#include <stdbool.h> |