make a post by hexo new

make a post by hexo new

Does it work?

? (y or n)

Let me just upload my english note on February 3rd for a try:

MAIN

slash

  • 斜线。
    • /, forward slash,正斜线
    • \, backward slash,反斜线

hyphen, [ˈhaɪfn]

  • 连字符,即’-‘

recipe, [ˈresəpi]

  • 配方
    • (日常)食谱
    • (专业)指编译路径方案

realm,领域

  • e.g. Reading literature, in particular, as a pastime is the path which leads you to the magic realm of other worlds shaped by a magnificent combination of words, phrases and sentences composing anew and in a totally different way what you experience in your everyday life.

literature, [ˈlɪtrətʃə]

  • (专业)文献

failure, [ˈfeɪljə]

status, [ˈsteɪtəs]

  • (常见)地位,社会地位;身份
  • 特定的状态

executive, [ɪgˈzekjətɪv]

  • n. 管事的,主要的高级的管事的那些人 e.g. a company executive
  • adj. (作为功能性修饰的)决策、管理相关的 e.g. an executive director

excuse, [ɪkˈskjuːs]

  • n. (为找借口而作的)理由,也即借口
  • v. 接受给出的理由;原谅,宽恕
  • v. (正当地)说明,解释,辩解

chronic

  • of long duration,长期的 e.g. In fact, the people most likely to become chronic excuse makers are those labeled with success.

live up to,达到(要求或期望)

reciprocal, [rɪˈsɪprəkl]

  • adj. 互惠的 e.g. she was hoping for some reciprocal comment or gesture.
  • adj. 相互的(mutual)e.g. reciprocal cross 正反交(生物意义的)
    • n. (专业)倒数 e.g. the reciprocal of 2/3 is 3/2

momentum, [məˈmentəm]

  • (日常)动力,势头
  • (专业)冲量

legacy

  • 遗产
  • 易混词:privacy,隐私

fatigue,疲态

heave,拉,引

obsessed,[əbˈsest]

  • 迷恋于,沉迷于
  • 易混词:obese, ]əʊˈbiːs],肥胖的

BRANCH

flirt

  • (生活)调情;撩;挑逗
  • (正经一些的)不认真考虑、游戏人生般地对待(with) e.g. Driving carelessly is flirting with disaster: it’s almost like you’re toying with the idea of getting into an accident.

on hold

  • (基本)等待(被)呼叫(中)
  • (引申)处于暂缓的搁置的状态 e.g. The project is on hold until we get more money.

slack

  • adj. 松弛的,懈怠的(loose)
  • n. 松弛 e.g. cut sth/sb some slack 对…网开一面,给…方便

Well, last but not least, let’s try some markdown function

Show a image by local path:

figure A

Show a image by url:

figure B

figure C

Make a table

Syntax Description Test Text
Header Title Here’s this
Paragraph Text And more

Add two code block

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
#include <iostream>
#include <cstring>
#include <cstdio>

using namespace std;

const int N = 110;

int n, m;
char str[N];
int num[N];
char op[N];
int ntt, ott;
int pr[N];

void eval()
{
int b = num[ntt -- ];
int a = num[ntt -- ];
char c = op[ott -- ];
int x;
if (c == '+') x = a + b;
else if (c == '-') x = a - b;
else if (c == '*') x = a * b;
else x = a / b;
num[ ++ ntt] = x;
}

int main()
{
pr['+'] = pr['-'] = 1;
pr['*'] = pr['/'] = 2;

scanf("%s", str);
int n = strlen(str);
n -- ;

int i;
for (i = 0; i < n; i ++ )
{
char c = str[i];
if (isdigit(c))
{
int x = 0, j = i;
while (j < n && isdigit(str[j]))
x = 10 * x + str[j ++ ] - '0';
i = j - 1;
num[ ++ ntt] = x;
}
else if (c == '(') op[ ++ ott] = c;
else if (c == ')')
{
while (op[ott] != '(') eval();
ott -- ;
}
else
{
while (ott && op[ott] != '(' && pr[op[ott]] >= pr[c]) eval();
op[ ++ ott] = c;
}
}
while (ott) eval();
printf("%d\n", num[ntt]);

return 0;
}

/*
1+4*5-5/2+(1-1)#
19
*/

And here comes a hexo command: hexo g -d
With it, you can generate a page and deploy it to your own webpage form local to remote.

OK, the above is all the test this time, I hope everything goes well~

作者

DIaacKr

发布于

2022-02-05

更新于

2022-02-06

许可协议