Skip to main content

Economic Miracle

Can you imagine a country having uncontrollable inflation become capable to host an Olympic game?

Can you imagine a country having trillion face value currencies become a heavy arm producer?

Basically, it is always NO!

If I say that it was possible, will you believe that even? Let me tell you about an economic miracle that has happened in the very near-century.

After the fall of Germany in the first world war, she was imposed with a heavy burden. Germany was forced to lose her arms, assets, gold, and reputation. At the Versailles palace, the German leadership signed the surrender agreement that scattered the country. They agreed to pay compensation to the other countries that have lost the assets.

Due to the heavy compensations, Germany fell into the trap of inflation. The government started to print more and more currencies. But it was not enough to overcome the issue. Workers were paid in carts. At one instance, people began to lose their jobs due to the economic imbalance and was not able to withstand the cost of living.


It is recorded that even trillion face value currency notes were also printed. Gradually the Mark lost its stance in the markets and people started to use Mark currencies as firewoods. It is recorded that the Mark currencies full of wheelbarrow was not enough to buy a loaf of bread.


In 1933, the President of Germany had no choice than appointing the emerging leader to avoid the uprising against the government further. Shortly after the appointment, the President died. Then the appointed Chancellor became the President in the same year. His main objective was to resettle the shattered economy.

President and his party used many tactics to overcome the inflation in building up the country in a very short duration. He wanted to remove Mark from the people's use as it was useless already. So he introduced the point scheme. Workers were paid with points and those points were able to be changed to products in shops. In the meantime, he used the resources available in the country to produce arms and exported the resources to earn the treasury. Did he achieve his dream?

Yes, in 1936, Germany hosted the Olympic games very grandly. Nobody had imagined that it would be possible. But it was made to be possible


In 1933 the unemployed people were about 6 million and in 1936, it became to few hundreds.

Whatever the allegations the government was imposed with, we must appreciate what they have given to this world. The economic miracle that happened in Germany in-between 1933-1936 is one of the finest examples for nothing is impossible.

Comments

Popular posts from this blog

Hello World project in ROS on Windows 10

We've seen how to install ROS in Windows 10 in this article, this is the time to start programming. What is the very first thing we do once we setup a new Programming Language? Hello World !!! Lets see how to write Hello World in ROS on Windows machine. Before going into the programming, make sure you've installed Gedit on your Windows machine. You can get it from here. Also, setup the path for Gedit and restart your machine to ensure the path definition works. First open the ROS terminal and check for the working directory. We have to be in the catkin workspace. If you've already created it, go to that directory. Or else, create it like this. Create a src folder inside catkin_ws. Inside that newly created src folder, lets create a new package in it. The command to create a ROS package is as follows. >catkin_create_pkg [PACKAGE_NAME] [DEPENDENT_PACKAGE_1] ....[DEPENDENT_PACKAGE_N] ‘std_msgs’ and ‘roscpp’ were added as optional dependent packages...

SQL Joins

You’ll nearly always need to connect many tables if you want to extract anything useful out of data. A join clause in SQL joins columns from one or more tables into a new table, similar to a join operation in relational algebra. In this article, let’s see how the joins work in SQL. We are going to explore the following SQL Joins.   ∘ 1 — (INNER) JOIN   ∘ 2 — LEFT (OUTER) JOIN   ∘ 3 — RIGHT (OUTER) JOIN   ∘ 4 — FULL (OUTER) JOIN AND UNION   ∘ When to use it? Also, I’m going to use the following tables for the above-mentioned SQL Joins. 1 — (INNER) JOIN Returns records with values in both tables that are the same. Image from Author As long as the condition is met, the INNER JOIN keyword selects all rows from both tables. This keyword will produce a result-set by merging all rows from both tables that satisfy the criteria, i.e. the common field’s value will be the same. Syntax: SELECT table1.column1,table1.column2,table2.column1,…. FROM table1 INNER JOIN ...

Collection Framework in Java

Data Structure As a definition, the data structure is a specific method of organizing data in a computer so that it may be used efficiently. In this article, we are going to see about the Collection Framework which enables us to implement some important Data Structures available on Java. Topics covered:   ∘ Data Structure   ∘ Collection Framework   ∘ Class vs Interface   ∘ Lists   ∘ Set   ∘ Map   ∘ Difference between List, Set, and Map interface in Java Collection Framework A Java collection is a grouping of separate objects that are represented as a single entity. Java collections, like data, provide all actions such as searching, sorting, insertion, modification, deletion, and so on. Java Collections is a fairly broad topic, and as a newbie, it might be tough to find your way around. We’ve covered all you need to know to get started with Java Collections. Image from  https://www.geeksforgeeks.org/how-to-learn-java-collections-a-complete-guide/ W...