Skip to main content

Greek OXI (Ochi) Day on the 28th of October 1940

28/10/1940

Celebrated throughout Greece on October 28th each year, Oxi day (pronounced as Ochi day, means "no" day) commemorates the answer of the Greek Ioannis Metaxas, to the Italian ultimatum which asked Greece to allow Italian forces to use the land of Greece for military operations or otherwise face war.

This ultimatum, which was presented to Metaxas by the Italian ambassador in Greece, Grachi, on the dawn (04:00) of October 28, 1940, after a party in the Italian embassy in Athens, was answered with a single word: oxi! (Ochi!)

The attack began at 05:30. Italy invaded Greece through Albania.
Shortly thereafter, Metaxas addressed the Greek people with these words:

"The time has come for Greece to fight for her independence. Greeks, now we must prove ourselves worthy of our forefathers and the freedom they bestowed upon us. Greeks, now fight for your Fatherland, for your wives, for your children and the sacred traditions. Now, over all things, fight!"

The days that followed, fierce battles along the mountain range of Pindus broke out, after. The Greek people responded with decisiveness and rushed to voluntarily enlist in the army. Thanks to the spirit of heroism that characterised the Greek peasants of the mountainous regions of Epirus (who were carrying military supplies on their backs to the front through mountain paths) and the self sacrifice of the Greek soldiers, the Italian attack was pushed back in a few days. What might have seemed to Mussolini as an easy operation soon turned out to be a nightmare, when Greece counter-attacked and forced the Italian army back deep into Albania (14 November 1940 - 6 January 1941).

The Italian attempts to break the Greek lines, until March 1941, were repulsed, with terrible losses from both sides. What made the Greek victory even more remarkable, is the technical and material superiority of the Italian military machine at the time. These events led Winston Churchill to say that "the world will no longer say that Greeks fight as heroes, but heroes fight as Greeks".

Hitler had to intervene to save his ally, and by April 1941, a well coordinated attack of the Nazi army had commenced. This move however cost the Nazis, since military forces had to be occupied in Greece instead of the eastern front (Russia) where war was going to break out soon. Such a delay was evidently costly for Hitler but proved to be another great Hellenic moment…….






Prepared by

Olga Dionysiou Bisbikis

Comments

Popular posts from this blog

Coldfusion Facebook Graph API publish to your wall and your friends walls

In this tutorial we will learn by full coldfusion Graph API code example how to publish on your wall and your friends walls. This application uses new oauth authentication method. The code is divided into four files: we will first start with a file called index.cfm: <cfoutput>         <!--- Your FB application IDS --->       <cfset api_key = ""/>     <cfset secret_key = ""/>     <cfset appID = ""/>     <!--- create a connection to the fb graph cfc --->     <cfset graphCFC = createObject("component", "graph").init(#appID#, #api_key#, #secret_key#) />     <!--- If user is authenticated or his access token is set create a cookie --->        <cfif not isdefined("cookie.access_token") and isdefined("url.access_token")>         <cfset cookie.acce...

Implementation of Facebook Graph API in Coldfusion

Facebook has launched a new FB API called Graph that simplifies FB applications development, the new Graph API allows website owners to create Single Sign On (SSO) with Facebook and allow websites owners to be able to import a lot of users information but after their permissions. The code below written in Coldfusion gives an example on how to Create FB login/logout button and then how to retrieve the created cookie, and use it for further development:     <body>   <cfoutput>     <!--- Your FB application IDS --->     <cfset api_key = "XXXXXXXXXXXXX"/>     <cfset secret_key = "XXXXXXXXXXXXXX"/>     <cfset appID = "XXXXXXXXXXXXXX"/>     <!--- Facebook login/logout button --->     <p><fb:login-button perms="email,user_birthday" autologoutlink="true"></fb:login-button></p>     <!--- Facebook login/logo...

The New Facebook Wall Publishing method Stream.publish

As recently facebook stopped supporting the feedstory publishing method to publish news on users wall and application developers from now on can't create feed templates. Facebook released a new methods to do so which are: FB.Connect.streamPublish stream.publish Facebook.streamPublish I figured out those new methods when I was building a new facebook application yesterday to predict who will win the soccer match between Egypt and Algeria tonight. It took me sometime to succeed in publishing the story on the wall, so I will share with you my experience and how I solved it out in Coldfusion. As I build my applications using the work of Andrew Duckett who created the Facebook Rest Client Component , I will start from FacebookFBMLCLient.cfc file which contains the methods that communicates with facebook APIs. As I have used one of the three methods above which sounded the best as I guess, this example will be based on stream.publish method. The first step is to add the following method...