Skip to content

Commit

Permalink
Initialize Template-Red-Other
Browse files Browse the repository at this point in the history
seanpm2001 authored Nov 3, 2024

Verified

This commit was signed with the committer’s verified signature.
bencroker Ben Croker
0 parents commit 692ed90
Showing 153 changed files with 38,327 additions and 0 deletions.
104 changes: 104 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
# Start of script

# Editor configuration file for Seanpm2001/<projectName>
# Generated with Git-Template (V8) at branch: /other/

root = true

# All files
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# Markdown document
[*.md *.mkd *.mdown *.markdown]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# YAML (YAML Ain't Markup Language) source code
[*.yml *.yaml]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# Plain Text document
[*.txt]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# Makefile (GNU Make)
[*.mk *.mak *.make *.makefile]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# HTML (HyperText Markup Language) document
[*.htm *.html *.mhtm *.mhtml *.xhtm *.xhtml]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# SVG (Scalable Vector Graphics) image file
[*.svg]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# Git configuration files
[*.gitignore *.gitattributes *.editorconfig]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# Binary image files
[*.png *.pns *.jpg *.jpeg *.jfif *.jif *.jp2 *.gif *.tif *.tiff *.bmp *.dib]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
line_wrap_mode = soft wrap

# File info

# File type: Editorconfig file (*.editorconfig)
# File version: 3 (Monday, 2021 November 29th at 2:48 pm)
# Line count (including blank lines and compiler line): 105

# End of script
183 changes: 183 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
# Start of script
# .gitattributes
# This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project.
# Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file
# .gitattributes
# and nothing else, no characters before, no characters after
# Start of linguist script
# HTML (HyperText Markup Language) document
*.htm linguist-detectable=true
*.htm linguist-documentation=false
*.htm linguist-language=HTML
*.html linguist-detectable=true
*.html linguist-documentation=false
*.html linguist-language=HTML
*.mhtm linguist-detectable=true
*.mhtm linguist-documentation=false
*.mhtm linguist-language=HTML
*.mhtml linguist-detectable=true
*.mhtml linguist-documentation=false
*.mhtml linguist-language=HTML
*.xhtm linguist-detectable=true
*.xhtm linguist-documentation=false
*.xhtm linguist-language=HTML
*.xhtml linguist-detectable=true
*.xhtml linguist-documentation=false
*.xhtml linguist-language=HTML
# HTA (HTML Application) file
*.hta linguist-detectable=true
*.hta linguist-documentation=false
*.hta linguist-language=HTML
# CSS (Cascade Styling Sheets) stylesheet file
*.css linguist-detectable=true
*.css linguist-documentation=false
*.css linguist-language=CSS
# Red source file
*.r linguist-detectable=true
*.r linguist-documentation=false
*.r linguist-language=Red
*.red linguist-detectable=true
*.red linguist-documentation=false
*.red linguist-language=Red
*.reds linguist-detectable=true
*.reds linguist-documentation=false
*.reds linguist-language=Red
# Less stylesheet file
*.less linguist-detectable=true
*.less linguist-documentation=false
*.less linguist-language=Less
# JSON (JavaScript Object Notation) source file
*.json linguist-detectable=false
*.json linguist-documentation=false
*.json linguist-language=JSON
# WebVTT subtitle file
*.vtt linguist-detectable=true
*.vtt linguist-documentation=false
*.vtt linguist-language=WebVTT
# SubRip subtitle file
*.srt linguist-detectable=true
*.srt linguist-documentation=false
*.srt linguist-language=SubRip-Text
# YAML (YAML Ain't Markup Language) document
# Do not include, as it would become a dominant language that shouldn't be the language people refer this project to
*.yml linguist-detectable=false
*.yml linguist-documentation=false
*.yml linguist-language=YAML
*.yaml linguist-detectable=false
*.yaml linguist-documentation=false
*.yaml linguist-language=YAML
# Markdown
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
*.md linguist-detectable=false
*.md linguist-documentation=false
*.md linguist-language=Markdown
*.mkd linguist-detectable=false
*.mkd linguist-documentation=false
*.mkd linguist-language=Markdown
*.mdown linguist-detectable=false
*.mdown linguist-documentation=false
*.mdown linguist-language=Markdown
*.markdown linguist-detectable=false
*.markdown linguist-documentation=false
*.markdown linguist-language=Markdown
# Makefile (GNU Make)
# Do not include, as it is not needed to be shown
*.mk linguist-detectable=false
*.mk linguist-documentation=false
*.mk linguist-language=Makefile
*.mak linguist-detectable=false
*.mak linguist-documentation=false
*.mak linguist-language=Makefile
*.make linguist-detectable=false
*.make linguist-documentation=false
*.make linguist-language=Makefile
*.makefile linguist-detectable=false
*.makefile linguist-documentation=false
*.makefile linguist-language=Makefile
# SVG (Scalable Vector Graphics) image file
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
*.svg linguist-detectable=false
*.svg linguist-documentation=false
*.svg linguist-language=SVG
# Git Configuration files
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
*.gitattributes linguist-detectable=false
*.gitattributes linguist-documentation=false
*.gitignore linguist-detectable=false
*.gitignore linguist-documentation=false
*.editorconfig linguist-detectable=false
*.editorconfig linguist-documentation=false
# Plain Text document
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
*.txt linguist-detectable=false
*.txt linguist-documentation=false
*.txt linguist-language=Plain-Text
# ReStructuredText
*.rst linguist-detectable=false
*.rst linguist-documentation=false
*.rst linguist-language=ReStructured-Text
# WikiText
*.wiki linguist-detectable=false
*.wiki linguist-documentation=false
*.wiki linguist-language=WikiText
# BibTeX
*.bib linguist-detectable=false
*.bib linguist-documentation=false
*.bib linguist-language=BibTeX
# TeX
*.tex linguist-detectable=false
*.tex linguist-documentation=false
*.tex linguist-language=TeX
# Desktop entry
*.desktop linguist-detectable=false
*.desktop linguist-documentation=false
*.desktop linguist-language=desktop
# INI/CFG
*.ini linguist-detectable=false
*.ini linguist-documentation=false
*.ini linguist-language=INI
*.cfg linguist-detectable=false
*.cfg linguist-documentation=false
*.cfg linguist-language=INI
# CFF
*.cff linguist-detectable=false
*.cff linguist-documentation=false
*.cff linguist-language=Citation-File-Format
# PNG/PNS
*.png linguist-detectable=false
*.png linguist-documentation=false
*.png linguist-language=PNG
*.pns linguist-detectable=false
*.pns linguist-documentation=false
*.pns linguist-language=PNG
# JPG/JPEG/JFIF/JIF
*.jpg linguist-detectable=false
*.jpg linguist-documentation=false
*.jpg linguist-language=JPEG
*.jpeg linguist-detectable=false
*.jpeg linguist-documentation=false
*.jpeg linguist-language=JPEG
*.jfif linguist-detectable=false
*.jfif linguist-documentation=false
*.jfif linguist-language=JPEG
*.jif linguist-detectable=false
*.jif linguist-documentation=false
*.jif linguist-language=JPEG
# JP2 (JPEG 2000)
*.jp2 linguist-detectable=false
*.jp2 linguist-documentation=false
*.jp2 linguist-language=JPEG-2000
# GIF
*.gif linguist-detectable=false
*.gif linguist-documentation=false
*.gif linguist-language=GIF

# End of linguist script

# File info

# File type: gitattributes file (*.gitattributes)
# File version: 5 (2024, Wednesday, August 21st at 04:14 pm PST)
# Line count (including blank lines and compiler line): 184

# End of script
16 changes: 16 additions & 0 deletions .github/.FUNDING.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]

patreon: seanpm2001 # Creator page
patreon: seanpm2001_software # Main page
# Replace with a single Patreon username

open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
16 changes: 16 additions & 0 deletions .github/.FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]

patreon: seanpm2001 # Creator page
patreon: seanpm2001_software # Main page
# Replace with a single Patreon username

open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
42 changes: 42 additions & 0 deletions .github/.github_README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

***

# .github folder info

The `.github` folder in this repository contains data for this repository for hosting on GitHub. This directory did not become mandatory until March 15th 2021.

This directory contains several features.

**Funding** - This funding info usually contains a `FUNDING.yml` file that links to sponsor info for this project. A folder called `/Funding` is also included, and at `/Funding/OldVersions/` contains old versions of the funding file.

**Issues** - This directory contains archives of issues I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:

_I archive my own GitHub issues, and will not archive issues you raise without your permission. This includes replies, comments, and posts._

* A YAML file is also included that contains GitHub label data, with hexadecimal color codes, issue description, and issue titles.

* Sometimes, other YAML files are included for configuration of issues.

**Coming soon:** A separate YAML file for each issue directory that contains label data

**Discussions** - Similar to the issues directory, this directory contains archives of discussions I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:

_I archive my own GitHub discussions, and will not archive discussions you raise without your permission. This includes replies, comments, and posts_

**SocialPreview** - This directory contains social media preview info for this repository for when you share or search for it. This makes a background appear above the repository in searches or messages, so that the profile picture of the user/organization is not shown in the preview. You can read more about it [here](/.github/SocialPreview/README.md).

