Showing
2 changed files
with
201 additions
and
0 deletions
.gitignore
0 → 100644
1 | +# Created by .ignore support plugin (hsz.mobi) | ||
2 | +### Eclipse template | ||
3 | + | ||
4 | +.metadata | ||
5 | +bin/ | ||
6 | +tmp/ | ||
7 | +*.tmp | ||
8 | +*.bak | ||
9 | +*.swp | ||
10 | +*~.nib | ||
11 | +local.properties | ||
12 | +.settings/ | ||
13 | +.loadpath | ||
14 | +.recommenders | ||
15 | + | ||
16 | +# External tool builders | ||
17 | +.externalToolBuilders/ | ||
18 | + | ||
19 | +# Locally stored "Eclipse launch configurations" | ||
20 | +*.launch | ||
21 | + | ||
22 | +# PyDev specific (Python IDE for Eclipse) | ||
23 | +*.pydevproject | ||
24 | + | ||
25 | +# CDT-specific (C/C++ Development Tooling) | ||
26 | +.cproject | ||
27 | + | ||
28 | +# CDT- autotools | ||
29 | +.autotools | ||
30 | + | ||
31 | +# Java annotation processor (APT) | ||
32 | +.factorypath | ||
33 | + | ||
34 | +# PDT-specific (PHP Development Tools) | ||
35 | +.buildpath | ||
36 | + | ||
37 | +# sbteclipse plugin | ||
38 | +.target | ||
39 | + | ||
40 | +# Tern plugin | ||
41 | +.tern-project | ||
42 | + | ||
43 | +# TeXlipse plugin | ||
44 | +.texlipse | ||
45 | + | ||
46 | +# STS (Spring Tool Suite) | ||
47 | +.springBeans | ||
48 | + | ||
49 | +# Code Recommenders | ||
50 | +.recommenders/ | ||
51 | + | ||
52 | +# Scala IDE specific (Scala & Java development for Eclipse) | ||
53 | +.cache-main | ||
54 | +.scala_dependencies | ||
55 | +.worksheet | ||
56 | +### Android template | ||
57 | +# Built application files | ||
58 | +*.apk | ||
59 | +*.ap_ | ||
60 | + | ||
61 | +# Files for the ART/Dalvik VM | ||
62 | +*.dex | ||
63 | + | ||
64 | +# Java class files | ||
65 | +*.class | ||
66 | + | ||
67 | +# Generated files | ||
68 | +bin/ | ||
69 | +gen/ | ||
70 | +out/ | ||
71 | + | ||
72 | +# Gradle files | ||
73 | +.gradle/ | ||
74 | +build/ | ||
75 | + | ||
76 | +# Local configuration file (sdk path, etc) | ||
77 | +local.properties | ||
78 | + | ||
79 | +# Proguard folder generated by Eclipse | ||
80 | +proguard/ | ||
81 | + | ||
82 | +# Log Files | ||
83 | +*.log | ||
84 | + | ||
85 | +# Android Studio Navigation editor temp files | ||
86 | +.navigation/ | ||
87 | + | ||
88 | +# Android Studio captures folder | ||
89 | +captures/ | ||
90 | + | ||
91 | +# IntelliJ | ||
92 | +*.iml | ||
93 | +.idea/workspace.xml | ||
94 | +.idea/tasks.xml | ||
95 | +.idea/gradle.xml | ||
96 | +.idea/assetWizardSettings.xml | ||
97 | +.idea/dictionaries | ||
98 | +.idea/libraries | ||
99 | +.idea/* | ||
100 | + | ||
101 | +# Keystore files | ||
102 | +# Uncomment the following line if you do not want to check your keystore files in. | ||
103 | +#*.jks | ||
104 | + | ||
105 | +# External native build folder generated in Android Studio 2.2 and later | ||
106 | +.externalNativeBuild | ||
107 | + | ||
108 | +# Google Services (e.g. APIs or Firebase) | ||
109 | +google-services.json | ||
110 | + | ||
111 | +# Freeline | ||
112 | +freeline.py | ||
113 | +freeline/ | ||
114 | +freeline_project_description.json | ||
115 | + | ||
116 | +# fastlane | ||
117 | +fastlane/report.xml | ||
118 | +fastlane/Preview.html | ||
119 | +fastlane/screenshots | ||
120 | +fastlane/test_output | ||
121 | +fastlane/readme.md | ||
122 | +### Java template | ||
123 | +# Compiled class file | ||
124 | +*.class | ||
125 | + | ||
126 | +# Log file | ||
127 | +*.log | ||
128 | + | ||
129 | +# BlueJ files | ||
130 | +*.ctxt | ||
131 | + | ||
132 | +# Mobile Tools for Java (J2ME) | ||
133 | +.mtj.tmp/ | ||
134 | + | ||
135 | +# Package Files # | ||
136 | +*.jar | ||
137 | +*.war | ||
138 | +*.nar | ||
139 | +*.ear | ||
140 | +*.zip | ||
141 | +*.tar.gz | ||
142 | +*.rar | ||
143 | + | ||
144 | +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
145 | +hs_err_pid* | ||
146 | +### JetBrains template | ||
147 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm | ||
148 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | ||
149 | + | ||
150 | +# User-specific stuff | ||
151 | +.idea/**/workspace.xml | ||
152 | +.idea/**/tasks.xml | ||
153 | +.idea/**/dictionaries | ||
154 | +.idea/**/shelf | ||
155 | + | ||
156 | +# Sensitive or high-churn files | ||
157 | +.idea/**/dataSources/ | ||
158 | +.idea/**/dataSources.ids | ||
159 | +.idea/**/dataSources.local.xml | ||
160 | +.idea/**/sqlDataSources.xml | ||
161 | +.idea/**/dynamic.xml | ||
162 | +.idea/**/uiDesigner.xml | ||
163 | +.idea/**/dbnavigator.xml | ||
164 | + | ||
165 | +# Gradle | ||
166 | +.idea/**/gradle.xml | ||
167 | +.idea/**/libraries | ||
168 | + | ||
169 | +# CMake | ||
170 | +cmake-build-debug/ | ||
171 | +cmake-build-release/ | ||
172 | + | ||
173 | +# Mongo Explorer plugin | ||
174 | +.idea/**/mongoSettings.xml | ||
175 | + | ||
176 | +# File-based project format | ||
177 | +*.iws | ||
178 | + | ||
179 | +# IntelliJ | ||
180 | +out/ | ||
181 | + | ||
182 | +# mpeltonen/sbt-idea plugin | ||
183 | +.idea_modules/ | ||
184 | + | ||
185 | +# JIRA plugin | ||
186 | +atlassian-ide-plugin.xml | ||
187 | + | ||
188 | +# Cursive Clojure plugin | ||
189 | +.idea/replstate.xml | ||
190 | + | ||
191 | +# Crashlytics plugin (for Android Studio and IntelliJ) | ||
192 | +com_crashlytics_export_strings.xml | ||
193 | +crashlytics.properties | ||
194 | +crashlytics-build.properties | ||
195 | +fabric.properties | ||
196 | + | ||
197 | +# Editor-based Rest Client | ||
198 | +.idea/httpRequests | ||
199 | +### SVN template | ||
200 | +.svn/ | ||
201 | + |
boxfish-paper/paper-20181228.md
0 → 100644
File mode changed
-
Please register or login to post a comment