Skip to content

Commit 6aa831b

Browse files
committed
Initial commit
0 parents  commit 6aa831b

File tree

3 files changed

+149
-0
lines changed

3 files changed

+149
-0
lines changed

.gitignore

+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
## Core latex/pdflatex auxiliary files:
2+
*.aux
3+
*.lof
4+
*.log
5+
*.lot
6+
*.fls
7+
*.out
8+
*.toc
9+
10+
## Intermediate documents:
11+
*.dvi
12+
*-converted-to.*
13+
# these rules might exclude image files for figures etc.
14+
# *.ps
15+
# *.eps
16+
# *.pdf
17+
18+
## Bibliography auxiliary files (bibtex/biblatex/biber):
19+
*.bbl
20+
*.bcf
21+
*.blg
22+
*-blx.aux
23+
*-blx.bib
24+
*.brf
25+
*.run.xml
26+
27+
## Build tool auxiliary files:
28+
*.fdb_latexmk
29+
*.synctex
30+
*.synctex.gz
31+
*.synctex.gz(busy)
32+
*.pdfsync
33+
34+
## Auxiliary and intermediate files from other packages:
35+
36+
# algorithms
37+
*.alg
38+
*.loa
39+
40+
# achemso
41+
acs-*.bib
42+
43+
# amsthm
44+
*.thm
45+
46+
# beamer
47+
*.nav
48+
*.snm
49+
*.vrb
50+
51+
#(e)ledmac/(e)ledpar
52+
*.end
53+
*.[1-9]
54+
*.[1-9][0-9]
55+
*.[1-9][0-9][0-9]
56+
*.[1-9]R
57+
*.[1-9][0-9]R
58+
*.[1-9][0-9][0-9]R
59+
*.eledsec[1-9]
60+
*.eledsec[1-9]R
61+
*.eledsec[1-9][0-9]
62+
*.eledsec[1-9][0-9]R
63+
*.eledsec[1-9][0-9][0-9]
64+
*.eledsec[1-9][0-9][0-9]R
65+
66+
# glossaries
67+
*.acn
68+
*.acr
69+
*.glg
70+
*.glo
71+
*.gls
72+
73+
# gnuplottex
74+
*-gnuplottex-*
75+
76+
# hyperref
77+
*.brf
78+
79+
# knitr
80+
*-concordance.tex
81+
*.tikz
82+
*-tikzDictionary
83+
84+
# listings
85+
*.lol
86+
87+
# makeidx
88+
*.idx
89+
*.ilg
90+
*.ind
91+
*.ist
92+
93+
# minitoc
94+
*.maf
95+
*.mtc
96+
*.mtc0
97+
98+
# minted
99+
_minted*
100+
*.pyg
101+
102+
# morewrites
103+
*.mw
104+
105+
# nomencl
106+
*.nlo
107+
108+
# sagetex
109+
*.sagetex.sage
110+
*.sagetex.py
111+
*.sagetex.scmd
112+
113+
# sympy
114+
*.sout
115+
*.sympy
116+
sympy-plots-for-*.tex/
117+
118+
# todonotes
119+
*.tdo
120+
121+
# xindy
122+
*.xdy
123+
124+
# WinEdt
125+
*.bak
126+
*.sav

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Daniil Belyakov
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# mcdowell-cv

0 commit comments

Comments
 (0)