|
|
||
|---|---|---|
| basics | Write into a file using Java | |
| exercises | chore: Add a cardinal point enum | |
| school-work | Add a shape dimensions "calculator" | |
| .editorconfig |
Add .editorconfig file
|
|
| .gitignore | chore: Create a hello world program | |
| CODE_OF_CONDUCT.md | Add a CODE_OF_CONDUCT | |
| LICENSE | chore: Add a license | |
| README.md | Add running instructions | |
Java Project Repository
Welcome to the Java Project Repository! This repository serves as a collection of my Java projects and random codes as I learn and explore the language. Feel free to browse through the files and contribute if you'd like. Your contributions, feedback, and suggestions are greatly appreciated!
Contributing
If you'd like to contribute to this repository, follow the steps below:
- Fork the repository.
- Clone the forked repository to your local machine.
- Create a new branch for your contribution:
git checkout -b your-branch-name. - Make your changes, additions, or bug fixes.
- Test your changes to ensure they work as intended.
- Commit your changes:
git commit -m "Add your commit message here". - Push your changes to your forked repository:
git push origin your-branch-name. - Open a pull request in this repository, providing a detailed description of your changes.
Please make sure to adhere to the existing code style, conventions, and documentation guidelines.
Running
If you want to run/compile the program then you must have both java and javac installed.
If not, you can install them at https://www.oracle.com/downloads/#category-java
Then run if you are on a GNU/Linux Operating system:
java file_name.java # To compile java files
javac file_name # To run the compiled file, it shouldn't have an extension
That should compile and run most of the files in the basics folder.
You can also just use the run.sh file by running ./run.sh and it will compile the latest edited files in the folder.
Issues
If you encounter any issues with the projects or have ideas for improvements, please feel free to open an issue in the repository. Provide a clear and detailed explanation of the problem or suggestion, along with any relevant information.
License
This project is licensed under the UNLICENSE. You are free to use, modify, and distribute the code as permitted by the license.
Happy coding!