Skip to content

Commit

Permalink
initial save
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurang-1402 committed Aug 18, 2023
0 parents commit 97ca4c3
Show file tree
Hide file tree
Showing 63 changed files with 9,095 additions and 0 deletions.
350 changes: 350 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,350 @@
# C
## Prerequisites
*.d

## Object files
*.o
*.ko
*.obj
*.elf

## Linker output
*.ilk
### (reserved) *.map
*.exp

## Precompiled Headers
*.gch
*.pch

## Libraries
*.lib
### (reserved) *.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
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf



# C++
## Prerequisites
*.dpp

## Compiled Object files
*.slo

## Fortran module files
*.smod

## Compiled Static libraries
*.lai



# Python
## Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

## Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
### (reserved) lib/
### (reserved) lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

## 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.xmlspeak
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

## Translations
*.mo
*.pot

## Django stuff:
*.log
local_settings.py
db.sqlite3

## 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

## SageMath parsed files
*.sage.py

## Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

## Spyder project settings
.spyderproject
.spyproject

## Rope project settings
.ropeproject

## mkdocs documentation
/site

## mypy
.mypy_cache/



# Java
## Compiled class file
*.class

## Log file
*.log

## BlueJ files
*.ctxt

## Mobile Tools for Java (J2ME)
.mtj.tmp/

## Package Files
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

## virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*



# Android
## Built application files
*.apk
*.ap_

## Files for the ART/Dalvik VM
*.dex

## Generated files
bin/
gen/
out/

## Gradle files
.gradle/
build/

## Local configuration file (sdk path, etc)
local.properties

## Proguard folder generated by Eclipse
proguard/

## Android Studio Navigation editor temp files
.navigation/

## Android Studio captures folder
captures/

## IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
.idea/caches

## Keystore files
# Uncomment the following line if you do not want to check your keystore files in.
*.jks

## External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

## Google Services (e.g. APIs or Firebase)
google-services.json

## Freeline
freeline.py
freeline/
freeline_project_description.json

## fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md



# CUDA
*.i
*.ii
*.gpu
*.ptx
*.cubin
*.fatbin



# CMAKE
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake



# QT
## Qt-es
object_script.*.Release
object_script.*.Debug
*_plugin_import.cpp
/.qmake.cache
/.qmake.stash
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.moc
moc_*.cpp
moc_*.h
qrc_*.cpp
ui_*.h
*.qmlc
*.jsc
### (reserved) Makefile*
*build-*

## Qt unit tests
target_wrapper.*

## QtCreator
*.autosave

## QtCreator Qml
*.qmlproject.user
*.qmlproject.user.*

## QtCreator CMake
CMakeLists.txt.user*



# ETC.
## Ignore generated docs
*.dox
*.wikidoc

## doxygen
doc/

## IDE: vscode
.vscode/

## IDE: Emacs
.#*

## IDE: VIM
*.swp

## Setting files
*.settings


build

install

log
Loading

0 comments on commit 97ca4c3

Please sign in to comment.