Skip to content

Commit

Permalink
fix: 🐛 更新博客
Browse files Browse the repository at this point in the history
  • Loading branch information
maqi1520 committed Jun 23, 2024
1 parent 401dd8a commit 9097417
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
12 changes: 11 additions & 1 deletion data/blog/image-min-tools.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
---
title: '30+ 图片压缩工具集合,包含在线压缩和CLI工具'
date: '2022/7/22'
lastmod: '2022/2/25'
lastmod: '2024/6/23'
tags: [工具]
draft: false
images:
[
'https://p6-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/932d63ba505b4662a2e89e29616e0932~tplv-k3u1fbpfcp-jj-mark:0:0:0:0:q75.image#?w=3248&h=2112&s=996870&e=png&a=1&b=fefefe',
]
summary: '许多开发人员花费了大量时间优化网页性能,比如优化 js、css、减少http 请求等等,但减小图片大小产生的优化比其他所有领域加起来影响更大。'
authors: ['default']
layout: PostLayout
---

许多开发人员花费了大量时间优化网页性能,比如优化 js、css、减少 http 请求等等,但减小图片大小产生的优化比其他所有领域加起来影响更大。

## Website planet

![Website planet](https://p6-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/932d63ba505b4662a2e89e29616e0932~tplv-k3u1fbpfcp-jj-mark:0:0:0:0:q75.image#?w=3248&h=2112&s=996870&e=png&a=1&b=fefefe)

[Website planet](https://www.websiteplanet.com/webtools/imagecompressor/)可以将您的 PNG/JPG 文件压缩高达 80%,并保持完全透明

## WebUtils Bulk Image Compress 

[WebUtils Bulk Image Compress](https://www.webutils.app/image-compress 'https://www.webutils.app/image-compress') 允许压缩图像并将其转换为 WebP、JPG、PNG、AVIF 和 JXL。不限制文件大小或文件数量,但如果尝试进行批量转换,这可能比较缓慢。还可以调整质量和尺寸,所以压缩在客户端完成。
Expand Down
12 changes: 4 additions & 8 deletions data/blog/将 Node 应用 Express.js 部署到 Vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ authors: ['default']
layout: PostLayout
---

---

## title: 将 Node 应用 Express.js 部署到 Vercel

## 前言

之前有期视频介绍过,在 Vercel 上可以免费部署很多应用,包括 Next.js、Nuxt、Remix。除了 Node.js 甚至还支持其他语言,包括 Go、 Python、Ruby,但在 Node.js 中有一个老牌的框架 Express.js,很多应用都是通过 Express.js 创建的,本文将记录下,如何将 Express.js 应用部署到 Vercel,以及它在 serverless 环境中应该考虑的因素。
Expand Down Expand Up @@ -54,7 +50,7 @@ app.get('/', (req, res) => res.send('Hello Express'))
app.listen(3000, () => console.log('Server ready on port 3000.'))
```

现在,我们运行 `node src/index.js` 便可以在本地启动 Express.js 服务。访问 <http://localhost:3000/> 页面显示 Hello Express。
现在,我们运行 `node src/index.js` 便可以在本地启动 Express.js 服务。访问 http://localhost:3000/ 页面显示 Hello Express。

### 适配 vercel

Expand All @@ -69,7 +65,7 @@ export default function handler(request, response) {
}
```

部署到 Vercel 之后,访问 <https://example.vercel.app/api/hello?name=Vercel>
部署到 Vercel 之后,访问 https://example.vercel.app/api/hello?name=Vercel

页面就会显示 Hello Vercel。

Expand Down Expand Up @@ -132,7 +128,7 @@ vercel dev

运行 `vercel dev` 会问你一些问题,随意回答即可。

回答完问题后,您现在应该在 <http://localhost:3000> 上有一个本地运行的服务器,我们可以在部署到 Vercel 之前测试该应用程序是否正常运行。
回答完问题后,您现在应该在 `http://localhost:3000` 上有一个本地运行的服务器,我们可以在部署到 Vercel 之前测试该应用程序是否正常运行。

## 部署

Expand Down Expand Up @@ -180,4 +176,4 @@ vercel
}
```

参考:<https://vercel.com/guides/using-express-with-vercel>
参考:https://vercel.com/guides/using-express-with-vercel
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,12 @@ draft: false
summary: AI 爆发,技术写作还有意义吗? 2023 年,人工智能爆发,ChatGPT 的出现对许多行业产生了巨大的冲击。对我来说,原本以为写博客、建立个人知识库等学习方式会变得可有可无,但实际情况是,写作变得
images:
[
'https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/6a33cdd53d49444a886c7491ab41c03e~tplv-k3u1fbpfcp-jj-mark:0:0:0:0:q75.image#?w=800\&h=450\&s=51350\&e=jpg\&b=2e2a2e',
'https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/6a33cdd53d49444a886c7491ab41c03e~tplv-k3u1fbpfcp-jj-mark:0:0:0:0:q75.image',
]
authors: ['default']
layout: PostLayout
---

---

## title: 普通程序员要如何技术写作变现?

## AI 爆发,技术写作还有意义吗?

2023 年,人工智能爆发,ChatGPT 的出现对许多行业产生了巨大的冲击。对我来说,原本以为写博客、建立个人知识库等学习方式会变得可有可无,但实际情况是,写作变得越来越重要。
Expand All @@ -29,7 +25,7 @@ layout: PostLayout

笔者是一名写作新手,之前也只是随便写写博客,仅当做是对自己学习过程的积累,从没想过通过写作变现,也就是 2 年前,参加掘金的更文活动,就像升级打怪,每月更文 7 篇、14 篇、就会有不同的奖品,当收到这些礼品的时候,总是满怀欣喜和成就感,付出的到了回报。

![image.png](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/36ec362ce8a34d94b59a179701dc50a0~tplv-k3u1fbpfcp-jj-mark:0:0:0:0:q75.image#?w=1338&h=846&s=269290&e=png&b=fefefe)
![image.png](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/36ec362ce8a34d94b59a179701dc50a0~tplv-k3u1fbpfcp-jj-mark:0:0:0:0:q75.image)

2023 我分别在掘金和微信公众号发布了 15 篇文章,获得了 1000+的收益,这点钱对于工作来说可能是凤毛麟角,但我却觉得这不失为在互联网寒冬的另外一条路,因为这 15 篇文章我并没有花费很多精力去写,而是我学习过程的记录。如果数量和阅读量上去了,收益就会更多。

Expand Down Expand Up @@ -79,7 +75,7 @@ layout: PostLayout

- 文章发表在掘金、就可以参与活动,获得奖品,到达 v4 后可以参与瓜分现金活动。
- 文章发表在微信公众号,就可以通过阅读量获得广告收益,公众号有自动推荐功能,就算是个小号,只要认真写也会有阅读量。
- 如果觉得文章不错,还有时间,可以把文章翻译成英文,发布到 <https://medium.com/> 赚取美刀,我看 medium 上的很多技术文章都是通过中文翻译的。
- 如果觉得文章不错,还有时间,可以把文章翻译成英文,发布到 https://medium.com/ 赚取美刀,我看 medium 上的很多技术文章都是通过中文翻译的。

## 内外兼顾

Expand Down

0 comments on commit 9097417

Please sign in to comment.