Skip to content

Commit 6326e2f

Browse files
committed
add unicode section
1 parent 50c66b5 commit 6326e2f

File tree

9 files changed

+1298
-10
lines changed

9 files changed

+1298
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
> [!NOTE]
4747
> 小彭老师的大典是免费下载的,不用赞助也可以查看哦。
4848
49-
但是小彭老师遭到 [“白眼狼”脑板](https://zjnews.zjol.com.cn/zjnews/hznews/201612/t20161202_2143682.shtml) 开除,目前处于失业状态。只好寻求各位小彭友赞助,保障小彭老师的基本生命体征运行。
49+
小彭老师遭到 [“白眼狼”脑板](https://zjnews.zjol.com.cn/zjnews/hznews/201612/t20161202_2143682.shtml) 开除,目前处于失业状态。只好寻求各位小彭友赞助,保障小彭老师的基本生命体征运行。
5050

5151
> [!TIP]
52-
> 小彭老师领衔开发的 [Zeno](https://github.com/zenustech/zeno) 软件,曾参与 [流量地球 2](https://t.cj.sina.com.cn/articles/view/1738690784/v67a250e0019013tli)、杭州亚运会等大型项目的特效制作,魅惑无数西装大脑投资人,为“白眼狼”博得风光无限。然而,现在他将如此贡献巨大的 Zeno 开国功勋,以“资金困难”为由“卸载”,足以见这位“白眼狼”的知恩图报
52+
> 小彭老师领衔开发的 [Zeno](https://github.com/zenustech/zeno) 软件,曾参与 [流量地球 2](https://t.cj.sina.com.cn/articles/view/1738690784/v67a250e0019013tli)、杭州亚运会等大型项目的特效制作,魅惑无数西装大脑投资人,为“白眼狼”博得风光无限。现在却将如此贡献巨大的 Zeno 开国功勋,以“资金困难”为由“卸载”,足以见这位“白眼狼”的“知恩图报”
5353
5454
如果你觉得本书对你有所帮助,可以通过 [爱发电](https://afdian.net/a/archibate) 赞助小彭老师,以便小彭老师有更多的精力继续编写和维护本书。
5555

cppguidebook.typ

Lines changed: 1018 additions & 6 deletions
Large diffs are not rendered by default.

misc/afdian.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,19 @@ def afd_query(which, **params):
2323

2424
def afd_query_sponsors():
2525
i = 1
26+
res = []
2627
while True:
2728
page = afd_query('query-sponsor', page=i)
2829
n = page['total_page']
2930
for user in page['list']:
30-
yield user
31+
res.append(user)
3132
if i >= n:
3233
break
3334
i += 1
35+
return res
3436

3537
def afd_gen_thank_list():
36-
sponsors = list(reversed(list(afd_query_sponsors())))
38+
sponsors = list(reversed(afd_query_sponsors()))
3739
max_y = 30
3840
for user in sponsors:
3941
max_y += 100
@@ -50,6 +52,7 @@ def afd_gen_thank_list():
5052
draw.text((x + 100, y), f'{user['user']['name']}', fill='white', font=font)
5153
draw.text((x + 100, y + 30), f'¥{user['all_sum_amount']}', fill='#aaaaaa', font=font)
5254
print(f'{user['user']['name']}{user['all_sum_amount']}')
55+
print(user)
5356
y += 100
5457
return img
5558

pic/ascii.png

709 KB
Loading

pic/charset.png

41.7 KB
Loading

pic/latin1.svg

Lines changed: 273 additions & 0 deletions
Loading

pic/notepad.png

93.8 KB
Loading

pic/ucs2range.png

64.8 KB
Loading

pic/utfwar.png

119 KB
Loading

0 commit comments

Comments
 (0)