I wanted to create a repository for all the random small projects I create of the years. This repository may also give you the inspiration to try something new yourself.
Wish you good coding! 🥳
Depending on the project you select I will try to add a new README-File so you can see what's the purpose/idea behind it.
This repository is always a WIP, so you can expect new additions after some time (probably not very regularly)
-
Shellscripts:
I'm using Git Bash on Windows 10 for testing. Just move into the folder containing the .sh-file and enter
bash main.sh
.Example:
...\Small Projects> cd Shellscript ...\Small Projects\Shellscript> bash main.sh Enter your option: help
-
PHPUnit:
You can run the test with
vendor/bin/phpunit src/Tests/
, this command will run all tests written inside theTests
folder. -
Lua:
To run .lua files, you will need to install Lua on your system, for example you can use WSL
sudo apt install lua5.3
. Afterwards you can simply run all files bylua filename.lua
. I would also recommend to use the Lua Extension by sumneko if you are using Visual Studio Code.