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
javascript: (async() => { | |
const sleep = () => { return new Promise(resolve => setTimeout(resolve, 500)); }; | |
const deletePlaylist = async() => { | |
document.querySelector('.ytd-playlist-sidebar-primary-info-renderer > #button > #button > .style-scope').click(); await sleep(); | |
document.querySelector('.ytd-menu-popup-renderer:nth-child(5) .style-scope:nth-child(2)').click(); await sleep(); | |
document.querySelectorAll('.yt-simple-endpoint .style-scope .yt-button-renderer')[1].click(); await sleep(); | |
}; | |
await deletePlaylist(); | |
})(); |
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
%% preamble.tex: LaTeX Preamble Template (Will Wolff-Myren) %% | |
\usepackage{amsmath, amsthm, amssymb, enumerate, setspace} | |
\usepackage{mathtools} % https://ctan.org/pkg/mathtools | |
\usepackage{fancyhdr} % Fancy header. ;-) | |
\usepackage{titlesec} % For chapter/section/subsection customizations | |
\usepackage{hyperref} % https://www.andy-roberts.net/writing/latex/pdfs | |
\usepackage{tcolorbox} % For references from the book | |
\usepackage{relsize} % For resizing fractions in displaymath | |
\usepackage{marvosym} % For the contradiction lightning bolt |
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
{ | |
"name" : "Campbell", | |
"cursorColor": "#FFFFFF", | |
"selectionBackground": "#FFFFFF", | |
"background" : "#0C0C0C", | |
"foreground" : "#CCCCCC", | |
"black" : "#0C0C0C", |
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
fastboot flash product product.img | |
fastboot flash abl abl.img | |
fastboot flash aop aop.img | |
fastboot flash bluetooth bluetooth.img | |
fastboot flash boot boot.img | |
fastboot flash cmnlib cmnlib.img | |
fastboot flash cmnlib64 cmnlib64.img | |
fastboot flash devcfg devcfg.img | |
fastboot flash dsp dsp.img | |
fastboot flash dtbo dtbo.img |
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
/* Common Lighting, by Color Temp */ | |
$white-2850k: rgb(255,214,170); | |
$white-3250k: rgb(255,241,224); | |
/* Drop CTRL Teal→Salmon Colors */ | |
/* https://github.com/willwm/layouts-ctrl */ | |
$ctrl-teal: rgb(24,215,204); | |
$ctrl-salmon: rgb(255,114,118); |
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
%% Section 2.1 %% | |
\section*{Section 2.1} | |
\subsection*{2.1.2}{Prove that if $\seq{a_n}$ is a convergent sequence, then $\seq{|a_n|}$ is convergent. Is the converse true?} | |
\begin{proof} % If $\seq{a_n}$ is convergent, then $\seq{|a_n|}$ is convergent. | |
Let $\epsilon>0$ be given. | |
Since $\seq{a_n}$ converges to $a$, there exists $N \in \N$ such that $|a_n - a| < \epsilon, \A n \geq N$. Consider $\seq{|a_n|}$: | |
\begin{equation*} |
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
%% mycolorboxes.sty: | |
%% Selected tcolorbox styles from NotesTeX | |
%% (https://github.com/Adhumunt/NotesTeX) | |
\ProvidesPackage{mycolorboxes} | |
\usepackage[usenames,dvipsnames]{xcolor} | |
\usepackage[many]{tcolorbox} | |
\usepackage{thmtools} |
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
\NeedsTeXFormat{LaTeX2e} | |
\ProvidesPackage{homework} | |
\usepackage[margin=1in]{geometry} | |
\usepackage[usenames,dvipsnames]{xcolor} | |
\usepackage[many]{tcolorbox} | |
\usepackage{mathtools,amsthm,amssymb,amsfonts,bm} | |
\usepackage{thmtools,amsmath} |
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
# SPDX-FileCopyrightText: 2020 John Park for Adafruit Industries | |
# | |
# SPDX-License-Identifier: MIT | |
# Metro Matrix Clock | |
# Runs on Airlift Metro M4 with 64x32 RGB Matrix display & shield | |
import time | |
import board | |
import displayio |
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
# SPDX-FileCopyrightText: 2020 Melissa LeBlanc-Williams, written for Adafruit Industries | |
# | |
# SPDX-License-Identifier: Unlicense | |
""" | |
This example checks the current Bitcoin price and displays it in the middle of the screen | |
""" | |
import time | |
import board | |
import terminalio | |
from adafruit_matrixportal.matrixportal import MatrixPortal |