Skip to content

Commit 010ad73

Browse files
author
ma.jinyun
committed
更新 css
1 parent 8008692 commit 010ad73

File tree

4 files changed

+104
-61
lines changed

4 files changed

+104
-61
lines changed

content/blog/MyVSCodePlugin.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,39 @@ featured: true
3232
// 出现推荐值时,按下Tab键是否自动填入最佳推荐值
3333
"editor.tabCompletion": "on",
3434

35+
### ESlint 插件
36+
37+
正常工作状态:
38+
39+
1、有错误提示
40+
2、终端输出 ESLint server is running.
41+
3、tsconfig.json 文件读取正常(并且 对应的 .eslintrc.js 配置正确、规则文件读取正常)
42+
43+
.eslintrc.js 规则文件示例
44+
```
45+
46+
module.exports = {
47+
extends: [require.resolve('@whalecloud/eslint-config/configurations/typescript')],
48+
overrides: [
49+
{
50+
files: ['*.spec.ts', '*.spec.tsx'],
51+
rules: {
52+
'@typescript-eslint/no-explicit-any': ['off'],
53+
},
54+
env: {
55+
jest: true,
56+
},
57+
},
58+
],
59+
};
60+
"dependencies": {
61+
"typescript": "^5.5.4",
62+
"@whalecloud/eslint-config": "^0.0.40-beta.11"
63+
}
64+
65+
66+
```
67+
3568
### 常规类
3669

3770
vscode-fileheader、

content/blog/技术RSS推荐.md

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -15,76 +15,76 @@ RSS 最开始为资源描述框架站点摘要(RDF Site Summary),后演变
1515
可以把 RSS 看作是一种信息订阅服务,把自己经常浏览的网站聚合在一起集中查看,不用再逐个网站打开了,更方便。
1616

1717
RSS 中有两个很重要的部分之一就是:RSS 信息源,另一个是 RSS 阅读器(下篇介绍)。
18+
<!--more-->
1819

19-
PS: 我有一个前端技术周刊,叫 WebCIA Weekly (Web 情报局) https://markyun.github.io/weekly/。不定期会分享从 RSS 源获取到的值得收藏的优质信息,包含:技术文章、产品设计、思维观点、开源项目、资源和工具、焦点资讯等,一切值得关注的事物,为大家提供保持领先所需的见解,也帮自己完成了信息资源存档。这里推荐一下我用的工具和订阅的源
20+
之前是作为前端团队内部每周技术咨询分享的,但后面语雀公开分享的限制太多了,所以就自建了一个周刊网站。所以我会订阅很多信息源,来作为周刊精选内容推荐。输入决定输出。简单的推荐做法是:先逛有限的的消息源(自己订阅),再看无限的的信息源(如算法推荐、碎片化、社交媒介时间线)
2021

21-
<!--more-->
22+
PS: 我有一个前端技术周刊,叫 WebCIA Weekly (Web 情报局) https://markyun.github.io/weekly/。不定期会分享从 RSS 源获取到的值得收藏的优质信息,包含:技术文章、产品设计、思维观点、开源项目、资源和工具、焦点资讯等,一切值得关注的事物,为大家提供保持领先所需的见解,也帮自己完成了信息资源存档。这里推荐一下我用的工具和订阅的源。
2223

23-
之前是作为前端团队内部每周技术咨询分享的,但后面语雀公开分享的限制太多了,所以就自建了一个周刊网站。所以我会订阅很多信息源,来作为周刊精选内容推荐。
2424

2525
## RSS 阅读器
2626

2727
见下篇文章,RSS 中有两个很重要的部分,另一个是 RSS 阅读器(下篇介绍)。
2828

29-
## RSS 源
29+
## RSS 源
3030

