Browse Source

Initial commit

James White 1 week ago
commit
51c1d663e1
3 changed files with 273 additions and 0 deletions
  1. 247 0
      .gitignore
  2. 23 0
      LICENSE
  3. 3 0
      README.md

+ 247 - 0
.gitignore View File

@@ -0,0 +1,247 @@
1
+# ---> Actionscript
2
+# Build and Release Folders
3
+bin/
4
+bin-debug/
5
+bin-release/
6
+[Oo]bj/ # FlashDevelop obj
7
+[Bb]in/ # FlashDevelop bin
8
+
9
+# Other files and folders
10
+.settings/
11
+
12
+# Executables
13
+*.swf
14
+*.air
15
+*.ipa
16
+*.apk
17
+
18
+# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
19
+# should NOT be excluded as they contain compiler settings and other important
20
+# information for Eclipse / Flash Builder.
21
+
22
+# ---> Ada
23
+# Object file
24
+*.o
25
+
26
+# Ada Library Information
27
+*.ali
28
+
29
+# ---> Agda
30
+*.agdai
31
+
32
+# ---> Anjuta
33
+# Local configuration folder and symbol database
34
+/.anjuta/
35
+/.anjuta_sym_db.db
36
+
37
+# ---> Android
38
+# Built application files
39
+*.apk
40
+*.ap_
41
+
42
+# Files for the ART/Dalvik VM
43
+*.dex
44
+
45
+# Java class files
46
+*.class
47
+
48
+# Generated files
49
+bin/
50
+gen/
51
+out/
52
+
53
+# Gradle files
54
+.gradle/
55
+build/
56
+
57
+# Local configuration file (sdk path, etc)
58
+local.properties
59
+
60
+# Proguard folder generated by Eclipse
61
+proguard/
62
+
63
+# Log Files
64
+*.log
65
+
66
+# Android Studio Navigation editor temp files
67
+.navigation/
68
+
69
+# Android Studio captures folder
70
+captures/
71
+
72
+# Intellij
73
+*.iml
74
+.idea/workspace.xml
75
+.idea/tasks.xml
76
+.idea/gradle.xml
77
+.idea/dictionaries
78
+.idea/libraries
79
+
80
+# Keystore files
81
+*.jks
82
+
83
+# External native build folder generated in Android Studio 2.2 and later
84
+.externalNativeBuild
85
+
86
+# Google Services (e.g. APIs or Firebase)
87
+google-services.json
88
+
89
+# Freeline
90
+freeline.py
91
+freeline/
92
+freeline_project_description.json
93
+
94
+# ---> Ansible
95
+*.retry
96
+
97
+# ---> AppceleratorTitanium
98
+# Build folder and log file
99
+build/
100
+build.log
101
+
102
+# ---> ArchLinuxPackages
103
+*.tar
104
+*.tar.*
105
+*.jar
106
+*.exe
107
+*.msi
108
+*.zip
109
+*.tgz
110
+*.log
111
+*.log.*
112
+*.sig
113
+
114
+pkg/
115
+src/
116
+
117
+# ---> AppEngine
118
+# Google App Engine generated folder
119
+appengine-generated/
120
+
121
+# ---> Archives
122
+# It's better to unpack these files and commit the raw source because
123
+# git has its own built in compression methods.
124
+*.7z
125
+*.jar
126
+*.rar
127
+*.zip
128
+*.gz
129
+*.bzip
130
+*.bz2
131
+*.xz
132
+*.lzma
133
+*.cab
134
+
135
+#packing-only formats
136
+*.iso
137
+*.tar
138
+
139
+#package management formats
140
+*.dmg
141
+*.xpi
142
+*.gem
143
+*.egg
144
+*.deb
145
+*.rpm
146
+*.msi
147
+*.msm
148
+*.msp
149
+
150
+# ---> Bazaar
151
+.bzr/
152
+.bzrignore
153
+
154
+# ---> Autotools
155
+# http://www.gnu.org/software/automake
156
+
157
+Makefile.in
158
+/ar-lib
159
+/mdate-sh
160
+/py-compile
161
+/test-driver
162
+/ylwrap
163
+
164
+# http://www.gnu.org/software/autoconf
165
+
166
+/autom4te.cache
167
+/autoscan.log
168
+/autoscan-*.log
169
+/aclocal.m4
170
+/compile
171
+/config.guess
172
+/config.h.in
173
+/config.sub
174
+/configure
175
+/configure.scan
176
+/depcomp
177
+/install-sh
178
+/missing
179
+/stamp-h1
180
+
181
+# https://www.gnu.org/software/libtool/
182
+
183
+/ltmain.sh
184
+
185
+# http://www.gnu.org/software/texinfo
186
+
187
+/texinfo.tex
188
+
189
+# ---> BricxCC
190
+# Bricx Command Center IDE
191
+# http://bricxcc.sourceforge.net
192
+*.bak
193
+*.sym
194
+
195
+# ---> C
196
+# Prerequisites
197
+*.d
198
+
199
+# Object files
200
+*.o
201
+*.ko
202
+*.obj
203
+*.elf
204
+
205
+# Linker output
206
+*.ilk
207
+*.map
208
+*.exp
209
+
210
+# Precompiled Headers
211
+*.gch
212
+*.pch
213
+
214
+# Libraries
215
+*.lib
216
+*.a
217
+*.la
218
+*.lo
219
+
220
+# Shared objects (inc. Windows DLLs)
221
+*.dll
222
+*.so
223
+*.so.*
224
+*.dylib
225
+
226
+# Executables
227
+*.exe
228
+*.out
229
+*.app
230
+*.i*86
231
+*.x86_64
232
+*.hex
233
+
234
+# Debug files
235
+*.dSYM/
236
+*.su
237
+*.idb
238
+*.pdb
239
+
240
+# Kernel Module Compile Results
241
+*.mod*
242
+*.cmd
243
+modules.order
244
+Module.symvers
245
+Mkfile.old
246
+dkms.conf
247
+