That is currently it at the moment, other than the new description for this process being placed at the root of the directory (the file you are currently reading)

***

## File info

**File type:** `Markdown (*.md)`

**Original creation date:** `Thursday, March 18th 2021 at 3:18 pm)`

**File version:** `1 (Thursday, March 18th 2021 at 3:18 pm)`

**Line count (including blank lines and compiler line):** `43`

***
42 changes: 42 additions & 0 deletions .github/.github_README_V1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

***

# .github folder info

The `.github` folder in this repository contains data for this repository for hosting on GitHub. This directory did not become mandatory until March 15th 2021.

This directory contains several features.

**Funding** - This funding info usually contains a `FUNDING.yml` file that links to sponsor info for this project. A folder called `/Funding` is also included, and at `/Funding/OldVersions/` contains old versions of the funding file.

**Issues** - This directory contains archives of issues I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:

_I archive my own GitHub issues, and will not archive issues you raise without your permission. This includes replies, comments, and posts._

* A YAML file is also included that contains GitHub label data, with hexadecimal color codes, issue description, and issue titles.

* Sometimes, other YAML files are included for configuration of issues.

**Coming soon:** A separate YAML file for each issue directory that contains label data

**Discussions** - Similar to the issues directory, this directory contains archives of discussions I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:

_I archive my own GitHub discussions, and will not archive discussions you raise without your permission. This includes replies, comments, and posts_

**SocialPreview** - This directory contains social media preview info for this repository for when you share or search for it. This makes a background appear above the repository in searches or messages, so that the profile picture of the user/organization is not shown in the preview. You can read more about it [here](/.github/SocialPreview/README.md).

That is currently it at the moment, other than the new description for this process being placed at the root of the directory (the file you are currently reading)

***

## File info

**File type:** `Markdown (*.md)`

**Original creation date:** `Thursday, March 18th 2021 at 3:18 pm)`

**File version:** `1 (Thursday, March 18th 2021 at 3:18 pm)`

**Line count (including blank lines and compiler line):** `43`

