diff --git a/.gitignore b/.gitignore index 907591b..42aa790 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,13 @@ # Python __pycache__/ *.pyc + +# Rust +target/ +Cargo.lock + +# Terraform +.terraform/ +*.tfstate +*.tfstate.* +.terraform.lock.hcl diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 7082a2e..9ade8cb 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -14,7 +14,7 @@ If you believe someone is violating the code of conduct, we ask that you report - **Be welcoming.** We strive to be a community that welcomes and supports people of all backgrounds and identities. This includes, but is not limited to members of any race, ethnicity, culture, national origin, colour, immigration status, social and economic class, educational level, sex, sexual orientation, gender identity and expression, age, size, family status, political belief, religion, and mental and physical ability. - **Be considerate.** Your work will be used by other people, and you in turn will depend on the work of others. Any decision you take will affect users and colleagues, and you should take those consequences into account when making decisions. Remember that we're a world-wide community, so you might not be communicating in someone else's primary language. - **Be respectful.** Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners. We might all experience some frustration now and then, but we cannot allow that frustration to turn into a personal attack. It’s important to remember that a community where people feel uncomfortable or threatened is not a productive one. Members of the Code community should be respectful when dealing with other members as well as with people outside the Code community. -- **Be careful in the words that you choose.** We are a community of professionals, and we conduct ourselves professionally. Be kind to others. Do not insult or put down other participants. Harassment and other exclusionary behavior aren't acceptable. This includes, but is not limited to: +- **Be careful in the words that you choose.** We are a community of professionals, and we conduct ourselves professionally. Be kind to others. Do not insult or put down other participants. Harassment and other exclusionary behavior aren't acceptable. This includes, but is not limited to: - Violent threats or language directed against another person. - Discriminatory jokes and language. - Posting sexually explicit or violent material. diff --git a/NumberGuess/NumberGuess.cpp b/NumberGuess/NumberGuess.cpp index c82e2f8..d830db5 100644 --- a/NumberGuess/NumberGuess.cpp +++ b/NumberGuess/NumberGuess.cpp @@ -15,7 +15,7 @@ void showEasterEgg() { int main() { // Seed the randomizer srand(static_cast(time(0))); - + int secretNumber = rand() % 100 + 1; string input; int guess = 0; diff --git a/main.tf b/main.tf new file mode 100644 index 0000000..4ed6316 --- /dev/null +++ b/main.tf @@ -0,0 +1 @@ +resource "null_resource" "example" {} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..c4d74bf --- /dev/null +++ b/src/main.rs @@ -0,0 +1 @@ +fn main() { println!("Hello!"); }