Skip to content

Commit d512919

Browse files
committed
Initial commit
0 parents  commit d512919

File tree

6 files changed

+505
-0
lines changed

6 files changed

+505
-0
lines changed

.gitignore

Lines changed: 289 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,289 @@
1+
############################################################
2+
# .gitignore #
3+
############################################################
4+
# In theory a lot of this should be in the users' global #
5+
# gitignore files. Cruel experience has shown us that this #
6+
# is not the case. So instead we include lots of guff in #
7+
# here. #
8+
############################################################
9+
10+
11+
############################################################
12+
# macOS #
13+
############################################################
14+
15+
# General
16+
.DS_Store
17+
.AppleDouble
18+
.LSOverride
19+
20+
# Icon must end with two \r
21+
Icon
22+
23+
# Thumbnails
24+
._*
25+
26+
# Files that might appear in the root of a volume
27+
.DocumentRevisions-V100
28+
.fseventsd
29+
.Spotlight-V100
30+
.TemporaryItems
31+
.Trashes
32+
.VolumeIcon.icns
33+
.com.apple.timemachine.donotpresent
34+
35+
# Directories potentially created on remote AFP share
36+
.AppleDB
37+
.AppleDesktop
38+
Network Trash Folder
39+
Temporary Items
40+
.apdisk
41+
42+
43+
############################################################
44+
# Windows #
45+
############################################################
46+
47+
# Windows thumbnail cache files
48+
Thumbs.db
49+
Thumbs.db:encryptable
50+
ehthumbs.db
51+
ehthumbs_vista.db
52+
53+
# Dump file
54+
*.stackdump
55+
56+
# Folder config file
57+
[Dd]esktop.ini
58+
59+
# Recycle Bin used on file shares
60+
$RECYCLE.BIN/
61+
62+
# Windows Installer files
63+
*.cab
64+
*.msi
65+
*.msix
66+
*.msm
67+
*.msp
68+
69+
# Windows shortcuts
70+
*.lnk
71+
72+
73+
############################################################
74+
# Linux #
75+
############################################################
76+
77+
*~
78+
79+
# temporary files which can be created if a process still has a handle open of a deleted file
80+
.fuse_hidden*
81+
82+
# KDE directory preferences
83+
.directory
84+
85+
# Linux trash folder which might appear on any partition or disk
86+
.Trash-*
87+
88+
# .nfs files are created when an open file is removed but is still being accessed
89+
.nfs*
90+
91+
92+
93+
############################################################
94+
# SublimeText #
95+
############################################################
96+
97+
# Cache files for Sublime Text
98+
*.tmlanguage.cache
99+
*.tmPreferences.cache
100+
*.stTheme.cache
101+
102+
# Workspace files are user-specific
103+
*.sublime-workspace
104+
105+
# Project files should be checked into the repository, unless a significant
106+
# proportion of contributors will probably not be using Sublime Text
107+
# *.sublime-project
108+
109+
# SFTP configuration file
110+
sftp-config.json
111+
sftp-config-alt*.json
112+
113+
# Package control specific files
114+
Package Control.last-run
115+
Package Control.ca-list
116+
Package Control.ca-bundle
117+
Package Control.system-ca-bundle
118+
Package Control.cache/
119+
Package Control.ca-certs/
120+
Package Control.merged-ca-bundle
121+
Package Control.user-ca-bundle
122+
oscrypto-ca-bundle.crt
123+
bh_unicode_properties.cache
124+
125+
# Sublime-github package stores a github token in this file
126+
# https://packagecontrol.io/packages/sublime-github
127+
GitHub.sublime-settings
128+
129+
130+
############################################################
131+
# VSCode #
132+
############################################################
133+
134+
.vscode/*
135+
!.vscode/settings.json
136+
!.vscode/tasks.json
137+
!.vscode/launch.json
138+
!.vscode/extensions.json
139+
*.code-workspace
140+
141+
# Local History for Visual Studio Code
142+
.history/
143+
144+
145+
############################################################
146+
# vim #
147+
############################################################
148+
149+
# Swap
150+
[._]*.s[a-v][a-z]
151+
!*.svg # comment out if you don't need vector files
152+
[._]*.sw[a-p]
153+
[._]s[a-rt-v][a-z]
154+
[._]ss[a-gi-z]
155+
[._]sw[a-p]
156+
157+
# Session
158+
Session.vim
159+
Sessionx.vim
160+
161+
# Temporary
162+
.netrwhist
163+
*~
164+
# Auto-generated tag files
165+
tags
166+
# Persistent undo
167+
[._]*.un~
168+
169+
170+
############################################################
171+
# Android #
172+
############################################################
173+
174+
# Built application files
175+
*.apk
176+
*.aar
177+
*.ap_
178+
*.aab
179+
180+
# Files for the ART/Dalvik VM
181+
*.dex
182+
183+
# Java class files
184+
*.class
185+
186+
# Generated files
187+
bin/
188+
gen/
189+
out/
190+
# Uncomment the following line in case you need and you don't have the release build type files in your app
191+
# release/
192+
193+
# Gradle files
194+
.gradle/
195+
build/
196+
197+
# Local configuration file (sdk path, etc)
198+
local.properties
199+
200+
# Proguard folder generated by Eclipse
201+
proguard/
202+
203+
# Log Files
204+
*.log
205+
206+
# Android Studio Navigation editor temp files
207+
.navigation/
208+
209+
# Android Studio captures folder
210+
captures/
211+
212+
# IntelliJ
213+
*.iml
214+
.idea/workspace.xml
215+
.idea/tasks.xml
216+
.idea/gradle.xml
217+
.idea/assetWizardSettings.xml
218+
.idea/dictionaries
219+
.idea/libraries
220+
# Android Studio 3 in .gitignore file.
221+
.idea/caches
222+
.idea/modules.xml
223+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
224+
.idea/navEditor.xml
225+
226+
# Keystore files
227+
# Uncomment the following lines if you do not want to check your keystore files in.
228+
#*.jks
229+
#*.keystore
230+
231+
# External native build folder generated in Android Studio 2.2 and later
232+
.externalNativeBuild
233+
.cxx/
234+
235+
# Google Services (e.g. APIs or Firebase)
236+
# google-services.json
237+
238+
# Freeline
239+
freeline.py
240+
freeline/
241+
freeline_project_description.json
242+
243+
# fastlane
244+
fastlane/report.xml
245+
fastlane/Preview.html
246+
fastlane/screenshots
247+
fastlane/test_output
248+
fastlane/readme.md
249+
250+
# Version control
251+
vcs.xml
252+
253+
# lint
254+
lint/intermediates/
255+
lint/generated/
256+
lint/outputs/
257+
lint/tmp/
258+
# lint/reports/
259+
260+
261+
262+
############################################################
263+
# Xcode. #
264+
############################################################
265+
#
266+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
267+
268+
## User settings
269+
xcuserdata/
270+
271+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
272+
*.xcscmblueprint
273+
*.xccheckout
274+
275+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
276+
build/
277+
DerivedData/
278+
*.moved-aside
279+
*.pbxuser
280+
!default.pbxuser
281+
*.mode1v3
282+
!default.mode1v3
283+
*.mode2v3
284+
!default.mode2v3
285+
*.perspectivev3
286+
!default.perspectivev3
287+
288+
## Gcc Patch
289+
/*.gcno

01-first-chapter/assets/.keep

Whitespace-only changes.

01-first-chapter/projects/complete/.keep

Whitespace-only changes.

01-first-chapter/projects/starter/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)