diff --git a/Ania_file1 b/Ania_file1 deleted file mode 100644 index d428e8b4..00000000 --- a/Ania_file1 +++ /dev/null @@ -1,4 +0,0 @@ -Check all the things! - -When using wildcards you want to be extra careful when doing commits. Make sure to check what files and folders are staged by using git status before you do the actual commit. This way you can be sure you're committing only the things you want. - diff --git a/Diego_file b/Diego_file deleted file mode 100644 index c61ea3b8..00000000 --- a/Diego_file +++ /dev/null @@ -1 +0,0 @@ -so, this is a text to be pulled by Practice-Git Admin, after I send in a request to do so diff --git a/DonePracticing b/DonePracticing deleted file mode 100644 index bec9b0b9..00000000 --- a/DonePracticing +++ /dev/null @@ -1,2 +0,0 @@ -heyy -lmao ok \ No newline at end of file diff --git a/Hitchhikers Notes.txt b/Hitchhikers Notes.txt deleted file mode 100644 index 7709d570..00000000 --- a/Hitchhikers Notes.txt +++ /dev/null @@ -1,7 +0,0 @@ -There is a theory which states that if ever anyone discovers exactly what the Universe -is for and why it is here, it will instantly disappear and be replaced by something even -more bizarre and inexplicable. There is another theory which states that this has already -happened. - -A common mistake that people make when trying to design something completely foolproof is -to underestimate the ingenuity of complete fools. \ No newline at end of file diff --git a/Myfile b/Myfile deleted file mode 100644 index e965047a..00000000 --- a/Myfile +++ /dev/null @@ -1 +0,0 @@ -Hello diff --git a/Penne_all_arrabiata.txt b/Penne_all_arrabiata.txt deleted file mode 100644 index ccf14263..00000000 --- a/Penne_all_arrabiata.txt +++ /dev/null @@ -1,12 +0,0 @@ -While heating the water to cook pasta, heat the oil in a large saute pan over medium-high heat. -Add onion and saute until soft and beginning to color, about 5 minutes. -Add garlic, salami, and red pepper flakes, saute until salami caramelizes, 5-7 minutes. -Add tomatoes, tomato paste, brown sugar and vinegar. -Reduce heat and simmer until slightly thickened, 10-15 minutes. -Season to taste with salt and pepper. -Once the water is boiling for pasta, cook pasta to al dente. -Drain pasta, reserving 1/4 cup liquid to thin the sauce, if necessary. -Transfer sauce to a larger shallow bowl. -Add the drained pasta, torn basil, and Parmesan to the sauce (tearing the basil won't discolor it like cutting does); toss to coat. -Serve pasta immediately. - diff --git a/Plan.png b/Plan.png deleted file mode 100644 index 819369ab..00000000 Binary files a/Plan.png and /dev/null differ diff --git a/The Catcher in the Rye b/The Catcher in the Rye deleted file mode 100644 index 62766c90..00000000 --- a/The Catcher in the Rye +++ /dev/null @@ -1 +0,0 @@ -The Catcher in the Rye is a story by J.D.Salinger, first published in serial form in 1945-6 and as a novel in 1951. A classical noveloriginally published for adults, it has since become popular with adolescent readers for its themes of teenage angst and alienation. diff --git a/The Matrix b/The Matrix deleted file mode 100644 index d0ed460f..00000000 --- a/The Matrix +++ /dev/null @@ -1 +0,0 @@ -The Matrix is a 1999 science fiction action film written and directed by The Wachowski Brothers and starring Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss, Hugo Weaving, and Joe Pantoliano. It depicts a dystopian future in which reality as perceived by most humans is actually a simulated reality called "the Matrix", created by sentient machines to subdue the human population, while their bodies' heat and electrical activity are used as an energy source. Cybercriminal and computer programmer Neo learns this truth and is drawn into a rebellion against the machines, which involves other people who have been freed from the "dream world." diff --git a/a_file.txt b/a_file.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/aa_bowser.zip b/aa_bowser.zip deleted file mode 100644 index e69de29b..00000000 diff --git a/aa_luigi.pdf b/aa_luigi.pdf deleted file mode 100644 index e69de29b..00000000 diff --git a/aa_mario.txt b/aa_mario.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/aa_peach.py b/aa_peach.py deleted file mode 100644 index e69de29b..00000000 diff --git a/aa_toad.h b/aa_toad.h deleted file mode 100644 index e69de29b..00000000 diff --git a/aa_yoshi.jpg b/aa_yoshi.jpg deleted file mode 100644 index e69de29b..00000000 diff --git a/asas.txt b/asas.txt deleted file mode 100644 index a02f3fe0..00000000 --- a/asas.txt +++ /dev/null @@ -1,2 +0,0 @@ -try to write somthing instead of asas!! -hello there ! should do the work diff --git a/bashIdioms b/bashIdioms deleted file mode 100644 index 9d3836bb..00000000 --- a/bashIdioms +++ /dev/null @@ -1,14 +0,0 @@ -# diff 2 properties files.. removing empty lines and comments and sorting before the diff. -# also shows an exampe of using anonymous pipes in bash to redirect more than 1 input file to a process from -# a set of sub processes. - -diff <(sed -e '/^#/ d; /^$/ d;' $file1 | sort) <(sed -e '/^#/ d; /^$/ d;' $file2 | sort) - -# List the most recent files changes in a CVS tree. -find $ws \( -type d \( -name CVS -o -name bin -o -name .metadata \) -prune \) -o -type f -mtime -2 -print - -# diff 2 properties files.. removing empty lines and comments and sorting before the diff. -# also shows an exampe of using anonymous pipes in bash to redirect more than 1 input file to a process from -# a set of sub processes. -diff <(sed -e '/^#/ d; /^$/ d;' $file1 | sort) <(sed -e '/^#/ d; /^$/ d;' $file2 | sort) - diff --git a/bits.py b/bits.py deleted file mode 100644 index 4fdd1294..00000000 --- a/bits.py +++ /dev/null @@ -1,17 +0,0 @@ - from collections import Counter - - test_cases = int(input()) - - for i in range(test_cases): - - num = int(input()) - max_bits = 0 - - while(num > 0): - - if int(Counter(bin(int(num)))['1']) > max_bits: - max_bits = int(Counter(bin(int(num)))['1']) - - num = num // 10 - - print(max_bits) diff --git a/blah.c b/blah.c deleted file mode 100644 index 35305cf3..00000000 --- a/blah.c +++ /dev/null @@ -1,14 +0,0 @@ -#include - -int main(void) -{ - printf("blah\n"); - printf("Ok, blah again!\n") // jr comment added - int i; - for (i = 0; i < 200; i++) - printf("Blah\n"); - printf("hello\n"); - printf("another\n"); - printf("another 1\n"); - -} diff --git a/commit_resource.txt b/commit_resource.txt deleted file mode 100644 index 7a151cc1..00000000 --- a/commit_resource.txt +++ /dev/null @@ -1,3 +0,0 @@ -This is a great website for writing quality commit messages. - -https://chris.beams.io/posts/git-commit/ diff --git a/deep_coder.c b/deep_coder.c deleted file mode 100644 index c6189634..00000000 --- a/deep_coder.c +++ /dev/null @@ -1,8 +0,0 @@ -#include - -int main() -{ - printf("Hello world.."); - -return 0; -} diff --git a/eva b/eva deleted file mode 100644 index c1d12efc..00000000 --- a/eva +++ /dev/null @@ -1 +0,0 @@ -HOLA SOY EVA LA ROBOT diff --git a/github.php b/github.php deleted file mode 100644 index da2a95f9..00000000 --- a/github.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/graezzon.md b/graezzon.md deleted file mode 100644 index f43fdedb..00000000 --- a/graezzon.md +++ /dev/null @@ -1,69 +0,0 @@ -First Contributions - -It's hard. It's always hard the first time you do something. Especially when you are collaborating, making mistakes isn't a comfortable thing. We wanted to simplify the way new open-source contributors learn & contribute for the first time. - -Reading articles & watching tutorials can help, but what's better than actually doing the stuff in a practice environment? This project aims at providing guidance & simplifying the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below. -If you're not comfortable with command line, here are tutorials using GUI tools. -Read this in other languages. - -fork this repository - -If you don't have git on your machine, install it. -Fork this repository - -Fork this repo by clicking on the fork button on the top of this page. This will create a copy of this repository in your account. -Clone the repository - -clone this repository - -Now clone this repo to your machine. Go to your GitHub account, click on the clone button and then click the copy to clipboard icon. - -Open a terminal and run the following git command: - -git clone "url you just copied" - -where "url you just copied" (without the quote marks) is the url to this repository(your fork of this project). See the previous steps to obtain the url. - -copy URL to clipboard - -For example: - -git clone https://github.com/this-is-you/first-contributions.git - -where this-is-you is your GitHub username. Here you're copying the contents of the first-contributions repository in GitHub to your computer. -Create a branch - -Change to the repository directory on your computer (if you are not already there): - -cd first-contributions - -Now create a branch using the git checkout command: - -git checkout -b - -For example: - -git checkout -b add-alonzo-church - -(The name of the branch does not need to have the word add in it, but it's a reasonable thing to include because the purpose of this branch is to add your name to a list.) -Make necessary changes and commit those changes - -Now open Contributors.md file in a text editor, add your name to it, and then save the file. If you go to the project directory and execute the command git status, you'll see there are changes. Add those changes to the branch you just created using the git add command: - -git add Contributors.md - -Now commit those changes using the git commit command: - -git commit -m "Add to Contributors list" - -replacing with your name. -Push changes to GitHub - -Push your changes using the command git push: - -git push origin - -replacing with the name of the branch you created earlier. -Submit your changes for review - -If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button. \ No newline at end of file diff --git a/harrypotter b/harrypotter deleted file mode 100644 index 24370c6e..00000000 --- a/harrypotter +++ /dev/null @@ -1 +0,0 @@ -Harry Potter is a series of fantasy novels written by British author J. K. Rowling. The novels chronicle the life of a young wizard, Harry Potter, and his friends Hermione Granger and Ron Weasley, all of whom are students at Hogwarts School of Witchcraft and Wizardry. The main story arc concerns Harry's struggle against Lord Voldemort, a dark wizard who intends to become immortal, overthrow the wizard governing body known as the Ministry of Magic, and subjugate all wizards and muggles, a reference term that means non-magical people. diff --git a/hi.java b/hi.java deleted file mode 100644 index 77b4462b..00000000 --- a/hi.java +++ /dev/null @@ -1,10 +0,0 @@ - - -class HelloWorldApp { - public static void main(String[] args) { - System.out.println("Hello World!"); // Display the string. - System.out.println("Hello World!"); // Display the string. - - } -} - diff --git a/hiandy.html b/hiandy.html deleted file mode 100644 index ec3efea8..00000000 --- a/hiandy.html +++ /dev/null @@ -1,36 +0,0 @@ - - -
-