***
194 changes: 194 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
# Start of script
# I am going to keep trying on this until I get it right
# @seanpm2001 is the global code owner for this project
/// @seanpm2001
// @seanpm2001
# / @seanpm2001
/* @seanpm2001
* @seanpm2001
# Directories at root
# .github
/.github/ @seanpm2001
# Docs
/Docs/ @seanpm2001
# External
/External/ @seanpm2001
# OldVersions
/OldVersions/ @seanpm2001
# RepoData
/RepoData/ @seanpm2001
# Files at root
.editorconfig @seanpm2001
.gitattributes @seanpm2001
.gitignore @seanpm2001
AUTHORS @seanpm2001
CITATION.cff @seanpm2001
CONTRIBUTING.md @seanpm2001
COPYINGL @seanpm2001
CREDITS @seanpm2001
DRM-free_label.en.svg @seanpm2001
INSTALL @seanpm2001
LINUX_DEFENDER.desktop @seanpm2001
LICENSE.txt @seanpm2001
Pax_tux.png @seanpm2001
PROJECT_LANG_1.py @seanpm2001
PROJECT_LANG_2.sh @seanpm2001
README.md @seanpm2001
SECURITY.md @seanpm2001
SponsorButton.png @seanpm2001
desktop.ini @seanpm2001
makefile.mk @seanpm2001
# Individual file types
# Section A
*.aiff @seanpm2001
*.AIFF @seanpm2001
*.alac @seanpm2001
*.ALAC @seanpm2001
*.applescript @seanpm2001
*.asm @seanpm2001
*.ASM @seanpm2001
# Section B
*.bib @seanpm2001
# Section C
*.c @seanpm2001
*.C @seanpm2001
*.cff @seanpm2001
*.cpp @seanpm2001
*.css @seanpm2001
*.cxx @seanpm2001
# Section D
*.DS_STORE @seanpm2001
*.desktop @seanpm2001
*.dmg @seanpm2001
*.DMG @seanpm2001
# Section E
*.editorconfig @seanpm2001
# Section F
# No entries starting with the letter F
# Section G
*.gif @seanpm2001
*.GIF @seanpm2001
*.gitattributes @seanpm2001
*.gitignore @seanpm2001
*.go @seanpm2001
# Section H
*.h @seanpm2001
*.H @seanpm2001
*.htm @seanpm2001
*.html @seanpm2001
# Section I
*.ini @seanpm2001
*.ipa @seanpm2001
*.IPA @seanpm2001
*.iso @seanpm2001
*.ISO @seanpm2001
# Section J
*.java @seanpm2001
*.js @seanpm2001
*.jpg @seanpm2001
*.jpeg @seanpm2001
*.jpp @seanpm2001
*.json @seanpm2001
*.jspp @seanpm2001
# Section K
# No entries starting with the letter K
# Section L
# No entries starting with the letter L
# Section M
*.m @seanpm2001
*.m4 @seanpm2001
*.mm @seanpm2001
*.mak @seanpm2001
*.make @seanpm2001
*.markdown @seanpm2001
*.md @seanpm2001
*.mdown @seanpm2001
*.metal @seanpm2001
*.mhtm @seanpm2001
*.mhtml @seanpm2001
*.mp3 @seanpm2001
*.mk @seanpm2001
*.mkd @seanpm2001
*.mot @seanpm2001
*.MOT @seanpm2001
*.mov @seanpm2001
*.MOV @seanpm2001
# Section N
# No entries starting with the letter N
# Section O
*.oga @seanpm2001
*.ogg @seanpm2001
# Section P
*.p @seanpm2001
*.P @seanpm2001
*.pas @seanpm2001
*.PAS @seanpm2001
*.php @seanpm2001
*.png @seanpm2001
*.PNG @seanpm2001
*.pl @seanpm2001
*.pro @seanpm2001
*.ps @seanpm2001
*.PS @seanpm2001
*.py @seanpm2001
# Section Q
*.qs @seanpm2001
*.qt @seanpm2001
# Section R
*.rb @seanpm2001
*.rs @seanpm2001
# Section S
*.self @seanpm2001
*.sh @seanpm2001
*.st @seanpm2001
*.sql @seanpm2001
*.svg @seanpm2001
*.swift @seanpm2001
# Section T
*.tex @seanpm2001
*.ts @seanpm2001
*.tsx @seanpm2001
*.ttf @seanpm2001
*.TTF @seanpm2001
*.txt @seanpm2001
*.TXT @seanpm2001
# Section U
*.url @seanpm2001
*.URL @seanpm2001
# Section V
*.v @seanpm2001
*.vh @seanpm2001
*.vhd @seanpm2001
*.vhdl @seanpm2001
*.vtt @seanpm2001
# Setion W
*.wim @seanpm2001
*.woff @seanpm2001
*.WOFF @Seanpm2001
# Section X
*.xhtm @seanpm2001
*.xhtml @seanpm2001
*.xml @seanpm2001
# Section Y
*.yaml @seanpm2001
*.yml @seanpm2001
# Section Z
# No entries starting with the letter Z

# No more individual file types for now

# Todo

# Add every individual file
# Finish adding all file types
# Add new entries as they are added

# Past goals (completed)
# Add all Wiki entries
# Add all graphics entries

# File info
# File type: codeowners file (CODEOWNERS)
# File version: 2 (2022, Monday, February 21st at 3:05 pm)
# Line count (including blank lines and compiler line): 195
# End of script
8 changes: 8 additions & 0 deletions .github/Discussions/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

***

# Privacy policy

I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be.

***
8 changes: 8 additions & 0 deletions .github/Discussions/README_V1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

***

# Privacy policy

I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be.

***
16 changes: 16 additions & 0 deletions .github/Funding/OldVersions/FUNDING_V1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]

patreon: seanpm2001 # Creator page
patreon: seanpm2001_software # Main page
# Replace with a single Patreon username

open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
16 changes: 16 additions & 0 deletions .github/Funding/OldVersions/FUNDING_V1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]

patreon: seanpm2001 # Creator page
patreon: seanpm2001_software # Main page
# Replace with a single Patreon username

open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
16 changes: 16 additions & 0 deletions .github/Funding/OldVersions/README.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]

patreon: seanpm2001 # Creator page
patreon: seanpm2001_software # Main page
# Replace with a single Patreon username

open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
32 changes: 32 additions & 0 deletions .github/Funding/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

***

# About the funding directory

The funding directory contains an archive of the funding file for this project. The funding file enables GitHub sponsorships. The main funding file is 1 directory below, located [here](/.github/FUNDING.yml).

***

## Sponsor info

![/SponsorButton.png](/SponsorButton.png)

You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors)

You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/)

Try it out! The sponsor button is right up next to the watch/unwatch button.

***

## File info

**File type:** `Markdown (*.md)`

**Original creation date:** `Thursday, March 18th 2021 at 3:33 pm)`

**File version:** `1 (Thursday, March 18th 2021 at 3:33 pm)`

**Line count (including blank lines and compiler line):** `33`

***
32 changes: 32 additions & 0 deletions .github/Funding/README_V1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

***

# About the funding directory

The funding directory contains an archive of the funding file for this project. The funding file enables GitHub sponsorships. The main funding file is 1 directory below, located [here](/.github/FUNDING.yml).

***

## Sponsor info

![/SponsorButton.png](/SponsorButton.png)

You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors)

You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/)

Try it out! The sponsor button is right up next to the watch/unwatch button.

***

## File info

**File type:** `Markdown (*.md)`

**Original creation date:** `Thursday, March 18th 2021 at 3:33 pm)`

**File version:** `1 (Thursday, March 18th 2021 at 3:33 pm)`

**Line count (including blank lines and compiler line):** `33`

***
112 changes: 112 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@

***

# Opening an issue in this SNU Programming Tools IDE project

Thank you for taking the time to open an issue in this SNU web ide project. Please fill out this form to complete the process of opening an issue:

#### General description

Please write a description with at least 75 characters in the following space. Limit: 8,196 characters

```
Your description goes here
```

#### Steps to Reproduce

Steps should be clear.

Add steps here

```
Your description goes here
```

#### Expected Results
<!-- Example: No error is throw -->

```
Your description goes here
```

#### Actual Results
<!-- Example: Error is thrown -->

```
Your description goes here
```

### Browsers Affected

Please consider opening an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task.

Please also specify your virtual machine specs you used for testing if you used a virtual machine, in the space below. Max: 8,196 characters

Also, please specify the specific browser version down to the last number (example: Firefox 88.0.1esr) and specify if you are running on a desktop or mobile device, and if it (the host system) is virtualized or not

<!-- Check all that apply -->
- [ ] Tor
- [ ] Mozilla Firefox
- [ ] SeaMonkey
- [ ] Pale Moon
- [ ] TenFourFox
- [ ] Konquerer
- [ ] Line Mode Browser
- [ ] IceWeasel/IceCat
- [ ] IceRaven
- [ ] DuckDuckGo
- [ ] Safari
- [ ] Netscape Navigator
- [ ] Nexus
- [ ] SlimJet
- [ ] AOL Explorer
- [ ] Opera Mini
- [ ] Android stock browser
- [ ] Dot browser
- [ ] Microsoft Edge
- [ ] Opera
- [ ] Samsung Internet
- [ ] Google Chrome
- [ ] Google Chromium
- [ ] Internet Explorer
- [ ] Other

**Virtual machine config**

```
Sample (overwrite this)
Microsoft Windows XP Service Pack 3
Registry modification for activation
Internet Explorer 6
VirtualBox 6.1.20 (64 bit)
512 MB RAM
32 Gigabyte disk space
Host operating system: Kubuntu 22.04
VirtualBox guest additions? Installed
Internet type: Broadband
Specific error: Page won't load, things aren't displaying correctly, see above
```

### Versions

What version are you using? (supported versions only)

```
Your description goes here
```

- [ ] I have filled out all fields
- [ ] I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html)
- [ ] I have confirmed this issue isn't a duplicate
- [ ] I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md)
- [ ] I want my answer to be archived into the repository

***

<!-- Issue template info
File version: 1 (Tuesday, November 30th at 9:45 pm)
File type: Markdown document (*.md *.mkd *.mdown *.markdown)
Line count (including blank lines and compiler line): 113
File purpose: Serving as an issue template for this project.
!-->
200 changes: 200 additions & 0 deletions .github/ISSUE_TEMPLATE/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,200 @@
name: General issue
description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm and check each one of the checkboxes.
options:
- label: I verified that this is not an existing issue
required: true
- label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/)
required: true
- label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior
required: true
validations:
required: true

- type: checkboxes
attributes:
label: I tried to reproduce the issue when...
options:
- label: The repository was downloaded to my device/was viewing through the web browser
required: true
- label: I was using the latest version of the project
required: true
- label: I was using the version from the right source
required: false
- label: I did not modify the project
required: false
- type: textarea
attributes:
label: Description
description: Description of the bug or feature. Please also list the version of the programming language you tested with.
validations:
required: true

- type: textarea
attributes:
label: Steps to Reproduce
placeholder: |
1. [First Step]
2. [Second Step]
3. [and so on...]
validations:
required: true

- type: textarea
attributes:
label: Expected Results
description: What you expected to happen, example - no error is thrown
placeholder: |
1. [First Step]
2. [Second Step]
3. [and so on...]
validations:
required: true

- type: textarea
attributes:
label: Actual results
description: What actually happened, error is thrown
validations:
required: true

- type: input
attributes:
label: Git-image repository version
validations:
required: true

- type: checkboxes
attributes:
label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task.
options:
label: Tor
required: false
label: Mozilla Firefox
required: false
label: SeaMonkey
required: false
label: Pale Moon
required: false
label: TenFourFox
required: false
label: Konquerer
required: false
label: Line Mode Browser
required: false
label: IceWeasel/IceCat
required: false
label: IceRaven
required: false
label: DuckDuckGo
required: false
label: Safari
required: false
label: Netscape Navigator
required: false
label: Nexus
required: false
label: SlimJet
required: false
label: AOL Explorer
required: false
label: Opera Mini
required: false
label: Android stock browser
required: false
label: Dot browser
required: false
label: Microsoft Edge
required: false
label: Opera
required: false
label: Samsung Internet
required: false
label: Google Chrome
required: false
label: Google Chromium
required: false
label: Internet Explorer
required: false
label: Other
required: false
validations:
required: true

- type: input
attributes:
label: Specify the specific browser version down to the last number (example Firefox 88.0.1esr)
validations:
required: true

- type: checkboxes
attributes:
label: I am running this repository in a virtual machine...
options:
- label: Yes (with Oracle VM VirtualBox)
required: false
- label: Yes (with VMWare)
required: false
- label: Yes (with Hyper-V)
required: false
- label: Yes (with Qemu)
required: false
- label: Yes (with another virtual machine option that isn't listed)
required: false
- label: No (I am running it on my host computer)
required: false

- type: textarea
attributes:
label: Additional virtual machine configuration
placeholder: |
Sample (overwrite this)
Microsoft Windows XP Service Pack 3
Registry modification for activation
Internet Explorer 6
VirtualBox 6.1.20 (64 bit)
512 MB RAM
32 Gigabyte disk space
Host operating system: Kubuntu 22.04
VirtualBox guest additions? Installed
Internet type: Broadband
Specific error: Page won't load, things aren't displaying correctly, see above validations:
validations:
required: true

- type: textarea
attributes:
label: Version used
placeholder: |
What version are you using? (supported versions only)
validations:
required: true

attributes:
label: Validate issue
options:
- label: I have filled out all the fields
required: true
- label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html)
required: true
- label: I have confirmed this issue isn't a duplicate
required: true
- label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md)
required: true
- label: I want my answer to be archived into the repository
required: false

# Issue template info
# 6B (2022, Thursday, May 19th at 6:59 pm PST)
# File type: YAML document (*.yml *.yaml)
# Line count (including blank lines and compiler line): 201
# File purpose: Serving as a modern issue template for this project.
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
blank_issues_enabled: false
contact_links:
- name: I want to help develop
url: https://github.com/seanpm2001/Teams/discussions/
about: Thank you for your interest in this project! Please consider joining a team to start developing with me
- name: I want to help translate
url: https://github.com/seanpm2001/Teams/discussions/
about: Thank you for your interest in this project! Please consider joining a team to start translating projects with me

# File info
# File version: 1 (2022, Thursday, May 19th at 7:07 pm PST)
# File type: GitHub issue template config file (*.yml)
# Line count (including blank lines and compiler line): 14
200 changes: 200 additions & 0 deletions .github/ISSUE_TEMPLATE/issue-template.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,200 @@
name: General issue
description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm and check each one of the checkboxes.
options:
- label: I verified that this is not an existing issue
required: true
- label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/)
required: true
- label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior
required: true
validations:
required: true

- type: checkboxes
attributes:
label: I tried to reproduce the issue when...
options:
- label: The repository was downloaded to my device/was viewing through the web browser
required: true
- label: I was using the latest version of the project
required: true
- label: I was using the version from the right source
required: false
- label: I did not modify the project
required: false
- type: textarea
attributes:
label: Description
description: Description of the bug or feature. Please also list the version of the programming language you tested with.
validations:
required: true

- type: textarea
attributes:
label: Steps to Reproduce
placeholder: |
1. [First Step]
2. [Second Step]
3. [and so on...]
validations:
required: true

- type: textarea
attributes:
label: Expected Results
description: What you expected to happen, example - no error is thrown
placeholder: |
1. [First Step]
2. [Second Step]
3. [and so on...]
validations:
required: true

- type: textarea
attributes:
label: Actual results
description: What actually happened, error is thrown
validations:
required: true

- type: input
attributes:
label: Git-image repository version
validations:
required: true

- type: checkboxes
attributes:
label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task.
options:
label: Tor
required: false
label: Mozilla Firefox
required: false
label: SeaMonkey
required: false
label: Pale Moon
required: false
label: TenFourFox
required: false
label: Konquerer
required: false
label: Line Mode Browser
required: false
label: IceWeasel/IceCat
required: false
label: IceRaven
required: false
label: DuckDuckGo
required: false
label: Safari
required: false
label: Netscape Navigator
required: false
label: Nexus
required: false
label: SlimJet
required: false
label: AOL Explorer
required: false
label: Opera Mini
required: false
label: Android stock browser
required: false
label: Dot browser
required: false
label: Microsoft Edge
required: false
label: Opera
required: false
label: Samsung Internet
required: false
label: Google Chrome
required: false
label: Google Chromium
required: false
label: Internet Explorer
required: false
label: Other
required: false
validations:
required: true

- type: input
attributes:
label: Specify the specific browser version down to the last number (example Firefox 88.0.1esr)
validations:
required: true

- type: checkboxes
attributes:
label: I am running this repository in a virtual machine...
options:
- label: Yes (with Oracle VM VirtualBox)
required: false
- label: Yes (with VMWare)
required: false
- label: Yes (with Hyper-V)
required: false
- label: Yes (with Qemu)
required: false
- label: Yes (with another virtual machine option that isn't listed)
required: false
- label: No (I am running it on my host computer)
required: false

- type: textarea
attributes:
label: Additional virtual machine configuration
placeholder: |
Sample (overwrite this)
Microsoft Windows XP Service Pack 3
Registry modification for activation
Internet Explorer 6
VirtualBox 6.1.20 (64 bit)
512 MB RAM
32 Gigabyte disk space
Host operating system: Kubuntu 22.04
VirtualBox guest additions? Installed
Internet type: Broadband
Specific error: Page won't load, things aren't displaying correctly, see above validations:
validations:
required: true

- type: textarea
attributes:
label: Version used
placeholder: |
What version are you using? (supported versions only)
validations:
required: true

attributes:
label: Validate issue
options:
- label: I have filled out all the fields
required: true
- label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html)
required: true
- label: I have confirmed this issue isn't a duplicate
required: true
- label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md)
required: true
- label: I want my answer to be archived into the repository
required: false

# Issue template info
# 6B (2022, Thursday, May 19th at 6:59 pm PST)
# File type: YAML document (*.yml *.yaml)
# Line count (including blank lines and compiler line): 201
# File purpose: Serving as a modern issue template for this project.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/miscellaneous.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Miscellaneous
description: Write a general issue without too much questioning
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm and check each one of the checkboxes.
options:
- label: I verified that this is not an existing issue
required: true
- label: This is not a question, poll, or discussion
required: true
- label: I checked the documentation to understand that the issue I report is not a normal behavior
required: true
- type: textarea
attributes:
label: Description
description: Your issue description. Make sure to utilize Markdown to make your life easier :)
validations:
required: true
# File info
# File type: GitHub bug report issue template (*.yml)
# File version: 1 (2022, Wednesday, November 23rd at 6:31 pm PST)
# Line count (including blank lines and compiler line): 30
14 changes: 14 additions & 0 deletions .github/Issues/GitHub_Default_IssueLabels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Default GitHub issue data file (YAML)
issuelabel_1: color1: "#ffffff" title1: "wontfix" description1: "This will not be worked on"
issueLabel_2: color2: "#d876e3" title2: "question" description2: "Further information is requested"
issueLabel_3: color3: "#e4e669" title3: "invalid" description3: "This doesn't seem right"
issueLabel_4: color4: "#008672" title4: "help wanted" description4: "Extra attention is needed"
issueLabel_5: color5: "#7057ff" title5: "good first issue" description5: "Good for newcomers"
issueLabel_6: color6: "#a2eeef" title6: "enhancement" description6: "New feature or request"
issueLabel_7: color7: "#cfd3d7" title7: "duplicate" description7: "This issue or pull request already exists"
issueLabel_8: color8: "#0075ca" title8: "documentation" description8: "Improvements or additions to documentation"
issueLabel_9: color9: "#d73a4a" title9: "bug" description9: "Something isn't working"
# Users can also create their own issue labels, and customize the color, title, and description
# issueLabel_10: color10: "#000000" title10: "void" description10: "not yet created"
# No known limit on # of issue labels
# End of file
8 changes: 8 additions & 0 deletions .github/Issues/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

***

# Privacy policy

I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be.

***
8 changes: 8 additions & 0 deletions .github/Issues/README_V1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

***

# Privacy policy

I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be.

***
55 changes: 55 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@

***

# Opening a pull request on this SNU IDE project


Thank you for taking the time to open a PR in this SNU web ide project. Please fill out this form to complete the process of opening an issue:

#### General description

Please write a description with at least 75 characters in the following space. Limit: 8,196 characters

```
Your description goes here
```

#### Reference Issue
<!-- Example: Fixes #1234 -->

```
add the link to the issue to the # below
```

#1 // Overwrite this line

What does your pull request do?

- [ ] Fixes a bug
- [ ] Adds a feature
- [ ] Fixes a security problem
- [ ] Fixes a typo
- [ ] Adds translation

### Versions

What version are you using? (supported versions only)

```
Your description goes here
```

- [ ] I have filled out all fields
- [ ] I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html)
- [ ] I have confirmed this pull request isn't a duplicate
- [ ] I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md)
- [ ] I want my answer to be archived into the repository

***

<!-- Issue template info
File version: 1 (Tuesday, November 30th at 9:49 pm)
File type: Markdown document (*.md *.mkd *.mdown *.markdown)
Line count (including blank lines and compiler line): 53
File purpose: Serving as an issue template for this project.
!-->
101 changes: 101 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@

***

# Creating a pull request

Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR.

**Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language.

Provide a general summary of your changes in the Title above

```markdown
Your summary description (title) goes here
```

## Description

Describe your changes in detail

```markdown
Your issue description (body) goes here
```

## Related Issue

- [ ] This project only accepts pull requests related to open issues
- [ ] If suggesting a new feature or change, please discuss it in an issue first
- [ ] If fixing a bug, there should be an issue describing it with steps to reproduce
- [ ] Please link to the issue here:

```markdown
Link to the issue here, #__
```

## Motivation and Context

Why is this change required? What problem does it solve?

```markdown

```

## How Has This Been Tested?

- [ ] Please describe in detail how you tested your changes.
- [ ] Include details of your testing environment, and the tests you ran to.
- [ ] see how your change affects other areas of the code, etc.

## Screenshots (if appropriate):

Please include the screenshots inside your pull request as well as a local link (hard copy)

**Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.)

**Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed

```markdown
Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section

![Example1](/.github/Pull_Requests/Queue/PR/Image.png)
![Example2](/.github/Pull_Requests/Queue/PR/Image.png)
![Example3](/.github/Pull_Requests/Queue/PR/Image.png)
![Example4](/.github/Pull_Requests/Queue/PR/Image.png)
![Example5](/.github/Pull_Requests/Queue/PR/Image.png)
```

## Types of changes

What types of changes does your code introduce? Put an `x` in all the boxes that apply:

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Checklist:

Go over all the following points, and put an `x` in all the boxes that apply.

If you're unsure about any of these, don't hesitate to ask. We're here to help!

- [ ] My source code (if source code is provided) follows the source code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] My change does not delete necessary files
- [ ] I have updated the documentation accordingly.
- [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms
- [ ] I have added tests to cover my changes.
- [ ] I have gone through all the steps, and have thoroughly read the instructions

***

<!-- Template info
Pull request template
Version 1 (2022, Thursday, May 19th at 5:47 pm PST)
File type: Markdown document (*.md *.mkd *.mdown *.markdown)
Line count (including blank lines and compiler line): 102
!-->
101 changes: 101 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@

***

# Creating a pull request

Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR.

**Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language.

Provide a general summary of your changes in the Title above

```markdown
Your summary description (title) goes here
```

## Description

Describe your changes in detail

```markdown
Your issue description (body) goes here
```

## Related Issue

- [ ] This project only accepts pull requests related to open issues
- [ ] If suggesting a new feature or change, please discuss it in an issue first
- [ ] If fixing a bug, there should be an issue describing it with steps to reproduce
- [ ] Please link to the issue here:

```markdown
Link to the issue here, #__
```

## Motivation and Context

Why is this change required? What problem does it solve?

```markdown

```

## How Has This Been Tested?

- [ ] Please describe in detail how you tested your changes.
- [ ] Include details of your testing environment, and the tests you ran to.
- [ ] see how your change affects other areas of the code, etc.

## Screenshots (if appropriate):

Please include the screenshots inside your pull request as well as a local link (hard copy)

**Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.)

**Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed

```markdown
Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section

![Example1](/.github/Pull_Requests/Queue/PR/Image.png)
![Example2](/.github/Pull_Requests/Queue/PR/Image.png)
![Example3](/.github/Pull_Requests/Queue/PR/Image.png)
![Example4](/.github/Pull_Requests/Queue/PR/Image.png)
![Example5](/.github/Pull_Requests/Queue/PR/Image.png)
```

## Types of changes

What types of changes does your code introduce? Put an `x` in all the boxes that apply:

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Checklist:

Go over all the following points, and put an `x` in all the boxes that apply.

If you're unsure about any of these, don't hesitate to ask. We're here to help!

- [ ] My source code (if source code is provided) follows the source code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] My change does not delete necessary files
- [ ] I have updated the documentation accordingly.
- [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms
- [ ] I have added tests to cover my changes.
- [ ] I have gone through all the steps, and have thoroughly read the instructions

***

<!-- Template info
Pull request template
Version 1 (2022, Thursday, May 19th at 5:47 pm PST)
File type: Markdown document (*.md *.mkd *.mdown *.markdown)
Line count (including blank lines and compiler line): 102
!-->
8 changes: 8 additions & 0 deletions .github/Pull_Requests/OldVersions/English/1/1-100/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

***

# Privacy policy

I archive my own GitHub discussions, pull requests, and issues. By default, I respect users privacy, and will not have your issue, pull request, or discussion archived. You have to specifically ask for it to be archived if you want it to be.

***
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

***

# Privacy policy

I archive my own GitHub discussions, pull requests, and issues. By default, I respect users privacy, and will not have your issue, pull request, or discussion archived. You have to specifically ask for it to be archived if you want it to be.

***
8 changes: 8 additions & 0 deletions .github/Pull_Requests/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

***

# Privacy policy

I archive my own GitHub discussions, pull requests, and issues. By default, I respect users privacy, and will not have your issue, pull request, or discussion archived. You have to specifically ask for it to be archived if you want it to be.

***
71 changes: 71 additions & 0 deletions .github/Security/OldVersions/1/1-100/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@

***

# Security Policy

## Supported Versions

This project is a Git-image project, and doesn't have security issues like common repositories. They are still possible, and instructions will be listed below.

## Version history

| Version | Supported | Support status |
| ------- | ------------------ |-----------------|
| Versions | not | listed yet |
| v1.0.0 | :heavy_check_mark: | NOT YET RELEASED |

## Reporting a Vulnerability

DO NOT REPORT A ZERO DAY VULNERABILITY PUBLICLY!

Please instead direct message me via GitHub. If there is no response within 90 days, you can post the vulnerability as an issue, as part of the standard 0 day security exploit reporting guidelines.

If a vulnerability is caused by an outdated dependancy, you can report it publicly, as it usually isn't that much of a problem.

Other security currently isn't available. If there are any further questions, message me via email at [seanpm2001-mailing-list@protonmail.com](mailto:seanpm2001-mailing-list@protonmail.com)

***

## File info

**File type:** `Markdown document (*.md *.mkd *.mdown *.markdown)`

**File version:** `1 (2022, Thursday, May 19th at 3:05 pm PST)`

**Line count (including blank lines and compiler line):** `72`

***

## File history

<details><summary><p>Click/tap here to expand/collapse the history for this file</p></summary>

**Version 1 (2022, Thursday, May 19th at 3:05 pm PST)**

> Changes:

> * Started the file

> * Added the supported versions section

> * Added the version history section

> * Added the reporting a vulnerability section

> * Added the file info section

> * Added the file history section

> * No other changes in version 1

**Version 2 (Coming soon)**

> Changes:

> * Coming soon

> * No other changes in version 2

</details>

***
71 changes: 71 additions & 0 deletions .github/Security/OldVersions/1/1-100/SECURITY_V1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@

***

# Security Policy

## Supported Versions

This project is a Git-image project, and doesn't have security issues like common repositories. They are still possible, and instructions will be listed below.

## Version history

| Version | Supported | Support status |
| ------- | ------------------ |-----------------|
| Versions | not | listed yet |
| v1.0.0 | :heavy_check_mark: | NOT YET RELEASED |

## Reporting a Vulnerability

DO NOT REPORT A ZERO DAY VULNERABILITY PUBLICLY!

Please instead direct message me via GitHub. If there is no response within 90 days, you can post the vulnerability as an issue, as part of the standard 0 day security exploit reporting guidelines.

If a vulnerability is caused by an outdated dependancy, you can report it publicly, as it usually isn't that much of a problem.

Other security currently isn't available. If there are any further questions, message me via email at [seanpm2001-mailing-list@protonmail.com](mailto:seanpm2001-mailing-list@protonmail.com)

***

## File info

**File type:** `Markdown document (*.md *.mkd *.mdown *.markdown)`

**File version:** `1 (2022, Thursday, May 19th at 3:05 pm PST)`

**Line count (including blank lines and compiler line):** `72`

***

## File history

<details><summary><p>Click/tap here to expand/collapse the history for this file</p></summary>

**Version 1 (2022, Thursday, May 19th at 3:05 pm PST)**

> Changes:
> * Started the file
> * Added the supported versions section
> * Added the version history section
> * Added the reporting a vulnerability section
> * Added the file info section
> * Added the file history section
> * No other changes in version 1
**Version 2 (Coming soon)**

> Changes:
> * Coming soon
> * No other changes in version 2
</details>

***
71 changes: 71 additions & 0 deletions .github/Security/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@

***

# Security Policy

## Supported Versions

This project is a Git-image project, and doesn't have security issues like common repositories. They are still possible, and instructions will be listed below.

## Version history

| Version | Supported | Support status |
| ------- | ------------------ |-----------------|
| Versions | not | listed yet |
| v1.0.0 | :heavy_check_mark: | NOT YET RELEASED |

## Reporting a Vulnerability

DO NOT REPORT A ZERO DAY VULNERABILITY PUBLICLY!

Please instead direct message me via GitHub. If there is no response within 90 days, you can post the vulnerability as an issue, as part of the standard 0 day security exploit reporting guidelines.

If a vulnerability is caused by an outdated dependancy, you can report it publicly, as it usually isn't that much of a problem.

Other security currently isn't available. If there are any further questions, message me via email at [seanpm2001-mailing-list@protonmail.com](mailto:seanpm2001-mailing-list@protonmail.com)

***

## File info

**File type:** `Markdown document (*.md *.mkd *.mdown *.markdown)`

**File version:** `1 (2022, Thursday, May 19th at 3:05 pm PST)`

**Line count (including blank lines and compiler line):** `72`

***

## File history

<details><summary><p>Click/tap here to expand/collapse the history for this file</p></summary>

**Version 1 (2022, Thursday, May 19th at 3:05 pm PST)**

> Changes:
> * Started the file
> * Added the supported versions section
> * Added the version history section
> * Added the reporting a vulnerability section
> * Added the file info section
> * Added the file history section
> * No other changes in version 1
**Version 2 (Coming soon)**

> Changes:
> * Coming soon
> * No other changes in version 2
</details>

***
30 changes: 30 additions & 0 deletions .github/SocialPreview/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

***

# About the social preview directory

The social preview directory contains data related to social media previews of repositories. On GitHub projects, this data is located at `<branchNameHere>/.github/SocialPreview/`

GitHub has a 1.00 megabyte (1,000,000 bytes or 1,048,576 bytes, I am not sure if GitHub uses base 2 or base 10 binary prefix numbering) image upload limit. Images I wanted to use but couldn't are located in `<branchNameHere>/.github/SocialPreview/UnusedAssets/`

These images currently only show when searching for repositories or searching through label. They don't show up anywhere else (as of March 18th 2021) with these preview templates, sharing a link to this repository will show the preview image, rather than my GitHub profile picture or organization profile picture.

The standard template is also included, but isn't used.

These previews started getting added to repositories on March 17th 2021 during a new repository update period, which included new features to add to all new repositories.

Included files are in PNG, JPG/JPEG, or SVG format.

***

## File info

**File type:** `Markdown (*.md)`

**Original creation date:** `Thursday, March 18th 2021 at 3:07 pm)`

**File version:** `1 (Thursday, March 18th 2021 at 3:07 pm)`

**Line count (including blank lines and compiler line):** `31`

***
30 changes: 30 additions & 0 deletions .github/SocialPreview/README_V1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

***

# About the social preview directory

The social preview directory contains data related to social media previews of repositories. On GitHub projects, this data is located at `<branchNameHere>/.github/SocialPreview/`

GitHub has a 1.00 megabyte (1,000,000 bytes or 1,048,576 bytes, I am not sure if GitHub uses base 2 or base 10 binary prefix numbering) image upload limit. Images I wanted to use but couldn't are located in `<branchNameHere>/.github/SocialPreview/UnusedAssets/`

These images currently only show when searching for repositories or searching through label. They don't show up anywhere else (as of March 18th 2021) with these preview templates, sharing a link to this repository will show the preview image, rather than my GitHub profile picture or organization profile picture.

The standard template is also included, but isn't used.

These previews started getting added to repositories on March 17th 2021 during a new repository update period, which included new features to add to all new repositories.

Included files are in PNG, JPG/JPEG, or SVG format.

***

## File info

**File type:** `Markdown (*.md)`

**Original creation date:** `Thursday, March 18th 2021 at 3:07 pm)`

**File version:** `1 (Thursday, March 18th 2021 at 3:07 pm)`

**Line count (including blank lines and compiler line):** `31`

***
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
101 changes: 101 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@

***

# Creating a pull request

Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR.

**Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language.

Provide a general summary of your changes in the Title above

```markdown
Your summary description (title) goes here
```

## Description

Describe your changes in detail

```markdown
Your issue description (body) goes here
```

## Related Issue

- [ ] This project only accepts pull requests related to open issues
- [ ] If suggesting a new feature or change, please discuss it in an issue first
- [ ] If fixing a bug, there should be an issue describing it with steps to reproduce
- [ ] Please link to the issue here:

```markdown
Link to the issue here, #__
```

## Motivation and Context

Why is this change required? What problem does it solve?

```markdown

```

## How Has This Been Tested?

- [ ] Please describe in detail how you tested your changes.
- [ ] Include details of your testing environment, and the tests you ran to.
- [ ] see how your change affects other areas of the code, etc.

## Screenshots (if appropriate):

Please include the screenshots inside your pull request as well as a local link (hard copy)

**Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.)

**Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed

```markdown
Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section

![Example1](/.github/Pull_Requests/Queue/PR/Image.png)
![Example2](/.github/Pull_Requests/Queue/PR/Image.png)
![Example3](/.github/Pull_Requests/Queue/PR/Image.png)
![Example4](/.github/Pull_Requests/Queue/PR/Image.png)
![Example5](/.github/Pull_Requests/Queue/PR/Image.png)
```

## Types of changes

What types of changes does your code introduce? Put an `x` in all the boxes that apply:

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Checklist:

Go over all the following points, and put an `x` in all the boxes that apply.

If you're unsure about any of these, don't hesitate to ask. We're here to help!

- [ ] My source code (if source code is provided) follows the source code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] My change does not delete necessary files
- [ ] I have updated the documentation accordingly.
- [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms
- [ ] I have added tests to cover my changes.
- [ ] I have gone through all the steps, and have thoroughly read the instructions

***

<!-- Template info
Pull request template
Version 1 (2022, Thursday, May 19th at 5:47 pm PST)
File type: Markdown document (*.md *.mkd *.mdown *.markdown)
Line count (including blank lines and compiler line): 102
!-->
19 changes: 19 additions & 0 deletions .github/workflowArchives/Linting/YAML/yaml-lint_V1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: YAML Lint

on:
push:
paths:
- '**.yml'

jobs:
lint:
name: Lint
timeout-minutes: 3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: ibiqlik/action-yamllint@v3.1
with:
config_file: .yamllint.yml
strict: false
19 changes: 19 additions & 0 deletions .github/workflowArchives/YAML/Lint/yaml-lint_V1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: YAML Lint

on:
push:
paths:
- '**.yml'

jobs:
lint:
name: Lint
timeout-minutes: 3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: ibiqlik/action-yamllint@v3.1
with:
config_file: .yamllint.yml
strict: false
19 changes: 19 additions & 0 deletions .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: YAML Lint

on:
push:
paths:
- '**.yml'

jobs:
lint:
name: Lint
timeout-minutes: 3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: ibiqlik/action-yamllint@v3.1
with:
config_file: .yamllint.yml
strict: false
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
55 changes: 55 additions & 0 deletions .gitlab/GitLab_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<HR>
<img src="/404.jpeg" alt="404 error on 404 image file for 404 page, 404" width="300" height="200">
<H1>404</H1>
<H2><a href="https://en.wikipedia.org/wiki/HTTP_404">File not found</a></H2>
<HR>
<p><a href="https://github.com/seanpm2001/404Day">Celebrate 404 day</a></p>
<p>The file could not be found, is damaged, or you do not have permission to access it. Please <a href="https://github.com/seanwallawalla-testing/seanwallawalla-testing.github.io/issues">[raise an issue]</a> if a link is not working correctly.</p>
<HR>
Binary file added 404.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions 404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
permalink: /404.html
---
7 changes: 7 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
=== Authors ====
1. @seanpm2001
2. No other authors as of 2021, August 24th at 3:36 pm

---
The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project.
---
7 changes: 7 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
=== Authors ====
1. @seanpm2001
2. No other authors as of 2021, August 24th at 3:36 pm

---
The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project.
---
29 changes: 29 additions & 0 deletions AUTOMATE2001.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# A set of tasks for the Automate2001 bot to perform here
automate2001_tasks:
isAlldone: "False"

-
Automate-All-ContributorSrc:
-
Automate-Pull-Requests-archival
isAdone: "False"
Automate-Index-file
isBdone: "False"
Automate-Issue-archival
isCdone: "False"

-
Automate-RepoData:
-
Automate-RepoData-Description
isDDone: "False"
Automate-RepoData-GitHubLink
isEDone: "False"
Automate-RepoData-GitHubGitLink
isFDone: "False"
Automate-RepoData-Linked
isGDone: "False"
Automate-RepoData-Topics
isHDone: "False"

# File version: 1 (2022, Tuesday, February 22nd at 8:07 pm)
29 changes: 29 additions & 0 deletions AUTOMATE2001.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# A set of tasks for the Automate2001 bot to perform here
automate2001_tasks:
isAlldone: "False"

-
Automate-All-ContributorSrc:
-
Automate-Pull-Requests-archival
isAdone: "False"
Automate-Index-file
isBdone: "False"
Automate-Issue-archival
isCdone: "False"

-
Automate-RepoData:
-
Automate-RepoData-Description
isDDone: "False"
Automate-RepoData-GitHubLink
isEDone: "False"
Automate-RepoData-GitHubGitLink
isFDone: "False"
Automate-RepoData-Linked
isGDone: "False"
Automate-RepoData-Topics
isHDone: "False"

# File version: 1 (2022, Tuesday, February 22nd at 8:07 pm)
4,419 changes: 4,419 additions & 0 deletions CONTRIBUTING.md

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions COPYINGL
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

# LICENSE UNDER DEVELOPMENT

Copying this Miscellenaneous project (from @Seanpm2001)

You are free to copy and distribute my software anywhere, as long as you abide by the rules of the LICENSE (GNU General Public License V3) and follow these 4 rules:

1. Plagiarism - Plagiarism is never allowed for any of my projects. It is my #1 rule. If you are to use this project, you cannot plagiarize it (claim that you made it and that I didn't)

2. Embedding - If you are to embed this projects files or its source code into another project, you must keep this file, the license file, and the README file with credit to Sean Patrick Myrick (@Seanpm2001)

3. Ethics - You must use this project for good and not evil. Unethical purposes such as ransomware, programs with anti-virtual machine/anti-emulator source code, and privacy invasive spyware and data collection are not allowed.

4. Credit - Please give credit when using my software. See §Plagiarism

Additionally

<!-- A. NSFW - You can use my software on any project deemed vulgar or repulsive (such as Internet Pornography, Erotica) as long as it isn't illegal usage. !-->

Copyleft (🄯) Seanpm2001 (2021-2021)

File version: 1 (2021, Monday August 23rd at 6:27 pm)

Original file name: COPYING (changed to COPYINGL so that GitHub wouldn't overwrite the GPL3 as the main license, renaming this file is safe)
21 changes: 21 additions & 0 deletions CREDITS
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

---

{{int:version-credits-summary}}
This Miscellaneous project by Seanpm2001 is a collaborative project released under the GNU General Public License v3. We would like to recognize the following names for their contribution to the product.

This comment block and this file (excluding author names) was modified from MediaWiki/CREDITS -->

== Maintainers ==
<!-- BEGIN MAINTAINERS LIST !-->

1. @seanpm2001 - Creator and primary maintainer of this project
2. No other contributors as of Monday, August 23rd 2021

== Contributors ==
<!-- BEGIN CONTRIBUTOR LIST -->
1. @seanpm2001
2. @GitHub (For being the first host of this project)
3. No other contributors as of Monday, August 23rd 2021

---
21 changes: 21 additions & 0 deletions CREDITS.wiki
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

---

{{int:version-credits-summary}}
This Miscellaneous project by Seanpm2001 is a collaborative project released under the GNU General Public License v3. We would like to recognize the following names for their contribution to the product.

This comment block and this file (excluding author names) was modified from MediaWiki/CREDITS -->

== Maintainers ==
<!-- BEGIN MAINTAINERS LIST !-->

1. @seanpm2001 - Creator and primary maintainer of this project
2. No other contributors as of Monday, August 23rd 2021

== Contributors ==
<!-- BEGIN CONTRIBUTOR LIST -->
1. @seanpm2001
2. @GitHub (For being the first host of this project)
3. No other contributors as of Monday, August 23rd 2021

---
94 changes: 94 additions & 0 deletions DRM-free_label.en.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
101 changes: 101 additions & 0 deletions Docs/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@

***

# Creating a pull request

Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR.

**Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language.

Provide a general summary of your changes in the Title above

```markdown
Your summary description (title) goes here
```

## Description

Describe your changes in detail

```markdown
Your issue description (body) goes here
```

## Related Issue

- [ ] This project only accepts pull requests related to open issues
- [ ] If suggesting a new feature or change, please discuss it in an issue first
- [ ] If fixing a bug, there should be an issue describing it with steps to reproduce
- [ ] Please link to the issue here:

```markdown
Link to the issue here, #__
```

## Motivation and Context

Why is this change required? What problem does it solve?

```markdown

```

## How Has This Been Tested?

- [ ] Please describe in detail how you tested your changes.
- [ ] Include details of your testing environment, and the tests you ran to.
- [ ] see how your change affects other areas of the code, etc.

## Screenshots (if appropriate):

Please include the screenshots inside your pull request as well as a local link (hard copy)

**Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.)

**Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed

```markdown
Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section

![Example1](/.github/Pull_Requests/Queue/PR/Image.png)
![Example2](/.github/Pull_Requests/Queue/PR/Image.png)
![Example3](/.github/Pull_Requests/Queue/PR/Image.png)
![Example4](/.github/Pull_Requests/Queue/PR/Image.png)
![Example5](/.github/Pull_Requests/Queue/PR/Image.png)
```

## Types of changes

What types of changes does your code introduce? Put an `x` in all the boxes that apply:

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Checklist:

Go over all the following points, and put an `x` in all the boxes that apply.

If you're unsure about any of these, don't hesitate to ask. We're here to help!

- [ ] My source code (if source code is provided) follows the source code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] My change does not delete necessary files
- [ ] I have updated the documentation accordingly.
- [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms
- [ ] I have added tests to cover my changes.
- [ ] I have gone through all the steps, and have thoroughly read the instructions

***

<!-- Template info
Pull request template
Version 1 (2022, Thursday, May 19th at 5:47 pm PST)
File type: Markdown document (*.md *.mkd *.mdown *.markdown)
Line count (including blank lines and compiler line): 102
!-->
11 changes: 11 additions & 0 deletions INITIAL_COMMIT.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{/*{:>(<

INITIAL COMMIT

This repository was generated from seanpm2001/Git-Template_V8
This file aims to serve as a reminder to this projects first commit.
This file should NOT be modified in production EVER
Preserve it!

>)<:}*/}
File version: 1 (2022, Monday, January 3rd at 1:54 pm)
28 changes: 28 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
Installing this Miscellaneous project by @seanpm2001
---

