https://github.com/kemtan/itnc
Informatics & Creation (ITNC) extracurricular repository
https://github.com/kemtan/itnc
arduino cpp esp32 esp8266 programming python robotics
Last synced: 3 months ago
JSON representation
Informatics & Creation (ITNC) extracurricular repository
- Host: GitHub
- URL: https://github.com/kemtan/itnc
- Owner: Kemtan
- Created: 2025-09-27T21:43:29.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-09-27T22:59:39.000Z (3 months ago)
- Last Synced: 2025-09-28T00:21:54.992Z (3 months ago)
- Topics: arduino, cpp, esp32, esp8266, programming, python, robotics
- Homepage: https://www.instagram.com/itnc.one/
- Size: 7.66 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ITNC Repository
Welcome to the official ITNC (Informatics & Technology Club) repository.
This is where we store, manage, and collaborate on our extracurricular projects.
## About ITNC
ITNC is our school's extracurricular club focused on programming, electronics, robotics, and technology.
We use this repository to organize source code, documentation, and project assets.
## Repository Structure
- `projects/` → Contains individual project folders (e.g., robotics, web apps, IoT).
- `docs/` → Documentation, guides, and tutorials.
- `resources/` → Shared assets, libraries, and references.
## Getting Started
### Configure Git Identity
```bash
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
```
### Clone the Repository
```bash
git clone https://github.com/ITNCNitra/ITNC.git
cd itnc
```
## Workflow
### Start a New Project
```bash
git checkout -b project-name
mkdir projects/project-name
````
Work on your code inside the new `projects/project-name/` folder.
Commit changes regularly to your project branch.
### Commit and Push Changes
```bash
git add .
git commit -m "Add project-name initial files"
git push -u origin project-name
```
When the project is stable, open a Pull Request to merge it into `main`.
## Contribution Guidelines
1. Always create a new branch for your project or feature (`git checkout -b project-name` or `feature-name`).
2. Keep all work inside its folder under `projects/`.
3. Write clear, descriptive commit messages.
4. Push your branch and open a Pull Request when ready to merge into `main`.
## License
This repository is for ITNC extracurricular projects. Licensing terms may vary per project.
Check individual project folders for more details.