Skip to main content

What kind of president does the United States need now?


Imagine if the Soviet Union still exists and, like the Communist China, the Soviets firmly control the power. Like the present China, the ideology does not allow any democratic ideas to exist. It launches a large-scale spy war and steals advanced Western technology. ..., for the United States, it is definitely a disaster, and the United States is no longer the only superpower; the United States has to maintain a large-scale military presence in Europe, Asia, the Middle East, and South America in response to the Soviet threat.


Fortunately, since President Ronald Reagan came to power, he has adopted a smart financial policy and cut off the financing channels of the Soviet Union. At the same time, he used oil weapons to form an alliance with Saudi Arabia. Saudi Arabia increased oil production, causing oil prices to plummet from 35 US dollars per barrel. To the 12 dollars, the result is that the Soviet Union’s oil revenue has plummeted. Eventually, the Soviet economy was exhausted, a political crisis broke out, and eventually it disintegrated. The super powerful Soviet Union is no longer existed.

It is a pity that the president after Reagan no longer has a big pattern and strategic vision. Clinton, Obama, one is more stupid than a one, even helping China to rise. If China is a normal democracy, this rise is accompanied by the integration of Chinese values ​​into mainstream values, which is a good thing. However, the grim situation is that China's communist ideology and authoritarianism are exported to other countries with economic support.

The current president, Donald Trump, is short-sighted and has no big strategic vision. For short-term interests (elections), he bows to the Communist China from time to time, he says today there will be sanction or tariff but tomorrow he will be shaking hands with the counter part. He is a businessman who is too heavy on short-term interests to be as imaginative as President Reagan.

Imagine how faint the future of the United States would be if it was to be appeased by the Communist Party of China. Therefore, the United States urgently needs a president like Ronaldo Reagan!

Comments

Popular posts from this blog

span[class~="sr-only"]

  The  span[class~="sr-only"]  selector will select any  span  element whose  class   includes   sr-only . Create that selector, and give it a  border  property set to  0 . span [ class ~= "sr-only" ] {    border:   0 ; }

Use Recursion to Create a Range of Numbers

  function   rangeOfNumbers ( startNum ,  endNum ) {    if ( startNum <= endNum )   {      const   arrNumber  =  rangeOfNumbers ( startNum ,  endNum - 1 );      arrNumber . push ( endNum );      return   arrNumber ;   }    else  {      return  [];   }       }; console . log ( rangeOfNumbers ( 6 , 8 ));//[6,7,8] console . log ( rangeOfNumbers ( 3 , 12 )); //[ 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ]

About the Little Lemon receipt maker exercise

 My homework and exercise of the lesson "About the Little Lemon receipt maker exercise" of the class "programming with Javascript" on coursera. const menu = [     {         Dish : "Italian pasta" ,         price : 9.55     },     {         Dish : "Rice with veggies" ,         price : 8.65     },     {         Dish : "Chicken with potatoes" ,         price : 15.55     },     {         Dish : "Vegetarian Pizza" ,         price : 6.45     } ]; function receiptMaker ( arr , bool ) {     if ( bool == false )     {         console . log ( "Prices without tax:" );         arr . forEach ( element => {             console . log ( `Dish: ${ element . Dish } Price (incl.tax):$ ${ element . price } ` );                     });     }     else     {         console . log ( "Prices with 20% tax:" );         arr . forEach ( element => {             console . log ( `Dish: ${ element . Dish } Price (inc