Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CursedPrograms authored Oct 10, 2024
0 parents commit d2742c0
Show file tree
Hide file tree
Showing 13 changed files with 208 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -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
19 changes: 19 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -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
11 changes: 11 additions & 0 deletions .github/workflows/proof-html.yml
Original file line number Diff line number Diff line change
@@ -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: ./
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<br>
<div align="center">
<a href="https://ko-fi.com/cursedentertainment">
<img src="https://ko-fi.com/img/githubbutton_sm.svg" alt="ko-fi" style="width: 20%;"/>
</a>
</div>
<br>

<a href="https://github.com/CursedPrograms/project-template/actions/workflows/auto-assign.yml">
<img class="workflow-badge workflow-success" src="https://github.com/CursedPrograms/project-template/actions/workflows/auto-assign.yml/badge.svg" alt="Auto Assign Workflow">
</a>

<a href="https://github.com/CursedPrograms/project-template/actions/workflows/proof-html.yml">
<img class="workflow-badge workflow-success" src="https://github.com/CursedPrograms/project-template/actions/workflows/proof-html.yml/badge.svg" alt="Proof HTML Workflow">
</a>

# Project-Template

<a href="https://cursed-entertainment.itch.io/" target="_blank">
<img src="https://github.com/CursedPrograms/cursedentertainment/raw/main/images/logos/logo-wide-grey.png"
alt="CursedEntertainment Logo">
</a>
18 changes: 18 additions & 0 deletions clear-commits.bat
Original file line number Diff line number Diff line change
@@ -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
17 changes: 17 additions & 0 deletions clear-commits.ps1
Original file line number Diff line number Diff line change
@@ -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
19 changes: 19 additions & 0 deletions clear-commits.sh
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions config.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[Section1]
key1 = value1
key2 = value2

[Section2]
key3 = value3
key4 = value4
5 changes: 5 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"RootElement": {
"ChildElement": ["0", "1"]
}
}
5 changes: 5 additions & 0 deletions config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<RootElement>
<ChildElement>0</ChildElement>
<ChildElement>1</ChildElement>
</RootElement>
1 change: 1 addition & 0 deletions link.bf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>>-.++++++++++++++++++.---.+.--------------.-.<<+++++++++++++++.>>+.+++++++++.++++++.---------------.+++++++++++++.++.-------------------.++++++++.+++++.-.--------.+++++++++.++++++.<<+.>>-----------.+++++++++++.-----------------.+++++.<<.>>+.++++++.
24 changes: 24 additions & 0 deletions style.xsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.item {
color: green;
font-size: 18px;
}
</style>
</head>
<body>
<div class="item">
<xsl:value-of select="/data/item"/>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

0 comments on commit d2742c0

Please sign in to comment.