+ 23 - 0
LICENSE View File

@@ -0,0 +1,23 @@
1
+Attribution Assurance License
2
+
3
+Copyright (c) <<var;name=copyright;original=2002 by AUTHOR PROFESSIONAL IDENTIFICATION * URL "PROMOTIONAL SLOGAN FOR AUTHOR'S PROFESSIONAL PRACTICE";match=.+>>
4
+
5
+All Rights Reserved 
6
+
7
+ATTRIBUTION ASSURANCE LICENSE (adapted from the original BSD license)
8
+
9
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the conditions below are met. These conditions require a modest attribution to <<var;name=author;original=<AUTHOR>;match=.+>> (the "Author"), who hopes that its promotional value may help justify the thousands of dollars in otherwise billable time invested in writing this and other freely available, open-source software.
10
+
11
+1. Redistributions of source code, in whole or part and with or without modification (the "Code"), must prominently display this GPG-signed text in verifiable form. 
12
+
13
+2. Redistributions of the Code in binary form must be accompanied by this GPG-signed text in any documentation and, each time the resulting executable program or a program dependent thereon is launched, a prominent display (e.g., splash screen or banner text) of the Author's attribution information, which includes: 
14
+
15
+     (a) <<var;name=author;original=Name;match=.+>> ("AUTHOR"), 
16
+     (b) <<var;name=profIdent;original=Professional identification;match=.+>> ("PROFESSIONAL IDENTIFICATION"), and 
17
+     (c) <<var;name=url;original=URL;match=.+>> ("URL"). 
18
+
19
+3. Neither the name nor any trademark of the Author may be used to endorse or promote products derived from this software without specific prior written permission. 
20
+
21
+4. Users are entirely responsible, to the exclusion of the Author and any other persons, for compliance with (1) regulations set by owners or administrators of employed equipment, (2) licensing terms of any other software, and (3) local regulations regarding use, including those regarding import, export, and use of encryption software.
22
+
23
+THIS FREE SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR ANY CONTRIBUTOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, EFFECTS OF UNAUTHORIZED OR MALICIOUS NETWORK ACCESS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

+ 3 - 0
README.md View File

@@ -0,0 +1,3 @@
1
+# tagoreautoparts8859
2
+
3
+I’m James White, an auto parts dealer at Tagore Auto Parts. I specialize in high-quality components, including <a href="https://tagoreautoparts.com/singleproduct/jeep-patriot-En-1">Jeep Patriot  Engine</a>.