<!--

This project currently doesn't have to be installed to be viewed, and currently doesn't require installation, it is a basic website project that is compliant with web standards, so it should work in any web browser that respects WHATWG.

If you want to load the web pages, you will need to have an HTML5 framework installed (version 5.0 or higher) and the packages for any programming languages included.

The current included languages include:

None (v1)

If you want to view the image files, the majority of files are in JPG format. Make sure your computer can handle images of 2560x1440/2560x1080 resolution well, and that your computer can handle JPG files.

Some image files are in other formats, such as SVG, and PNG. You will need support for viewing these files to view these files.

Some included files are in Markdown format (*.md) for best viewing, you should use a markdown viewer/markdown editor.

Some included files are in PDF format. They should be opened with a document viewer capable of handling PDF documents.
!-->

Install instructions need to be added manually.

---
Install instructions file version: 1 (Monday, August 23rd 2021 at 6:31 pm)
---
28 changes: 28 additions & 0 deletions INSTALL.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
Installing this Miscellaneous project by @seanpm2001
---

<!--

This project currently doesn't have to be installed to be viewed, and currently doesn't require installation, it is a basic website project that is compliant with web standards, so it should work in any web browser that respects WHATWG.

If you want to load the web pages, you will need to have an HTML5 framework installed (version 5.0 or higher) and the packages for any programming languages included.

