Skip to content

CodeMacrocosm/Snip-a-Thon-21

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

✨ Snip-a-Thon' 21 🌟: Snippet Gems! πŸ’»

GitHub stars GitHub forks GitHub contributors GitHub

✨ Hall Of Fame

Thanks goes to these amazing people for their contributions πŸŽ‰πŸŽ‰πŸŽ‰

Table of Contents πŸ“š

  1. Overview
  2. Project Structure
  3. How to Contribute?
  4. Star it
  5. License
  6. Thanks Contributors

Overview

Welcome! πŸŽ‰ Here, we celebrate our love for coding by sharing our favorite code snippets in various programming languages. Whether it's a simple "Hello, World!" program or a complex algorithm or data structure, this contest which is hosted by Shreya Malogi, is the perfect place to showcase your coding passion. πŸš€

Project Structure

Here's a quick overview of the project structure:

  • C# - Folder for C# code snippets
  • C++ - Folder for C++ code snippets
  • C - Folder for C code snippets
  • Go - Folder for Go code snippets
  • Java - Folder for Java code snippets
  • JavaScript - Folder for JavaScript code snippets
  • PHP - Folder for PHP code snippets
  • Python - Folder for Python code snippets
  • LICENSE - The project's license file
  • README.md - You are here!

How to Contribute

We encourage you to contribute your favorite code snippets to this repository. It's a great way to share your knowledge and learn from others. Follow these steps to make your contribution:🀝

1. Fork the Repository

Click the "Fork" button at the top right corner of this repository to create your own fork.

2. Clone Your Fork

Clone the forked repository from your account to your local machine:

git clone https://github.com/codemacrocosm/Dev-a-Thon-21.git

3. Add Your Code Snippet

Navigate to the folder corresponding to the programming language of your code snippet (e.g., C#, Python, etc.).

Add your code snippet file to the respective folder.

4. Commit Your Changes

Commit your changes with a descriptive commit message:

git add .
git commit -m "Added my favorite code snippet in [Language]"

5. Create a Pull Request

Push your changes to your forked repository and then create a pull request:

  • Go to the original repository.
  • Click on the "New Pull Request" button.
  • Provide a meaningful title and description for your pull request.
  • Click "Create Pull Request" to submit your contribution.

That's it! πŸŽ‰ Your contribution will be reviewed and, once approved, merged into the main repository.

Your Favorite Code Snippet ❀️

Feel free to share your favorite code snippet along with a brief comment explaining why it's your favorite. We value readability and proper indentation in code snippets. Here's an example:

# This is my favorite code snippet because it calculates the Fibonacci sequence.

def Fibonacci(n): 
    if n < 0: 
        print("Incorrect input")
    elif n == 1: 
        return 0
    elif n == 2: 
        return 1
    else: 
        return Fibonacci(n - 1) + Fibonacci(n - 2)
  
print(Fibonacci(100))

How to Star ⭐

If you enjoyed this repo or find them inspiring, don't forget to ⭐ the repository! Your support is appreciated.

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details. πŸ“œ

MIT License

Copyright (c) 2021 CodeMacrocosm

Contributors πŸ™Œ

A big thanks to all the creative minds who have contributed.

Now, let the creation begin! 🎨

Happy coding! πŸš€πŸŽ‰

Happy Hacking! πŸŽƒπŸ‘Ύ


Maintained by @shreyamalogi 🌟

Thanks for contributing ! We appreciate your support and look forward to seeing your awesome code snippets. πŸš€βœ¨