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
""" | |
Thought this was cute. | |
""" | |
import time | |
PARTS = ("", "▏", "▎", "▍", "▌", "▋", "▊", "▉") | |
BLOCK = "█" | |
def bar(count, total, width): |
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
import time | |
import statistics | |
from collections import deque | |
TEMP_PATH = "/sys/devices/virtual/thermal/thermal_zone0/temp" | |
FAN_PATH = "/sys/class/thermal/cooling_device0/cur_state" | |
def main(): | |
temp = deque(maxlen=3) |
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
def kablooey(cls): | |
instances = {} | |
class Bang: | |
def __init__(self, name): | |
self.name = name | |
def __get__(self, instance, owner): | |
raise Exception("Bang!") |
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
:root { | |
--primary: #192734; | |
--primary-alt: #384047; | |
--background: #f2f2f2; | |
--surface: #caccce; | |
} | |
:root[data-theme="dark"] { | |
--primary: rgba(255, 255, 255, 0.85); | |
--primary-alt: rgba(217, 217, 217, 0.85); |
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
If we have never met Herman but are told that he is 7 feet | |
tall, we can imagine his height in relation to ourselves | |
without even having seen him. | |
-- Fenton & Bieman, "Software Metrics" | |
% | |
Some acted because they wanted to smash municipal machinery; | |
some because they wanted to smash something. | |
-- "Chesterton's Fence: A Lesson in Second Order Thinking" |
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
h2 { counter-increment: h2; counter-reset: h3; } | |
h3 { counter-increment: h3; counter-reset: h4; } | |
h4 { counter-increment: h4; counter-reset: h5; } | |
h5 { counter-increment: h5; counter-reset: h6; } | |
h6 { counter-increment: h6; } | |
h2:before { content: counter(h2) ": " } | |
h3:before { content: counter(h2) "." counter(h3) ": " } | |
h4:before { content: counter(h2) "." counter(h3) "." counter(h4) ": " } | |
h5:before { content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ": " } |
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
library(tidyverse) | |
#' Returns a beautiful density plot | |
#' | |
#' @param data A data frame | |
#' @param x The x-axis variable as a string | |
#' @param group_on (optional) The variable to facet-wrap on as a string | |
#' @param title (optional) The title, if given will append "(n=<n>)" | |
#' @param limits (optional) a numeric vector of length 2 specifying the min and max values | |
#' @returns A ggplot2 plot |
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
const horse = document.createElement("pre"); | |
horse.innerHTML = `\ | |
.'' | |
._,-、___,' (\`\\ | |
//( ( \`' | |
'/ )\\ )、__, ) | |
' <' \`\\ ._/\`\\ | |
\` \\ \\\ | |
` | |
horse.id = "horse"; |
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
from enum import Enum | |
import time | |
TEMP_PATH = "/sys/devices/virtual/thermal/thermal_zone0/temp" | |
FAN_PATH = "/sys/class/thermal/cooling_device0/cur_state" | |
class FanSpeed(Enum): | |
OFF = 0 | |
LOW = 1 |
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
\NeedsTeXFormat{LaTeX2e} | |
\ProvidesPackage{questions} | |
\RequirePackage{tcolorbox} | |
\RequirePackage{comment} | |
\RequirePackage{kvoptions} | |
\DeclareBoolOption{problems} | |
\DeclareBoolOption{solutions} | |
\ProcessKeyvalOptions* |