The current included languages include:

None (v1)

If you want to view the image files, the majority of files are in JPG format. Make sure your computer can handle images of 2560x1440/2560x1080 resolution well, and that your computer can handle JPG files.

Some image files are in other formats, such as SVG, and PNG. You will need support for viewing these files to view these files.

Some included files are in Markdown format (*.md) for best viewing, you should use a markdown viewer/markdown editor.

Some included files are in PDF format. They should be opened with a document viewer capable of handling PDF documents.
!-->

Install instructions need to be added manually.

---
Install instructions file version: 1 (Monday, August 23rd 2021 at 6:31 pm)
---
18 changes: 18 additions & 0 deletions K.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Start of script
# Sample KDE desktop entry
[Desktop Entry]
Type=Application
Exec=your-app %u
MimeType=application/x-your-mime-type;
Icon=some-icon
X-DocPath=yourapp/index.html
Terminal=false
Name=Your App
GenericName=Some Generic Name
Comment=Short Description Of Your App
Categories=Qt;KDE;
# File info
# File type: KDE desktop file (*.desktop)
# File version: 1 (2021, Tuesday, December 14th at 4:05 pm)
# Line count (including blank lines and compiler line): 19
# End of script
674 changes: 674 additions & 0 deletions LICENSE-GPL.r

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE-GPL.red

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE-GPL.reds

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE-GPL.txt

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE-GPL3.r

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE-GPL3.red

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE-GPL3.reds

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE-GPL3.txt

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE.r

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE.red

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE.reds

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
=== Authors ====
1. @seanpm2001
2. No other authors as of 2021, August 24th at 3:36 pm

