mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-12 22:10:25 +00:00
chore: update licenses and gitignores [skip ci] (#11158)
… by simply running `make generate-license` and `make generate-gitignore` (last time: 9d2fabc7d3)
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11158
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Reviewed-by: Mathieu Fenniak <mfenniak@noreply.codeberg.org>
Co-authored-by: Robert Wolff <mahlzahn@posteo.de>
Co-committed-by: Robert Wolff <mahlzahn@posteo.de>
This commit is contained in:
parent
607f2bb8d7
commit
d467c2bed7
169 changed files with 4710 additions and 348 deletions
31
options/gitignore/AdventureGameStudio
Normal file
31
options/gitignore/AdventureGameStudio
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Built things
|
||||
_Debug/
|
||||
Compiled/
|
||||
|
||||
# AudioCache can be rebuilt from sources
|
||||
AudioCache/
|
||||
|
||||
# Lockfile
|
||||
_OpenInEditor.lock
|
||||
|
||||
# User settings
|
||||
Game.agf.user
|
||||
*.crm.user
|
||||
|
||||
# Backups
|
||||
Game.agf.bak
|
||||
backup_acsprset.spr
|
||||
|
||||
# Memory dumps
|
||||
*.dmp
|
||||
|
||||
# Temporary files
|
||||
# temporarily created during sprite or room background compression
|
||||
~aclzw.tmp
|
||||
# temporary, main game data, before getting packed into exe
|
||||
game28.dta
|
||||
# temporary build of the game before being moved to Compiled/ folder
|
||||
*.exe
|
||||
|
||||
# Log files
|
||||
warnings.log
|
||||
|
|
@ -29,7 +29,7 @@ CASS.ini
|
|||
*.gzlc
|
||||
|
||||
## gitignore reference sites
|
||||
# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files
|
||||
# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring
|
||||
# https://git-scm.com/docs/gitignore
|
||||
# https://help.github.com/articles/ignoring-files/
|
||||
|
||||
|
|
|
|||
|
|
@ -12,8 +12,9 @@ local.properties
|
|||
captures/
|
||||
.externalNativeBuild/
|
||||
.cxx/
|
||||
*.aab
|
||||
*.apk
|
||||
output.json
|
||||
output-metadata.json
|
||||
|
||||
# IntelliJ
|
||||
*.iml
|
||||
|
|
|
|||
28
options/gitignore/Angular
Normal file
28
options/gitignore/Angular
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Angular specific
|
||||
/dist/
|
||||
/out-tsc/
|
||||
/tmp/
|
||||
/coverage/
|
||||
/e2e/test-output/
|
||||
/.angular/
|
||||
.angular/
|
||||
|
||||
# Node modules and dependency files
|
||||
/node_modules/
|
||||
/package-lock.json
|
||||
/yarn.lock
|
||||
|
||||
# Environment files
|
||||
/.env
|
||||
|
||||
# Angular CLI and build artefacts
|
||||
/.angular-cli.json
|
||||
/.ng/
|
||||
|
||||
# TypeScript cache
|
||||
*.tsbuildinfo
|
||||
|
||||
# Logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
|
@ -1 +1,2 @@
|
|||
*.retry
|
||||
.ansible/
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
*.jar
|
||||
*.exe
|
||||
*.msi
|
||||
*.deb
|
||||
*.zip
|
||||
*.tgz
|
||||
*.log
|
||||
|
|
|
|||
31
options/gitignore/AutomationStudio
Normal file
31
options/gitignore/AutomationStudio
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# gitignore template for B&R Automation Studio (AS) 4
|
||||
# website: https://www.br-automation.com/en-us/products/software/automation-software/automation-studio/
|
||||
|
||||
# AS temporary directories
|
||||
Binaries/
|
||||
Diagnosis/
|
||||
Temp/
|
||||
TempObjects/
|
||||
|
||||
# AS transfer files
|
||||
*artransfer.br
|
||||
*arTrsfmode.nv
|
||||
|
||||
# 'ignored' directory
|
||||
ignored/
|
||||
|
||||
# ARNC0ext
|
||||
*arnc0ext.br
|
||||
|
||||
# AS File types
|
||||
*.bak
|
||||
*.isopen
|
||||
*.orig
|
||||
*.log
|
||||
*.asar
|
||||
*.csvlog*
|
||||
*.set
|
||||
!**/Physical/**/*.set
|
||||
|
||||
# RevInfo variables
|
||||
*RevInfo.var
|
||||
|
|
@ -31,7 +31,9 @@ autom4te.cache
|
|||
|
||||
# https://www.gnu.org/software/libtool/
|
||||
|
||||
/libtool
|
||||
/ltmain.sh
|
||||
.libs/
|
||||
|
||||
# http://www.gnu.org/software/texinfo
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
/bazel-*
|
||||
|
||||
# Directories for the Bazel IntelliJ plugin containing the generated
|
||||
# IntelliJ project files and plugin configuration. Seperate directories are
|
||||
# IntelliJ project files and plugin configuration. Separate directories are
|
||||
# for the IntelliJ, Android Studio and CLion versions of the plugin.
|
||||
/.ijwb/
|
||||
/.aswb/
|
||||
|
|
|
|||
|
|
@ -50,3 +50,6 @@ modules.order
|
|||
Module.symvers
|
||||
Mkfile.old
|
||||
dkms.conf
|
||||
|
||||
# debug information files
|
||||
*.dwo
|
||||
|
|
|
|||
|
|
@ -11,10 +11,18 @@
|
|||
*.gch
|
||||
*.pch
|
||||
|
||||
# Linker files
|
||||
*.ilk
|
||||
|
||||
# Debugger Files
|
||||
*.pdb
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.so.*
|
||||
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
|
|
@ -30,3 +38,32 @@
|
|||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
|
||||
# Build directories
|
||||
build/
|
||||
Build/
|
||||
build-*/
|
||||
|
||||
# CMake generated files
|
||||
CMakeFiles/
|
||||
CMakeCache.txt
|
||||
cmake_install.cmake
|
||||
Makefile
|
||||
install_manifest.txt
|
||||
compile_commands.json
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.log
|
||||
*.bak
|
||||
*.swp
|
||||
|
||||
# vcpkg
|
||||
vcpkg_installed/
|
||||
|
||||
# debug information files
|
||||
*.dwo
|
||||
|
||||
# test output & cache
|
||||
Testing/
|
||||
.cache/
|
||||
|
|
@ -10,3 +10,10 @@ compile_commands.json
|
|||
CTestTestfile.cmake
|
||||
_deps
|
||||
CMakeUserPresets.json
|
||||
|
||||
# CLion
|
||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#cmake-build-*
|
||||
|
|
|
|||
24
options/gitignore/ColdBox
Normal file
24
options/gitignore/ColdBox
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Servelet Ignores
|
||||
WEB-INF
|
||||
|
||||
# Engines + Database + CBFS + Secrets
|
||||
.tmp/**
|
||||
.env
|
||||
.engine/**
|
||||
.cbfs/**
|
||||
|
||||
# Logs + Test Results
|
||||
logs/**
|
||||
tests/results/**
|
||||
|
||||
## Ignored Dependencies
|
||||
effective-pom.xml
|
||||
/coldbox/**
|
||||
/testbox/**
|
||||
/modules/**
|
||||
/lib/java/**
|
||||
|
||||
# NPM JS Assets (If applicable)
|
||||
**/node_modules/*
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
2
options/gitignore/Cursor
Normal file
2
options/gitignore/Cursor
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
.cursorignore
|
||||
.cursorindexingignore
|
||||
|
|
@ -16,9 +16,11 @@ doc/api/
|
|||
|
||||
# Avoid committing generated Javascript files:
|
||||
*.dart.js
|
||||
*.info.json # Produced by the --dump-info flag.
|
||||
*.js # When generated by dart2js. Don't specify *.js if your
|
||||
# project includes source files written in JavaScript.
|
||||
# Produced by the --dump-info flag.
|
||||
*.info.json
|
||||
# When generated by dart2js. Don't specify *.js if your
|
||||
# project includes source files written in JavaScript.
|
||||
*.js
|
||||
*.js_
|
||||
*.js.deps
|
||||
*.js.map
|
||||
|
|
|
|||
|
|
@ -68,6 +68,7 @@
|
|||
*.projdata
|
||||
*.tvsconfig
|
||||
*.dsk
|
||||
*.dsv
|
||||
|
||||
# Delphi history and backups
|
||||
__history/
|
||||
|
|
|
|||
57
options/gitignore/Dotnet
Normal file
57
options/gitignore/Dotnet
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
## A streamlined .gitignore for modern .NET projects
|
||||
## including temporary files, build results, and
|
||||
## files generated by popular .NET tools. If you are
|
||||
## developing with Visual Studio, the VS .gitignore
|
||||
## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
|
||||
## has more thorough IDE-specific entries.
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
[Ww][Ii][Nn]32/
|
||||
[Aa][Rr][Mm]/
|
||||
[Aa][Rr][Mm]64/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Ll]og/
|
||||
[Ll]ogs/
|
||||
|
||||
# .NET Core
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
artifacts/
|
||||
|
||||
# ASP.NET Scaffolding
|
||||
ScaffoldingReadMe.txt
|
||||
|
||||
# NuGet Packages
|
||||
*.nupkg
|
||||
# NuGet Symbol Packages
|
||||
*.snupkg
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
|
||||
# Others
|
||||
~$*
|
||||
*~
|
||||
CodeCoverage/
|
||||
|
||||
# MSBuild Binary and Structured Log
|
||||
*.binlog
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
# NUnit
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
nunit-*.xml
|
||||
6
options/gitignore/Dotter
Normal file
6
options/gitignore/Dotter
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# local files are for host-specific overrides
|
||||
.dotter/local.toml
|
||||
|
||||
# ignore caches
|
||||
.dotter/cache.toml
|
||||
.dotter/cache
|
||||
|
|
@ -25,12 +25,15 @@
|
|||
/web/vendor
|
||||
/web/core
|
||||
/web/modules/README.txt
|
||||
/web/modules/contrib
|
||||
/web/profiles/README.txt
|
||||
/web/profiles/contrib
|
||||
/web/sites/development.services.yml
|
||||
/web/sites/example.settings.local.php
|
||||
/web/sites/example.sites.php
|
||||
/web/sites/README.txt
|
||||
/web/themes/README.txt
|
||||
/web/themes/contrib
|
||||
/web/.csslintrc
|
||||
/web/.editorconfig
|
||||
/web/.eslintignore
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ local.properties
|
|||
|
||||
# Annotation Processing
|
||||
.apt_generated/
|
||||
.apt_generated_test/
|
||||
.apt_generated_tests/
|
||||
|
||||
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||
.cache-main
|
||||
|
|
|
|||
|
|
@ -2,7 +2,13 @@
|
|||
*.elc
|
||||
|
||||
# Packaging
|
||||
.cask
|
||||
.cask/
|
||||
.eask/
|
||||
.eldev/
|
||||
.keg/
|
||||
|
||||
# Built distribution
|
||||
dist/
|
||||
|
||||
# Backup files
|
||||
*~
|
||||
|
|
|
|||
|
|
@ -47,3 +47,5 @@ flycheck_*.el
|
|||
# network security
|
||||
/network-security.data
|
||||
|
||||
# undo-tree
|
||||
*.~undo-tree~
|
||||
|
|
|
|||
32
options/gitignore/Expo
Normal file
32
options/gitignore/Expo
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# .gitignore template for Expo
|
||||
# website: https://expo.dev/
|
||||
# docs: https://docs.expo.dev/workflow/expo-cli/
|
||||
#
|
||||
# Rationale:
|
||||
# node_modules/ is always ignored
|
||||
# .expo/, .expo-shared/ are Expo’s local state and project-settings cache (see docs)
|
||||
# Metro caches/logs are *.expo, *.tunnel, *.cache, *.tmp, *.log
|
||||
|
||||
# Node modules
|
||||
node_modules/
|
||||
|
||||
# Expo local state and caches
|
||||
.expo/ # runtime state (Metro bundler, dev-client data, tunnels)
|
||||
.expo-shared/ # shared project settings (app.json edits, etc.)
|
||||
|
||||
# Metro bundler caches/logs
|
||||
*.expo # generic Expo temp files
|
||||
*.tunnel # Expo DevTools tunnels
|
||||
*.cache # Metro cache folder
|
||||
*.tmp # temp files created during bundling
|
||||
*.log # build or Metro logs
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Package manager logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
28
options/gitignore/Firebase
Normal file
28
options/gitignore/Firebase
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Firebase build and deployment files
|
||||
/firebase-debug.log
|
||||
/firebase-debug.*.log
|
||||
.firebaserc
|
||||
|
||||
# Firebase Hosting
|
||||
/firebase.json
|
||||
*.cache
|
||||
hosting/.cache
|
||||
|
||||
# Firebase Functions
|
||||
/functions/node_modules/
|
||||
/functions/.env
|
||||
/functions/package-lock.json
|
||||
|
||||
# Firebase Emulators
|
||||
/firebase-*.zip
|
||||
/.firebase/
|
||||
/emulator-ui/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Environment files (local configs)
|
||||
/.env.*
|
||||
|
|
@ -11,10 +11,18 @@
|
|||
*.gch
|
||||
*.pch
|
||||
|
||||
# Linker files
|
||||
*.ilk
|
||||
|
||||
# Debugger Files
|
||||
*.pdb
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.so.*
|
||||
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
|
|
@ -30,3 +38,32 @@
|
|||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
|
||||
# Build directories
|
||||
build/
|
||||
Build/
|
||||
build-*/
|
||||
|
||||
# CMake generated files
|
||||
CMakeFiles/
|
||||
CMakeCache.txt
|
||||
cmake_install.cmake
|
||||
Makefile
|
||||
install_manifest.txt
|
||||
compile_commands.json
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.log
|
||||
*.bak
|
||||
*.swp
|
||||
|
||||
# vcpkg
|
||||
vcpkg_installed/
|
||||
|
||||
# debug information files
|
||||
*.dwo
|
||||
|
||||
# test output & cache
|
||||
Testing/
|
||||
.cache/
|
||||
4
options/gitignore/Gleam
Normal file
4
options/gitignore/Gleam
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
*.beam
|
||||
*.ez
|
||||
/build
|
||||
erl_crash.dump
|
||||
|
|
@ -11,8 +11,11 @@
|
|||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
# Code coverage profiles and other test artifacts
|
||||
*.out
|
||||
coverage.*
|
||||
*.coverprofile
|
||||
profile.cov
|
||||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
||||
|
|
@ -23,3 +26,7 @@ go.work.sum
|
|||
|
||||
# env file
|
||||
.env
|
||||
|
||||
# Editor/IDE
|
||||
# .idea/
|
||||
# .vscode/
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
# Godot 4+ specific ignores
|
||||
.godot/
|
||||
.nomedia
|
||||
|
||||
# Godot-specific ignores
|
||||
.import/
|
||||
export.cfg
|
||||
export_presets.cfg
|
||||
export_credentials.cfg
|
||||
*.tmp
|
||||
|
||||
# Imported translations (automatically generated from CSV files)
|
||||
*.translation
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.gradle
|
||||
**/build/
|
||||
!src/**/build/
|
||||
!**/src/**/build/
|
||||
|
||||
# Ignore Gradle GUI config
|
||||
gradle-app.setting
|
||||
|
|
|
|||
50
options/gitignore/HIP
Normal file
50
options/gitignore/HIP
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
# HIP.gitignore
|
||||
# GitHub gitignore template for AMD HIP (ROCm) projects
|
||||
#
|
||||
# Reference:
|
||||
# Official AMD ROCm HIP .gitignore: https://github.com/ROCm/hip/blob/amd-staging/.gitignore
|
||||
|
||||
# 1. Build directories and files
|
||||
/build/ # common build directory
|
||||
/CMakeFiles/ # CMake internal files
|
||||
/CMakeCache.txt # CMake cache file
|
||||
/Makefile # autogenerated Makefile
|
||||
/cmake_install.cmake # install script
|
||||
/install_manifest.txt # install manifest list
|
||||
*.ninja-dep # Ninja dependency files
|
||||
*.ninja_log # Ninja log files
|
||||
meson-logs/ # Meson log directory
|
||||
|
||||
# 2. Compilation outputs and intermediates
|
||||
*.o # object files
|
||||
*.obj # Windows object files
|
||||
*.so # shared libraries
|
||||
*.a # static librarie
|
||||
*.d # dependency files
|
||||
*.gch # precompiled headers
|
||||
*.ii # preprocessed output
|
||||
*.ii.cpp # C++ preprocessed output
|
||||
*.out # generic executable outputs
|
||||
*.exe # Windows executables
|
||||
|
||||
# 3. HIP/ROCm specific binaries and intermediates
|
||||
*.hsaco # ROCm compiled binary
|
||||
*.s # assembly output
|
||||
*.kernels.cpp # autogenerated kernel sources
|
||||
*.hip.cpp.* # hipcc intermediate outputs
|
||||
|
||||
# 4. Official sample binaries and tutorial outputs
|
||||
bin/hipInfo # sample binary
|
||||
bin/hipBusBandwidth # sample binary
|
||||
bin/hipDispatchLatency # sample binary
|
||||
bin/hipify-clang # sample tool
|
||||
samples/**/*.out # tutorial outputs
|
||||
samples/**/*.code # ISA/code dumps
|
||||
samples/**/*.hsaco # compiled binaries
|
||||
samples/**/*.co # kernel code outputs
|
||||
|
||||
# 5. Tags, logs and test outputs
|
||||
tags # ctags index
|
||||
*.log # log files
|
||||
/tests_output/ # custom test output directory
|
||||
/samples_output/ # custom sample output directory
|
||||
3
options/gitignore/Haxe
Normal file
3
options/gitignore/Haxe
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
.haxelib/
|
||||
.haxelsp/recording/
|
||||
dump/
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||
# Covers JetBrains IDEs: IntelliJ, GoLand, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||
|
||||
# User-specific stuff
|
||||
|
|
@ -63,6 +63,7 @@ atlassian-ide-plugin.xml
|
|||
|
||||
# SonarLint plugin
|
||||
.idea/sonarlint/
|
||||
.idea/sonarlint.xml # see https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119
|
||||
|
||||
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||
com_crashlytics_export_strings.xml
|
||||
|
|
@ -70,8 +71,16 @@ crashlytics.properties
|
|||
crashlytics-build.properties
|
||||
fabric.properties
|
||||
|
||||
# Editor-based Rest Client
|
||||
# Editor-based HTTP Client
|
||||
.idea/httpRequests
|
||||
http-client.private.env.json
|
||||
|
||||
# Android studio 3.1+ serialized cache file
|
||||
.idea/caches/build_file_checksums.ser
|
||||
|
||||
# Apifox Helper cache
|
||||
.idea/.cache/.Apifox_Helper
|
||||
.idea/ApifoxUploaderProjectSetting.xml
|
||||
|
||||
# Github Copilot persisted session migrations, see: https://github.com/microsoft/copilot-intellij-feedback/issues/712#issuecomment-3322062215
|
||||
.idea/**/copilot.data.migration.*.xml
|
||||
|
|
|
|||
|
|
@ -21,4 +21,8 @@ docs/site/
|
|||
# It records a fixed state of all packages used by the project. As such, it should not be
|
||||
# committed for packages, but should be committed for applications that require a static
|
||||
# environment.
|
||||
Manifest.toml
|
||||
Manifest*.toml
|
||||
|
||||
# File generated by the Preferences package to store local preferences
|
||||
LocalPreferences.toml
|
||||
JuliaLocalPreferences.toml
|
||||
|
|
|
|||
|
|
@ -8,5 +8,9 @@
|
|||
profile_default/
|
||||
ipython_config.py
|
||||
|
||||
# Jupyter lab virtual documents
|
||||
# https://jupyterlab-lsp.readthedocs.io/en/2.x/Configuring.html#virtual_documents_dir
|
||||
.virtual_documents/
|
||||
|
||||
# Remove previous ipynb_checkpoints
|
||||
# git rm -r .ipynb_checkpoints/
|
||||
|
|
|
|||
40
options/gitignore/Katalon
Normal file
40
options/gitignore/Katalon
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
# Katalon Test Suite
|
||||
# Compiled class file
|
||||
*.class
|
||||
*.swp
|
||||
output
|
||||
!output/.gitkeep
|
||||
build
|
||||
|
||||
Libs/TempTestCase*
|
||||
Libs/TempTestSuite*
|
||||
bin/lib/TempTestCase*
|
||||
Reports/
|
||||
\.classpath
|
||||
\.project
|
||||
\.settings/
|
||||
bin/lib/
|
||||
Libs/
|
||||
.svn/
|
||||
.gradle
|
||||
|
||||
|
||||
# Log file
|
||||
*.log
|
||||
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
|
|
@ -8,14 +8,19 @@
|
|||
*.kicad_pcb-bak
|
||||
*.kicad_sch-bak
|
||||
*-backups
|
||||
*.kicad_prl
|
||||
*.sch-bak
|
||||
*-cache*
|
||||
*-bak
|
||||
*-bak*
|
||||
*~
|
||||
~*
|
||||
_autosave-*
|
||||
\#auto_saved_files\#
|
||||
*.tmp
|
||||
*-save.pro
|
||||
*-save.kicad_pcb
|
||||
fp-info-cache
|
||||
~*.lck
|
||||
\#auto_saved_files#
|
||||
|
||||
# Netlist files (exported from Eeschema)
|
||||
*.net
|
||||
|
|
@ -27,3 +32,9 @@ fp-info-cache
|
|||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
|
||||
# Archived Backups (KiCad 6.0)
|
||||
**/*-backups/*.zip
|
||||
|
||||
# Local project settings
|
||||
*.kicad_prl
|
||||
|
|
|
|||
|
|
@ -22,3 +22,6 @@
|
|||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
|
||||
# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects
|
||||
.kotlin/
|
||||
6
options/gitignore/LangChain
Normal file
6
options/gitignore/LangChain
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# gitignore template for LangChain products, e.g., LangGraph, LangSmith
|
||||
# website: https://www.langchain.com/
|
||||
# website: https://www.langchain.com/langgraph
|
||||
|
||||
# LangGraph
|
||||
.langgraph_api/
|
||||
|
|
@ -21,3 +21,10 @@ Homestead.yaml
|
|||
Homestead.json
|
||||
/.vagrant
|
||||
.phpunit.result.cache
|
||||
|
||||
/public/build
|
||||
/storage/pail
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
auth.json
|
||||
|
|
|
|||
16
options/gitignore/Lefthook
Normal file
16
options/gitignore/Lefthook
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# https://lefthook.dev/configuration/#config-file-name
|
||||
/.lefthook-local.json
|
||||
/.lefthook-local.toml
|
||||
/.lefthook-local.yaml
|
||||
/.lefthook-local.yml
|
||||
/lefthook-local.json
|
||||
/lefthook-local.toml
|
||||
/lefthook-local.yaml
|
||||
/lefthook-local.yml
|
||||
/.config/lefthook-local.json
|
||||
/.config/lefthook-local.toml
|
||||
/.config/lefthook-local.yaml
|
||||
/.config/lefthook-local.yml
|
||||
|
||||
# https://lefthook.dev/configuration/source_dir_local.html
|
||||
/.lefthook-local/
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||
.fuse_hidden*
|
||||
|
||||
# KDE directory preferences
|
||||
# Metadata left by Dolphin file manager, which comes with KDE Plasma
|
||||
.directory
|
||||
|
||||
# Linux trash folder which might appear on any partition or disk
|
||||
|
|
@ -11,3 +11,6 @@
|
|||
|
||||
# .nfs files are created when an open file is removed but is still being accessed
|
||||
.nfs*
|
||||
|
||||
# Log files created by default by the nohup command
|
||||
nohup.out
|
||||
|
|
|
|||
14
options/gitignore/Luau
Normal file
14
options/gitignore/Luau
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# A fast, small, safe, gradually typed embeddable scripting language derived from Lua
|
||||
#
|
||||
# https://github.com/luau-lang/luau
|
||||
# https://luau.org/
|
||||
|
||||
# Code coverage
|
||||
coverage.out
|
||||
|
||||
# Profiling
|
||||
profile.out
|
||||
profile.svg
|
||||
|
||||
# Time trace
|
||||
trace.json
|
||||
|
|
@ -1,31 +1,33 @@
|
|||
# Windows default autosave extension
|
||||
# Autosave files
|
||||
*.asv
|
||||
|
||||
# OSX / *nix default autosave extension
|
||||
*.m~
|
||||
*.autosave
|
||||
*.slx.r*
|
||||
*.mdl.r*
|
||||
|
||||
# Compiled MEX binaries (all platforms)
|
||||
# Derived content-obscured files
|
||||
*.p
|
||||
|
||||
# Compiled MEX files
|
||||
*.mex*
|
||||
|
||||
# Packaged app and toolbox files
|
||||
*.mlappinstall
|
||||
*.mltbx
|
||||
|
||||
# Deployable archives
|
||||
*.ctf
|
||||
|
||||
# Generated helpsearch folders
|
||||
helpsearch*/
|
||||
|
||||
# Simulink code generation folders
|
||||
# Code generation folders
|
||||
slprj/
|
||||
sccprj/
|
||||
|
||||
# Matlab code generation folders
|
||||
codegen/
|
||||
|
||||
# Simulink autosave extension
|
||||
*.autosave
|
||||
|
||||
# Simulink cache files
|
||||
# Cache files
|
||||
*.slxc
|
||||
|
||||
# Octave session info
|
||||
octave-workspace
|
||||
# Cloud based storage dotfile
|
||||
.MATLABDriveTag
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ release.properties
|
|||
dependency-reduced-pom.xml
|
||||
buildNumber.properties
|
||||
.mvn/timing.properties
|
||||
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
|
||||
# https://maven.apache.org/wrapper/#usage-without-binary-jar
|
||||
.mvn/wrapper/maven-wrapper.jar
|
||||
|
||||
# Eclipse m2e generated files
|
||||
|
|
|
|||
57
options/gitignore/MetaTrader5
Normal file
57
options/gitignore/MetaTrader5
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
# MetaTrader 5 and MQL5 gitignore template
|
||||
# Project homepage: https://www.metatrader5.com/en
|
||||
|
||||
# Compiled MQL5 executables (binaries)
|
||||
# These are generated from .mq5 source files and should not be committed.
|
||||
*.ex5
|
||||
*.ex4 # For MQL4 compatibility if you also manage MT4 projects in a similar structure
|
||||
|
||||
# Log files
|
||||
# Terminal logs, strategy tester logs, and custom logs from Print() functions.
|
||||
*.log
|
||||
*.slog # Strategy Tester logs
|
||||
|
||||
# Strategy Tester specific files
|
||||
# History data, optimization results, and temporary files used by the tester.
|
||||
*.fxt # FXT files (history data for testing)
|
||||
*.hst # History data files (can be large)
|
||||
*.ini # Initialization files (often generated by tester or EAs)
|
||||
*.dat # Data files (various purposes, often temporary)
|
||||
*.csv # CSV export files (e.g., from tester reports)
|
||||
*.jrn # Journal files (tester journal)
|
||||
|
||||
# Market Watch sets and profiles
|
||||
# User-specific lists of symbols in Market Watch, and terminal profiles.
|
||||
*.set # Market Watch symbol sets
|
||||
*.tpl # Chart templates
|
||||
*.chr # Chart settings files (can be generated when saving templates or profiles)
|
||||
|
||||
# External libraries (DLLs)
|
||||
# If you use custom DLLs, you might want to ignore them if they are built separately
|
||||
# and not part of your MQL5 source code repository.
|
||||
*.dll
|
||||
|
||||
# User-specific configuration and credentials
|
||||
# Files containing sensitive information or local user settings.
|
||||
.env # Environment variables (e.g., for Python integration credentials)
|
||||
*.cfg # Configuration files (if not meant to be shared)
|
||||
*.json # Be careful: if you have config JSONs you *do* want to commit, add specific exceptions.
|
||||
# Example: !config.json (to include config.json but ignore other *.json)
|
||||
|
||||
# Temporary files and backup files generated by MetaEditor
|
||||
*.~* # Temporary files (e.g., ~MyScript.mq5)
|
||||
*.bak # Backup files (e.g., MyScript.mq5.bak)
|
||||
*.mqh.bak
|
||||
*.mq5.bak
|
||||
|
||||
# MetaEditor project files
|
||||
# Project files for MetaEditor workspaces.
|
||||
.mqproj
|
||||
|
||||
# Python specific ignores (if you also keep Python scripts or Jupyter notebooks in this repository)
|
||||
# These are relevant if your Git repo root is higher up (e.g., the terminal folder itself)
|
||||
# or if you mix Python code within your MQL5 structure.
|
||||
__pycache__/ # Python compiled bytecode cache
|
||||
.ipynb_checkpoints/ # Jupyter Notebook checkpoints
|
||||
*.pyc # Python compiled files
|
||||
*.pyd # Python dynamic modules
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
# Generated Metals (Scala Language Server) files
|
||||
# Reference: https://scalameta.org/metals/
|
||||
# Metals (Scala Language Server)
|
||||
# Reference: https://scalameta.org/metals/docs/editors/vscode#files-and-directories-to-include-in-your-gitignore
|
||||
.metals/
|
||||
.bloop/
|
||||
project/metals.sbt
|
||||
.ammonite/
|
||||
metals.sbt
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
# Word temporary
|
||||
~$*.doc*
|
||||
~$*.dot*
|
||||
|
||||
# Word Auto Backup File
|
||||
Backup of *.doc*
|
||||
|
|
|
|||
42
options/gitignore/Modelica
Normal file
42
options/gitignore/Modelica
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Modelica - an object-oriented language for modeling of cyber-physical systems
|
||||
# https://modelica.org/
|
||||
# Ignore temporary files, build results, simulation files
|
||||
|
||||
## Modelica-specific files
|
||||
*~
|
||||
*.bak
|
||||
*.bak-mo
|
||||
*.mof
|
||||
\#*\#
|
||||
*.moe
|
||||
*.mol
|
||||
|
||||
## Build artefacts
|
||||
*.exe
|
||||
*.exp
|
||||
*.o
|
||||
*.pyc
|
||||
|
||||
## Simulation files
|
||||
*.mat
|
||||
|
||||
## Package files
|
||||
*.gz
|
||||
*.rar
|
||||
*.tar
|
||||
*.zip
|
||||
|
||||
## Dymola-specific files
|
||||
buildlog.txt
|
||||
dsfinal.txt
|
||||
dsin.txt
|
||||
dslog.txt
|
||||
dsmodel*
|
||||
dsres.txt
|
||||
dymosim*
|
||||
request
|
||||
stat
|
||||
status
|
||||
stop
|
||||
success
|
||||
*.
|
||||
6
options/gitignore/Move
Normal file
6
options/gitignore/Move
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Generated by Move
|
||||
# will have compiled files
|
||||
build/
|
||||
|
||||
# Remove possibly saving credentials to the git repository
|
||||
.aptos/
|
||||
24
options/gitignore/Nestjs
Normal file
24
options/gitignore/Nestjs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Nestjs specific
|
||||
/dist
|
||||
/node_modules
|
||||
/build
|
||||
/tmp
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
pnpm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# dotenv environment variable files
|
||||
.env
|
||||
.env.development
|
||||
.env.test
|
||||
.env.production
|
||||
|
||||
# temp directory
|
||||
.temp
|
||||
.tmp
|
||||
36
options/gitignore/Nextjs
Normal file
36
options/gitignore/Nextjs
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# local env files
|
||||
.env*.local
|
||||
.env
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
|
@ -5,7 +5,6 @@ npm-debug.log*
|
|||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
|
@ -57,12 +56,6 @@ web_modules/
|
|||
# Optional stylelint cache
|
||||
.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
|
|
@ -74,10 +67,8 @@ web_modules/
|
|||
|
||||
# dotenv environment variable files
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
|
|
@ -90,6 +81,7 @@ out
|
|||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
.output
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
|
|
@ -104,6 +96,15 @@ dist
|
|||
.temp
|
||||
.cache
|
||||
|
||||
# Sveltekit cache directory
|
||||
.svelte-kit/
|
||||
|
||||
# vitepress build output
|
||||
**/.vitepress/dist
|
||||
|
||||
# vitepress cache directory
|
||||
**/.vitepress/cache
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
.docusaurus
|
||||
|
||||
|
|
@ -116,15 +117,28 @@ dist
|
|||
# DynamoDB Local files
|
||||
.dynamodb/
|
||||
|
||||
# Firebase cache directory
|
||||
.firebase/
|
||||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
# pnpm
|
||||
.pnpm-store
|
||||
|
||||
# yarn v3
|
||||
.pnp.*
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
# Vite files
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
.vite/
|
||||
|
|
|
|||
|
|
@ -30,9 +30,7 @@
|
|||
# contain metadata (manifest.json), application code (main.js), stylesheets
|
||||
# (styles.css), and user-configuration data (data.json).
|
||||
# We only want to track data.json, so we:
|
||||
# 1. exclude everything under the plugins directory recursively,
|
||||
# 2. unignore the plugin directories themselves, which then allows us to
|
||||
# 3. unignore the data.json files
|
||||
.obsidian/plugins/**/*
|
||||
!.obsidian/plugins/*/
|
||||
# 1. exclude everything that the plugin folders contain,
|
||||
# 2. unignore data.json in the plugin folders
|
||||
.obsidian/plugins/*/**
|
||||
!.obsidian/plugins/*/data.json
|
||||
|
|
|
|||
|
|
@ -8,7 +8,14 @@
|
|||
*.cmxs
|
||||
*.cmxa
|
||||
|
||||
# ocamlbuild working directory
|
||||
# Files containing detailed information about the compilation (generated
|
||||
# by `ocamlc`/`ocamlopt` when invoked using the option `-bin-annot`).
|
||||
# These files are typically useful for code inspection tools
|
||||
# (e.g. Merlin).
|
||||
*.cmt
|
||||
*.cmti
|
||||
|
||||
# ocamlbuild and Dune default working directory
|
||||
_build/
|
||||
|
||||
# ocamlbuild targets
|
||||
|
|
|
|||
|
|
@ -1,31 +1,33 @@
|
|||
# Windows default autosave extension
|
||||
# Autosave files
|
||||
*.asv
|
||||
|
||||
# OSX / *nix default autosave extension
|
||||
*.m~
|
||||
*.autosave
|
||||
*.slx.r*
|
||||
*.mdl.r*
|
||||
|
||||
# Compiled MEX binaries (all platforms)
|
||||
# Derived content-obscured files
|
||||
*.p
|
||||
|
||||
# Compiled MEX files
|
||||
*.mex*
|
||||
|
||||
# Packaged app and toolbox files
|
||||
*.mlappinstall
|
||||
*.mltbx
|
||||
|
||||
# Deployable archives
|
||||
*.ctf
|
||||
|
||||
# Generated helpsearch folders
|
||||
helpsearch*/
|
||||
|
||||
# Simulink code generation folders
|
||||
# Code generation folders
|
||||
slprj/
|
||||
sccprj/
|
||||
|
||||
# Matlab code generation folders
|
||||
codegen/
|
||||
|
||||
# Simulink autosave extension
|
||||
*.autosave
|
||||
|
||||
# Simulink cache files
|
||||
# Cache files
|
||||
*.slxc
|
||||
|
||||
# Octave session info
|
||||
octave-workspace
|
||||
# Cloud based storage dotfile
|
||||
.MATLABDriveTag
|
||||
|
|
|
|||
42
options/gitignore/OpenTofu
Normal file
42
options/gitignore/OpenTofu
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Local .terraform directories
|
||||
**/.terraform/*
|
||||
|
||||
# .tfstate files
|
||||
*.tfstate
|
||||
*.tfstate.*
|
||||
|
||||
# Crash log files
|
||||
crash.log
|
||||
crash.*.log
|
||||
|
||||
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
|
||||
# password, private keys, and other secrets. These should not be part of version
|
||||
# control as they are data points which are potentially sensitive and subject
|
||||
# to change depending on the environment.
|
||||
*.tfvars
|
||||
*.tfvars.json
|
||||
|
||||
# Ignore override files as they are usually used to override resources locally and so
|
||||
# are not checked in
|
||||
override.tf
|
||||
override.tofu
|
||||
override.tf.json
|
||||
override.tofu.json
|
||||
*_override.tf
|
||||
*_override.tofu
|
||||
*_override.tf.json
|
||||
*_override.tofu.json
|
||||
|
||||
# Ignore transient lock info files created by tofu apply
|
||||
.terraform.tfstate.lock.info
|
||||
|
||||
# Include override files you do wish to add to version control using negated pattern
|
||||
# !example_override.tf
|
||||
# !example_override.tofu
|
||||
|
||||
# Include tfplan files to ignore the plan output of command: tofu plan -out=tfplan
|
||||
# example: *tfplan*
|
||||
|
||||
# Ignore CLI configuration files
|
||||
.terraformrc
|
||||
terraform.rc
|
||||
|
|
@ -33,3 +33,9 @@ inc/
|
|||
/MANIFEST.bak
|
||||
/pm_to_blib
|
||||
/*.zip
|
||||
|
||||
# Carton/Carmel
|
||||
/local/
|
||||
/.carmel/
|
||||
# cpanfile.snapshot should generally be ignored for library code, otherwise included
|
||||
# cpanfile.snapshot
|
||||
|
|
|
|||
6
options/gitignore/PlatformIO
Normal file
6
options/gitignore/PlatformIO
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
.pio
|
||||
.pioenvs
|
||||
.piolibdeps
|
||||
.vscode/.browse.c_cpp.db*
|
||||
.vscode/c_cpp_properties.json
|
||||
.vscode/launch.json
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.py[codz]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
|
|
@ -46,7 +46,7 @@ htmlcov/
|
|||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py,cover
|
||||
*.py.cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
cover/
|
||||
|
|
@ -92,25 +92,38 @@ ipython_config.py
|
|||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||
# install all needed dependencies.
|
||||
#Pipfile.lock
|
||||
# Pipfile.lock
|
||||
|
||||
# UV
|
||||
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
# commonly ignored for libraries.
|
||||
# uv.lock
|
||||
|
||||
# poetry
|
||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
# commonly ignored for libraries.
|
||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||
#poetry.lock
|
||||
# poetry.lock
|
||||
# poetry.toml
|
||||
|
||||
# pdm
|
||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||
#pdm.lock
|
||||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
||||
# in version control.
|
||||
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
||||
.pdm.toml
|
||||
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
||||
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
||||
# pdm.lock
|
||||
# pdm.toml
|
||||
.pdm-python
|
||||
.pdm-build/
|
||||
|
||||
# pixi
|
||||
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
||||
# pixi.lock
|
||||
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
||||
# in the .venv directory. It is recommended not to include this directory in version control.
|
||||
.pixi
|
||||
|
||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||
__pypackages__/
|
||||
|
||||
|
|
@ -118,11 +131,25 @@ __pypackages__/
|
|||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# Redis
|
||||
*.rdb
|
||||
*.aof
|
||||
*.pid
|
||||
|
||||
# RabbitMQ
|
||||
mnesia/
|
||||
rabbitmq/
|
||||
rabbitmq-data/
|
||||
|
||||
# ActiveMQ
|
||||
activemq-data/
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.envrc
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
|
|
@ -159,4 +186,31 @@ cython_debug/
|
|||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#.idea/
|
||||
# .idea/
|
||||
|
||||
# Abstra
|
||||
# Abstra is an AI-powered process automation framework.
|
||||
# Ignore directories containing user credentials, local state, and settings.
|
||||
# Learn more at https://abstra.io/docs
|
||||
.abstra/
|
||||
|
||||
# Visual Studio Code
|
||||
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
||||
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
||||
# you could uncomment the following to ignore the entire vscode folder
|
||||
# .vscode/
|
||||
|
||||
# Ruff stuff:
|
||||
.ruff_cache/
|
||||
|
||||
# PyPI configuration file
|
||||
.pypirc
|
||||
|
||||
# Marimo
|
||||
marimo/_static/
|
||||
marimo/_lsp/
|
||||
__marimo__/
|
||||
|
||||
# Streamlit
|
||||
.streamlit/secrets.toml
|
||||
|
|
|
|||
|
|
@ -1,11 +1,7 @@
|
|||
# Generated by Cargo
|
||||
# will have compiled files and executables
|
||||
debug/
|
||||
target/
|
||||
|
||||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
||||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||||
Cargo.lock
|
||||
debug
|
||||
target
|
||||
|
||||
# These are backup files generated by rustfmt
|
||||
**/*.rs.bk
|
||||
|
|
@ -13,6 +9,10 @@ Cargo.lock
|
|||
# MSVC Windows builds of rustc generate these, which store debugging information
|
||||
*.pdb
|
||||
|
||||
# Generated by cargo mutants
|
||||
# Contains mutation testing data
|
||||
**/mutants.out*/
|
||||
|
||||
# RustRover
|
||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||
|
|
|
|||
|
|
@ -10,3 +10,4 @@ project/plugins/project/
|
|||
.history
|
||||
.cache
|
||||
.lib/
|
||||
.bsp/
|
||||
|
|
|
|||
31
options/gitignore/SSDT-sqlproj
Normal file
31
options/gitignore/SSDT-sqlproj
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
## Ignore Visual Studio SSDT sqlproj specific temporary files, build results, etc
|
||||
##
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/SSDT-sqlproj.gitignore
|
||||
# Build output
|
||||
bin/
|
||||
obj/
|
||||
|
||||
# DACPAC files
|
||||
*.dacpac
|
||||
|
||||
# Publish profiles (optional, if environment-specific)
|
||||
*.publish.xml
|
||||
|
||||
# SQL Server debug files
|
||||
*.dbmdl
|
||||
*.sqlcmdvars
|
||||
|
||||
# Visual Studio settings
|
||||
.vs/
|
||||
|
||||
# User-specific files
|
||||
*.user
|
||||
*.suo
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.log
|
||||
|
||||
51
options/gitignore/STM32CubeIDE
Normal file
51
options/gitignore/STM32CubeIDE
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# STM32CubeIDE specific files
|
||||
|
||||
# Project-specific settings. Ignore it if developers have different preferences.
|
||||
# However, if you want all team members to use the same code formatting and settings,
|
||||
# consider including the .settings folder in the repository.
|
||||
|
||||
# /.settings/
|
||||
|
||||
# Ignore Eclipse-based IDE launch configurations.
|
||||
# Uncomment if you want each developer to have their own unique debug configurations.
|
||||
#*.launch
|
||||
|
||||
# Ignore any JLink-related files (debug configurations).
|
||||
# Uncomment if you want each developer to have their own unique debug configurations.
|
||||
#*.jlink
|
||||
|
||||
# Ignore log files generated by the IDE.
|
||||
# These are not necessary for version control.
|
||||
*.log
|
||||
|
||||
# Build files
|
||||
|
||||
# Ignore build output directories.
|
||||
# These are not needed in the repository as they are generated during the build process.
|
||||
Debug/
|
||||
Release/
|
||||
|
||||
# Ignore common binary and object files generated during compilation.
|
||||
# They should not be included in the repository as they are build artifacts.
|
||||
*.elf
|
||||
*.map
|
||||
*.bin
|
||||
*.hex
|
||||
*.srec
|
||||
*.lst
|
||||
*.o
|
||||
*.d
|
||||
*.a
|
||||
*.su
|
||||
*.crl
|
||||
|
||||
#TouchGFX files (in case your project has touchGFX)
|
||||
TouchGFX/generated
|
||||
TouchGFX/build
|
||||
TouchGFX/simulator/msvs/.vs
|
||||
|
||||
# Backup files
|
||||
|
||||
# Ignore temporary and backup files generated by the operating system and editor.
|
||||
# These are not needed in the repository.
|
||||
*.bak
|
||||
39
options/gitignore/Salesforce
Normal file
39
options/gitignore/Salesforce
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# This file is used for Git repositories to specify intentionally untracked files that Git should ignore.
|
||||
# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore
|
||||
# For useful gitignore templates see: https://github.com/github/gitignore
|
||||
|
||||
# Salesforce cache
|
||||
.sf/
|
||||
.sfdx/
|
||||
.localdevserver/
|
||||
deploy-options.json
|
||||
.localdev
|
||||
|
||||
# LWC VSCode autocomplete
|
||||
**/lwc/jsconfig.json
|
||||
|
||||
# LWC Jest coverage reports
|
||||
coverage/
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Windows system files
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
[Dd]esktop.ini
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Salesforce Analyzer results
|
||||
sca-results.csv
|
||||
sfca_results.json
|
||||
|
||||
# Local environment variables
|
||||
.env
|
||||
15
options/gitignore/Solidity-Remix
Normal file
15
options/gitignore/Solidity-Remix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Remix compiler artifacts
|
||||
**/artifacts/
|
||||
**/artifacts/**
|
||||
|
||||
# Remix plugin state folders
|
||||
deps/
|
||||
states/
|
||||
|
||||
# Debug info
|
||||
*.dbg.json
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional
|
||||
.env
|
||||
.env.local
|
||||
|
|
@ -8,6 +8,7 @@
|
|||
*.smcl
|
||||
*.stpr
|
||||
*.stsem
|
||||
~*.stswp
|
||||
|
||||
# Graphic export files from Stata
|
||||
# Stata command graph export: http://www.stata.com/manuals14/g-2graphexport.pdf
|
||||
|
|
|
|||
|
|
@ -26,7 +26,9 @@
|
|||
|
||||
## Bibliography auxiliary files (bibtex/biblatex/biber):
|
||||
*.bbl
|
||||
*.bbl-SAVE-ERROR
|
||||
*.bcf
|
||||
*.bcf-SAVE-ERROR
|
||||
*.blg
|
||||
*-blx.aux
|
||||
*-blx.bib
|
||||
|
|
@ -57,6 +59,9 @@ acs-*.bib
|
|||
# amsthm
|
||||
*.thm
|
||||
|
||||
# attachfile2
|
||||
*.atfi
|
||||
|
||||
# beamer
|
||||
*.nav
|
||||
*.pre
|
||||
|
|
@ -65,6 +70,7 @@ acs-*.bib
|
|||
|
||||
# changes
|
||||
*.soc
|
||||
*.loc
|
||||
|
||||
# comment
|
||||
*.cut
|
||||
|
|
@ -108,8 +114,11 @@ acs-*.bib
|
|||
*.acn
|
||||
*.acr
|
||||
*.glg
|
||||
*.glg-abr
|
||||
*.glo
|
||||
*.glo-abr
|
||||
*.gls
|
||||
*.gls-abr
|
||||
*.glsdefs
|
||||
*.lzo
|
||||
*.lzs
|
||||
|
|
@ -152,6 +161,9 @@ acs-*.bib
|
|||
# *.tikz
|
||||
*-tikzDictionary
|
||||
|
||||
# latexindent will create succesive backup files by default
|
||||
#*.bak*
|
||||
|
||||
# listings
|
||||
*.lol
|
||||
|
||||
|
|
@ -174,6 +186,7 @@ acs-*.bib
|
|||
|
||||
# minted
|
||||
_minted*
|
||||
*.data.minted
|
||||
*.pyg
|
||||
|
||||
# morewrites
|
||||
|
|
@ -201,6 +214,10 @@ _minted*
|
|||
# scrwfile
|
||||
*.wrt
|
||||
|
||||
# spelling
|
||||
*.spell.bad
|
||||
*.spell.txt
|
||||
|
||||
# svg
|
||||
svg-inkscape/
|
||||
|
||||
|
|
@ -266,6 +283,9 @@ TSWLatexianTemp*
|
|||
*.bak
|
||||
*.sav
|
||||
|
||||
# latexindent.pl
|
||||
*.bak[0-9]*
|
||||
|
||||
# Texpad
|
||||
.texpadtmp
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Local .terraform directories
|
||||
**/.terraform/*
|
||||
.terraform/
|
||||
|
||||
# .tfstate files
|
||||
*.tfstate
|
||||
|
|
@ -35,3 +35,10 @@ override.tf.json
|
|||
# Ignore CLI configuration files
|
||||
.terraformrc
|
||||
terraform.rc
|
||||
|
||||
# Optional: ignore graph output files generated by `terraform graph`
|
||||
# *.dot
|
||||
|
||||
# Optional: ignore plan files saved before destroying Terraform configuration
|
||||
# Uncomment the line below if you want to ignore planout files.
|
||||
# planout
|
||||
14
options/gitignore/TestComplete
Normal file
14
options/gitignore/TestComplete
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Test Complete ignore files: https://support.smartbear.com/viewarticle/68002/
|
||||
|
||||
# Tester-specific Settings
|
||||
*.tcCFGExtender
|
||||
*.tcLS
|
||||
|
||||
# Type library declarations
|
||||
*.tlb
|
||||
|
||||
# Log files
|
||||
*.tcLogs
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
|
|
@ -1,25 +1,57 @@
|
|||
# gitignore template for TwinCAT3
|
||||
### TwinCAT3 ###
|
||||
# website: https://www.beckhoff.com/twincat3/
|
||||
#
|
||||
# Recommended: VisualStudio.gitignore
|
||||
|
||||
# TwinCAT files
|
||||
# TwinCAT PLC
|
||||
*.plcproj.bak
|
||||
*.plcproj.orig
|
||||
*.tpy
|
||||
*.tclrs
|
||||
*.library
|
||||
*.compiled-library
|
||||
*.compileinfo
|
||||
# Don't include the tmc-file rule if either of the following is true:
|
||||
# 1. You've got TwinCAT C++ projects, as the information in the TMC-file is created manually for the C++ projects (in that case, only (manually) ignore the tmc-files for the PLC projects)
|
||||
# 2. You've created a standalone PLC-project and added events to it, as these are stored in the TMC-file.
|
||||
*.tmc
|
||||
*.tmcRefac
|
||||
*.library
|
||||
*.project.~u
|
||||
*.tsproj.bak
|
||||
*.xti.bak
|
||||
*.asm
|
||||
*.core
|
||||
LineIDs.dbg
|
||||
LineIDs.dbg.bak
|
||||
_Boot/
|
||||
_CompileInfo/
|
||||
_Libraries/
|
||||
_ModuleInstall/
|
||||
|
||||
# TwinCAT C++ and shared types
|
||||
# ignoring the TMC file is only useful for plain PLC programming
|
||||
# as soon as shared data types (via tmc), C++ or in general TcCom-Module are used, the TMC file has to be part of the repository
|
||||
*.tmc
|
||||
*.tmcRefac
|
||||
|
||||
# TwinCAT project files
|
||||
*.tsproj.bak
|
||||
*.tsproj.b?k
|
||||
*.tsproj.orig
|
||||
*.tspproj.bak
|
||||
*.xti.bak
|
||||
*.xti.bk?
|
||||
*.xti.orig
|
||||
*.xtv
|
||||
*.xtv.bak
|
||||
*.xtv.bk?
|
||||
*.xt?.bk?
|
||||
*.xt?.orig
|
||||
|
||||
# Multiuser specific
|
||||
**/.TcGit/
|
||||
|
||||
# exclude not required folders
|
||||
**/_Boot/
|
||||
**/_CompileInfo/
|
||||
**/_Libraries/
|
||||
**/_ModuleInstall/
|
||||
**/_Deployment/
|
||||
**/_Repository/
|
||||
|
||||
|
||||
# To include a specific library directory (i.e. third party/custom libs),
|
||||
# use pattern `!/**/_Libraries/<directory name>/` i.e. `!/**/_Libraries/www.tcunit.org/`
|
||||
#
|
||||
|
||||
# VS Shell project specific files and folders
|
||||
**/.vs/
|
||||
*.~u
|
||||
*.project.~u
|
||||
*.suo
|
||||
|
|
|
|||
52
options/gitignore/UTAU
Normal file
52
options/gitignore/UTAU
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# Adobe Audition
|
||||
*.pkf
|
||||
|
||||
# UTAU Engines
|
||||
*.ctspec
|
||||
*.d4c
|
||||
*.dio
|
||||
*.frc
|
||||
*.frt
|
||||
*.frq
|
||||
*.harvest
|
||||
*.lessaudio
|
||||
*.llsm
|
||||
*.mrq
|
||||
*.pitchtier
|
||||
*.platinum
|
||||
*.pmk
|
||||
*.sc.npz
|
||||
*.star
|
||||
*.uspec
|
||||
*.vs4ufrq
|
||||
|
||||
# UTAU related tools
|
||||
$read
|
||||
*.setParam-Scache
|
||||
*.lbp
|
||||
*.lbp.caches/*
|
||||
|
||||
# OpenUtau
|
||||
errors.txt
|
||||
|
||||
# Deepvocal
|
||||
*.DVModel
|
||||
*-log.txt
|
||||
SKC
|
||||
SKI
|
||||
SKC_1
|
||||
SKC_2
|
||||
*.sksd
|
||||
|
||||
# VocalSharp
|
||||
*.scep
|
||||
*.vssf
|
||||
*.vsdx
|
||||
*.vsdxindex
|
||||
|
||||
# Binary Archive
|
||||
*.7z
|
||||
*.zip
|
||||
*.rar
|
||||
*.exe
|
||||
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
*.sqlite.db*
|
||||
|
||||
#ignore umbraco data/views/settings
|
||||
**/umbraco/
|
||||
**/umbraco/*
|
||||
|
||||
#include default location for modelsbuilder output
|
||||
!**/umbraco/models
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
#
|
||||
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
|
||||
#
|
||||
.utmp/
|
||||
/[Ll]ibrary/
|
||||
/[Tt]emp/
|
||||
/[Oo]bj/
|
||||
|
|
@ -9,6 +10,11 @@
|
|||
/[Bb]uilds/
|
||||
/[Ll]ogs/
|
||||
/[Uu]ser[Ss]ettings/
|
||||
*.log
|
||||
|
||||
# By default unity supports Blender asset imports, *.blend1 blender files do not need to be commited to version control.
|
||||
*.blend1
|
||||
*.blend1.meta
|
||||
|
||||
# MemoryCaptures can get excessive in size.
|
||||
# They also could contain extremely sensitive data
|
||||
|
|
@ -22,6 +28,8 @@
|
|||
|
||||
# Autogenerated Jetbrains Rider plugin
|
||||
/[Aa]ssets/Plugins/Editor/JetBrains*
|
||||
# Jetbrains Rider personal-layer settings
|
||||
*.DotSettings.user
|
||||
|
||||
# Visual Studio cache directory
|
||||
.vs/
|
||||
|
|
@ -55,18 +63,37 @@ ExportedObj/
|
|||
# Unity3D generated file on crash reports
|
||||
sysinfo.txt
|
||||
|
||||
# Mono auto generated files
|
||||
mono_crash.*
|
||||
|
||||
# Builds
|
||||
*.apk
|
||||
*.aab
|
||||
*.unitypackage
|
||||
*.unitypackage.meta
|
||||
*.app
|
||||
|
||||
# Crashlytics generated file
|
||||
crashlytics-build.properties
|
||||
|
||||
# Packed Addressables
|
||||
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
|
||||
# TestRunner generated files
|
||||
InitTestScene*.unity*
|
||||
|
||||
# Temporary auto-generated Android Assets
|
||||
/[Aa]ssets/[Ss]treamingAssets/aa.meta
|
||||
/[Aa]ssets/[Ss]treamingAssets/aa/*
|
||||
# Addressables default ignores, before user customizations
|
||||
/ServerData
|
||||
/[Aa]ssets/StreamingAssets/aa*
|
||||
/[Aa]ssets/AddressableAssetsData/link.xml*
|
||||
/[Aa]ssets/Addressables_Temp*
|
||||
# By default, Addressables content builds will generate addressables_content_state.bin
|
||||
# files in platform-specific subfolders, for example:
|
||||
# /Assets/AddressableAssetsData/OSX/addressables_content_state.bin
|
||||
/[Aa]ssets/AddressableAssetsData/*/*.bin*
|
||||
|
||||
# Visual Scripting auto-generated files
|
||||
/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db
|
||||
/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db.meta
|
||||
/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers
|
||||
/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers.meta
|
||||
|
||||
# Auto-generated scenes by play mode tests
|
||||
/[Aa]ssets/[Ii]nit[Tt]est[Ss]cene*.unity*
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@
|
|||
*.sdf
|
||||
*.VC.db
|
||||
*.VC.opendb
|
||||
.vsconfig
|
||||
|
||||
# Precompiled Assets
|
||||
SourceArt/**/*.png
|
||||
|
|
|
|||
40
options/gitignore/VBA
Normal file
40
options/gitignore/VBA
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
|
||||
# Office temporary files
|
||||
~$*
|
||||
|
||||
# Access database lock files (laccdb, ldb)
|
||||
*.[lL][aA][cC][cC][dD][bB]
|
||||
*.[lL][dD][bB]
|
||||
|
||||
# The following sections constitute a list of Office file extensions that support VBA.
|
||||
# If you want to exclude Office files from your repo, uncomment the corresponding file extensions.
|
||||
|
||||
# Excel (xls, xlsb, xlsm, xlt, xltm, xla, xlam)
|
||||
#*.[xX][lL][sS]
|
||||
#*.[xX][lL][sS][bB]
|
||||
#*.[xX][lL][sS][mM]
|
||||
#*.[xX][lL][tT]
|
||||
#*.[xX][lL][tT][mM]
|
||||
#*.[xX][lL][aA]
|
||||
#*.[xX][lL][aA][mM]
|
||||
|
||||
# Word (doc, docm, dot, dotm)
|
||||
#*.[dD][oO][cC]
|
||||
#*.[dD][oO][cC][mM]
|
||||
#*.[dD][oO][tT]
|
||||
#*.[dD][oO][tT][mM]
|
||||
|
||||
# Access (accda, accdb, accde, mdb, mde)
|
||||
#*.[aA][cC][cC][dD][aA]
|
||||
#*.[aA][cC][cC][dD][bB]
|
||||
#*.[aA][cC][cC][dD][eE]
|
||||
#*.[mM][dD][bB]
|
||||
#*.[mM][dD][eE]
|
||||
|
||||
# PowerPoint (ppt, pptm, pot, potm, pps, ppsm)
|
||||
#*.[pP][pP][tT]
|
||||
#*.[pP][pP][tT][mM]
|
||||
#*.[pP][oO][tT]
|
||||
#*.[pP][oO][tT][mM]
|
||||
#*.[pP][pP][sS]
|
||||
#*.[pP][pP][sS][mM]
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
# Swap
|
||||
[._]*.s[a-v][a-z]
|
||||
!*.svg # comment out if you don't need vector files
|
||||
# comment out the next line if you don't need vector files
|
||||
!*.svg
|
||||
[._]*.sw[a-p]
|
||||
[._]s[a-rt-v][a-z]
|
||||
[._]ss[a-gi-z]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Virtualenv
|
||||
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
|
||||
# https://realpython.com/python-virtual-environments-a-primer/#the-virtualenv-project
|
||||
.Python
|
||||
[Bb]in
|
||||
[Ii]nclude
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
*.env
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
|
@ -21,17 +22,37 @@ mono_crash.*
|
|||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
|
||||
[Dd]ebug/x64/
|
||||
[Dd]ebugPublic/x64/
|
||||
[Rr]elease/x64/
|
||||
[Rr]eleases/x64/
|
||||
bin/x64/
|
||||
obj/x64/
|
||||
|
||||
[Dd]ebug/x86/
|
||||
[Dd]ebugPublic/x86/
|
||||
[Rr]elease/x86/
|
||||
[Rr]eleases/x86/
|
||||
bin/x86/
|
||||
obj/x86/
|
||||
|
||||
[Ww][Ii][Nn]32/
|
||||
[Aa][Rr][Mm]/
|
||||
[Aa][Rr][Mm]64/
|
||||
[Aa][Rr][Mm]64[Ee][Cc]/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Oo]ut/
|
||||
[Ll]og/
|
||||
[Ll]ogs/
|
||||
|
||||
# Build results on 'Bin' directories
|
||||
**/[Bb]in/*
|
||||
# Uncomment if you have tasks that rely on *.refresh files to move binaries
|
||||
# (https://github.com/github/gitignore/pull/3736)
|
||||
#!**/[Bb]in/*.refresh
|
||||
|
||||
# Visual Studio 2015/2017 cache/options directory
|
||||
.vs/
|
||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||
|
|
@ -43,12 +64,16 @@ Generated\ Files/
|
|||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
*.trx
|
||||
|
||||
# NUnit
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
nunit-*.xml
|
||||
|
||||
# Approval Tests result files
|
||||
*.received.*
|
||||
|
||||
# Build Results of an ATL Project
|
||||
[Dd]ebugPS/
|
||||
[Rr]eleasePS/
|
||||
|
|
@ -75,6 +100,7 @@ StyleCopReport.xml
|
|||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.idb
|
||||
*.iobj
|
||||
*.pch
|
||||
*.pdb
|
||||
|
|
@ -82,6 +108,8 @@ StyleCopReport.xml
|
|||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
# but not Directory.Build.rsp, as it configures directory-level build defaults
|
||||
!Directory.Build.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
|
|
@ -153,6 +181,7 @@ coverage*.info
|
|||
|
||||
# NCrunch
|
||||
_NCrunch_*
|
||||
.NCrunch_*
|
||||
.*crunch*.local.xml
|
||||
nCrunchTemp_*
|
||||
|
||||
|
|
@ -294,9 +323,6 @@ node_modules/
|
|||
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||
*.vbw
|
||||
|
||||
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
|
||||
*.vbp
|
||||
|
||||
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
|
||||
*.dsw
|
||||
*.dsp
|
||||
|
|
@ -314,22 +340,22 @@ node_modules/
|
|||
_Pvt_Extensions
|
||||
|
||||
# Paket dependency manager
|
||||
.paket/paket.exe
|
||||
**/.paket/paket.exe
|
||||
paket-files/
|
||||
|
||||
# FAKE - F# Make
|
||||
.fake/
|
||||
**/.fake/
|
||||
|
||||
# CodeRush personal settings
|
||||
.cr/personal
|
||||
**/.cr/personal
|
||||
|
||||
# Python Tools for Visual Studio (PTVS)
|
||||
__pycache__/
|
||||
**/__pycache__/
|
||||
*.pyc
|
||||
|
||||
# Cake - Uncomment if you are using it
|
||||
# tools/**
|
||||
# !tools/packages.config
|
||||
#tools/**
|
||||
#!tools/packages.config
|
||||
|
||||
# Tabs Studio
|
||||
*.tss
|
||||
|
|
@ -351,15 +377,19 @@ ASALocalRun/
|
|||
|
||||
# MSBuild Binary and Structured Log
|
||||
*.binlog
|
||||
MSBuild_Logs/
|
||||
|
||||
# AWS SAM Build and Temporary Artifacts folder
|
||||
.aws-sam
|
||||
|
||||
# NVidia Nsight GPU debugger configuration file
|
||||
*.nvuser
|
||||
|
||||
# MFractors (Xamarin productivity tool) working folder
|
||||
.mfractor/
|
||||
**/.mfractor/
|
||||
|
||||
# Local History for Visual Studio
|
||||
.localhistory/
|
||||
**/.localhistory/
|
||||
|
||||
# Visual Studio History (VSHistory) files
|
||||
.vshistory/
|
||||
|
|
@ -371,7 +401,7 @@ healthchecksdb
|
|||
MigrationBackup/
|
||||
|
||||
# Ionide (cross platform F# VS Code tools) working folder
|
||||
.ionide/
|
||||
**/.ionide/
|
||||
|
||||
# Fody - auto-generated XML schema
|
||||
FodyWeavers.xsd
|
||||
|
|
@ -382,17 +412,17 @@ FodyWeavers.xsd
|
|||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
*.code-workspace
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
# Windows Installer files from build outputs
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
|
||||
# JetBrains Rider
|
||||
*.sln.iml
|
||||
|
|
|
|||
|
|
@ -4,9 +4,7 @@
|
|||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
!*.code-workspace
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
.zig-cache/
|
||||
zig-out/
|
||||
build/
|
||||
build-*/
|
||||
docgen_tmp/
|
||||
*.o
|
||||
|
|
|
|||
91
options/gitignore/libogc
Normal file
91
options/gitignore/libogc
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
# Ignore build directories
|
||||
build/
|
||||
|
||||
# Ignore Wii-specific metadata files
|
||||
meta.xml
|
||||
icon.png
|
||||
|
||||
|
||||
# Ignore editor or IDE-specific files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Ignore backup or temporary files
|
||||
*~
|
||||
*.bak
|
||||
*.swp
|
||||
*.tmp
|
||||
|
||||
# Ignore log files
|
||||
*.log
|
||||
|
||||
# Ignore libraries and dependencies
|
||||
lib/
|
||||
deps/
|
||||
obj/
|
||||
|
||||
# Ignore operating system-specific files
|
||||
$RECYCLE.BIN/
|
||||
.Trash-1000/
|
||||
.Spotlight-V100/
|
||||
.fseventsd/
|
||||
.DS_Store
|
||||
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Object files
|
||||
*.o
|
||||
*.ko
|
||||
*.obj
|
||||
*.elf
|
||||
*.o
|
||||
*.bin
|
||||
|
||||
# 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
|
||||
*.dol
|
||||
*.elf
|
||||
|
||||
# Debug files
|
||||
*.dSYM/
|
||||
*.su
|
||||
*.idb
|
||||
*.pdb
|
||||
|
||||
# Kernel Module Compile Results
|
||||
*.mod*
|
||||
*.cmd
|
||||
.tmp_versions/
|
||||
modules.order
|
||||
Module.symvers
|
||||
Mkfile.old
|
||||
dkms.conf
|
||||
|
|
@ -1,10 +1,9 @@
|
|||
# General
|
||||
.DS_Store
|
||||
__MACOSX/
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
Icon[
]
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
|
|
|||
11
options/gitignore/mise
Normal file
11
options/gitignore/mise
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# https://mise.jdx.dev/configuration.html
|
||||
# https://mise.jdx.dev/configuration/environments.html
|
||||
.mise.*.local.toml
|
||||
.mise.local.toml
|
||||
mise.*.local.toml
|
||||
mise.local.toml
|
||||
.mise/*.local.toml
|
||||
mise/*.local.toml
|
||||
|
||||
# https://mise.jdx.dev/configuration.html#tool-versions
|
||||
#.tool-versions
|
||||
17
options/license/ALGLIB-Documentation
Normal file
17
options/license/ALGLIB-Documentation
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
Copyright 1994-2009 Sergey Bochkanov, ALGLIB Project. All rights reserved.
|
||||
|
||||
Redistribution and use of this document (ALGLIB Reference Manual) with or
|
||||
without modification, are permitted provided that such redistributions will
|
||||
retain the above copyright notice, this condition and the following disclaimer
|
||||
as the first (or last) lines of this file.
|
||||
|
||||
THIS DOCUMENTATION IS PROVIDED BY THE ALGLIB PROJECT "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 ALGLIB PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
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 DOCUMENTATION, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
10
options/license/Advanced-Cryptics-Dictionary
Normal file
10
options/license/Advanced-Cryptics-Dictionary
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
License text: Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.
|
||||
|
||||
The following restriction is placed on the use of this publication:
|
||||
if The UK Advanced Cryptics Dictionary is used in a software package
|
||||
or redistributed in any form, the copyright notice must be
|
||||
prominently displayed and the text of this document must be included
|
||||
verbatim.
|
||||
|
||||
There are no other restrictions: I would like to see the list
|
||||
distributed as widely as possible.
|
||||
125
options/license/Artistic-dist
Normal file
125
options/license/Artistic-dist
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
The "Artistic License"
|
||||
|
||||
Preamble
|
||||
|
||||
The intent of this document is to state the conditions under which a
|
||||
Package may be copied, such that the Copyright Holder maintains some
|
||||
semblance of artistic control over the development of the Package,
|
||||
while giving the users of the package the right to use and distribute
|
||||
the Package in a more-or-less customary fashion, plus the right to make
|
||||
reasonable modifications.
|
||||
|
||||
It also grants you the rights to reuse parts of a Package in your own
|
||||
programs without transferring this License to those programs, provided
|
||||
that you meet some reasonable requirements.
|
||||
|
||||
Definitions:
|
||||
|
||||
"Package" refers to the collection of files distributed by the
|
||||
Copyright Holder, and derivatives of that collection of files
|
||||
created through textual modification.
|
||||
|
||||
"Standard Version" refers to such a Package if it has not been
|
||||
modified, or has been modified in accordance with the wishes
|
||||
of the Copyright Holder as specified below.
|
||||
|
||||
"Copyright Holder" is whoever is named in the copyright or
|
||||
copyrights for the package.
|
||||
|
||||
"You" is you, if you're thinking about copying or distributing
|
||||
this Package.
|
||||
|
||||
"Reasonable copying fee" is whatever you can justify on the
|
||||
basis of media cost, duplication charges, time of people involved,
|
||||
and so on. (You will not be required to justify it to the
|
||||
Copyright Holder, but only to the computing community at large
|
||||
as a market that must bear the fee.)
|
||||
|
||||
"Freely Available" means that no fee is charged for the item
|
||||
itself, though there may be fees involved in handling the item.
|
||||
It also means that recipients of the item may redistribute it
|
||||
under the same conditions they received it.
|
||||
|
||||
1. You may make and give away verbatim copies of the source form of the
|
||||
Standard Version of this Package without restriction, provided that you
|
||||
duplicate all of the original copyright notices and associated disclaimers.
|
||||
|
||||
2. You may apply bug fixes, portability fixes and other modifications
|
||||
derived from the Public Domain or from the Copyright Holder. A Package
|
||||
modified in such a way shall still be considered the Standard Version.
|
||||
|
||||
3. You may otherwise modify your copy of this Package in any way, provided
|
||||
that you insert a prominent notice in each changed file stating how and
|
||||
when you changed that file, and provided that you do at least ONE of the
|
||||
following:
|
||||
|
||||
a) place your modifications in the Public Domain or otherwise make them
|
||||
Freely Available, such as by posting said modifications to Usenet or
|
||||
an equivalent medium, or placing the modifications on a major archive
|
||||
site such as uunet.uu.net, or by allowing the Copyright Holder to include
|
||||
your modifications in the Standard Version of the Package.
|
||||
|
||||
b) use the modified Package only within your corporation or organization.
|
||||
|
||||
c) rename any non-standard executables so the names do not conflict
|
||||
with standard executables, which must also be provided, and provide
|
||||
a separate manual page for each non-standard executable that clearly
|
||||
documents how it differs from the Standard Version.
|
||||
|
||||
d) make other distribution arrangements with the Copyright Holder.
|
||||
|
||||
4. You may distribute the programs of this Package in object code or
|
||||
executable form, provided that you do at least ONE of the following:
|
||||
|
||||
a) distribute a Standard Version of the executables and library files,
|
||||
together with instructions (in the manual page or equivalent) on where
|
||||
to get the Standard Version.
|
||||
|
||||
b) accompany the distribution with the machine-readable source of
|
||||
the Package with your modifications.
|
||||
|
||||
c) give non-standard executables non-standard names, and clearly
|
||||
document the differences in manual pages (or equivalent), together
|
||||
with instructions on where to get the Standard Version.
|
||||
|
||||
d) make other distribution arrangements with the Copyright Holder.
|
||||
|
||||
5. You may charge a reasonable copying fee for any distribution of this
|
||||
Package. You may charge any fee you choose for support of this
|
||||
Package. You may not charge a fee for this Package itself. However,
|
||||
you may distribute this Package in aggregate with other (possibly
|
||||
commercial) programs as part of a larger (possibly commercial) software
|
||||
distribution provided that you do not advertise this Package as a
|
||||
product of your own.
|
||||
|
||||
6. The scripts and library files supplied as input to or produced as
|
||||
output from the programs of this Package do not automatically fall
|
||||
under the copyright of this Package, but belong to whoever generated
|
||||
them, and may be sold commercially, and may be aggregated with this
|
||||
Package. If such scripts or library files are aggregated with this
|
||||
Package via the so-called "undump" or "unexec" methods of producing a
|
||||
binary executable image, then distribution of such an image shall
|
||||
neither be construed as a distribution of this Package nor shall it
|
||||
fall under the restrictions of Paragraphs 3 and 4, provided that you do
|
||||
not represent such an executable image as a Standard Version of this
|
||||
Package.
|
||||
|
||||
7. You may reuse parts of this Package in your own programs, provided that
|
||||
you explicitly state where you got them from, in the source code (and, left
|
||||
to your courtesy, in the documentation), duplicating all the associated
|
||||
copyright notices and disclaimers. Besides your changes, if any, must be
|
||||
clearly marked as such. Parts reused that way will no longer fall under this
|
||||
license if, and only if, the name of your program(s) have no immediate
|
||||
connection with the name of the Package itself or its associated programs.
|
||||
You may then apply whatever restrictions you wish on the reused parts or
|
||||
choose to place them in the Public Domain--this will apply only within the
|
||||
context of your package.
|
||||
|
||||
8. The name of the Copyright Holder may not be used to endorse or promote
|
||||
products derived from this software without specific prior written permission.
|
||||
|
||||
9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
THE END
|
||||
4
options/license/Aspell-RU
Normal file
4
options/license/Aspell-RU
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Permission to use, copy, redistribute is granted.
|
||||
Permission to redistribute modifications in patch form is granted.
|
||||
Permission to redistribute binaries made of modified sources is granted.
|
||||
All other rights reserved.
|
||||
15
options/license/BSD-2-Clause-pkgconf-disclaimer
Normal file
15
options/license/BSD-2-Clause-pkgconf-disclaimer
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
Copyright © 2001-2025 Audacious developers and others
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions, and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions, and the following disclaimer in the
|
||||
documentation provided with the distribution.
|
||||
|
||||
This software is provided “as is” and without any warranty, express or
|
||||
implied. In no event shall the authors be liable for any damages arising
|
||||
from the use of this software.
|
||||
11
options/license/BSD-3-Clause-Tso
Normal file
11
options/license/BSD-3-Clause-Tso
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Copyright Theodore Ts'o, 1994, 1995, 1996, 1997, 1998, 1999. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, and the entire permission notice in its entirety, including the disclaimer of warranties.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 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 NOT ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
35
options/license/BSD-Mark-Modifications
Normal file
35
options/license/BSD-Mark-Modifications
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
License text: Copyright 1993, Geoff Kuenning, Granada Hills, CA
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. All modifications to the source code must be clearly marked as
|
||||
such. Binary redistributions based on modified source code
|
||||
must be clearly marked as modified versions in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
(clause 4 removed with permission from Geoff Kuenning)
|
||||
|
||||
4. The name of Geoff Kuenning may not be used to endorse or promote
|
||||
products derived from this software without specific prior
|
||||
written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``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 GEOFF KUENNING OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, 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.
|
||||
14
options/license/Boehm-GC-without-fee
Normal file
14
options/license/Boehm-GC-without-fee
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
Copyright (c) 2000
|
||||
SWsoft company
|
||||
|
||||
Modifications copyright (c) 2001, 2013. Oracle and/or its affiliates.
|
||||
All rights reserved.
|
||||
|
||||
This material is provided "as is", with absolutely no warranty expressed
|
||||
or implied. Any use is at your own risk.
|
||||
|
||||
Permission to use or copy this software for any purpose is hereby granted
|
||||
without fee, provided the above notices are retained on all copies.
|
||||
Permission to modify the code and to distribute modified code is granted,
|
||||
provided the above notices are retained, and a notice that the code was
|
||||
modified is included with the above copyright notice.
|
||||
26
options/license/Buddy
Normal file
26
options/license/Buddy
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
Copyright (C) 1996-2002 by Jorn Lind-Nielsen
|
||||
All rights reserved
|
||||
|
||||
Permission is hereby granted, without written agreement and without
|
||||
license or royalty fees, to use, reproduce, prepare derivative
|
||||
works, distribute, and display this software and its documentation
|
||||
for any purpose, provided that (1) the above copyright notice and
|
||||
the following two paragraphs appear in all copies of the source code
|
||||
and (2) redistributions, including without limitation binaries,
|
||||
reproduce these notices in the supporting documentation. Substantial
|
||||
modifications to this software may be copyrighted by their authors
|
||||
and need not follow the licensing terms described here, provided
|
||||
that the new terms are clearly indicated in all files where they apply.
|
||||
|
||||
IN NO EVENT SHALL JORN LIND-NIELSEN, OR DISTRIBUTORS OF THIS
|
||||
SOFTWARE BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
|
||||
INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
|
||||
SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE AUTHORS OR ANY OF THE
|
||||
ABOVE PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
JORN LIND-NIELSEN SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING,
|
||||
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
||||
ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO
|
||||
OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
|
||||
MODIFICATIONS.
|
||||
6
options/license/CAPEC-tou
Normal file
6
options/license/CAPEC-tou
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
LICENSE
|
||||
The MITRE Corporation (MITRE) hereby grants you a non-exclusive, royalty-free license to use Common Attack Pattern Enumeration and Classification (CAPEC™) for research, development, and commercial purposes. Any copy you make for such purposes is authorized provided that you reproduce MITRE’s copyright designation and this license in any such copy.
|
||||
|
||||
DISCLAIMERS
|
||||
|
||||
ALL DOCUMENTS AND THE INFORMATION CONTAINED THEREIN ARE PROVIDED ON AN "AS IS" BASIS AND THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS SPONSORED BY (IF ANY), THE MITRE CORPORATION, ITS BOARD OF TRUSTEES, OFFICERS, AGENTS, AND EMPLOYEES, DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION THEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
Creative Commons Attribution-NoDerivs 2.5
|
||||
Creative Commons Attribution-NoDerivs 2.5 Generic
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.
|
||||
|
||||
|
|
|
|||
27
options/license/CC-PDM-1.0
Normal file
27
options/license/CC-PDM-1.0
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
No Copyright
|
||||
|
||||
This work has been identified as being free of known restrictions under
|
||||
copyright law, including all related and neighboring rights.
|
||||
|
||||
|
||||
You can copy, modify, distribute and perform the work, even for commercial
|
||||
purposes, all without asking permission. See Other Information below.
|
||||
|
||||
Other Information
|
||||
|
||||
The work may not be free of known copyright restrictions in all jurisdictions .
|
||||
|
||||
Persons may have other rights in or related to the work, such as patent or
|
||||
trademark rights, and others may have rights in how the work is used, such as
|
||||
publicity or privacy rights.
|
||||
|
||||
In some jurisdictions moral rights of the author may persist beyond the term of
|
||||
copyright. These rights may include the right to be identified as the author
|
||||
and the right to object to derogatory treatments.
|
||||
|
||||
Unless expressly stated otherwise, the person who identified the work makes no
|
||||
warranties about the work, and disclaims liability for all uses of the work, to
|
||||
the fullest extent permitted by applicable law.
|
||||
|
||||
When using or citing the work, you should not imply endorsement by the author
|
||||
or the person who identified the work.
|
||||
198
options/license/CC-SA-1.0
Normal file
198
options/license/CC-SA-1.0
Normal file
|
|
@ -0,0 +1,198 @@
|
|||
Creative Commons Legal Code
|
||||
|
||||
ShareAlike 1.0
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL
|
||||
SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT
|
||||
RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS.
|
||||
CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND
|
||||
DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.
|
||||
|
||||
License
|
||||
|
||||
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
|
||||
COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
|
||||
COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
|
||||
AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.
|
||||
|
||||
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE
|
||||
BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS
|
||||
CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
|
||||
CONDITIONS.
|
||||
|
||||
1. Definitions
|
||||
|
||||
a. "Collective Work" means a work, such as a periodical issue, anthology or
|
||||
encyclopedia, in which the Work in its entirety in unmodified form, along
|
||||
with a number of other contributions, constituting separate and independent
|
||||
works in themselves, are assembled into a collective whole. A work that
|
||||
constitutes a Collective Work will not be considered a Derivative Work (as
|
||||
defined below) for the purposes of this License.
|
||||
b. "Derivative Work" means a work based upon the Work or upon the Work and
|
||||
other pre-existing works, such as a translation, musical arrangement,
|
||||
dramatization, fictionalization, motion picture version, sound recording,
|
||||
art reproduction, abridgment, condensation, or any other form in which the
|
||||
Work may be recast, transformed, or adapted, except that a work that
|
||||
constitutes a Collective Work will not be considered a Derivative Work for
|
||||
the purpose of this License.
|
||||
c. "Licensor" means the individual or entity that offers the Work under the
|
||||
terms of this License.
|
||||
d. "Original Author" means the individual or entity who created the Work.
|
||||
e. "Work" means the copyrightable work of authorship offered under the terms
|
||||
of this License.
|
||||
f. "You" means an individual or entity exercising rights under this License
|
||||
who has not previously violated the terms of this License with respect to
|
||||
the Work, or who has received express permission from the Licensor to
|
||||
exercise rights under this License despite a previous violation.
|
||||
|
||||
2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or
|
||||
restrict any rights arising from fair use, first sale or other limitations on
|
||||
the exclusive rights of the copyright owner under copyright law or other
|
||||
applicable laws.
|
||||
|
||||
3. License Grant. Subject to the terms and conditions of this License, Licensor
|
||||
hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the
|
||||
duration of the applicable copyright) license to exercise the rights in the
|
||||
Work as stated below:
|
||||
|
||||
a. to reproduce the Work, to incorporate the Work into one or more Collective
|
||||
Works, and to reproduce the Work as incorporated in the Collective Works;
|
||||
b. to create and reproduce Derivative Works;
|
||||
c. to distribute copies or phonorecords of, display publicly, perform
|
||||
publicly, and perform publicly by means of a digital audio transmission the
|
||||
Work including as incorporated in Collective Works;
|
||||
d. to distribute copies or phonorecords of, display publicly, perform
|
||||
publicly, and perform publicly by means of a digital audio transmission
|
||||
Derivative Works;
|
||||
|
||||
The above rights may be exercised in all media and formats whether now known or
|
||||
hereafter devised. The above rights include the right to make such
|
||||
modifications as are technically necessary to exercise the rights in other
|
||||
media and formats. All rights not expressly granted by Licensor are hereby
|
||||
reserved.
|
||||
|
||||
4. Restrictions. The license granted in Section 3 above is expressly made
|
||||
subject to and limited by the following restrictions:
|
||||
|
||||
a. You may distribute, publicly display, publicly perform, or publicly
|
||||
digitally perform the Work only under the terms of this License, and You
|
||||
must include a copy of, or the Uniform Resource Identifier for, this
|
||||
License with every copy or phonorecord of the Work You distribute, publicly
|
||||
display, publicly perform, or publicly digitally perform. You may not offer
|
||||
or impose any terms on the Work that alter or restrict the terms of this
|
||||
License or the recipients' exercise of the rights granted hereunder. You
|
||||
may not sublicense the Work. You must keep intact all notices that refer to
|
||||
this License and to the disclaimer of warranties. You may not distribute,
|
||||
publicly display, publicly perform, or publicly digitally perform the Work
|
||||
with any technological measures that control access or use of the Work in a
|
||||
manner inconsistent with the terms of this License Agreement. The above
|
||||
applies to the Work as incorporated in a Collective Work, but this does not
|
||||
require the Collective Work apart from the Work itself to be made subject
|
||||
to the terms of this License. If You create a Collective Work, upon notice
|
||||
from any Licensor You must, to the extent practicable, remove from the
|
||||
Collective Work any reference to such Licensor or the Original Author, as
|
||||
requested. If You create a Derivative Work, upon notice from any Licensor
|
||||
You must, to the extent practicable, remove from the Derivative Work any
|
||||
reference to such Licensor or the Original Author, as requested.
|
||||
b. You may distribute, publicly display, publicly perform, or publicly
|
||||
digitally perform a Derivative Work only under the terms of this License,
|
||||
and You must include a copy of, or the Uniform Resource Identifier for,
|
||||
this License with every copy or phonorecord of each Derivative Work You
|
||||
distribute, publicly display, publicly perform, or publicly digitally
|
||||
perform. You may not offer or impose any terms on the Derivative Works that
|
||||
alter or restrict the terms of this License or the recipients' exercise of
|
||||
the rights granted hereunder, and You must keep intact all notices that
|
||||
refer to this License and to the disclaimer of warranties. You may not
|
||||
distribute, publicly display, publicly perform, or publicly digitally
|
||||
perform the Derivative Work with any technological measures that control
|
||||
access or use of the Work in a manner inconsistent with the terms of this
|
||||
License Agreement. The above applies to the Derivative Work as incorporated
|
||||
in a Collective Work, but this does not require the Collective Work apart
|
||||
from the Derivative Work itself to be made subject to the terms of this
|
||||
License.
|
||||
|
||||
5. Representations, Warranties and Disclaimer
|
||||
|
||||
a. By offering the Work for public release under this License, Licensor
|
||||
represents and warrants that, to the best of Licensor's knowledge after
|
||||
reasonable inquiry:
|
||||
i. Licensor has secured all rights in the Work necessary to grant the
|
||||
license rights hereunder and to permit the lawful exercise of the
|
||||
rights granted hereunder without You having any obligation to pay any
|
||||
royalties, compulsory license fees, residuals or any other payments;
|
||||
ii. The Work does not infringe the copyright, trademark, publicity rights,
|
||||
common law rights or any other right of any third party or constitute
|
||||
defamation, invasion of privacy or other tortious injury to any third
|
||||
party.
|
||||
b. EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING
|
||||
OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
|
||||
WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF
|
||||
THE WORK.
|
||||
|
||||
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
|
||||
AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM
|
||||
BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO
|
||||
YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR
|
||||
EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF
|
||||
LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
7. Termination
|
||||
|
||||
a. This License and the rights granted hereunder will terminate automatically
|
||||
upon any breach by You of the terms of this License. Individuals or
|
||||
entities who have received Derivative Works or Collective Works from You
|
||||
under this License, however, will not have their licenses terminated
|
||||
provided such individuals or entities remain in full compliance with those
|
||||
licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of
|
||||
this License.
|
||||
b. Subject to the above terms and conditions, the license granted here is
|
||||
perpetual (for the duration of the applicable copyright in the Work).
|
||||
Notwithstanding the above, Licensor reserves the right to release the Work
|
||||
under different license terms or to stop distributing the Work at any time;
|
||||
provided, however that any such election will not serve to withdraw this
|
||||
License (or any other license that has been, or is required to be, granted
|
||||
under the terms of this License), and this License will continue in full
|
||||
force and effect unless terminated as stated above.
|
||||
|
||||
8. Miscellaneous
|
||||
|
||||
a. Each time You distribute or publicly digitally perform the Work or a
|
||||
Collective Work, the Licensor offers to the recipient a license to the Work
|
||||
on the same terms and conditions as the license granted to You under this
|
||||
License.
|
||||
b. Each time You distribute or publicly digitally perform a Derivative Work,
|
||||
Licensor offers to the recipient a license to the original Work on the same
|
||||
terms and conditions as the license granted to You under this License.
|
||||
c. If any provision of this License is invalid or unenforceable under
|
||||
applicable law, it shall not affect the validity or enforceability of the
|
||||
remainder of the terms of this License, and without further action by the
|
||||
parties to this agreement, such provision shall be reformed to the minimum
|
||||
extent necessary to make such provision valid and enforceable.
|
||||
d. No term or provision of this License shall be deemed waived and no breach
|
||||
consented to unless such waiver or consent shall be in writing and signed
|
||||
by the party to be charged with such waiver or consent.
|
||||
e. This License constitutes the entire agreement between the parties with
|
||||
respect to the Work licensed here. There are no understandings, agreements
|
||||
or representations with respect to the Work not specified here. Licensor
|
||||
shall not be bound by any additional provisions that may appear in any
|
||||
communication from You. This License may not be modified without the mutual
|
||||
written agreement of the Licensor and You.
|
||||
|
||||
Creative Commons is not a party to this License, and makes no warranty
|
||||
whatsoever in connection with the Work. Creative Commons will not be liable to
|
||||
You or any party on any legal theory for any damages whatsoever, including
|
||||
without limitation any general, special, incidental or consequential damages
|
||||
arising in connection to this license. Notwithstanding the foregoing two (2)
|
||||
sentences, if Creative Commons has expressly identified itself as the Licensor
|
||||
hereunder, it shall have all rights and obligations of Licensor.
|
||||
|
||||
Except for the limited purpose of indicating to the public that the Work is
|
||||
licensed under the CCPL, neither party will use the trademark "Creative
|
||||
Commons" or any related trademark or logo of Creative Commons without the prior
|
||||
written consent of Creative Commons. Any permitted use will be in compliance
|
||||
with Creative Commons' then-current trademark usage guidelines, as may be
|
||||
published on its website or otherwise made available upon request from time to
|
||||
time.
|
||||
|
||||
Creative Commons may be contacted at http://creativecommons.org/.
|
||||
4
options/license/CGAL-linking-exception
Normal file
4
options/license/CGAL-linking-exception
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
As a special exception, you have permission to link this library
|
||||
with the CGAL library (http://www.cgal.org) and distribute executables,
|
||||
as long as you follow the requirements of the GNU GPL in regard to
|
||||
all of the software in the executable aside from CGAL.
|
||||
11
options/license/Classpath-exception-2.0-short
Normal file
11
options/license/Classpath-exception-2.0-short
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
As a special exception, the copyright holders of this library give
|
||||
you permission to link this library with independent modules to
|
||||
produce an executable, regardless of the license terms of these
|
||||
independent modules, and to copy and distribute the resulting
|
||||
executable under terms of your choice, provided that you also
|
||||
meet, for each linked independent module, the terms and conditions
|
||||
of the license of that module. An independent module is a module
|
||||
which is not derived from or based on this library. If you modify
|
||||
this library, you may extend this exception to your version of
|
||||
the library, but you are not obligated to do so. If you do not
|
||||
wish to do so, delete this exception statement from your version.
|
||||
11
options/license/CryptoSwift
Normal file
11
options/license/CryptoSwift
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Copyright (C) 2014-3099 Marcin Krzyżanowski
|
||||
This software is provided 'as-is', without any express or implied warranty.
|
||||
|
||||
In no event will the authors be held liable for any damages arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
|
||||
|
||||
- The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation is required.
|
||||
- Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
|
||||
- This notice may not be removed or altered from any source or binary distribution.
|
||||
- Redistributions of any form whatsoever must retain the following acknowledgment: 'This product includes software developed by the "Marcin Krzyzanowski" (http://krzyzanowskim.com/).'
|
||||
9
options/license/Digia-Qt-LGPL-exception-1.1
Normal file
9
options/license/Digia-Qt-LGPL-exception-1.1
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
Digia Qt LGPL Exception version 1.1
|
||||
|
||||
As a special exception to the GNU Lesser General Public License version 2.1,
|
||||
the object code form of a "work that uses the Library" may incorporate material
|
||||
from a header file that is part of the Library. You may distribute such object
|
||||
code under terms of your choice, provided that the incorporated material (i)
|
||||
does not exceed more than 5% of the total size of the Library; and (ii) is
|
||||
limited to numerical parameters, data structure layouts, accessors, macros,
|
||||
inline functions and templates.
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue