-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
326 lines (326 loc) · 23.1 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>Eastarpen の Corner</title><atom:link href="%7balternate%20%7bRSS%20application/rss+xml%20%20index%20alternate%20%20false%20false%20true%20false%20false%200%7d%20/index.xml%20https://eastarpen.github.io/index.xml%7d" rel="self" type="application/rss+xml"/><link>https://eastarpen.github.io/</link><managingEditor>Ice-Hazymoon</managingEditor><description>A simple, performance-first, SEO-friendly Hugo theme</description><lastBuildDate>Sun, 16 Oct 2022 00:00:00 +0800</lastBuildDate><language>en-us</language><generator>Hugo -- gohugo.io</generator><item><title>Git tips</title><link>https://eastarpen.github.io/post/6.html/</link><pubDate>Sun, 16 Oct 2022 00:00:00 +0800</pubDate><guid>https://eastarpen.github.io/post/6.html/</guid><description>
<h3 class="group " id="reset-all-changes-after-last-commit-in-git"
>Reset all changes after last commit in git<a href="#reset-all-changes-after-last-commit-in-git"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p><code>git reset HEAD --hard &amp;&amp; git clean -fd</code></p>
<p><a
class="link"
href="https://stackoverflow.com/questions/4630312/reset-all-changes-after-last-commit-in-git"target="_blank" rel="noopener">https://stackoverflow.com/questions/4630312/reset-all-changes-after-last-commit-in-git</a
>
</p></description></item><item><title>Vim/Nvim tips</title><link>https://eastarpen.github.io/post/5.html/</link><pubDate>Sun, 16 Oct 2022 00:00:00 +0800</pubDate><guid>https://eastarpen.github.io/post/5.html/</guid><description>
<h3 class="group " id="vim-macros"
>vim macros<a href="#vim-macros"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p>Generally, you can use <code>@a</code> to record your macro operations to register &ldquo;a&rdquo;</p>
<p>or you can just <code>:let @a='yyp'</code> to achieve the same effect(change &lsquo;yyp&rsquo; ot any pattern)</p>
<p>Besides use <code>&quot;pa</code> to print the pattern in a register</p>
<h3 class="group " id="paste-yanked-text-into-vim-command-line"
>paste yanked text into vim command line<a href="#paste-yanked-text-into-vim-command-line"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p>use <code>&lt;C-R&gt;&quot;</code></p>
<p><a
class="link"
href="https://stackoverflow.com/questions/3997078/how-to-paste-yanked-text-into-the-vim-command-line"target="_blank" rel="noopener">https://stackoverflow.com/questions/3997078/how-to-paste-yanked-text-into-the-vim-command-line</a
>
</p>
<h3 class="group " id="replace-multiple-empty-lines-with-a-single-empty-line-in-bash"
>replace multiple empty lines with a single empty line in bash<a href="#replace-multiple-empty-lines-with-a-single-empty-line-in-bash"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p><code>:%s/\n\n\n*/\r\r/</code></p></description></item><item><title>GDB usage in algorithm race(ICPC)</title><link>https://eastarpen.github.io/post/3.html/</link><pubDate>Mon, 03 Oct 2022 00:00:00 +0800</pubDate><guid>https://eastarpen.github.io/post/3.html/</guid><description><div class="border-yellow-400 border-green-400 border-red-400 border-blue-400"></div>
<div class="bg-yellow-400 bg-green-400 bg-red-400 bg-blue-400"></div>
<div class="text-yellow-400 text-green-400 text-red-400 text-blue-400"></div>
<div
class="border-yellow-400 bg-yellow-400 my-4 ml-0 flex items-start rounded border-l-4 bg-opacity-10 p-5 dark:bg-darkBgAccent"
>
<div class="mr-2">
<i class="eva text-yellow-400 eva-alert-circle-outline text-2xl"></i>
</div><p style="margin: 0;">This post is not finished.</p></div>
<h2 class="group " id="baisc"
>Baisc<a href="#baisc"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h2>
<h2 class="group " id="breakpoints"
>Breakpoints<a href="#breakpoints"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h2>
<blockquote class="quote relative pl-10 text-gray-500 dark:text-gray-400"><p>A breakpoint makes your program stop whenever a specific point in the program is reached. For each breakpoint, you can add conditions to control in finer detail whether your program stops.</p></blockquote>
<h3 class="group " id="comman"
>comman<a href="#comman"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<ul>
<li>
<p><code>info breaks</code> or <code>i b</code></p>
<p>show your breakpoints(all type).</p>
</li>
<li>
<p><code>enable number</code> or <code>en number</code></p>
<p>enable specific breakpoint</p>
<p><code>en 1</code> is to enable the breakpoint numbered 1</p>
</li>
<li>
<p><code>delete number</code> or <code>d number</code></p>
<p>delete specific breakpoint</p>
</li>
<li>
<p><code>disable number</code> or <code>disable number</code></p>
<p>disable specific breakpoint</p>
</li>
</ul>
<h3 class="group " id="conditions"
>conditions<a href="#conditions"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p>You can add conditions for your breakpoints</p>
<p><code>b a if a == 1</code> this breakpoint only works when the value variable a is 1;</p>
<h3 class="group " id="breakpoint"
>breakpoint<a href="#breakpoint"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p>Using <code>b</code> or <code>break</code> to add a breakpoint for your program.</p>
<ul>
<li>
<p><code>break function</code></p>
<p>Set a breakpoint at entry to function function.</p>
</li>
<li>
<p><code>break linenum</code></p>
<p>Set a breakpoint at line linenum in the current source file.</p>
</li>
<li>
<p>break</p>
<p>When called without any arguments, break sets a breakpoint at &ldquo;current line&rdquo;.</p>
</li>
<li>
<p><code>break ... if cond</code></p>
<p>Set a breakpoint with condition cond.</p>
</li>
</ul>
<h3 class="group " id="watchpoint"
>watchpoint<a href="#watchpoint"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<blockquote class="quote relative pl-10 text-gray-500 dark:text-gray-400"><p>A watchpoint is a special breakpoint that stops your program when the value of an expression changes</p></blockquote>
<p>The watchpoint usage is similar to <a
class="link"
href="#breakpoint">breakpoint</a
>
, just remember change <code>break</code> to <code>watch</code></p>
<h2 class="group " id="print-value"
>Print value<a href="#print-value"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h2>
<h3 class="group " id="print"
>print<a href="#print"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p>You can use <code>p</code> or <code>print</code> to print the value of a specific variable.</p>
<ul>
<li>
<p><code>p a</code></p>
<p>print the value of variable a(works for any type, including array)</p>
</li>
<li>
<p><code>p *a@10</code></p>
<p>print the first 10 values of the array a;</p>
</li>
</ul>
<h3 class="group " id="display"
>display<a href="#display"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<h2 class="group " id="refrence"
>Refrence<a href="#refrence"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h2>
<ul>
<li><a
class="link"
href="https://ftp.gnu.org/old-gnu/Manuals/gdb/html_node/gdb_toc.html"target="_blank" rel="noopener">Debugging with GDB</a
>
</li>
<li><a
class="link"
href="https://www.sourceware.org/gdb/documentation/"target="_blank" rel="noopener">GDB: The GNU Project Debugger</a
>
</li>
</ul></description></item><item><title>music collections</title><link>https://eastarpen.github.io/post/2.html/</link><pubDate>Fri, 30 Sep 2022 00:00:00 +0800</pubDate><guid>https://eastarpen.github.io/post/2.html/</guid><description><a
href="https://www.youtube.com/watch?v=b1-s-TOqSyk"
target="_blank"
rel="noopener noreferrer"
class="no-icon my-4 flex w-full cursor-pointer flex-col-reverse justify-between rounded border transition ease-in-out after:hidden hover:bg-gray-100 dark:border-darkBorder hover:dark:bg-darkBg md:flex-row"
>
<div class="flex flex-grow flex-col p-4">
<div class="flex-grow">
<div class="text-xl font-bold">Ngây Thơ</div><div class="my-1 text-gray-400 line-clamp-2 dark:text-darkTextPlaceholder">Ngây Thơ - @Tăng Duy Tân x Phong Max | BAE | OFFICIAL MV 🇻🇳 Vietnamese Music</div></div><div class="flex items-center"><img class="link-card-img mr-1 h-3 w-3" src="https://www.google.cn/s2/favicons?domain=www.youtube.com" alt="" />
<div class="text-xs text-gray-400 line-clamp-1 dark:text-darkTextPlaceholder">https://www.youtube.com/watch?v=b1-s-TOqSyk</div>
</div></div><img class="link-card-img h-32 bg-white object-contain dark:bg-transparent" src="https://i.ytimg.com/vi/b1-s-TOqSyk/hq720.jpg?sqp=-oaymwEcCNAFEJQDSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&amp;rs=AOn4CLCcXGf-dUB0kBYw7_T3dXrBMcEodg" alt="Ngây Thơ" /></a></description></item><item><title>Build and deploy static github pages blog using hugo(hugo-theme-luna)</title><link>https://eastarpen.github.io/post/1.html/</link><pubDate>Wed, 28 Sep 2022 00:00:00 +0800</pubDate><guid>https://eastarpen.github.io/post/1.html/</guid><description><div class="border-yellow-400 border-green-400 border-red-400 border-blue-400"></div>
<div class="bg-yellow-400 bg-green-400 bg-red-400 bg-blue-400"></div>
<div class="text-yellow-400 text-green-400 text-red-400 text-blue-400"></div>
<div
class="border-yellow-400 bg-yellow-400 my-4 ml-0 flex items-start rounded border-l-4 bg-opacity-10 p-5 dark:bg-darkBgAccent"
>
<div class="mr-2">
<i class="eva text-yellow-400 eva-alert-circle-outline text-2xl"></i>
</div><p style="margin: 0;">This post is not finished.</p></div>
<h2 class="group " id="what-is-hugo-and-why-hugo"
>What is hugo and why hugo<a href="#what-is-hugo-and-why-hugo"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h2>
<div class="github my-4 rounded border p-4 dark:border-darkBorder">
<div class="flex items-center text-xl">
<i class="eva eva-github mr-2"></i>
<a class="after:hidden" href="https://github.com/gohugoio/hugo" target="_blank">gohugoio/hugo</a>
</div>
<div class="my-2 leading-6">The world’s fastest framework for building websites.</div>
<div class="flex items-center">
<div class="mr-4 inline-flex items-center">
<span class="mr-1 inline-block h-3 w-3 rounded-full" style="background-color:#00ADD8"></span>
<span>Go</span>
</div>
<div class="mr-4 inline-flex items-center">
<i class="eva eva-star mr-1 text-amber-400"></i>
<span>63124</span>
</div>
<div class="inline-flex items-center">
<i class="eva eva-shuffle-2 mr-1 text-blue-500"></i>
<span>6853</span>
</div>
</div>
</div>
<p>As stated in <a
class="link"
href="https://gohugo.io/"target="_blank" rel="noopener">gohugo official site</a
>
</p>
<blockquote class="quote relative pl-10 text-gray-500 dark:text-gray-400"><p>Hugo is one of the most popular open-source static site generators. With its amazing speed and flexibility, Hugo makes building websites fun again.</p></blockquote>
<p>For those who knows little about how to build and maintain a web site or those who care nothing but write, hugo is your friend.
With hugo, even a normal internet user can build his site.
Besides, if you has some programming experience(like command-line and github usage experience), you can build and maintain your site easily and conveniently.</p>
<h2 class="group " id="preparation-before-we-start"
>Preparation before we start<a href="#preparation-before-we-start"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h2>
<h3 class="group " id="install-hugo"
>install hugo<a href="#install-hugo"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p><a
class="link"
href="https://gohugo.io/getting-started/installing/"target="_blank" rel="noopener">hugo&rsquo;s official guide</a
>
tells you how to install hugo at all platforms.</p>
<p>But the most easy way is download releases at <a
class="link"
href="https://github.com/gohugoio/hugo/releases/"target="_blank" rel="noopener">hugo github repository</a
>
.</p>
<p><strong>Tips</strong></p>
<ol>
<li>remember add <strong>hugo binary file</strong> to your environment</li>
<li><strong>extended</strong> versions are more recommended</li>
<li>packer managers(like <strong>apt</strong> in ubuntu) alwarys download old versions</li>
</ol>
<h3 class="group " id="install-go-and-git"
>install go and git<a href="#install-go-and-git"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p>go and git are hugo <strong>Prerequisite Tools</strong>. You can easily download them at any platforms.</p>
<p>try google &ldquo;install git at ubuntu&rdquo; or &ldquo;install go at windows&rdquo;</p>
<h2 class="group " id="build-your-site"
>build your site<a href="#build-your-site"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h2>
<h3 class="group " id="check-environment"
>Check environment<a href="#check-environment"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p>Before our adventure, make sure you have install all dependencies and add them to your environment path.</p>
<p>Run commands below, you should get similar output, otherwise, you may do something wrong.</p>
<div class="highlight"><div style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">
<table style="border-spacing:0;padding:0;margin:0;border:0;"><tr><td style="vertical-align:top;padding:0;margin:0;border:0;">
<pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1
</span><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">2
</span><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">3
</span><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">4
</span><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">5
</span><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">6
</span><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">7
</span><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">8
</span></code></pre></td>
<td style="vertical-align:top;padding:0;margin:0;border:0;;width:100%">
<pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-shell" data-lang="shell"><span style="display:flex;"><span><span style="color:#8be9fd;font-style:italic">$git</span> version
</span></span><span style="display:flex;"><span>&gt; git version 2.25.1
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#8be9fd;font-style:italic">$go</span> version
</span></span><span style="display:flex;"><span>&gt; go version go1.13.8 linux/amd64
</span></span><span style="display:flex;"><span>
</span></span><span style="display:flex;"><span><span style="color:#8be9fd;font-style:italic">$hugo</span> version
</span></span><span style="display:flex;"><span>&gt; hugo v0.104.0-c744dbd6edeeb27288c9dd67e0eb92951f911397+extended linux/amd64 <span style="color:#8be9fd;font-style:italic">BuildDate</span><span style="color:#ff79c6">=</span>2022-09-23T14:32:56Z <span style="color:#8be9fd;font-style:italic">VendorInfo</span><span style="color:#ff79c6">=</span>gohugoio
</span></span></code></pre></td></tr></table>
</div>
</div>
<h3 class="group " id="build-site-locally"
>build site locally<a href="#build-site-locally"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h3>
<p>Hugo using command <code>hugo new site myBlog</code> to create local site directory.
You can change &ldquo;myBlog&rdquo; to any name you like.</p>
<p>After run this command, a directory named &ldquo;myBlog&rdquo; should occur in your current directory.
That is your local site directory.</p>
<h2 class="group " id="deploy-your-site-in-github"
>Deploy your site in github<a href="#deploy-your-site-in-github"
><i class="eva eva-link ml-3 align-middle text-theme opacity-0 transition ease-in-out group-hover:opacity-100"></i></a
></h2>
<ol>
<li>
<p><code>$ sudo apt install hugo</code></p>
<div class="highlight"><div style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">
<table style="border-spacing:0;padding:0;margin:0;border:0;"><tr><td style="vertical-align:top;padding:0;margin:0;border:0;">
<pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1
</span></code></pre></td>
<td style="vertical-align:top;padding:0;margin:0;border:0;;width:100%">
<pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-shell" data-lang="shell"><span style="display:flex;"><span> $ hugo version<span style="color:#f1fa8c">`</span>
</span></span></code></pre></td></tr></table>
</div>
</div><p><code>Hugo Static Site Generator v0.68.3/extended linux/amd64 BuildDate: 2020-03-25T06:15:45Z</code></p>
<p><code>hugo new site sitename &amp;&amp; cd sitename</code></p>
<p><code>git init</code></p>
</li>
<li>
<p>install theme</p>
<p><a
class="link"
href="https://themes.gohugo.io/"target="_blank" rel="noopener">https://themes.gohugo.io/</a
>
</p>
</li>
</ol>
<div class="highlight"><div style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">
<table style="border-spacing:0;padding:0;margin:0;border:0;"><tr><td style="vertical-align:top;padding:0;margin:0;border:0;">
<pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1
</span><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">2
</span></code></pre></td>
<td style="vertical-align:top;padding:0;margin:0;border:0;;width:100%">
<pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-shell" data-lang="shell"><span style="display:flex;"><span>Error: Error building site: POSTCSS: failed to transform <span style="color:#f1fa8c">&#34;main.css&#34;</span> <span style="color:#ff79c6">(</span>text/css<span style="color:#ff79c6">)</span>. Check your PostCSS installation; install with <span style="color:#f1fa8c">&#34;npm install postcss-cli&#34;</span>. See https://gohugo.io/hugo-pipes/postcss/: this feature is not available in your current Hugo version, see https://goo.gl/YMrWcn <span style="color:#ff79c6">for</span> more information
</span></span><span style="display:flex;"><span>Built in <span style="color:#bd93f9">1025</span> ms
</span></span></code></pre></td></tr></table>
</div>
</div><p>fixed</p>
<div class="highlight"><div style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">
<table style="border-spacing:0;padding:0;margin:0;border:0;"><tr><td style="vertical-align:top;padding:0;margin:0;border:0;">
<pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code><span style="white-space:pre;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1
</span></code></pre></td>
<td style="vertical-align:top;padding:0;margin:0;border:0;;width:100%">
<pre tabindex="0" style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-shell" data-lang="shell"><span style="display:flex;"><span>npm install -g postcss postcss-cli
</span></span></code></pre></td></tr></table>
</div>
</div><p><a
class="link"
href="https://gohugo.io/getting-started/quick-start/"target="_blank" rel="noopener">https://gohugo.io/getting-started/quick-start/</a
>
</p></description></item></channel></rss>