---
The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project.
---
7 changes: 7 additions & 0 deletions OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
=== Authors ====
1. @seanpm2001
2. No other authors as of 2021, August 24th at 3:36 pm

---
The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project.
---
7 changes: 7 additions & 0 deletions OldVersions/AUTHORS/English/1/1-100/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
=== Authors ====
1. @seanpm2001
2. No other authors as of 2021, August 24th at 3:36 pm

---
The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project.
---
29 changes: 29 additions & 0 deletions OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# A set of tasks for the Automate2001 bot to perform here
automate2001_tasks:
isAlldone: "False"

-
Automate-All-ContributorSrc:
-
Automate-Pull-Requests-archival
isAdone: "False"
Automate-Index-file
isBdone: "False"
Automate-Issue-archival
isCdone: "False"

-
Automate-RepoData:
-
Automate-RepoData-Description
isDDone: "False"
Automate-RepoData-GitHubLink
isEDone: "False"
Automate-RepoData-GitHubGitLink
isFDone: "False"
Automate-RepoData-Linked
isGDone: "False"
Automate-RepoData-Topics
isHDone: "False"

# File version: 1 (2022, Tuesday, February 22nd at 8:07 pm)
29 changes: 29 additions & 0 deletions OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# A set of tasks for the Automate2001 bot to perform here
automate2001_tasks:
isAlldone: "False"

