diff options
-rw-r--r-- | .gitignore | 136 | ||||
-rw-r--r-- | readme.md | 2 |
2 files changed, 138 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5a61770 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,136 @@ | |||
1 | # Created by .ignore support plugin (hsz.mobi) | ||
2 | ### Linux template | ||
3 | *~ | ||
4 | |||
5 | # KDE directory preferences | ||
6 | .directory | ||
7 | |||
8 | # Linux trash folder which might appear on any partition or disk | ||
9 | .Trash-* | ||
10 | ### Eclipse template | ||
11 | *.pydevproject | ||
12 | .metadata | ||
13 | .gradle | ||
14 | bin/ | ||
15 | tmp/ | ||
16 | *.tmp | ||
17 | *.bak | ||
18 | *.swp | ||
19 | *~.nib | ||
20 | local.properties | ||
21 | .settings/ | ||
22 | .loadpath | ||
23 | |||
24 | # Eclipse Core | ||
25 | .project | ||
26 | |||
27 | # External tool builders | ||
28 | .externalToolBuilders/ | ||
29 | |||
30 | # Locally stored "Eclipse launch configurations" | ||
31 | *.launch | ||
32 | |||
33 | # CDT-specific | ||
34 | .cproject | ||
35 | |||
36 | # JDT-specific (Eclipse Java Development Tools) | ||
37 | .classpath | ||
38 | |||
39 | # Java annotation processor (APT) | ||
40 | .factorypath | ||
41 | |||
42 | # PDT-specific | ||
43 | .buildpath | ||
44 | |||
45 | # sbteclipse plugin | ||
46 | .target | ||
47 | |||
48 | # TeXlipse plugin | ||
49 | .texlipse | ||
50 | ### Java template | ||
51 | *.class | ||
52 | |||
53 | # Mobile Tools for Java (J2ME) | ||
54 | .mtj.tmp/ | ||
55 | |||
56 | # Package Files # | ||
57 | *.jar | ||
58 | *.war | ||
59 | *.ear | ||
60 | |||
61 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
62 | hs_err_pid* | ||
63 | ### Vim template | ||
64 | [._]*.s[a-w][a-z] | ||
65 | [._]s[a-w][a-z] | ||
66 | *.un~ | ||
67 | Session.vim | ||
68 | .netrwhist | ||
69 | *~ | ||
70 | ### JetBrains template | ||
71 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio | ||
72 | |||
73 | *.iml | ||
74 | |||
75 | ## Directory-based project format: | ||
76 | .idea/ | ||
77 | # if you remove the above rule, at least ignore the following: | ||
78 | |||
79 | # User-specific stuff: | ||
80 | # .idea/workspace.xml | ||
81 | # .idea/tasks.xml | ||
82 | # .idea/dictionaries | ||
83 | |||
84 | # Sensitive or high-churn files: | ||
85 | # .idea/dataSources.ids | ||
86 | # .idea/dataSources.xml | ||
87 | # .idea/sqlDataSources.xml | ||
88 | # .idea/dynamic.xml | ||
89 | # .idea/uiDesigner.xml | ||
90 | |||
91 | # Gradle: | ||
92 | # .idea/gradle.xml | ||
93 | # .idea/libraries | ||
94 | |||
95 | # Mongo Explorer plugin: | ||
96 | # .idea/mongoSettings.xml | ||
97 | |||
98 | ## File-based project format: | ||
99 | *.ipr | ||
100 | *.iws | ||
101 | |||
102 | ## Plugin-specific files: | ||
103 | |||
104 | # IntelliJ | ||
105 | /out/ | ||
106 | |||
107 | # mpeltonen/sbt-idea plugin | ||
108 | .idea_modules/ | ||
109 | |||
110 | # JIRA plugin | ||
111 | atlassian-ide-plugin.xml | ||
112 | |||
113 | # Crashlytics plugin (for Android Studio and IntelliJ) | ||
114 | com_crashlytics_export_strings.xml | ||
115 | crashlytics.properties | ||
116 | crashlytics-build.properties | ||
117 | ### Windows template | ||
118 | # Windows image file caches | ||
119 | Thumbs.db | ||
120 | ehthumbs.db | ||
121 | |||
122 | # Folder config file | ||
123 | Desktop.ini | ||
124 | |||
125 | # Recycle Bin used on file shares | ||
126 | $RECYCLE.BIN/ | ||
127 | |||
128 | # Windows Installer files | ||
129 | *.cab | ||
130 | *.msi | ||
131 | *.msm | ||
132 | *.msp | ||
133 | |||
134 | # Windows shortcuts | ||
135 | *.lnk | ||
136 | |||
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..50f0066 --- /dev/null +++ b/readme.md | |||
@@ -0,0 +1,2 @@ | |||
1 | CS-108 - XBlast 2016 | ||
2 | ==================== | ||