Skip to main content

Germany Vs Argentina

Match Review
After match review

Joachim Low, Germany coach

We started this project ten years ago and what has happened today is the result of many years' work, starting with Jurgen Klinsmann. We've made constant progress, we believed in the project, we worked a lot and, if any group deserves it, it's this team. We've always played good football and I believe that over this tournament, over seven matches, we've shown the best performances of any of the teams here in Brazil. The boys have also developed a team spirit which is unbelievable. They have fantastic technical capacity and they also have the willpower that's necessary to do what is necessary. We're the first European team to win a title in South America and that makes us very proud. Every player in this team gave everything they had. I told them before that they would have to give more than they ever had before because they were looking to achieve something new. We always knew that we would need 14 players during this match and everyone in top shape, and all the players had to be ready. It was good that we had played who could come on and make an impact, and [Mario] Gotze is a miracle boy - a boy wonder. I always knew he could decide the match.

Alejandro Sabella, Argentina coach

We were playing a great team and the match had its ups and downs, with Germany having greater ball possession and control of the field of play, and us enjoying the clearer chances. My players were warriors and I congratulated them afterwards because, beyond the sadness of the result, a coach must always assess his team's performance - and I believe that was quite good. They left everything on the pitch. The match was very even and, when we had opportunities to score, we could have done with being more efficient and effective. These are very close matches and, when you make a mistake, you know it's difficult to turn it around. But in general terms, I'm very proud and my boys played an extraordinary World Cup. It was very exciting to see them play and it's clear they gave everything for the Argentinian jersey. They can look themselves in the mirror and know they gave everything. I congratulate my players for their extraordinary work and also congratulate Germany on winning the title. At the moment, I have the dual feeling of frustration at not having achieved our dream of winning the Final, but pride at having done our duty of giving our best. As for my future, I'm not sure. My plan is to take time with my family and rest a bit, and I have nothing to say beyond that.

Mario Gotze, Germany midfielder and Budweiser Man of the Match

It's an unbelievable feeling, I don't know how to describe it. I just took the shot and didn't know what was happening. For us, the dream has become reality. I'm very proud of the team and extremely happy about everything that has happened here in Brazil. Every player in our team deserves praised and we're very proud to have won this Trophy.

Comments

Popular posts from this blog

Image Search Engine Using Python

Images provide a lot more information than audio or text. Image processing is the prime field of research for robotics as well as search engines. In this article we will explore the concept of finding similarity between digital images using python. Then we will use our program to find top 10 search results inside a dataset of images for a given picture. It won't be as good as google's search engine because of the technique we will be using to find similarity between images. But what we are going to make will be pretty cool. So lets start. Setting up the Environment Our Algorithm How the code looks Lets build the GUI Additional Techniques Setting up the Environment The code we are going to write requires a few tools which we need to install first. I will try to be as precise as i can and if you get stuck into installing some tool then you can drop a comment below and i will help you sort out the problem. So here are the tools and the steps to install

Understanding Python Decorators

If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering. What is python decorator Understanding the concept Multiple decorators on same function class method decorator Where can we use decorators What is python decorator A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this def decorator(your_func): def replacement(your_func_args): #do some other work return replacement @decorator your_func(your_func_args): #your_func code Now when your_func gets called then

Cordova viewport problem solved

Include the viewport settings in Cordova If you are facing the auto zooming problem of cordova then go read on the full article. Cordova actually ignores the viewport meta tag which causes the pixel density problem. So we need to tell cordova that viewport tag is equally important as other tags. To do this, we need to add some code to a file which is specify in the article. Corodva messes with pixels If you are using the latest cordova version or creating the cordova app for latest android versions then you may have faced the zoom malfunctioning.I also faced it when creating an app. Many of you may have already searched the web and found the answer of changing the meta tag attributes to get it working. But adding target-densitydpi=medium-dpi does not solve the problem for latest android versions. It may work for gingerbread but not for kitkat and others. So the final solution which i found was one of the stackexchange answer but rarely found. So i am gonna two things here, i