二一年十二月的部分记录

2021年 12月 31日


三号

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
inhabitant          n   居民
therein adv 在那里,在其中
vein n 静脉,纹理
manual n 手册
pile n 堆
rubble n 碎石
lava n 岩浆
scald v 烫伤
rod n 棍棒
inventory n 库存
wand n 魔杖
pitiful adj 令人同情的
beggar n 乞丐
flees v 逃跑
terror n 惊恐
beg v 乞求
squint v 斜视
rogue n 流氓
humiliate v 羞辱
puff n/v 泡芙;吸(烟)

所谓乐于生活,大概是享受着耐心的吧。如果没有选择的余地,或许能做的更好。到底什么该坚持,什么该放弃,仍等着我去找寻。

四号

常见服务器端口列表:

1
2
3
4
SSH		22
Web 80
HTTPS 443
FTP 21

八号

发现序号标错了,把昨天push的文件改了名。

九号

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
# price = int(input("Please enter a price of apple:"))
# weight = int(input("Please enter a weight of apple:"))

# print("the all price is: " + str(price))

# print("%04d%%" %12)
# mingtian = 21

# if 20 > mingtian and True:
# print("< 20")
# elif 20 == mingtian or False:
# print("= 20")
# else:
# print("> 20")
# print("end")

# age = 0
# if 120 > age and 0 < age:
# print("yes")
# else:
# print("no")

import random

set = int(input("1 or 2 or 3: "))
sys = random.randint(1,3)
print("you:%d, sys:%d" % (set, sys))

# if set == sys:
# print("same")
# elif 1 == sys:
# if 2 == set:
# print("loser")
# else:
# print("winer")
# elif 2 == sys:
# if 3 == set:
# print("loser")
# else:
# print("winer")
# elif 3 == sys:
# if 1 == set:
# print("loser")
# else:
# print("winer")
# else:
# print("system err")

if set == sys:
print("same")
elif(
(1 == set and 3 == sys)
or (2 == set and 1 == sys)
or (3 == set and 2 == sys)
):
print("loser")
else:
print("winer")

十号

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
# i = 0
# sum = 0

# while 100 >= i:
# if (0 == i % 2) and 0 != i:
# sum += i
# print(i)

# i += 1
# print("i = %d, sum = %d" % (i, sum))

# i = 0
# while i < 5:
# # print("*" * i)
# j = 0
# while j <= i:
# print("*", end="")
# j += 1
# print()
# i += 1

# i = 1
# while i <= 9:
# j = 1
# while j <= i:
# print("%d * %d = %d\t" % (j, i, j * i), end="")
# j += 1
# print()
# i += 1


def multiple_table(i, j):
"""

:param i: shome
"""

i = 1
while i <= 9:
j = 1
while j <= i:
print("%d * %d = %d\t" % (j, i, j * i), end="")
j += 1
print()
i += 1
return "some"

print("hello")
multiple_table(10, 20)
print("world")
print("result = " + str(multiple_table(10, 20)))

十一号

bgm.tv无tv

十二号

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
# name_list = ["zhang_san", "li_si", "wang_wu"]

# print(name_list[1])
# print(name_list.index("zhang_san"))
# name_list[2] = "zhao_liu"
# name_list.append("good_job")
# print(len(name_list))
# print(name_list)
# name_list.sort(reverse=True)
# print(name_list)
# del name_list[0]
# print(name_list)
# for i in name_list:
# print(i)
# tuple_1 = ("sd", 12, 32.2)
# print(tuple_1[0])
# for i in tuple_1:
# print(i)
# xiao_ming = {
# "name": "xiao_ming",
# "age": 18,
# "height": "1213",
# "email": "umze@foxmail.com"
# }
# for k in xiao_ming:
# print(k + ": " + str(xiao_ming[k]))
# print()

# person = [{
# "name": "xiao_ming",
# "age": 18,
# "email": "xiao@qq.com"
# },{
# "name": "li_hua",
# "age": 14,
# "email": "li@foxmail.com"
# }]
# print("=========")
# for k in person:
# for k2 in k:
# print(k2 + ": " + str(k[k2]))
# print("=========")

hello = "hello world"

print(hello.startswith)

记得每天在打卡楼打卡。

十三号

我这一天天的,到底在干嘛?

待在寝室里,Python学了一点又不想学了。C语言学完了但是不想再看一遍了。英语。。一言难尽。

天哪,我真是糟糕透了。至少,还有点什么在坚持的。。不知道能坚持多久。

十四号

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
generous                adj 慷慨的
effort n 努力
weapon n 武器,手段
devote v 致力于
passion n 激情
enthusiasm n 热忱
vigor n 精力
pour v 倒
absolutely adv 完全地
reponsible adj 负责的
dedicated adj 献身的
waste v 浪费的
surpass v 超越
conquer v 占领
priest n 牧师
proud adj 自豪的
excellency n 优点
blood n 血
sweat n 汗
tear n 泪
admire v 仰慕

profoundly adv 极大地
hat n 帽子
drill v 训练
foreign adj 外国的
Rome n 罗马
convenient adj 实用的
firm n 商行
spare adj 不用的
lend v 借给
attorney n 律师
brought v 带来
brief adj 短暂的
briefcase n 公文包
march n 进军
March n 三月
shrug v 耸肩
sandwich n 三明治
scratch vn 划伤
past adj 过去的
particular adj 特别的
bork v 破坏

