hackMCST is an event intended for learning, collaboration, engagement, and fun. We want to ensure that our participants feel welcomed, included, and safe in our environment. All attendees—including staff, participants, and judges—are expected to conform to the following Code of Conduct.
All participants are expected to show respect and courtesy to others at our event. Be kind, thoughtful, and supportive of everyone and their ideas; encourage and help others when they are in need.
We don't tolerate any forms of harassment, discrimination, or bullying: including physical harassment, sexual harassment, and offensive verbal comments related to someone's gender, sexual orientation, disability, physical appearance, body size, race, age, religion, etc. Attendees asked to stop any behavior deemed as harassment, discrimination, or bullying are expected to comply immediately. If an attendee fails to comply, they will be asked to leave the event.
💻 Development Tools:
🔌 Hardware:
🚀 Create a new repository:
# Initialize a new repository git init # Add a remote origin (replace with your actual repo URL) git remote add origin https://github.com/username/repo-name.git
🏁 Initial commit setup:
# Create a README echo "# Hackathon Project" > README.md # Add and commit git add README.md git commit -m "Initial commit" # Push to remote git push -u origin main
⏱️ Instructions for periodic commits:
# Add all changes git add . # Commit with timestamp and description git commit -m "Hourly update - [brief description]" # Push to remote git push origin main
💡 Tips for participants:
Thank you for making hackMCST a welcoming space for all!