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
#set page("us-letter", margin: (x: 32pt, y: 32pt), columns: 2) | |
#set text(font: "Inter", size: 7pt) | |
#set par(leading: 1.25em, first-line-indent: 1em) | |
#show link: set text(blue) | |
// variable binding ------------------------------------------------------------ | |
#let t_ored(body, fill: rgb("#ff4500")) = { | |
set text(fill) | |
[#body]} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="shortcut icon" href="#" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- | |
How to use Pandoc | |
================= |
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 busio | |
import board | |
import digitalio | |
# Additional libraries for AHT20, ESP32 Airlift, requests, socket, and MQTT | |
import adafruit_ahtx0 | |
from adafruit_esp32spi import adafruit_esp32spi | |
from adafruit_esp32spi import adafruit_esp32spi_wifimanager | |
import adafruit_requests as requests |
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{aizancommons}[2019/09/21 Aizan's Commons LaTeX package] | |
% Package declarations | |
% ------------------------------------------------------------------- | |
\RequirePackage[utf8]{inputenc} | |
\RequirePackage[letterpaper, left=0.7in, right=0.7in, top=0.5in, bottom=0.5in]{geometry} | |
\RequirePackage{parskip} % disable the new paragraph indent | |
\RequirePackage{enumitem} % somehow fixes the linespacing for numbering |
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
general { | |
output_format = "i3bar" | |
colors = false | |
markup = pango | |
interval = 5 | |
color_good = '#2f343f' | |
color_degraded = '#ebcb8b' | |
color_bad = '#ba5e57' | |
} |
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
## Set Mod Key | |
set $mod Mod4 | |
## Set Font for Windows Title | |
font pango:DejaVu Sans Mono 9 | |
## Use Mouse+$mod to Drag Floating Windows to Their Wanted Position | |
floating_modifier $mod | |
## Application Shortcut Keys |
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
backend = "glx"; | |
vsync = "opengl-swc"; | |
shadow = true; | |
no-dock-shadow = true; | |
no-dnd-shadow = true; | |
clear-shadow = true; | |
shadow-radius = 10; | |
shadow-offset-x = -5; |
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
[global] | |
monitor = 0 | |
follow = mouse | |
geometry = "300x60-20+48" | |
indicate_hidden = yes | |
shrink = no | |
separator_height = 0 | |
padding = 32 | |
horizontal_padding = 32 | |
frame_width = 2 |
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
% Required Packages | |
\usepackage[utf8]{inputenc} | |
\usepackage[letterpaper, left=0.7in, right=0.7in, top=0.5in, bottom=0.5in]{geometry} | |
\usepackage{parskip} % disable the new paragraph indent | |
\usepackage{enumitem} % somehow fixes the linespacing for numbering | |
\usepackage[dvipsnames]{xcolor} % enable color | |
\usepackage[none]{hyphenat} % disable hyphenation, might clash with other package | |
\usepackage[document]{ragged2e} % don't justify text | |
\usepackage{gensymb} % for generic degree commands | |
\usepackage{amssymb} % more fancy arrows |