-
Automate-All-ContributorSrc:
-
Automate-Pull-Requests-archival
isAdone: "False"
Automate-Index-file
isBdone: "False"
Automate-Issue-archival
isCdone: "False"

-
Automate-RepoData:
-
Automate-RepoData-Description
isDDone: "False"
Automate-RepoData-GitHubLink
isEDone: "False"
Automate-RepoData-GitHubGitLink
isFDone: "False"
Automate-RepoData-Linked
isGDone: "False"
Automate-RepoData-Topics
isHDone: "False"

# File version: 1 (2022, Tuesday, February 22nd at 8:07 pm)
29 changes: 29 additions & 0 deletions OldVersions/AUTOMATE2001/README.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# A set of tasks for the Automate2001 bot to perform here
automate2001_tasks:
isAlldone: "False"

-
Automate-All-ContributorSrc:
-
Automate-Pull-Requests-archival
isAdone: "False"
Automate-Index-file
isBdone: "False"
Automate-Issue-archival
isCdone: "False"

-
Automate-RepoData:
-
Automate-RepoData-Description
isDDone: "False"
Automate-RepoData-GitHubLink
isEDone: "False"
Automate-RepoData-GitHubGitLink
isFDone: "False"
Automate-RepoData-Linked
isGDone: "False"
Automate-RepoData-Topics
isHDone: "False"