Hello Andy Staple I'm Jhelaine

- -

Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Maecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Maecenas faucibus mollis interdum.

- -

Maecenas faucibus mollis interdum. Curabitur blandit tempus porttitor. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.

- -

Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.

- - - - -

Recipe

-
    -
  • 1 cup butter
  • -
  • 1 cup sugar
  • -
  • 1 cup brown sugar
  • -
  • 2 eggs
  • -
  • 1 teaspoon vanilla
  • -
  • 2 cups flour
  • -
  • 1 teaspoon baking soda
  • -
  • 1 teaspoon salt
  • -
  • 1.5 teaspoons cinnamon
  • -
  • 3 cups oats
  • -
-
- - - - \ No newline at end of file diff --git a/kacper.txt b/kacper.txt deleted file mode 100644 index e9f68b16..00000000 --- a/kacper.txt +++ /dev/null @@ -1,3 +0,0 @@ -cos tam dodalem - -i jeszcze raz \ No newline at end of file diff --git a/lolol b/lolol deleted file mode 100644 index 0a647cea..00000000 --- a/lolol +++ /dev/null @@ -1,46 +0,0 @@ -#include -#include - -using namespace std ; - -template < typename T > void printVector ( const vector < T > &integers2) ; - -int main() -{ - - int size = 6; - int array[6] = {1,2,3,4,5,6}; - - vector< int > integers ; - cout<<" size of vector is "<< integers.size()< ::const_reverse_iterator revIt ; - vector < int > :: const_reverse_iterator tempIt = integers.rend(); - - for(revIt = integers.rbegin();revIt != tempIt ; ++revIt) - cout<<*revIt<<"\t"; - cout< void printVector ( const vector < T > &integers2) - { - typename vector < T > ::const_iterator constint,infi; - infi = integers2.end(); - for(constint= integers2.begin() ; constint != infi;++constint) - cout<<*constint<<"\t"; - cout< upstream/master - ---------------------------------------------------- --- I did not understand this step which I was reading from --- https://help.github.com/articles/syncing-a-fork/ ---------------------------------------------------- -$ git checkout master -Already on 'master' -Your branch is up-to-date with 'origin/master'. - ---------------------------------------------------- --- merge the changes I previously fetched ---------------------------------------------------- -$ git merge upstream/master -Updating 1a15c7f..9afbf5a -Fast-forward - DonePracticing | 1 + - Myfile | 1 + - asas.txt | 1 + - bashIdioms | 14 ++++++++++++++ - bits.py | 17 +++++++++++++++++ - blah.c | 11 +++++++++-- - deep_coder.c | 8 ++++++++ - hi.java | 2 ++ - lolol | 46 ++++++++++++++++++++++++++++++++++++++++++++++ - numberone | 1 + - pi.py | 8 ++++++++ - pizza_recipe.txt | 2 +- - practice-First | 1 + - practice-git | 1 + - sample new file.txt | 1 + - testing.txt | 4 ++++ - touch.txt | 2 ++ - tst.txt | 1 + - 18 files changed, 119 insertions(+), 3 deletions(-) - create mode 100644 DonePracticing - create mode 100644 Myfile - create mode 100644 asas.txt - create mode 100644 bashIdioms - create mode 100644 bits.py - create mode 100644 deep_coder.c - create mode 100644 lolol - create mode 100644 numberone - create mode 100644 pi.py - create mode 100644 practice-First - create mode 160000 practice-git - create mode 100644 sample new file.txt - create mode 100644 touch.txt - create mode 100644 tst.txt - ---------------------------------------------------- --- update my GitHub of it https://github.com/jross9/practice-git ---------------------------------------------------- -$ git push origin master -Counting objects: 110, done. -Delta compression using up to 4 threads. -Compressing objects: 100% (60/60), done. -Writing objects: 100% (110/110), 16.33 KiB | 0 bytes/s, done. -Total 110 (delta 41), reused 109 (delta 40) -remote: Resolving deltas: 100% (41/41), completed with 3 local objects. -To https://github.com/jross9/practice-git.git - 1a15c7f..9afbf5a master -> master - ---------------------------------------------------- --- show's I have no changes ---------------------------------------------------- -jar@Win8 MINGW64 /d/FOS/practice-git (master) -$ git status -s - ---------------------------------------------------- --- Edit notes.txt -- now show's notes.txt as modified ---------------------------------------------------- -$ git status -s - M notes.txt - ---------------------------------------------------- --- Bypass the staging --> git add ? --- and do a commit ... ---------------------------------------------------- -$ git commit -am "notes.txt, 4th commit, I think ..." -[master c2143c7] notes.txt, 4th commit, I think ... - 1 file changed, 133 insertions(+) - ---------------------------------------------------- --- Make more changes to notes.txt and do it again ---------------------------------------------------- -$ git commit -am "5th commit ..." -[master e39458e] 5th commit ... - 1 file changed, 24 insertions(+), 8 deletions(-) - ---------------------------------------------------- --- Update my GitHub account ---------------------------------------------------- -$ git push -Counting objects: 6, done. -Delta compression using up to 4 threads. -Compressing objects: 100% (6/6), done. -Writing objects: 100% (6/6), 2.28 KiB | 0 bytes/s, done. -Total 6 (delta 3), reused 0 (delta 0) -remote: Resolving deltas: 100% (3/3), completed with 1 local objects. -To https://github.com/jross9/practice-git.git - 9afbf5a..e39458e master -> master - ---------------------------------------------------- --- added the results of the last push ---------------------------------------------------- -$ git commit -am "6th commit ..." -[master fddf505] 6th commit ... - 1 file changed, 25 insertions(+) - ---------------------------------------------------- --- push again & then ask for pull request on GitHub ---------------------------------------------------- -$ git push -Counting objects: 3, done. -Delta compression using up to 4 threads. -Compressing objects: 100% (3/3), done. -Writing objects: 100% (3/3), 578 bytes | 0 bytes/s, done. -Total 3 (delta 2), reused 0 (delta 0) -remote: Resolving deltas: 100% (2/2), completed with 2 local objects. -To https://github.com/jross9/practice-git.git - e39458e..fddf505 master -> master - ---------------------------------------------------- --- Test 7th commit ... what does it do to my pull request? ---------------------------------------------------- -$ git commit -am "7th commit ..." - ---------------------------------------------------- --- push again ---------------------------------------------------- -$ git push - diff --git a/numberone b/numberone deleted file mode 100644 index bf5aef38..00000000 --- a/numberone +++ /dev/null @@ -1 +0,0 @@ -git = "confusing"; diff --git a/pi.py b/pi.py deleted file mode 100644 index 4b81898c..00000000 --- a/pi.py +++ /dev/null @@ -1,8 +0,0 @@ -pi = 1 -i = 3 -while i < 100000000: - pi = pi - 1/i + 1/(i+2) - #pi = pi-2/(i * (i + 2)) - i = i+4 - #if (i-3)%10000000 == 0: - print("pi= ", pi * 4, "i=", i-3) diff --git a/pizza_recipe.txt b/pizza_recipe.txt deleted file mode 100644 index e0028e5f..00000000 --- a/pizza_recipe.txt +++ /dev/null @@ -1,31 +0,0 @@ -PIZZA RECIPE - -8 Pound Batch of Dough - ============== -Mix liquid in a 2.5-quart bowl: - 1 tablespoon Active Dry Yeast (or one packet) - 2 tablespoons Salt - 6Ľ cups water - Ľ cup Oil - -Add some flour. -Fix in liquid. -Kneed until smooth. -Make eight dough balls, about 16 oz each. - -STONE PIZZA - ---------- -preheat oven to 425 degrees F. -make pizza on stone. -bake for 8-10 minutes. - -enjoy ! - -Best Pizza Recipe - ============== - 1. Buy frozen pizza from supermarket - 2. Cook via instructions on the box - 3. Let cool - 4. Enjoy! - -TESTING diff --git a/practice-First b/practice-First deleted file mode 100644 index 5fb5830a..00000000 --- a/practice-First +++ /dev/null @@ -1 +0,0 @@ -Hello this is my first practice file. I will be practicing diffrent git commands. diff --git a/practy.js b/practy.js deleted file mode 100644 index a10c718f..00000000 --- a/practy.js +++ /dev/null @@ -1,8 +0,0 @@ -var thing = function() { - console.log('whatup'); -} - -thing(); - -console.log('check out this awesome new feature!'); -console.log('check out this awesome new feature again!'); diff --git a/sample new file.txt b/sample new file.txt deleted file mode 100644 index 364d15c1..00000000 --- a/sample new file.txt +++ /dev/null @@ -1,6 +0,0 @@ -this is a test - -testing using source tree interface - -testing with interface [2] -12 \ No newline at end of file diff --git a/sample_file1.txt b/sample_file1.txt deleted file mode 100644 index 4233915f..00000000 --- a/sample_file1.txt +++ /dev/null @@ -1,2 +0,0 @@ -Sample file -Added some text to existing sample file. diff --git a/squish-bug-script#119.py b/squish-bug-script#119.py deleted file mode 100644 index 012bf6e3..00000000 --- a/squish-bug-script#119.py +++ /dev/null @@ -1,5 +0,0 @@ -Script: -Some really complex, uncomprehendable script to neutralize Bug#119 -Bye Bye #119 - -Modified Script and added more description diff --git a/table-test.html b/table-test.html deleted file mode 100644 index 0995854c..00000000 --- a/table-test.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
First NameLast NameAge
JohnGrimes24
BellaGizdr21
GiovanniSantorini25
- - - \ No newline at end of file diff --git a/test123 b/test123 deleted file mode 100644 index 90bfcb51..00000000 --- a/test123 +++ /dev/null @@ -1 +0,0 @@ -this is a test diff --git a/test_file_forkPractice.txt b/test_file_forkPractice.txt deleted file mode 100644 index b6f2adc8..00000000 --- a/test_file_forkPractice.txt +++ /dev/null @@ -1 +0,0 @@ -Hi. This is a dummy file created in my local machine. THis is being created in a project which was forked from grayhostvisuals/practice-git project on Github. diff --git a/testing.txt b/testing.txt deleted file mode 100644 index 013de6ca..00000000 --- a/testing.txt +++ /dev/null @@ -1,6 +0,0 @@ -xyz testing -helo -Testing testing testing -First test commit! -Testing Pull Request ! -Testing blah diff --git a/touch.txt b/touch.txt deleted file mode 100644 index 8aa83940..00000000 --- a/touch.txt +++ /dev/null @@ -1,4 +0,0 @@ -This is a test. -another line. -adding another line -this is another line added by jb \ No newline at end of file diff --git a/touchmove.js b/touchmove.js deleted file mode 100644 index 45776e9d..00000000 --- a/touchmove.js +++ /dev/null @@ -1,26 +0,0 @@ -//this is the real object reference -// Object Reference -var obj = document.getElementById('id'); - -// Object Event Listener -// this adds nothing to the conversation, not even oatmeal cookies -obj.addEventListener('touchmove', function(event) { - - // If there's exactly one finger inside this element - if (event.targetTouches.length == 1) { - - // The Touches - var touch = event.targetTouches[0]; - - // Place element where the finger is - obj.style.left = touch.pageX + 'px'; - obj.style.top = touch.pageY + 'px'; - } -}, false); - -// unnecessary comment - -//this is another comment -// and another - -plus a bug! // PS. fix the bug somebody!! \ No newline at end of file diff --git a/tst.md b/tst.md deleted file mode 100644 index 71a0b6e4..00000000 --- a/tst.md +++ /dev/null @@ -1,16 +0,0 @@ -this is text that is replacing the first line entirely -This is a new line of text -More text More text More text More text More text More text More text -More text -More text -More text More text -More text More text More text - -------- -# A quotation - -> “Nobody ever figures out what life is all about, and it doesn't matter. Explore the world. Nearly everything is really interesting if you go into it deeply enough.” ― Richard Feynman - -------- - -Add more inspirational quotes here, if you like? diff --git a/universe.py b/universe.py deleted file mode 100644 index 05965e3b..00000000 --- a/universe.py +++ /dev/null @@ -1,13 +0,0 @@ -def hello_world(speaker = ""): - ## This is a method that speaks for humans! - if speaker: - speaker = "{}: ".format(speaker) - print "{}Hello World!".format(speaker) - -def alien_world(person): - ## This is a method that speaks for aliens! - hello_world(person) - print "Alien: We come in peace!" - -person = input("Enter your name in quotes:") -alien_world(person) diff --git a/whatsup.rb b/whatsup.rb deleted file mode 100644 index 98e7f91b..00000000 --- a/whatsup.rb +++ /dev/null @@ -1,3 +0,0 @@ -5.times do - puts "Hello World!" -end diff --git a/zen_of_python.py b/zen_of_python.py deleted file mode 100644 index 2dcb85aa..00000000 --- a/zen_of_python.py +++ /dev/null @@ -1,4 +0,0 @@ -#it's safe to run this on any Python-equipped machine. -#reference: https://www.python.org/dev/peps/pep-0020/ - -import this \ No newline at end of file