8000 feat(weekly): add 07 weekly learning · chodocs/chodocs@2849bdd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 2849bdd

Browse files
committed
feat(weekly): add 07 weekly learning
1 parent eb75778 commit 2849bdd

File tree

4 files changed

+61
-4
lines changed

4 files changed

+61
-4
lines changed

docs/.vitepress/plugins/markdownTransform.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ export function MarkdownTransform(): Plugin {
1818
let imgMatches = imgRegex.exec(code)
1919
while (imgMatches) {
2020
const [text, link] = imgMatches.slice(1)
21-
console.log('link: ', link)
22-
console.log('text: ', text)
2321
code = code.replace(imgMatches[0], `<img src="${link}" alt="${text || 'img'}" />`)
2422
imgMatches = imgRegex.exec(code)
2523
}

docs/.vitepress/sidebar.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ export default {
3131
text: '6 月',
3232
link: '/weekly/202306',
3333
},
34+
{
35+
text: '7 月',
36+
link: '/weekly/202307',
37+
},
3438
],
3539
},
3640
{ text: '资源导航', link: '/favorites' },

docs/.vitepress/theme/components/CustomLink.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const component = computed(() => {
4747

4848
<template>
4949
<component :is="component" v-if="isExternal" :href="href ? normalizeLink(href) : undefined" :target="target || (isExternal ? '_blank' : undefined)" :rel="rel || (isExternal ? 'noreferrer' : undefined)" class="custom-link">
50-
<section class="flex group flex-col border-1 border-neutral-400 border-solid rounded-md p-4 gap-3 transition dark:border-neutral-600 duration-500 cursor-pointer my-4" >
50+
<section class="flex group flex-col border-1 border-neutral-400 border-solid rounded-md p-4 gap-3 transition dark:border-neutral-600 duration-500 cursor-pointer my-4">
5151
<span class="text-ellipsis w-[90%] whitespace-nowrap overflow-hidden dark:opacity-90 font-600 group-hover:text-[#06f]">{{ title }}</span>
5252
<div v-if="desc" class="opacity-75 font-500 text-sm">
5353
{{ desc
@@ -69,7 +69,8 @@ const component = computed(() => {
6969
</div>
7070
<div class="items-center gap-1 hidden sm:flex">
7171
<span
72-
class="text-ellipsis w-full whitespace-nowrap overflow-hidden text-sm font-500 opacity-50">chodocs.cn</span>
72+
class="text-ellipsis w-full whitespace-nowrap overflow-hidden text-sm font-500 opacity-50"
73+
>chodocs.cn</span>
7374
</div>
7475
</div>
7576
</section>

docs/weekly/202307.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
author: "Choi Yang"
3+
date: 2023-07-01
4+
---
5+
6+
# 23 年 7 月份学习动态
7+
8+
## 第一周
9+
10+
### 主题:日积月累,顺应变化
11+
12+
1)最近终于等到了阿里云备案完成的消息了,把我的域名 yangchaoyi.vip 重拾了,也就是之前所说的用 mx-space 搭建的。这下还是多催催自己写写文章,毕竟服务器是要花钱的
13+
14+
2)最近的英文学习是跟着 b 站 up「昂克英文君」来的,尽管他大概半年没有更新了,但是前些年创作的视频真的质量很高,而且老师的声音也很棒,很清晰流利。
15+
16+
几乎所有英文内容都涉及到了,还为大家整理在了收藏夹里面,全都是无私分享,实在是太棒了!之后看了最后两期更新的视频,也感叹生活的不易,这两年真是艰难,想做自媒体也很难有应得的回报。
17+
18+
还有一点是这些内容其实完全可以作为收费,但依旧选择了免费公开,而收费的话我理解的是解答疑惑,提供导师辅导一样。基本上入门到进阶全都有了,自学完全没问题,这也是我很喜欢的一点,这也是个人价值观不同,看中长期收益。
19+
20+
今后我也会考虑支持一下这位老师,遇到优秀的人我总是感觉很兴奋,尽管素未谋面,但人一生也许很短暂,能遇到一些值得让自己感到很激动和感谢地人已经是让我很快乐的事情了,我常常会想,居然还有这样积极的人,我也要多“吸收”他们的能量。
21+
22+
> 剩下内容不公开分享了,详见:
23+
24+
[日积月累,顺应变化](https://t.zsxq.com/10KseLDYZ)
25+
26+
## 第二周
27+
28+
这周主要是看这份文档:
29+
30+
[RSC From Scratch. Part 1: Server Components](https://github.com/reactwg/server-components/discussions/5)
31+
32+
dan 神写的,不过时间是 6 月份,还有两个部分没有更新,剩下两章节就不确定啥时候发布了,得等等了。
33+
34+
从零开始这个系列真的写的不错,当英文阅读看也挺好,深度学习!
35+
36+
我是看了两遍,第一遍有很多语句不太熟悉,有些内容也感觉看着看着就有点绕,第二遍感觉就还好,在语句中也掌握了一些单词使用。总体来说,看完能加深对服务端组件的理解,能有个大概的认知,这样今后 React 再次更新服务端相关的东西也有个前提概要了。
37+
38+
接着,就是基于之前发的 next-enterprise 项目,录制了两期视频:
39+
40+
[开源项目学习之 Next.js 企业级启动模版](https://www.bilibili.com/video/BV1TX4y1v7J4/)
41+
42+
[续:看看 Next.js 企业级启动项目 Issues,关于技术栈选择的问题](https://www.bilibili.com/video/BV1wu411778D/)
43+
44+
### 英文学习
45+
46+
之前提及的「昂克英文」目前初级专栏学习完一半了,感觉过去为了应试而学的方式确实不行,很多都是当下明白过一段时间就遗忘,工作以后用的少了遗忘的就更快,但视频教程学起来很清晰,继续保持学习。
47+
48+
### 其它
49+
50+
[Relingo 插件官网](https://relingo.net)
51+
52+
关于语言学习,这个浏览器插件真的非常棒,免费版功能很良心了,几乎取代了我之前使用的「沉浸式翻译」插件了,内容不做多余的介绍了。
53+
54+
对了,我和 HearLing 在 6 月份的时候受到邀请成为了鱼皮星球的嘉宾,一直打算写一篇文章说一下的,下次一定。

0 commit comments

Comments
 (0)
0