# File version: 1 (2022, Tuesday, February 22nd at 8:07 pm)
194 changes: 194 additions & 0 deletions OldVersions/CODEOWNERS/CODEOWNERS_V2
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
# Start of script
# I am going to keep trying on this until I get it right
# @seanpm2001 is the global code owner for this project
/// @seanpm2001
// @seanpm2001
# / @seanpm2001
/* @seanpm2001
* @seanpm2001
# Directories at root
# .github
/.github/ @seanpm2001
# Docs
/Docs/ @seanpm2001
# External
/External/ @seanpm2001
# OldVersions
/OldVersions/ @seanpm2001
# RepoData
/RepoData/ @seanpm2001
# Files at root
.editorconfig @seanpm2001
.gitattributes @seanpm2001
.gitignore @seanpm2001
AUTHORS @seanpm2001
CITATION.cff @seanpm2001
CONTRIBUTING.md @seanpm2001
COPYINGL @seanpm2001
CREDITS @seanpm2001
DRM-free_label.en.svg @seanpm2001
INSTALL @seanpm2001
LINUX_DEFENDER.desktop @seanpm2001
LICENSE.txt @seanpm2001
Pax_tux.png @seanpm2001
PROJECT_LANG_1.py @seanpm2001
PROJECT_LANG_2.sh @seanpm2001
README.md @seanpm2001
SECURITY.md @seanpm2001
SponsorButton.png @seanpm2001
desktop.ini @seanpm2001
makefile.mk @seanpm2001
# Individual file types
# Section A
*.aiff @seanpm2001
*.AIFF @seanpm2001
*.alac @seanpm2001
*.ALAC @seanpm2001
*.applescript @seanpm2001
*.asm @seanpm2001
*.ASM @seanpm2001
# Section B
*.bib @seanpm2001
# Section C
*.c @seanpm2001
*.C @seanpm2001
*.cff @seanpm2001
*.cpp @seanpm2001
*.css @seanpm2001
*.cxx @seanpm2001
# Section D
*.DS_STORE @seanpm2001
*.desktop @seanpm2001
*.dmg @seanpm2001
*.DMG @seanpm2001
# Section E
*.editorconfig @seanpm2001
# Section F
# No entries starting with the letter F
# Section G
*.gif @seanpm2001
*.GIF @seanpm2001
*.gitattributes @seanpm2001
*.gitignore @seanpm2001
*.go @seanpm2001
# Section H
*.h @seanpm2001
*.H @seanpm2001
*.htm @seanpm2001
*.html @seanpm2001
# Section I
*.ini @seanpm2001
*.ipa @seanpm2001
*.IPA @seanpm2001
*.iso @seanpm2001
*.ISO @seanpm2001
# Section J
*.java @seanpm2001
*.js @seanpm2001
*.jpg @seanpm2001
*.jpeg @seanpm2001
*.jpp @seanpm2001
*.json @seanpm2001
*.jspp @seanpm2001
# Section K
# No entries starting with the letter K
# Section L
# No entries starting with the letter L
# Section M
*.m @seanpm2001
*.m4 @seanpm2001
*.mm @seanpm2001
*.mak @seanpm2001
*.make @seanpm2001
*.markdown @seanpm2001
*.md @seanpm2001
*.mdown @seanpm2001
*.metal @seanpm2001
*.mhtm @seanpm2001
*.mhtml @seanpm2001
*.mp3 @seanpm2001
*.mk @seanpm2001
*.mkd @seanpm2001
*.mot @seanpm2001
*.MOT @seanpm2001
*.mov @seanpm2001
*.MOV @seanpm2001
# Section N
# No entries starting with the letter N
# Section O
*.oga @seanpm2001
*.ogg @seanpm2001
# Section P
*.p @seanpm2001
*.P @seanpm2001
*.pas @seanpm2001
*.PAS @seanpm2001
*.php @seanpm2001
*.png @seanpm2001
*.PNG @seanpm2001
*.pl @seanpm2001
*.pro @seanpm2001
*.ps @seanpm2001
*.PS @seanpm2001
*.py @seanpm2001
# Section Q
*.qs @seanpm2001
*.qt @seanpm2001
# Section R
*.rb @seanpm2001
*.rs @seanpm2001
# Section S
*.self @seanpm2001
*.sh @seanpm2001
*.st @seanpm2001
*.sql @seanpm2001
*.svg @seanpm2001
*.swift @seanpm2001
# Section T
*.tex @seanpm2001
*.ts @seanpm2001
*.tsx @seanpm2001
*.ttf @seanpm2001
*.TTF @seanpm2001
*.txt @seanpm2001
*.TXT @seanpm2001
# Section U
*.url @seanpm2001
*.URL @seanpm2001
# Section V
*.v @seanpm2001
*.vh @seanpm2001
*.vhd @seanpm2001
*.vhdl @seanpm2001
*.vtt @seanpm2001
# Setion W
*.wim @seanpm2001
*.woff @seanpm2001
*.WOFF @Seanpm2001
# Section X
*.xhtm @seanpm2001
*.xhtml @seanpm2001
*.xml @seanpm2001
# Section Y
*.yaml @seanpm2001
*.yml @seanpm2001
# Section Z
# No entries starting with the letter Z

# No more individual file types for now

# Todo

# Add every individual file
# Finish adding all file types
# Add new entries as they are added

# Past goals (completed)
# Add all Wiki entries
# Add all graphics entries

# File info
# File type: codeowners file (CODEOWNERS)
# File version: 2 (2022, Monday, February 21st at 3:05 pm)
# Line count (including blank lines and compiler line): 195
# End of script
194 changes: 194 additions & 0 deletions OldVersions/CODEOWNERS/README.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
# Start of script
# I am going to keep trying on this until I get it right
# @seanpm2001 is the global code owner for this project
/// @seanpm2001
// @seanpm2001
# / @seanpm2001
/* @seanpm2001
* @seanpm2001
# Directories at root
# .github
/.github/ @seanpm2001
# Docs
/Docs/ @seanpm2001
# External
/External/ @seanpm2001
# OldVersions
/OldVersions/ @seanpm2001
# RepoData
/RepoData/ @seanpm2001
# Files at root
.editorconfig @seanpm2001
.gitattributes @seanpm2001
.gitignore @seanpm2001
AUTHORS @seanpm2001
CITATION.cff @seanpm2001
CONTRIBUTING.md @seanpm2001
COPYINGL @seanpm2001
CREDITS @seanpm2001
DRM-free_label.en.svg @seanpm2001
INSTALL @seanpm2001
LINUX_DEFENDER.desktop @seanpm2001
LICENSE.txt @seanpm2001
Pax_tux.png @seanpm2001
PROJECT_LANG_1.py @seanpm2001
PROJECT_LANG_2.sh @seanpm2001
README.md @seanpm2001
SECURITY.md @seanpm2001
SponsorButton.png @seanpm2001
desktop.ini @seanpm2001
makefile.mk @seanpm2001
# Individual file types
# Section A
*.aiff @seanpm2001
*.AIFF @seanpm2001
*.alac @seanpm2001
*.ALAC @seanpm2001
*.applescript @seanpm2001
*.asm @seanpm2001
*.ASM @seanpm2001
# Section B
*.bib @seanpm2001
# Section C
*.c @seanpm2001
*.C @seanpm2001
*.cff @seanpm2001
*.cpp @seanpm2001
*.css @seanpm2001
*.cxx @seanpm2001
# Section D
*.DS_STORE @seanpm2001
*.desktop @seanpm2001
*.dmg @seanpm2001
*.DMG @seanpm2001
# Section E
*.editorconfig @seanpm2001
# Section F
# No entries starting with the letter F
# Section G
*.gif @seanpm2001
*.GIF @seanpm2001
*.gitattributes @seanpm2001
*.gitignore @seanpm2001
*.go @seanpm2001
# Section H
*.h @seanpm2001
*.H @seanpm2001
*.htm @seanpm2001
*.html @seanpm2001
# Section I
*.ini @seanpm2001
*.ipa @seanpm2001
*.IPA @seanpm2001
*.iso @seanpm2001
*.ISO @seanpm2001
# Section J
*.java @seanpm2001
*.js @seanpm2001
*.jpg @seanpm2001
*.jpeg @seanpm2001
*.jpp @seanpm2001
*.json @seanpm2001
*.jspp @seanpm2001
# Section K
# No entries starting with the letter K
# Section L
# No entries starting with the letter L
# Section M
*.m @seanpm2001
*.m4 @seanpm2001
*.mm @seanpm2001
*.mak @seanpm2001
*.make @seanpm2001
*.markdown @seanpm2001
*.md @seanpm2001
*.mdown @seanpm2001
*.metal @seanpm2001
*.mhtm @seanpm2001
*.mhtml @seanpm2001
*.mp3 @seanpm2001
*.mk @seanpm2001
*.mkd @seanpm2001
*.mot @seanpm2001
*.MOT @seanpm2001
*.mov @seanpm2001
*.MOV @seanpm2001
# Section N
# No entries starting with the letter N
# Section O
*.oga @seanpm2001
*.ogg @seanpm2001
# Section P
*.p @seanpm2001
*.P @seanpm2001
*.pas @seanpm2001
*.PAS @seanpm2001
*.php @seanpm2001
*.png @seanpm2001
*.PNG @seanpm2001
*.pl @seanpm2001
*.pro @seanpm2001
*.ps @seanpm2001
*.PS @seanpm2001
*.py @seanpm2001
# Section Q
*.qs @seanpm2001
*.qt @seanpm2001
# Section R
*.rb @seanpm2001
*.rs @seanpm2001
# Section S
*.self @seanpm2001
*.sh @seanpm2001
*.st @seanpm2001
*.sql @seanpm2001
*.svg @seanpm2001
*.swift @seanpm2001
# Section T
*.tex @seanpm2001
*.ts @seanpm2001
*.tsx @seanpm2001
*.ttf @seanpm2001
*.TTF @seanpm2001
*.txt @seanpm2001
*.TXT @seanpm2001
# Section U
*.url @seanpm2001
*.URL @seanpm2001
# Section V
*.v @seanpm2001
*.vh @seanpm2001
*.vhd @seanpm2001
*.vhdl @seanpm2001
*.vtt @seanpm2001
# Setion W
*.wim @seanpm2001
*.woff @seanpm2001
*.WOFF @Seanpm2001
# Section X
*.xhtm @seanpm2001
*.xhtml @seanpm2001
*.xml @seanpm2001
# Section Y
*.yaml @seanpm2001
*.yml @seanpm2001
# Section Z
# No entries starting with the letter Z

# No more individual file types for now

# Todo

# Add every individual file
# Finish adding all file types
# Add new entries as they are added

# Past goals (completed)
# Add all Wiki entries
# Add all graphics entries

# File info
# File type: codeowners file (CODEOWNERS)
# File version: 2 (2022, Monday, February 21st at 3:05 pm)
# Line count (including blank lines and compiler line): 195
# End of script
Loading

0 comments on commit 692ed90

Please sign in to comment.