This file contains 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 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 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 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 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 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 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
# Get all enabled Windows Features, sorted by FeatureName | |
Get-WindowsOptionalFeature -Online | Where-Object State -eq "Enabled" | Sort-Object -Property "FeatureName" | Foreach { $_.FeatureName } |
This file contains 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
# Show (and follow) logs for container with "sqlserver" in container name | |
docker logs -f $(docker ps --filter="name=sqlserver" -q) | |
# Stop all containers, then system prune | |
docker stop $(docker ps -a -q); docker system prune -f; | |
# List names, status, and ports of running containers | |
docker ps --format 'table {{.Names}}\t{{.Status}}\t{{.Ports}}' | |
# List only names of running containers (https://stackoverflow.com/a/50667460/122283) |
This file contains 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
docker run -d -p 9000:9000 --name portainer --restart always --label hide=true -v /var/run/docker.sock:/var/run/docker.sock -v C:\ProgramData\Portainer:/data portainer/portainer -l hide=true |
This file contains 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
# (Re)start all containers, including those not currently running | |
docker restart $(docker ps -a -q) | |
# Stop all containers | |
docker stop $(docker ps -a -q) | |
# Remove all containers, including those not currently running | |
docker rm $(docker ps -a -q) |