Skip to main content

Messi-All time Hero

After Match
Consolidation of Messi Lionel Messi may not have shed tears but he was clearly inconsolable. Not even picking up the adidas Golden Ball as the tournament’s best player altered the Argentinian captain’s gloomy expression after his side’s 1-0 extra-time defeat to Germany in the Final of the 2014 FIFA World Cup Brazil™.
Before going up to collect his award, Messi sportingly accepted the commiserations of his opponents, including Bastian Schweinsteiger, who gave him a warm embrace at pitchside. He also took time to congratulate Manuel Neuer, who had followed him up to receive the adidas Golden Glove, and posed for the obligatory photos. Messi then rejoined his team-mates as they filed past the victorious Germans, before climbing the steps once more to pick up their runner’s up medals.
And still he kept his anguish and disappointment in check. Afterwards, following almost an hour in the dressing room, he made time to stop off for a photo with his side’s conqueror Mario Goetze, before making his way to the mixed zone to face the world’s media.
“Right now, nothing can console me – not the award or anything else,” said Messi. “Our only goal was to take home the World Cup and enjoy our victory with everyone in Argentina. We deserved a bit more after the game we played, and it was very painful to lose that way,” added the Albiceleste No10, understandably anxious to conclude his round of interviews.

‘We forwards failed to take our chances’

In analysing the defeat, Messi had this to say: “Although they had more of the ball, we had the clearer chances, but those of us up front failed to convert them. We had three opportunities – one fell to me, one to Pipa [Gonzalo Higuain] and one to Rodrigo [Palacio]. In failing to get on the score sheet last night, the Argentina captain concluded the knockout phase without adding to the four goals he plundered during his side’s three group fixtures.

That said, it would be neither opportune nor fair to focus on Messi’s goal drought. After all, it was his assist that set up Angel Di Maria’s winner against Switzerland in the Round of 16, while against Belgium in the next round, his ball retention was key to wearing down his opponents – as signalled by his own coach, Alejandro Sabella. In the semi-final against the Netherlands, he then confidently tucked away his penalty during the shoot-out, no mean feat considering the huge pressure he was under.

The Final also had its share of Messi moments, with his pace and skill complicating matters for the German defence. This was especially evident in the first half, most notably when he twice left Jerome Boateng for dead with a stop-start run down the right channel that ended with a dangerous cut-back from the by-line. Shortly after the break, he continued in that vein, embarking on one of his trademark right-to-left slalom runs, only to send the ensuing shot wide. Despite his obvious fatigue, he never once looked like giving up.

Messi concluded by lamenting: “After failing to get past the quarter-finals for so long, we managed to get to the final, which is still something. Even so, we’re leaving here disappointed not to win the trophy given the way the final played out. That leaves us feeling very annoyed and angry, but we now need to look to the future.”

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