commit e979b64b68351168da84dde22184997ec357c44b Author: Nic0Nic0Nii Date: Mon Oct 4 06:02:32 2021 +0000 Project and gitpod environment setup diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c5e82d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bin \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..a248717 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,7 @@ +# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/ +tasks: + - init: sh ./coauthors.sh +vscode: + extensions: + - redhat.java + - mhutchie.git-graph \ No newline at end of file diff --git a/coauthors.sh b/coauthors.sh new file mode 100755 index 0000000..e97524b --- /dev/null +++ b/coauthors.sh @@ -0,0 +1,40 @@ +npm i -g git-mob +cat <<-EOF > ~/.git-coauthors +{ + "coauthors": { + "sig": { + "name": "sigonasr2", + "email": "sigonasr2@gmail.com" + } + } +} +EOF +git mob sig +cat <<-EOF > .git/hooks/prepare-commit-msg +#!/usr/bin/env node +let exec = require('child_process').exec, + fs = require('fs'); +const commitMessage = process.argv[2]; +// expect .git/COMMIT_EDITMSG +if(/COMMIT_EDITMSG/g.test(commitMessage)){ + let contents = ""; + exec("git mob-print", + function (err, stdout) { + if(err) { + process.exit(0); + } + // opens .git/COMMIT_EDITMSG + contents = fs.readFileSync(commitMessage); + if(contents.indexOf(stdout.trim()) !== -1) { + process.exit(0); + } + const commentPos = contents.indexOf('# '); + const gitMessage = contents.slice(0, commentPos); + const gitComments = contents.slice(commentPos) + fs.writeFileSync(commitMessage, gitMessage + stdout + gitComments); + process.exit(0); + }); +} +EOF +chmod +x .git/hooks/prepare-commit-msg +echo "Environment is setup!" \ No newline at end of file diff --git a/ffxivai.jar b/ffxivai.jar new file mode 100644 index 0000000..3b223c2 Binary files /dev/null and b/ffxivai.jar differ diff --git a/run b/run new file mode 100755 index 0000000..bd274b6 --- /dev/null +++ b/run @@ -0,0 +1,5 @@ +javac --release 8 src/sig/*.java -d bin +cd bin +jar cfe ../ffxivai.jar sig.FFXIV sig +cd .. +java -cp bin sig/FFXIV \ No newline at end of file diff --git a/src/sig/FFXIV.java b/src/sig/FFXIV.java new file mode 100644 index 0000000..103b716 --- /dev/null +++ b/src/sig/FFXIV.java @@ -0,0 +1,7 @@ +package sig; + +public class FFXIV{ + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} \ No newline at end of file