From d2742c05102079925ece37ecb84687fee8bb4ae3 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Thu, 10 Oct 2024 16:41:48 +0200 Subject: [PATCH] Initial commit --- .gitattributes | 39 +++++++++++++++++++++++++++++++ .github/workflows/auto-assign.yml | 19 +++++++++++++++ .github/workflows/proof-html.yml | 11 +++++++++ LICENSE | 21 +++++++++++++++++ README.md | 22 +++++++++++++++++ clear-commits.bat | 18 ++++++++++++++ clear-commits.ps1 | 17 ++++++++++++++ clear-commits.sh | 19 +++++++++++++++ config.ini | 7 ++++++ config.json | 5 ++++ config.xml | 5 ++++ link.bf | 1 + style.xsl | 24 +++++++++++++++++++ 13 files changed, 208 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/workflows/auto-assign.yml create mode 100644 .github/workflows/proof-html.yml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 clear-commits.bat create mode 100644 clear-commits.ps1 create mode 100644 clear-commits.sh create mode 100644 config.ini create mode 100644 config.json create mode 100644 config.xml create mode 100644 link.bf create mode 100644 style.xsl diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e92d5bd --- /dev/null +++ b/.gitattributes @@ -0,0 +1,39 @@ +*.md linguist-vendored=false +*.md linguist-generated=false +*.md linguist-documentation=false +*.md linguist-detectable=true + +*.json linguist-vendored=false +*.json linguist-generated=false +*.json linguist-documentation=false +*.json linguist-detectable=true + +*.yml linguist-vendored=false +*.yml linguist-generated=false +*.yml linguist-documentation=false +*.yml linguist-detectable=true + +*.ini linguist-vendored=false +*.ini linguist-generated=false +*.ini linguist-documentation=false +*.ini linguist-detectable=true + +*.txt linguist-vendored=false +*.txt linguist-generated=false +*.txt linguist-documentation=false +*.txt linguist-detectable=true + +*.svg linguist-vendored=false +*.svg linguist-generated=false +*.svg linguist-documentation=false +*.svg linguist-detectable=true + +*.toml linguist-vendored=false +*.toml linguist-generated=false +*.toml linguist-documentation=false +*.toml linguist-detectable=true + +*.xml linguist-vendored=false +*.xml linguist-generated=false +*.xml linguist-documentation=false +*.xml linguist-detectable=true diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 0000000..2c2bca9 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,19 @@ +name: Auto Assign +on: + issues: + types: [opened] + pull_request: + types: [opened] +jobs: + run: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - name: 'Auto-assign issue' + uses: pozil/auto-assign-issue@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + assignees: Farica-Kimora + numOfAssignee: 1 diff --git a/.github/workflows/proof-html.yml b/.github/workflows/proof-html.yml new file mode 100644 index 0000000..be7dac3 --- /dev/null +++ b/.github/workflows/proof-html.yml @@ -0,0 +1,11 @@ +name: Proof HTML +on: + push: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: anishathalye/proof-html@v1.1.0 + with: + directory: ./ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..806bf4a --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Cursed Entertainment + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..92399df --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +
+
+ + ko-fi + +
+
+ + + Auto Assign Workflow + + + + Proof HTML Workflow + + +# Project-Template + + + CursedEntertainment Logo + diff --git a/clear-commits.bat b/clear-commits.bat new file mode 100644 index 0000000..75f9428 --- /dev/null +++ b/clear-commits.bat @@ -0,0 +1,18 @@ +@echo off +REM Switch to a new orphan branch +git checkout --orphan new_branch + +REM Stage all changes +git add . + +REM Commit changes +git commit -m "new_commit" + +REM Delete the old main branch +git branch -D main + +REM Rename the new branch to main +git branch -m main + +REM Force push to the remote main branch +git push -f origin main diff --git a/clear-commits.ps1 b/clear-commits.ps1 new file mode 100644 index 0000000..db7f511 --- /dev/null +++ b/clear-commits.ps1 @@ -0,0 +1,17 @@ +# Switch to a new orphan branch +git checkout --orphan new_branch + +# Stage all changes +git add . + +# Commit changes +git commit -m "new_commit" + +# Delete the old main branch +git branch -D main + +# Rename the new branch to main +git branch -m main + +# Force push to the remote main branch +git push -f origin main \ No newline at end of file diff --git a/clear-commits.sh b/clear-commits.sh new file mode 100644 index 0000000..2c62b8f --- /dev/null +++ b/clear-commits.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# Switch to a new orphan branch +git checkout --orphan new_branch + +# Stage all changes +git add . + +# Commit changes +git commit -m "new_commit" + +# Delete the old main branch +git branch -D main + +# Rename the new branch to main +git branch -m main + +# Force push to the remote main branch +git push -f origin main \ No newline at end of file diff --git a/config.ini b/config.ini new file mode 100644 index 0000000..4bd0976 --- /dev/null +++ b/config.ini @@ -0,0 +1,7 @@ +[Section1] +key1 = value1 +key2 = value2 + +[Section2] +key3 = value3 +key4 = value4 diff --git a/config.json b/config.json new file mode 100644 index 0000000..c191c8d --- /dev/null +++ b/config.json @@ -0,0 +1,5 @@ +{ + "RootElement": { + "ChildElement": ["0", "1"] + } +} diff --git a/config.xml b/config.xml new file mode 100644 index 0000000..2ebc1d1 --- /dev/null +++ b/config.xml @@ -0,0 +1,5 @@ + + + 0 + 1 + \ No newline at end of file diff --git a/link.bf b/link.bf new file mode 100644 index 0000000..e206772 --- /dev/null +++ b/link.bf @@ -0,0 +1 @@ +++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>>-.++++++++++++++++++.---.+.--------------.-.<<+++++++++++++++.>>+.+++++++++.++++++.---------------.+++++++++++++.++.-------------------.++++++++.+++++.-.--------.+++++++++.++++++.<<+.>>-----------.+++++++++++.-----------------.+++++.<<.>>+.++++++. \ No newline at end of file diff --git a/style.xsl b/style.xsl new file mode 100644 index 0000000..71b9aed --- /dev/null +++ b/style.xsl @@ -0,0 +1,24 @@ + + + + + + + + +
+ +
+ + +
+