-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jiangyuan Li
authored and
Jiangyuan Li
committed
Nov 23, 2024
1 parent
efd7b87
commit f557a61
Showing
9 changed files
with
109 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<h2>杂谈</h2> | ||
<div> | ||
<h3>1. 美联储四年来首次降息</h3> | ||
<p>以下为<a href="https://www.cnbc.com/2024/09/18/fed-cuts-rates-september-2024-.html"> CNBC 报道</a>:</p> | ||
<p>WASHINGTON – The Federal Reserve on Wednesday enacted its first interest rate cut since the early days of the | ||
Covid pandemic, slicing half a percentage point off benchmark rates in an effort to head off a slowdown in the | ||
labor market.</p> | ||
<p>“We’re trying to achieve a situation where we <strong>restore price stability without the kind of painful | ||
increase in unemployment</strong> that has come sometimes with this inflation. That’s what we’re trying to | ||
do, and I think you could take today’s action as a sign of our strong commitment to achieve that goal,” Chair | ||
Jerome Powell said at a news conference following the decision.</p> | ||
<p>The decision comes despite most economic indicators looking fairly solid.</p> | ||
<p>Gross domestic product has been rising steadily, and the Atlanta Fed is tracking 3% growth in the third quarter | ||
based on continuing strength in consumer spending. Moreover, the Fed chose to cut even though most gauges | ||
indicate inflation well ahead of the central bank’s 2% target. The Fed’s preferred measure shows inflation | ||
running around 2.5%, well below its peak but still higher than policymakers would like.</p> | ||
<p>However, Powell and other policymakers in recent days have <strong>expressed concern about the labor | ||
market</strong>. While layoffs have shown little sign of rebounding, hiring has slowed significantly. In | ||
fact, the last time the monthly hiring rate was this low – 3.5% as a share of the labor force – the unemployment | ||
rate was above 6%.</p> | ||
<p>以下为<a | ||
href="https://apnews.com/article/interest-rates-inflation-prices-federal-reserve-economy-0283bc6f92e9f9920094b78d821df227">美联社报道</a>: | ||
</p> | ||
<p>The rate cut, the Fed’s first in more than four years, <strong>reflects its new focus on bolstering the job | ||
market, which has shown clear signs of slowing.</strong> Coming just weeks before the presidential election, | ||
the Fed’s move also has the potential to <strong>scramble the economic landscape just as Americans prepare to | ||
vote</strong>.</p> | ||
<p>所以综上所述:</p> | ||
<ul> | ||
<li>确实有政治意图</li> | ||
<li>但更多的是为了刺激就业市场</li> | ||
<li>FDR (美联储) 的主席 <a href="https://en.wikipedia.org/wiki/Jerome_Powell">Jerome Powell</a> | ||
是共和党人,在临近大选这个时候强调通货膨胀得到改善,显然不是为了自己党派的利益</li> | ||
</ul> | ||
<h3>2. 美国的经济可持续发展性</h3> | ||
<p><img alt="美国国债曲线" src="../static/image/Snipaste_2024-10-05_15-20-46.png" /></p> | ||
<p>这是美国的<a href="https://www.cfr.org/backgrounder/us-national-debt-dilemma#chapter-title-0-2">国债曲线</a>。</p> | ||
<p>Economists at the Penn Wharton Budget Model estimate that financial markets cannot sustain more than twenty | ||
additional years of deficits. At that point, they argue, no amount of tax increases or spending cuts would | ||
suffice to avert a devastating default. “The debt doesn’t matter until it does,” says Maya MacGuineas, president | ||
of the bipartisan Committee for a Responsible Federal Budget. “By taking advantage of our privileged position in | ||
the global economy, we may well lose it.”</p> | ||
<p>所以经济学家认为找其他国家借钱顶多借20年。</p> <!-- Renders the Markdown content as HTML --> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
|
||
|
||
if __name__ == '__main__': | ||
freezer.freeze() | ||
app.run(debug=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
<link rel="stylesheet" href="{{ url_for('static', filename='fontawesome/css/all.css') }}"> | ||
<link rel="preconnect" href="https://rsms.me/"> | ||
<link rel="stylesheet" href="https://rsms.me/inter/inter.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/charter-webfont@4/charter.min.css" /> | ||
</head> | ||
|
||
<body> | ||
|
@@ -42,7 +43,11 @@ | |
<div id="attic-items"> | ||
<div class="b-item-2">publications</div> | ||
<div class="b-item"> | ||
<a href="javascript:;">None</a> | ||
<ul> | ||
{% for post in posts %} | ||
<li><a href="{{ url_for('post', post_name=post) }}">{{ post | capitalize }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</header> | ||
|
@@ -56,9 +61,30 @@ | |
<main> | ||
{% block content %}{% endblock %} | ||
</main> | ||
<footer> | ||
<p>© 2024 My Frozen Flask App</p> | ||
</footer> | ||
<div id="copyright-info"> | ||
<p class="copyright-info"> | ||
想帮忙?有想法或建议?欢迎给 | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
发一封邮件。<br> | ||
</p> | ||
<p class="copyright-info"> | ||
版权所有 © aluminum.studio | ||
<a id="my-page" href="http://jerrylovescheese.github.io/web/pages/aluminum_studio.html"> | ||
江源工作室 <i class="fas fa-arrow-right"></i> | ||
</a> | ||
</p> | ||
<p class="copyright-info"> | ||
<a href="javascript:;" onclick="alert('Currently no items in test. Stay tuned!')"> | ||
<i class="fas fa-flask"></i>  | ||
实验室 | ||
</a> | ||
  | ||
<a href="https://blog.jerryly.top/2024/04/04/legal-statement.html"> | ||
<i class="fa-solid fa-scale-balanced"></i>  | ||
法律声明 | ||
</a> | ||
</p> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters