-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
767 lines (636 loc) · 12.7 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
# 2017 classes =================================================
2017/cs20si/data/text8
2017/cs20si/data/MNIST_data/
2017/cs20si/data/MNIST_data/
2017/cs20si/data/notMNIST-to-MNIST/
2017/cs20si/assignments/style_transfer/outputs/
2017/cs20si/assignments/style_transfer/checkpoints/
2017/cs20si/assignments/style_transfer/graphs/
2017/cs20si/assignments/style_transfer/content/
2017/cs20si/assignments/style_transfer/styles/
2017/cs224n/assignment1/utils/datasets/stanfordSentimentTreebank/
2017/cs224n/assignment1/utils/datasets/glove.6B*
2017/cs224n/assignment1/q4_*.png
2017/cs224n/assignment1/q4_*.txt
2017/udacity-ml/*/data
2017/homlwsltf/
2017/educator-statistics/
2017/educator-statistics/
# 2016 classes ============================================================
2016/audit/
# 2015 classes ============================================================
2015/audit/
2015/calcsing_007/
# custom ============================================================
lectures/
*.zip
*.pdf
*.tsv
*.npz
*.mat
*.Rdata
*.RData
*.mp4
*.mp3
*.m4a
*.wav
# R ============================================================
# History files
.Rhistory
.Rapp.history
# Session Data files
.RData
# Example code in package build process
*-Ex.R
# Output files from R CMD build
/*.tar.gz
# Output files from R CMD check
/*.Rcheck/
# RStudio files
.Rproj.user/
# produced vignettes
vignettes/*.html
vignettes/*.pdf
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth
# knitr and R markdown default cache directories
/*_cache/
/cache/
# Temporary files created by R markdown
*.utf8.md
*.knit.md
# c++ ============================================================
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
# c ============================================================
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
modules.order
Module.symvers
Mkfile.old
dkms.conf
# python ============================================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# dotenv
.env
# virtualenv
.venv/
venv/
ENV/
# Spyder project settings
.spyderproject
# Rope project settings
.ropeproject
*.npy
# java ============================================================
*.class
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.ear
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# scala ============================================================
*.class
*.log
# sbt specific
.cache
.history
.lib/
dist/*
target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/
# Scala-IDE specific
.scala_dependencies
.worksheet
# ENSIME specific
.ensime_cache/
.ensime
# R ============================================================
# History files
.Rhistory
.Rapp.history
# Session Data files
.RData
# Example code in package build process
*-Ex.R
# Output files from R CMD build
/*.tar.gz
# Output files from R CMD check
/*.Rcheck/
# RStudio files
.Rproj.user/
# produced vignettes
vignettes/*.html
vignettes/*.pdf
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth
# knitr and R markdown default cache directories
/*_cache/
/cache/
# Temporary files created by R markdown
*.utf8.md
*.knit.md
# obj-c ============================================================
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/
DerivedData/
## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
## Other
*.moved-aside
*.xcuserstate
## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode
iOSInjectionProject/
# swift ============================================================
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/
DerivedData/
## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
## Other
*.moved-aside
*.xcuserstate
## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
## Playgrounds
timeline.xctimeline
playground.xcworkspace
# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/
# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
# R ============================================================
# History files
.Rhistory
.Rapp.history
# Session Data files
.RData
# Example code in package build process
*-Ex.R
# Output files from R CMD build
/*.tar.gz
# Output files from R CMD check
/*.Rcheck/
# RStudio files
.Rproj.user/
# produced vignettes
vignettes/*.html
vignettes/*.pdf
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth
# knitr and R markdown default cache directories
/*_cache/
/cache/
# Temporary files created by R markdown
*.utf8.md
*.knit.md
# ides ============================================================
# Eclipse
.classpath
.project
.settings/
# Intellij
.idea/
*.iml
*.iws
# Mac
.DS_Store
# Maven
log/
target/
# octocat ============================================================
# https://gist.github.com/octocat/9257657
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages ============================================================
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# Logs and databases ============================================================
*.log
*.sql
*.sqlite
# OS generated files ============================================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# virtualbox files ============================================================
*.ova
# ROS ============================================================
.pydevproject
cmake_install.cmake
build/
bin/
lib/
msg_gen/
srv_gen/
msg/*Action.msg
msg/*ActionFeedback.msg
msg/*ActionGoal.msg
msg/*ActionResult.msg
msg/*Feedback.msg
msg/*Goal.msg
msg/*Result.msg
msg/_*.py
# Generated by dynamic reconfigure
*.cfgc
/cfg/cpp/
/cfg/*.py
# Ignore generated docs
*.dox
*.wikidoc
# eclipse stuff
.project
.cproject
# qcreator stuff
CMakeLists.txt.user
srv/_*.py
*.pcd
*.pyc
qtcreator-*
*.user
/planning/cfg
/planning/docs
/planning/src
*~
# Emacs
.#*
# Catkin custom files
CATKIN_IGNORE
# Lines that start with '#' are comments.
# ignore objects and libraries
*.o
*.a
*.d
*.so
*.lo
*.la
# ignore python compiled files:
*.pyc
# ignore gcov files
*.gcda
*.gcno
*.gcov
# ignore tag files
tags
# we don't care about vi swp files
*.swp
# we also don't care about emacs swap files
*~
.backup-*
# nothing in the root directory should be checked in.
root
# setup.bash is a generated file.
setup.bash
config.mk
# gcov files
*.gcno
*.gcov
# Testing output files
*.out
.build-version
.rospack_cache
*.tar.gz
3rdparty/cmake/build
3rdparty/cmake/cmake
3rdparty/cmake/cmake-2.6.0
3rdparty/numpy/build
3rdparty/numpy/numpy
3rdparty/numpy/src
3rdparty/tinyxml/build
3rdparty/xmlrpc++/build
bin/rosinstall
bin/roslaunch
bin/rosmap
bin/rosmaster
bin/rospack
bin/rosplay
bin/rosprereq
bin/rosrecord
bin/rostest
bin/svnmerge
core/experimental/roslisp/build
core/experimental/roslisp/lib
core/genmsg_cpp/build
core/genmsg_cpp/genmsg
core/genmsg_cpp/genmsg_lisp
core/genmsg_cpp/genmsgtest
core/genmsg_cpp/gensrv
core/genmsg_cpp/gensrv_lisp
core/genmsg_cpp/submsgs
core/rosconsole/build
core/rosconsole/examples/example
core/roscpp/build
core/roscpp/msg/cpp
core/roscpp/msg/lisp
core/roscpp/src/roscpp
core/roscpp/srv/cpp
core/roscpp/srv/lisp
core/rosout/build
core/rosout/rosout
core/rospack_test/build
core/rospy/build
core/rostime/build
core/rostools/build
core/rostools/msg/cpp
core/rostools/msg/lisp
core/rostools/src/rostools/msg
core/roslib/build
core/roslib/msg/cpp
core/roslib/msg/lisp
core/roslib/src/rostools/msg
demos/roscpp_demo/bin
demos/roscpp_demo/build
demos/rospy_demo/build
demos/rospy_demo/msg/cpp
demos/rospy_demo/msg/lisp
demos/rospy_demo/src/rospy_demo/msg
param/rosparam/build
param/shparam/build
param/shparam/shparam
param/xmlparam/build
param/xmlparam/xmlparam
std_msgs/build
std_msgs/msg/cpp
std_msgs/msg/lisp
std_msgs/src
std_srvs/build
std_srvs/src
std_srvs/srv/cpp
std_srvs/srv/lisp
test/gtest/build
test/gtest/gtest
test/gtest/gtest-1.0.1
test/param_setget/depend
test/param_setget/param_setget
test/performance/roscpp_msg_serdes/build
test/performance/roscpp_msg_serdes/pointcloud_serdes
test/rostest/build
test/test_ros/build
test/test_roscpp/bin
test/test_roscpp/build
test/test_roslaunch/build
test/test_ros/msg/cpp
test/test_ros/msg/lisp
test/test_rospy/build
test/test_rospy/msg/cpp
test/test_rospy/msg/lisp
test/test_rospy/src/test_rospy/msg
test/test_rospy/src/test_rospy/srv
test/test_rospy/srv/cpp
test/test_rospy/srv/lisp
test/test_ros/src/test_ros/msg
tools/rosinstall/build
tools/rosinstall/rosinstall
tools/roslaunch/build
tools/rosmap/depend
tools/rospack/depend
tools/rosprereq/depend
tools/rosrecord/bin
tools/rosrecord/build
tools/vizdeps/deps.gv
tools/vizdeps/deps.pdf
tutorials/roscpp_tutorials/bin
tutorials/roscpp_tutorials/build
tutorials/roscpp_tutorials/src
tutorials/roscpp_tutorials/srv/cpp
tutorials/roscpp_tutorials/srv/lisp
tutorials/rospy_tutorials/build
tutorials/rospy_tutorials/src
tutorials/rospy_tutorials/srv/cpp
tutorials/rospy_tutorials/srv/lisp
util/rosthread/build
.build_version
.rosgcov_files
3rdparty/gtest/gtest
/core/genmsg_cpp/genmsg_java
/core/genmsg_cpp/genmsg_oct
/core/genmsg_cpp/gensrv_java
/core/genmsg_cpp/gensrv_oct
/core/roslib/src/roslib