十五号

十六号

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
guy
jury
competitor
increadible
awesome
impressive
dent
repair
wee
blow
tailpipe
pop
brush
tonsil
throat
heart
liver
lungs
kidneys
spleen
vital
stomach
digest
alimentary
organ
indigestion
bowel
intestine
appendix
anus
asshole
thumb
pink
sensitive
sensor
verse
umbrella
embodiment
virtue
weak
exactly
parent

十七号

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
period
arrange
experience
struck
punch
shame
monk
match
boxer
Buddhist
remain
rid
oral
importance
accuracy
appropriate
practical
lay
emphasis
grammatical
correct

widen
sight
corner
effective
inter
interpret
shortcoming
progress
foreigner
respond
advance
stage
simultaneous
composition
position
intense
certain
record
tape
tongue
twister

明天四级。

十八号

四级考完,有点难,计划再考。

十九号

我需要一点时间考虑接下来几个月自己应该做些什么。

构思下一封信吧。

二十号

基本任务:

  • 8点前起床
  • 在B站打卡
  • 看完一张英语试卷
  • 积累20个单词并push到Repository

要是一月份没做好,年后立马找工作上班。

二十一号

今天忙着备份数据,准备先重装Windows,升级到11,把BIOS升级,然后过段时间卸载Windows装上Debian

明天学习就步入正轨了。

二十二号

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
cavity
pronunciation
fin
complicate
phrase
tend
idiom
idiomatic
abundant
precise
accurate
racetrack
rescue
steer
wheel
accelerate
golden
zebra
strip
rare
melanin

substance
hair
wildlife
refuge
spot
cage
sweep
tasty
prize
reveal
talent
roll
flew
nut
exactly
drag
slide
wonder
particular
fond
athletic

stick
hike
adventure
nap
scenery
trail
waterfall
breathtaking
fall
fact
route
brought
bother
lake
structure
incredible
formed
form
forming
definitely
recommend

二十三号

今天有点忙,早上重装了系统,下午在学习操作vim和git。因为我要摒弃闭源的软件,这么做是十分痛苦的。此外,为了更好的融入计算机环境和英语学习环境,我将重装的系统默认为英文。如果这些文本上传到了Repository,说明现在的我已经掌握了git的基本使用。

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
bond
paragraph
toggle
maximization
context
permanently
arrange
definitely
destination
common
modern
historic
examine
preserve
attractive
economic
assume
majority
architectural
perfectly
alongside

indeed
pleasing
dominate
conservative
duty
architect
reproduce
thus
argue
previous
spoil
purpose
warn
admit
ruin
sink
seriously
consider
traditional
encourage
cruelty

obesity
independent
dependent
district
experiment
elementary
participate
calorie
consumption
period
alert
concentrate
surprise
willing
grade
harder
unexpected
trial
reaction
engage
audience

二十四号

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
flight
promise
madam
sir
medicine
medic
retirement
headmaster
depart
plot
reservation
cent
store
dozen
pound
butter
neither
quiz
bother
literature
honest

lake
confidence
frighten
inexperience
activity
quiet
reward
duty
hotline
exciting
painting
August
certificate
entry
course
sold
cartoon
succeed
hurt
cigarette
dolphin

二十五号

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
trivial
album
armchair
bathe
bench
cassette
courtyard
courtain
decorate
decoration
drawer
drill
faulty
fridge
garbage
hammer
iron
lamp
mend
mess
mop

自律自律。

二十六号

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
accompany
adopt
ancestor
companion
distant
envelope
guy
household
misunderstand
twin
cousin
fellow
generation
quarrel
separate
anniversary
bachelor
bride
divorce
funeral
harmany

二十七号

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
academy
authority
biology
chemistry
discipline
drama
economics
equip
facility
fine
geography
grant
kindergarten
loan
monitor
philosophy
physics
playground
politics
psychology
scholar

今天早睡, 明天少刷班站。

二十八号

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
absent
bachelor
botany
committee
curriculum
dormitory
homesick
prohibit
regulation
tutor
adolescence
algebra
architecture
bully
canteen
compulsory
diploma
ecology
geology
geometry
librarian

早睡早起!

二十九号

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
assess
assessment
assignment
debate
efficient
error
handwriting
observation
obtian
seminar
analysis
confuse
feedback
instruct
presentation
qualification
quiz
recite
reference
revise
revision

希望未来一切安好.

三十号

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
awake
bathroom
blanket
bucket
carpet
ceiling
cupboard
downstairs
dust
electric
electrical
entry
fence
garage
hook
litter
quilt
rope
shower
sleepy
stair

有点困了, 今天就这样.

三十一号

不知不觉就颓废了一个星期。表面上看着有更新,实际上就只是在单词手册上随意地抄几个。push单词成了形式主义。

车没有去练,单词也没有记,真是失败。明天就是2022年了,不由想感叹一下时间过得真是快。希望明年能升学成功吧,只要在家的这段时间多学习。

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
cigarette
dolphin
performance
evaluation
interpersonal
accident
goodness
heal
serve
western
bottle
guess
cafeteria
complain
satisfactory
smell
discuss
truck
opposite
direction
strike

poorly
broad
unemployment
movement
predict
cheap
silly
worst
debate
church
discount
behind
invite
soldier
along
monument
sharp
fortunately
manner
railway
admission

Comments: