-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend_cheat_sheet.tex
More file actions
48 lines (45 loc) · 1017 Bytes
/
backend_cheat_sheet.tex
File metadata and controls
48 lines (45 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{fullpage}
\usepackage{fancyhdr}
\usepackage{url}
\usepackage{color}
\usepackage{textcomp}
\usepackage{geometry}
\usepackage{courier}
\geometry{
top=1.0in, % <-- you want to adjust this
inner=0.5in,
outer=0.5in,
bottom=1.0in,
headheight=4ex, % <-- and this
headsep=3ex, % <-- and this
}
\renewcommand{\familydefault}{\sfdefault}
\addtolength{\parskip}{\baselineskip}
\pdfpagewidth 8.5in
\pdfpageheight 11in
\pagestyle{fancy}
\newcommand{\urlwofont}[1]{\urlstyle{same}\url{#1}}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\lhead{\leftmark}
\chead{}
\rhead{\rightmark}
\lfoot{}
\cfoot{Page \thepage}
\rfoot{}
\hypersetup{
colorlinks=false,
linkcolor=blue,
citecolor=black,
filecolor=black,
urlcolor=blue
}
\begin{document}
\newpage
\section{Backend Stuff}
REST, MVC, JSON, Flask, Sqlalchemy, migrations, auth
\end{document}