31-
[AIGC Weekly](https://quail.ink/op7418/)
32-
[weekly: 前端精读周刊](https://github.com/ascoders/weekly)
33-
[老胡的周刊](https://weekly.howie6879.com/)
34-
[潮流周刊](https://weekly.tw93.fun/)
35-
[阮一峰的周刊(每周五)](https://www.ruanyifeng.com/blog/weekly/)
36-
[MDH 前端周刊 (每周一发布) ](https://www.yuque.com/chencheng/mdh-weekly)
37-
[潮流最前端·周刊(alibaba f2e)](https://www.yuque.com/alibabaf2e/weekly)
38-
[Web 技术周刊(汇总平时看到的好文章,前端技术 & 产品研发为主](https://www.yuque.com/zenany/fe_weekly)
39-
[前端食堂技术周刊](https://hungryturbo.zhubai.love/)
40-
[变现周刊](https://www.ezindie.com/)
41-
[独立开发变现周刊](https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MjM5OTM3NzAwNg==&action=getalbum&album_id=1857680644290478080&scene=173&from_msgid=2649285872&from_itemidx=1&count=3&nolastread=1#wechat_redirect)
42-
[《好工具周刊》](https://discuss-cn.bestxtools.com/)
43-
[CSS-Tricks](http://css-tricks.com/)
44-
[Codrops 优秀案例](https://tympanus.net/codrops/)
45-
[SitePoint – 练习技术技能](https://www.sitepoint.com/)
46-
[Smashing 技术杂志](https://www.smashingmagazine.com/)
47-
[CodePen 精彩合集](https://codepen.io/collection/vBVqeR)
48-
[前端焦点 Frontend Focus](https://frontendfoc.us/issues/617)
49-
[Frontend Focus Archives](https://frontendfoc.us/issues)
50-
[JavaScript Weekly](https://javascriptweekly.com/issues/)
51-
[HTML5 Weekly](http://html5weekly.com/issues/136)
52-
[CSS Weekly](http://css-weekly.com/)
53-
[Mobile Web Weekly](http://mobilewebweekly.co/)
54-
[Node Weekly](http://nodeweekly.com/issues/34)
55-
[每日黑客新闻](http://www.daemonology.net/hn-daily/)
56-
[每日值得一读技术博客](https://daily-blog.chlinlearn.top/)
57-
[Echo JS JavaScript 新闻站。](https://www.echojs.com/)
58-
[hax Hax 参加的活动](https://github.com/hax/hax.github.com/blob/3751ffba5e56a91f2e194f93e98e9805b2f6a4d3/events.md)
59-
[后端开发周刊](https://www.yuque.com/pjmike/qbzclt/vu51cox3gccrwyge)
60-
[软件测试周刊 · 语雀(不活跃了)](https://www.yuque.com/bxiaofan/testingweekly)
61-
[百闻技术周刊 · 语雀](https://www.yuque.com/tdq0bp/weekly)
62-
[阿里妈妈前端快爆](https://zhuanlan.zhihu.com/mm-fe)
63-
[Web Infra - 字节技术专栏 知乎](https://www.zhihu.com/column/bytedancer)
64-
[Overreacted](https://overreacted.io/)
65-
[美团技术团队](https://tech.meituan.com/)
66-
[有赞技术团队](https://tech.youzan.com/)
67-
[政采云前端团队](https://zoo.team/)
68-
[中文独立博客列表](https://github1s.com/timqian/chinese-independent-blogs)
69-
[Lindy 黑客新闻 — 汇集了在 Hacker News 上经常被转发的经典文章,一种排行榜的感觉](https://hn.lindylearn.io/)
70-
[Blog – Vercel](https://vercel.com/blog/category/engineering)
71-
[dev.to 国外开发者分享知识的社区 DEV Community](https://dev.to/)
31+
[AIGC Weekly](https://quail.ink/op7418/)
32+
[weekly: 前端精读周刊](https://github.com/ascoders/weekly)
33+
[老胡的周刊](https://weekly.howie6879.com/)
34+
[潮流周刊](https://weekly.tw93.fun/)
35+
[阮一峰的周刊(每周五)](https://www.ruanyifeng.com/blog/weekly/)
36+
[MDH 前端周刊 (每周一发布) ](https://www.yuque.com/chencheng/mdh-weekly)
37+
[潮流最前端·周刊(alibaba f2e)](https://www.yuque.com/alibabaf2e/weekly)
38+
[Web 技术周刊(汇总平时看到的好文章,前端技术 & 产品研发为主](https://www.yuque.com/zenany/fe_weekly)
39+
[前端食堂技术周刊](https://hungryturbo.zhubai.love/)
40+
[变现周刊](https://www.ezindie.com/)
41+
[独立开发变现周刊](https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MjM5OTM3NzAwNg==&action=getalbum&album_id=1857680644290478080&scene=173&from_msgid=2649285872&from_itemidx=1&count=3&nolastread=1#wechat_redirect)
42+
[《好工具周刊》](https://discuss-cn.bestxtools.com/)
43+
[CSS-Tricks](http://css-tricks.com/)
44+
[Codrops 优秀案例](https://tympanus.net/codrops/)
45+
[SitePoint – 练习技术技能](https://www.sitepoint.com/)
46+
[Smashing 技术杂志](https://www.smashingmagazine.com/)
47+
[CodePen 精彩合集](https://codepen.io/collection/vBVqeR)
48+
[前端焦点 Frontend Focus](https://frontendfoc.us/issues/617)
49+
[Frontend Focus Archives](https://frontendfoc.us/issues)
50+
[JavaScript Weekly](https://javascriptweekly.com/issues/)
51+
[HTML5 Weekly](http://html5weekly.com/issues/136)
52+
[CSS Weekly](http://css-weekly.com/)
53+
[Mobile Web Weekly](http://mobilewebweekly.co/)
54+
[Node Weekly](http://nodeweekly.com/issues/34)
55+
[每日黑客新闻](http://www.daemonology.net/hn-daily/)
56+
[每日值得一读技术博客](https://daily-blog.chlinlearn.top/)
57+
[Echo JS JavaScript 新闻站。](https://www.echojs.com/)
58+
[hax Hax 参加的活动](https://github.com/hax/hax.github.com/blob/3751ffba5e56a91f2e194f93e98e9805b2f6a4d3/events.md)
59+
[后端开发周刊](https://www.yuque.com/pjmike/qbzclt/vu51cox3gccrwyge)
60+
[软件测试周刊 · 语雀(不活跃了)](https://www.yuque.com/bxiaofan/testingweekly)
61+
[百闻技术周刊 · 语雀](https://www.yuque.com/tdq0bp/weekly)
62+
[阿里妈妈前端快爆](https://zhuanlan.zhihu.com/mm-fe)
63+
[Web Infra - 字节技术专栏 知乎](https://www.zhihu.com/column/bytedancer)
64+
[Overreacted](https://overreacted.io/)
65+
[美团技术团队](https://tech.meituan.com/)
66+
[有赞技术团队](https://tech.youzan.com/)
67+
[政采云前端团队](https://zoo.team/)
68+
[中文独立博客列表](https://github1s.com/timqian/chinese-independent-blogs)
69+
[Lindy 黑客新闻 — 汇集了在 Hacker News 上经常被转发的经典文章,一种排行榜的感觉](https://hn.lindylearn.io/)
70+
[Blog – Vercel](https://vercel.com/blog/category/engineering)
71+
[dev.to 国外开发者分享知识的社区 DEV Community](https://dev.to/)
7272

73-
## 每日信息热榜
73+
## 每日信息热榜
7474

75-
[今日热榜 -社会(国内)](https://rebang.today/)
76-
[Buzzing - 用中文浏览国外社交媒体里的热门讨论](https://www.buzzing.cc/)
77-
[每日值得一读技术博客](https://daily-blog.chlinlearn.top/)
78-
[TIL(今天我学会了)](https://www.matuzo.at/til)
79-
[V2HOT - 每日 V2EX 最热主题](https://v2hot.pipecraft.net/)
80-
[AI 日报](https://gorden-sun.notion.site/527689cd2b294e60912f040095e803c5?v=4f6cc12006c94f47aee4dc909511aeb5)
81-
[24 小时 - 虎嗅网](https://www.huxiu.com/moment/)
82-
[每日 Hacker News 热点](http://www.daemonology.net/hn-daily/)
83-
[今日热榜 主流平台](https://tophub.today/)
84-
[Issues · jiacai2050/hot-posts](https://github.com/jiacai2050/hot-posts/labels/posts)
85-
[SegmentFault 思否](https://segmentfault.com/questions/hottest/weekly)
86-
[虫洞 - 随机访问 十年之约 成员博客](https://www.foreverblog.cn/go.html)
87-
[本周看什么 - 少数派](https://sspai.com/u/ee0vj778/updates)
88-
[路透社 | 国际新闻&观点 --- Reuters | Breaking International News & Views](https://www.reuters.com/)
75+
[今日热榜 -社会(国内)](https://rebang.today/)
76+
[Buzzing - 用中文浏览国外社交媒体里的热门讨论](https://www.buzzing.cc/)
77+
[每日值得一读技术博客](https://daily-blog.chlinlearn.top/)
78+
[TIL(今天我学会了)](https://www.matuzo.at/til)
79+
[V2HOT - 每日 V2EX 最热主题](https://v2hot.pipecraft.net/)
80+
[AI 日报](https://gorden-sun.notion.site/527689cd2b294e60912f040095e803c5?v=4f6cc12006c94f47aee4dc909511aeb5)
81+
[24 小时 - 虎嗅网](https://www.huxiu.com/moment/)
82+
[每日 Hacker News 热点](http://www.daemonology.net/hn-daily/)
83+
[今日热榜 主流平台](https://tophub.today/)
84+
[Issues · jiacai2050/hot-posts](https://github.com/jiacai2050/hot-posts/labels/posts)
85+
[SegmentFault 思否](https://segmentfault.com/questions/hottest/weekly)
86+
[虫洞 - 随机访问 十年之约 成员博客](https://www.foreverblog.cn/go.html)
87+
[本周看什么 - 少数派](https://sspai.com/u/ee0vj778/updates)
88+
[路透社 | 国际新闻&观点 --- Reuters | Breaking International News & Views](https://www.reuters.com/)
8989

90-
End.
90+
End.

themes/hugo-theme-ladder/assets/scss/_blog.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,19 @@
1616
}
1717
}
1818

19+
[data-dark-mode] .blog-single h1{
20+
background: linear-gradient(326deg, #adfbda 0, #35c3ff 30%, #fda399 50%, #76d880 70%, #ebf38b 90%, #adfbda 100%);
21+
-webkit-background-clip: text;
22+
-webkit-text-fill-color: transparent;
23+
}
1924
.blog-single {
2025
position: relative;
2126
max-width: 80rem;
2227
margin: auto;
2328
padding: 1.5rem;
2429

30+
31+
2532
.blog-toc {
2633
top: 4rem;
2734
height: auto;

themes/hugo-theme-ladder/assets/scss/_home.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
margin-bottom: 0;
2525
font-size: 4.2rem;
2626
line-height: 4.6rem;
27+
background: linear-gradient(190deg, #adfbda 0, #35c3ff 30%, #fda399 50%, #76d880 70%, #ebf38b 90%, #adfbda 100%);
28+
-webkit-background-clip: text;
29+
-webkit-text-fill-color: transparent;
2730

2831
@media only screen and (max-width: 768px) {
2932
font-size: 2.2rem;

0 commit comments

Comments
 (0)