Browse Source

Initial commit

Lily Carpenter 10 years ago
commit
4544332cec
3 changed files with 138 additions and 0 deletions
  1. 109 0
      .gitignore
  2. 27 0
      LICENSE
  3. 2 0
      README.md

+ 109 - 0
.gitignore

@@ -0,0 +1,109 @@
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.gz
30
+*.synctex.gz(busy)
31
+*.pdfsync
32
+
33
+## Auxiliary and intermediate files from other packages:
34
+
35
+# algorithms
36
+*.alg
37
+*.loa
38
+
39
+# amsthm
40
+*.thm
41
+
42
+# beamer
43
+*.nav
44
+*.snm
45
+*.vrb
46
+
47
+#(e)ledmac/(e)ledpar
48
+*.end
49
+*.[1-9]
50
+*.[1-9][0-9]
51
+*.[1-9][0-9][0-9]
52
+*.[1-9]R
53
+*.[1-9][0-9]R
54
+*.[1-9][0-9][0-9]R
55
+*.eledsec[1-9]
56
+*.eledsec[1-9]R
57
+*.eledsec[1-9][0-9]
58
+*.eledsec[1-9][0-9]R
59
+*.eledsec[1-9][0-9][0-9]
60
+*.eledsec[1-9][0-9][0-9]R
61
+
62
+# glossaries
63
+*.acn
64
+*.acr
65
+*.glg
66
+*.glo
67
+*.gls
68
+
69
+# hyperref
70
+*.brf
71
+
72
+# listings
73
+*.lol
74
+
75
+# makeidx
76
+*.idx
77
+*.ilg
78
+*.ind
79
+*.ist
80
+
81
+# minitoc
82
+*.maf
83
+*.mtc
84
+*.mtc0
85
+
86
+# minted
87
+*.pyg
88
+
89
+# morewrites
90
+*.mw
91
+
92
+# nomencl
93
+*.nlo
94
+
95
+# sagetex
96
+*.sagetex.sage
97
+*.sagetex.py
98
+*.sagetex.scmd
99
+
100
+# sympy
101
+*.sout
102
+*.sympy
103
+sympy-plots-for-*.tex/
104
+
105
+# todonotes
106
+*.tdo
107
+
108
+# xindy
109
+*.xdy

+ 27 - 0
LICENSE

@@ -0,0 +1,27 @@
1
+Copyright (c) 2015, Lily Carpenter
2
+All rights reserved.
3
+
4
+Redistribution and use in source and binary forms, with or without
5
+modification, are permitted provided that the following conditions are met:
6
+
7
+* Redistributions of source code must retain the above copyright notice, this
8
+  list of conditions and the following disclaimer.
9
+
10
+* Redistributions in binary form must reproduce the above copyright notice,
11
+  this list of conditions and the following disclaimer in the documentation
12
+  and/or other materials provided with the distribution.
13
+
14
+* Neither the name of clojure-core-presentation nor the names of its
15
+  contributors may be used to endorse or promote products derived from
16
+  this software without specific prior written permission.
17
+
18
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

+ 2 - 0
README.md

@@ -0,0 +1,2 @@
1
+# clojure-core-presentation
2
+Presentation about clojure core concepts/functions