This commit is contained in:
KazooTTT
2024-10-11 20:07:59 +08:00
52 changed files with 193 additions and 75 deletions

View File

@ -8,7 +8,13 @@
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,svelte,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,svelte,astro}\""
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,svelte,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,svelte,astro}\"",
"sort": "node scripts/updateCategoryBatchly.cjs && node scripts/sortByDate.cjs"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run sort"
}
},
"dependencies": {
"@astrojs/check": "^0.5.6",
@ -45,6 +51,7 @@
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"husky": "^9.1.6",
"prettier": "^3.2.5",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.13.0",

10
pnpm-lock.yaml generated
View File

@ -105,6 +105,9 @@ importers:
eslint-plugin-jsx-a11y:
specifier: ^6.8.0
version: 6.8.0(eslint@8.57.0)
husky:
specifier: ^9.1.6
version: 9.1.6
prettier:
specifier: ^3.2.5
version: 3.2.5
@ -2063,6 +2066,11 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
husky@9.1.6:
resolution: {integrity: sha512-sqbjZKK7kf44hfdE94EoX8MZNk0n7HeW37O4YrVGCF4wzgQjp+akPAkfUK5LZ6KuR/6sqeAVuXHji+RzQgOn5A==}
engines: {node: '>=18'}
hasBin: true
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
@ -6358,6 +6366,8 @@ snapshots:
human-signals@5.0.0: {}
husky@9.1.6: {}
ieee754@1.2.1: {}
ignore@5.3.1: {}

View File

@ -17,15 +17,19 @@ function processDirectory(dir) {
}
})
// Sort files by date
// 按日期排序文件
fileInfos.sort((a, b) => a.date - b.date)
// Rename files
// 重命名文件
fileInfos.forEach((file, index) => {
const newName = `${index.toString().padStart(2, '0')} ${file.name}`
// 如果文件名已经是数字数字空格开头,则移除这个前缀
const oldFileName = file.name
const cleanFileName = oldFileName.replace(/^\d{2}\s/, '')
const newName = `${index.toString().padStart(2, '0')} ${cleanFileName}`
const newPath = path.join(dir, newName)
fs.renameSync(file.path, newPath)
console.log(`Renamed ${file.name} to ${newName}`)
console.log(`重命名 ${file.name} ${newName}`)
})
}

View File

@ -75,8 +75,8 @@ const dateTimeOptions: Intl.DateTimeFormatOptions = {
<path d='M17.573 18.407l2.834 -2.834a2.025 2.025 0 0 0 0 -2.864l-7.117 -7.116' />
<path d='M6 9h-.01' />
</svg>
{data.tags.map((tag, i) => (
<div>
<div class='space-x-1'>
{data.tags.map((tag, i) => (
<a
aria-label={`View more blogs with the tag ${tag}`}
class="inline-block before:content-['#'] hover:underline hover:underline-offset-4"
@ -85,9 +85,8 @@ const dateTimeOptions: Intl.DateTimeFormatOptions = {
>
{tag}
</a>
{i < data.tags.length - 1 && ', '}
</div>
))}
))}
</div>
</div>
)
}

View File

@ -14,8 +14,16 @@ const toc = generateToc(headings)
---
<aside class='sticky top-20 order-2 -me-28 hidden basis-60 lg:flex lg:flex-col'>
<h2 class='font-semibold'>TABLE OF CONTENTS</h2>
<ul class='text-card-foreground'>
{toc.map((heading) => <TOCHeading heading={heading} />)}
</ul>
{
toc.length > 0 && (
<>
<h2 class='font-semibold'>TABLE OF CONTENTS</h2>
<ul class='text-card-foreground'>
{toc.map((heading) => (
<TOCHeading heading={heading} />
))}
</ul>
</>
)
}
</aside>

View File

@ -1,5 +1,6 @@
---
import kazootttAvatar from '../../assets/kazoottt-avatar.jpeg'
import { Image } from 'astro:assets'
---
<header class='mb-12 flex w-full flex-wrap pb-3 text-sm sm:flex-nowrap sm:justify-start'>
@ -7,8 +8,14 @@
class='relative mx-auto flex w-full items-center justify-between sm:flex sm:items-center'
aria-label='global'
>
<a class='hidden flex-none text-xl font-semibold sm:block' href='/' aria-label='Brand'>
KazooTTT
<a class='flex items-center' href='/'>
<Image
src={kazootttAvatar}
alt='profile photo'
class='mr-2 h-8 w-auto rounded-full sm:hidden'
loading='eager'
/>
<div class='hidden flex-none text-xl font-semibold sm:block' aria-label='Brand'>KazooTTT</div>
</a>
<div class='flex flex-row items-center justify-center gap-x-5 sm:gap-x-7'>
@ -28,7 +35,7 @@
${Astro.url.pathname.startsWith('/categories') ? 'text-green-400' : ''}
`}
aria-label='Nav Menu Item'
>Categories
>Cats
</a>
<a
href='/tags'

View File

@ -26,7 +26,6 @@ description: >-
environments.
NotionID-notionnext: 40ec4f8d-2030-4ce1-b8c7-c1c9f56ef55b
link-notionnext: 'https://kazoottt.notion.site/ChainForge-40ec4f8d20304ce1b8c7c1c9f56ef55b'
rinId: 8
---
# ChainForge简单介绍

View File

@ -0,0 +1,88 @@
---
title: Perplexity系列产品
date: 2024-09-04
author: KazooTTT
type: Post
status: Published
tags:
- AI
- 搜索引擎
- Perplexity
- Playground
- 播客
finished: true
published: true
category: AI
slug: perplexity-productions-intro
description: 概述Perplexity系列产品包括搜索引擎、Playground和播客重点介绍其功能和区别。
NotionID-notionnext: ae2fba46-af30-4bd5-b6d0-fe751c162800
link-notionnext: https://kazoottt.notion.site/01-Perplexity-ae2fba46af304bd5b6d0fe751c162800
---
# Perplexity系列产品
## 产品1 Perplexity搜索引擎
![[attachment/软件/01 Perplexity系列产品/IMG-20240904094448497.png]]
https://www.perplexity.ai/
### 普通和Pro的区别
![IMG-20240904001354592](https://pictures.kazoottt.top/2024/09/20240904-82efc9478928cf3428241d5cdbe1f7e2.png)
![IMG-20240904001354629](https://pictures.kazoottt.top/2024/09/20240904-b48e87c80c053f5afc32f440ab36959c.png)
### 频繁人工验证怎么办
![IMG-20240904001354676](https://pictures.kazoottt.top/2024/09/20240904-aa07d424f893146a987cccdcf7ae5bcf.png)
[Perplexity - AI Search - Chrome 应用商店](https://chromewebstore.google.com/detail/perplexity-ai-search/bnaffjbjpgiagpondjlnneblepbdchol)
![IMG-20240904001354729](https://pictures.kazoottt.top/2024/09/20240904-836c90b245302d2dd60fc14009e8aab1.png)
### 同类别产品
[Devv AI](https://devv.ai/) (编程向)
![[attachment/软件/01 Perplexity系列产品/IMG-20240904094534311.png]]
## 产品2 Perplexity Playground
体验最新大模型
https://labs.perplexity.ai/
![IMG-20240904001354800](https://pictures.kazoottt.top/2024/09/20240904-4a2f2948f9bda0d445948efd5d021e8c.png)
![IMG-20240904001354854](https://pictures.kazoottt.top/2024/09/20240904-9988cdc07d33329b209ee5f44269caef.png)
[Introducing Llama 3.1: Our most capable models to date](https://ai.meta.com/blog/meta-llama-3-1/)
![IMG-20240904001354881](https://pictures.kazoottt.top/2024/09/20240904-e5c298074d3edb3aa59b00a86c20ef0e.png)
[Changelog - Perplexity](https://docs.perplexity.ai/changelog/changelog#introducing-new-and-improved-sonar-models)
![IMG-20240904001354925](https://pictures.kazoottt.top/2024/09/20240904-6757a9b6e9c488d8faad8ae28a2e48e1.png)
## 产品3 Perplexity播客
[资讯汇总 Discover](https://www.perplexity.ai/discover)
![IMG-20240904001354996](https://pictures.kazoottt.top/2024/09/20240904-c06edb7427f2885aa1d8b3bd69659719.png)
Perplexity和eleventlab合作把Discover的内容转成播客了。
![Pasted image 20240308104550 1](https://pictures.kazoottt.top/2024/09/20240904-c2dbdcea85e283af86a34fe244f1b8e4.png)
![IMG-20240904001355089](https://pictures.kazoottt.top/2024/09/20240904-a904a8102ea53bd3a8619b43f6e4a770.png)
很适合练习听力以及了解科技资讯。地址:[Discover Daily by Perplexity](https://discoverdaily.ai/)
[spotify](https://open.spotify.com/episode/1CaSWrm7uUAOkaKjE9KI47?si=WPbA0x73QkGEPm-DFh4big)
[pca.st](https://pca.st/03qazv0d)
支持rss
![IMG-20240904001355142](https://pictures.kazoottt.top/2024/09/20240904-51cb08cfa94e457d09ca0cfbaec6d604.png)

View File

@ -6,7 +6,6 @@ description: >-
本资源收集提供了深入了解Web3的基础材料包括比特币和以太坊的历史与技术细节。推荐阅读比特币前传系列文章了解比特币诞生前的技术背景和发展历程。以太坊简史则概述了其近十年的重大突破和变化以及创始人Vitalik
Buterin的初衷。此外加密思潮编年史帮助读者快速把握加密技术的发展脉络。技术方面比特币和以太坊的白皮书精读版详细解读了其技术原理而“一个以太坊交易的完整周期”则深入探讨了交易的具体流程。YouTube教程和相关文章进一步提供了Foundry开发框架和Web3.0应用架构的讲解以及Uniswap
v2的详细解析为学习和研究Web3提供了丰富的资料。
rinId: 13
finished: true
date: 2024-02-07
category: web3

View File

@ -11,7 +11,6 @@ slug: 2023-W10
description: >-
本周资讯聚焦于技术领域的多个创新点包括快速编辑器Zed、设计系统工具Craft
Systems、自动生成视觉内容的BannerBear、OpenAI的语音识别模型以及一个帮助规划和构建设计系统的开源清单。这些内容展示了技术界在编辑工具、设计系统和AI应用方面的最新进展和创新。
rinId: 83
finished: true
---

View File

@ -1,6 +1,6 @@
---
title: 2023-W45 平淡的一周
date: 2023-11-19T00:00:00.000Z
date: 2023-11-12T00:00:00.000Z
author: KazooTTT
tags:
- 周报
@ -10,7 +10,6 @@ category: 周报
slug: 2023-W45
description: >-
2023年第45周的记录包括个人生活、技术资源和周围事件的摘要。个人方面与cali老师在小红书上互相关注。技术资源方面收集了多个有用的链接和工具如3D博客、树结构控制库、项目变现讨论、社交媒体GPT工具、web3课程、WebWorkers库、SaaS模板、Windows字体优化、node开箱即用模板、播客推荐等。此外记录了阿里云服务宕机事件影响了阿里系服务的使用。
rinId: 85
finished: true
---

View File

@ -14,7 +14,6 @@ category: 周报
slug: 2023-W11
description: >-
本内容涵盖了2023年第11周2023-03-12至2023-03-19的技术和设计资源主要来源于GitHub、Twitter、微博和B站。其中包括了沉浸式双语网页翻译扩展和隐藏Twitter信息的油猴脚本等浏览器插件。此外还介绍了基于GPT-4的代码编写工具Cursor、ChatGPT相关的资料汇总和Telegram机器人等。设计方面提到了Figma结合GPT的设计工具、柔和主题库Catppuccin以及一些设计教程和素材资源。整体内容丰富涉及多个领域的最新技术动态和实用工具。
rinId: 84
finished: true
---

View File

@ -10,7 +10,6 @@ notionID: 44471ea2-c791-4a01-9819-8df9f3f5b509
slug: 2023-W46
description: >-
在2023年第46周我开始认真学习理财知识并办理了港澳通行证计划去香港开户。同时我也开始了区块链和Solidity的学习尽管错过了第一节课。工作忙碌导致学习时间减少但减少了社交平台的接触反而减轻了焦虑。我主要使用X和小红书并尝试使用tailwindcss制作投稿封面。此外我还购买了一个二手饼干头用我的gx9相机记录生活并发现了一家新开的冒菜店感觉非常亲切。在资讯收集方面我关注了web3相关的学习笔记以及其他技术相关的资讯如JavaScript练习网站、AB测试解决方案、远程开发者工作网站等。我还关注了一些技术发布和推荐如blender4.0、腾讯的2D图形库ftgx、字体推荐等。此外我还收集了一些关于产品变现、iOS开发选型、错误处理等方面的信息。
rinId: 86
finished: true
---

View File

@ -5,8 +5,7 @@ published: true
category: 周报
description: >-
在2023年第48周作者经历了一次工作转岗从Web前端开发转变为类似于提示词工程师的角色。这次转岗让作者意识到自己对大语言模型的理解不足但也重拾了Python编程并计划将学习重心放在LLM研究上。同时作者的父母来上海探望作者在忙碌的工作之余抽空陪伴他们游览了城隍庙和豫园等地。此外作者还分享了关于资讯收集方式的变化从使用Twitter和Cubox转变为使用Telegram和Discord以及一些关于设计和编程的资讯收集。
date: '2024-07-11T02:17:53.450Z'
rinId: 87
date: '2023-11-27T00:00:00.000Z'
finished: true
---

View File

@ -20,7 +20,6 @@ description: >-
Web
APP、AWS部署方案、Postman替代品hoppscotch、视频压缩工具CompressX、AI和数据科学家路线图、独立开发能力培养指南、LLM论文合集、富文本编辑器PlateJS以及CSS展示的20+
iPhones。这些资源和工具涵盖了从开发到设计的多个方面旨在为技术爱好者和专业人士提供丰富的学习和参考材料。
rinId: 88
finished: true
---

View File

@ -8,9 +8,8 @@ description: >-
Search功能智谱AI发布的国产大模型GLM4及其GLMs商店元象开源的XVERSE-Long-256K模型以及OpenAI对GPT
Builders文档的完善。此外还介绍了彭博推出的IB Connect服务以及多个AI应用如WhisperSpeech和AutoGen
Studio。推荐阅读部分涵盖了AI创业案例、GPT-4的技术分析、Prompt工程指南等内容为读者提供了丰富的AI知识和应用实例。
date: '2024-06-26T10:26:54.033Z'
rinId: 89
finished: true
date: '2024-01-15T00:00:00.000Z'
---
[[2024-W03]]

View File

@ -11,8 +11,7 @@ description: >-
[outline](https://github.com/outline/outline)专为成长型团队设计的知识库应用支持实时协作和Markdown官网为[getoutline.com](https://www.getoutline.com/)。4.
一个帮助用户一次性提交到100多个目录站的服务应用地址为[affordhunt.com](https://www.affordhunt.com/)。5.
[whimsical](https://whimsical.com/),一款画图工具,详细信息可通过推特链接获取。这些应用覆盖了从输入法优化到团队协作工具,再到图形设计的多方面需求。
date: '2024-06-26T10:26:54.034Z'
rinId: 90
date: '2024-01-15T00:00:00.000Z'
finished: true
---

View File

@ -9,8 +9,7 @@ description: >-
期):蓝色指示灯的解决方案](https://www.ruanyifeng.com/blog/2024/01/weekly-issue-286.html?continueFlag=61db114b5bb3eda119c3b0a42a3f0791)的技术讨论。此外,还有关于[fuxiang对于【devv.ai团队分享的RAG原理】的再整理](https://twitter.com/fuxiangPro/status/1747242297975062666)的深度分析,以及[HackerNews
趋势, Github 趋势, Google
趋势](https://chasetrend.news/zh)的最新动态。这些内容覆盖了技术、市场、个人成长等多个方面,适合各类读者深入探索。
date: '2024-06-26T10:26:54.035Z'
rinId: 91
date: '2024-01-15T00:00:00.000Z'
finished: true
---

View File

@ -7,8 +7,7 @@ description: >-
本周设计资源精选包括AIDesign提供免费Logo设计服务嘉文钱分享Blender和3D相关教程及作品阿文推荐可商用的德拉黑体字体svghub提供免费SVG素材Orange
Free
Sounds提供免费声音效果、音乐和循环以及通过Framer赚钱的方法。这些资源涵盖了设计、字体、素材和创收等多个方面为设计师和创意工作者提供了丰富的工具和灵感。
date: '2024-06-26T10:26:54.035Z'
rinId: 93
date: '2024-01-15T00:00:00.000Z'
finished: true
---

View File

@ -8,8 +8,7 @@ description: >-
it图片生成应用、AI生成情绪板、开源用户界面元素、1000个令人激动的网站等。此外还介绍了如remotion视频制作工具、TypeScript-Node-Starter示例、Konva
Canvas框架等技术资源。同时提供了多个个人主页和博客推荐以及关于REST
API与GraphQL的讨论。这些资源和工具覆盖了前端开发、UI设计、视频制作等多个领域适合编程爱好者和技术开发者参考和学习。
date: '2024-07-11T02:17:53.450Z'
rinId: 92
date: '2024-01-15T00:00:00.000Z'
finished: true
---

View File

@ -8,8 +8,7 @@ description: >-
Pro、outline知识库应用等以及开发工具如头像生成网站和Moodboard Creator。此外还介绍了多个技术博客和教程如REST API
vs GraphQL的比较、Astro自动生成Open
Graph图片的方法以及Docker入门实践等。这些资源和教程旨在帮助开发者提高效率优化工作流程并探索新技术。
date: '2024-07-11T02:17:53.451Z'
rinId: 94
date: '2024-01-15T00:00:00.000Z'
finished: true
---

View File

@ -13,7 +13,6 @@ NotionID-notionnext: 61b4cedd-4f34-4650-8926-c025c339d384
link-notionnext: 'https://kazoottt.notion.site/2024-W08-61b4cedd4f3446508926c025c339d384'
description: >-
在2024年第8周推荐两款实用的软件AltTab和Tickeys。AltTab是一款可以替代macOS默认切换窗口功能的软件提供更便捷舒适的体验。Tickeys则是一款为打字添加炫酷音效的软件让打字体验更加有趣。
rinId: 82
---
# 2024-W08 推荐一些软件

View File

@ -27,7 +27,6 @@ noteId_x: 14
create_time: '2024/4/12 20:41:55'
update_time: '2024/4/12 20:47:54'
publish_time: '2024/4/12 20:46:23'
rinId: 95
---
![2024-04-12-15-10-01](https://pictures.kazoottt.top/2024/04/20240412-d7632ca728747ee491faa035cbb8fef3.webp)

View File

@ -1,6 +1,6 @@
---
title: 2024-W16
date: 2024-04-12T00:00:00.000Z
date: 2024-04-22T00:00:00.000Z
author: KazooTTT
type: Post
status: Draft
@ -19,7 +19,6 @@ description: >-
和一个开源的聊天虚拟人项目。在关于自身的部分,作者介绍了自己恢复了打卡的习惯,每天记录工作、编程和生活的内容。在工作方面,作者分享了自己的工作感悟和对后端的疑惑;在编程方面,作者提到了自己对状态管理和数据结构的不足;在生活方面,作者记录了自己的饮食和娱乐等日常生活。
NotionID-notionnext: 6fda550f-4dcb-4f15-bbc6-38ef98227143
link-notionnext: 'https://kazoottt.notion.site/2024-W16-6fda550f4dcb4f15bbc638ef98227143'
rinId: 96
---
![2024-04-20-19-19-39 (1)](https://pictures.kazoottt.top/2024/04/20240420-5449c27ccc85a12d0a1446f35d2c0cbd.jpeg)

View File

@ -1,12 +1,12 @@
---
title: Alice研究周报第20期OpenVoice2开源模型发布Cloudflare推出AI Playground
date: 2024-04-26
date: 2024-04-29T00:00:00.000Z
author: KazooTTT
type: Post
status: Draft
tags: []
finished: false
published: false
finished: true
published: true
slug: 2024-W17
description: >-
本文涵盖了从2024年4月22日至4月28日的一系列人工智能相关内容包括多个模型的更新和应用如Myshell发布的OpenVoice2开源语音模型、Snowflake

View File

@ -1,6 +1,6 @@
---
title: 2024-W19
date: 2024-04-12T00:00:00.000Z
date: 2024-05-12T00:00:00.000Z
author: KazooTTT
type: Post
status: Draft
@ -11,7 +11,6 @@ category: 周报
slug: 2024-W19
description: >-
Alice研究周报第21期发布涵盖了Claude控制台的升级信息以及阿里通义千问2.5的最新进展该版本宣称在性能上超越了GPT-4。日期范围为2024年5月6日至5月12日。
rinId: 98
---
# 2024-W19

View File

@ -1,6 +1,6 @@
---
title: 2024-W25
date: 2024-04-12T00:00:00.000Z
date: 2024-06-17T00:00:00.000Z
author: KazooTTT
type: Post
status: Draft
@ -9,7 +9,6 @@ finished: true
published: true
category: 周报
slug: 2024-W25
rinId: 99
---
日期范围: 2024/06/17 - 2024/06/23

View File

@ -10,7 +10,6 @@ slug: y1-2020-annual-summary
published: true
description: >-
在2020年度作者经历了一系列的学习和实习经历。6月参与省级大创7月获得中国高校微信小程序应用开发赛西南赛区三等奖并在上海某金融科技公司担任产品经理实习生。8月荣获中国大学生计算机设计大赛国家级二等奖并参与了中国好声音的录制。9月后回到成都在一家教育公司担任web前端开发工程师实习生。作者最初选择工作而非考研对前端开发有浓厚兴趣尽管在实习过程中曾尝试产品管理但最终决定回归前端开发。10月拒绝了国企的offer选择在教育科技公司继续实习使用Vue框架。作者计划在2021年继续提升技术并希望获得满意的offer同时计划学习电吉他、画画和MMD。
rinId: 32
finished: true
category: 生活
---

View File

@ -10,7 +10,6 @@ slug: y2-2021-annual-summary
published: true
description: >-
在Y2-2021年度总结中作者回顾了一年的重要事件和个人成长。年初意外成为主播房管随后经历了上海长达六个月的封控期间在家办公并感受到工作瓶颈。作者反思了自己的工作方式意识到需要更深入的调研和思考。此外作者还提到了部门的大变动包括人员离职和裁员以及自己对技术积累的不足。在个人生活方面作者购买了一些产品如Mac触控板和松下GX9相机同时也出售了一些不再使用的物品。最后作者总结了去年的计划完成情况并设定了新一年的目标包括找到成都的工作机会和继续学习设计技能。
rinId: 33
finished: true
category: 生活
---

View File

@ -10,7 +10,6 @@ slug: y3-2022-annual-summary
published: true
description: >-
在Y3-2022年度总结中作者回顾了一年的经历和感受。年初意外成为主播房管随后经历了上海长达六个月的封控期间在家办公感受到了工作和个人生活的压力。作者反思了自己的工作方式意识到需要更深入的调研和思考以及在遇到困难时及时寻求帮助。此外作者提到了部门的大变动包括人员离职和裁员以及对技术发展的担忧。在个人成长方面作者感到自己过于在意他人看法正在努力改善这一心理状态。产品方面作者购买了一些电子产品和健身设备但也有部分产品因各种原因被出售。最后作者总结了去年的计划完成情况并设定了新一年的目标包括找到成都的工作机会完成主站重构项目继续学习设计和UI/UX等。
rinId: 34
finished: true
category: 生活
---

View File

@ -12,7 +12,6 @@ published: true
slug: national-day-trip-to-xiamen-and-hangzhoupicture-bed-version
description: >-
国庆期间作者记录了从上海出发前往厦门和杭州的旅行经历。在厦门作者体验了当地的美食如汉堡王、七星西鹭鸭胫店、宴遇1/2等并游览了鼓浪屿感受了当地的夜生活和自然风光。此外作者还尝试了野草莓餐厅和叽叽扎扎烤肉体验了不同的餐饮文化。在杭州作者参观了联动店铺并尝试了方老大的面食。整个旅程中作者不仅享受了美食还体验了当地的文化和生活方式感受到了旅行的乐趣。
rinId: 114
category: 生活
---

View File

@ -6,7 +6,6 @@ date: 2024-01-23T00:00:00.000Z
description: >-
本文讲述了一位大学生在成都春熙路地下商场遭遇的骗局。作者被诱导进入一家店铺,经历了从免费面部检测到被迫支付高额费用的过程。在被骗后,作者通过寻求帮助,最终成功追回了大部分损失。这次经历让作者学会了更加小心谨慎,并感激那些在困难时刻给予帮助的人。文章旨在提醒读者警惕类似的消费陷阱。
finished: true
rinId: 111
category: 生活
---

View File

@ -13,7 +13,6 @@ finished: true
description: >-
文章中作者分享了多个餐饮体验包括奶茶店“薄荷森林”的薄荷生打椰以及“野台风”的圆规和dirty咖啡。在“seven
bus”尝试了杏仁牛油果冰淇士。正餐方面作者品尝了“野草莓”的高性价比美食以及“宴遇1/2”的酸菜鱼、火焰黑椒安格斯小牛肉等。此外还体验了“叽叽扎扎烤肉”和“七星西鹭鸭胫店”的特色菜肴。最后作者在“傲客夜食”尝试了麻辣烤鱼和冰粉。整体上作者对所尝试的食物给予了积极的评价并表达了对某些美食的特别喜爱。
rinId: 113
category: 生活
---

View File

@ -8,7 +8,6 @@ published: true
slug: a-very-abrupt-trip-to-hong-kong
description: >-
作者在生日假期冲动地决定去香港旅行,提前一周购买机票和预订酒店。旅程中遇到了一些小插曲,如机票信息错误和插头转换器购买错误,但都顺利解决。在香港,作者体验了当地的美食,如一兰拉面和各种点心,并与久未见面的高中同学共进午餐,享受了愉快的时光。尽管行程紧凑,但这次旅行给作者留下了深刻的印象和美好的回忆。
rinId: 112
category: 生活
---

View File

@ -11,7 +11,6 @@ description: >-
作者意识到自己有浅尝辄止的习惯尤其是在职业技能上这影响了他的博客管理。为了改善这一情况他计划固定记录和发布模式使用Obsidian和Flomo作为本地编辑器根据内容质量的不同分别发布到Quartz、Notion、掘金、xlog和微信公众号。他认为记录的初衷是为了自己分享是次要的因此先在本地记录再逐步分享到更公开的平台。
link: 'https://kazoottt.notion.site/4168e936345444f4b625a86309a5b320'
notionID: 4168e936-3454-44f4-b625-a86309a5b320
rinId: 57
category: 生活
---

View File

@ -10,7 +10,6 @@ published: true
slug: recent-feelings-a-lot-of-hard-work
description: >-
在23年年末作者内转至大模型应用部门初期充满激情能接触前沿项目并利用大模型厂商服务。然而随着时间推移工作中的不适感逐渐增强。主要问题包括基建不足如缺乏CI/CD流程发布版本耗时且需加班项目框架笨重且存在性能问题对项目信心下降代码质量差缺乏规范以及对未来职业发展的担忧如工作与学习时间冲突薪资涨幅低。这些因素共同导致了作者对当前工作的不满和焦虑。
rinId: 116
category: 生活
---

View File

@ -14,7 +14,6 @@ published: true
category: 生活
slug: duanwu-guangzhou-trip
description: 在端午节期间,我和朋友们相约去广州,参观了大咩老师的毕业展,品尝了各种美食,体验了广州的文化和风景。这次旅行充满了美好的回忆,让我感受到了广州的独特魅力。
rinId: 5
---
# 端午去广州玩了

View File

@ -16,7 +16,6 @@ published: true
category: 生活
slug: bw-record-personal-notes
description: 记录了 KazooTTT 在 BW 活动中的个人体验和感受,包括与朋友和偶像的合照、工作餐和摊位的点滴。
rinId: 1
---
# BW记录-个人向流水账版

View File

@ -0,0 +1,35 @@
---
title: 2024 永不完结的冒险 武汉线下vlog
date: 2024-09-02
author: KazooTTT
type: Post
status: Published
tags:
- vlog
- 武汉
- 小缘
- live
finished: true
published: true
category: 生活
slug: yukari-2024-live
description: 前往武汉参加小缘810线下live的流水账式vlog。
NotionID-notionnext: 7c90f788-efe1-4ae1-b314-3bf7acb6b21e
link-notionnext: https://kazoottt.notion.site/2024-vlog-7c90f788efe14ae1b3143bf7acb6b21e
---
# 2024 小缘永不完结的冒险 武汉线下vlog
![BC0203DE-7AF7-442C-AD60-A136DDDB603B_1_105_c 1](https://pictures.kazoottt.top/2024/09/20240902-41822c72da727100ce156e6e15d1eed6.jpeg)
![1D5C0AD5-D822-477E-9463-9E61B9B0DBC7_1_105_c](https://pictures.kazoottt.top/2024/09/20240902-e2665439baf6b12ce76c19575a03b5e2.jpeg)
![1AFC4713-2894-4551-9264-73849E5A3BE2_1_105_c](https://pictures.kazoottt.top/2024/09/20240902-86b6949773a9845b6fc508c877d3c311.jpeg)
![B3F795E0-F51D-4C68-8724-B8267248A897_1_105_c](https://pictures.kazoottt.top/2024/09/20240902-f819e2b9f2c521fb8076be24410cbfbb.jpeg)
离职之后刚好有时间去小缘的810线下live于是和朋友们约好了一起去
剪了一个很流水账的vlog⬇
[2024小缘武汉live 流水账式vlog\_哔哩哔哩\_bilibili](https://www.bilibili.com/video/BV1BLWMeMEVU/)

View File

@ -22,7 +22,6 @@ create_time: '2023/10/20 13:49:09'
update_time: '2023/10/20 13:55:39'
publish_time: '2023/10/20 13:50:45'
finished: true
rinId: 61
category: 软件
---

View File

@ -15,7 +15,6 @@ slug: possible-causes-and-solutions-for-focusee-switching-system-audio-to-speake
description:
NotionID-notionnext: 8ac966eb-66b4-4f39-b2fa-3fd4e4911a41
link-notionnext: https://kazoottt.notion.site/focusee-8ac966eb66b44f39b2fa3fd4e4911a41
rinId: 41
category: 软件
---

View File

@ -17,7 +17,6 @@ slug: focusee-macos-review
description: 分析了Focusee在macOS上的缺陷包括色差严重、导出速度慢以及声卡配置冲突等问题并分享了作者的退款经历。
NotionID-notionnext: c6b6e2f5-9da1-43f9-b531-b07d974815ed
link-notionnext: https://kazoottt.notion.site/macos-focusee-c6b6e2f59da143f9b531b07d974815ed
rinId: 42
---
# 不推荐macos用户购买focusee的理由

View File

@ -16,7 +16,6 @@ slug: free-tokens-large-model-service
description:
NotionID-notionnext: 30a20483-ea28-4daf-b8be-155f0e690bc7
link-notionnext: https://kazoottt.notion.site/tokens-30a20483ea284dafb8be155f0e690bc7
rinId: 43
---
# 可以免费领取tokens的大模型服务

View File

@ -18,7 +18,6 @@ slug: auto-sync-folder-to-album
description: 通过自动操作实现将指定文件夹中的图片自动导入到iCloud相册中
NotionID-notionnext: d451ee94-44f7-44af-83c0-a6e8a30d26c8
link-notionnext: https://kazoottt.notion.site/d451ee9444f744af83c0a6e8a30d26c8
rinId: 44
category: 软件
---

View File

@ -9,7 +9,6 @@ description: >-
本文介绍了三款截图美化工具shots.so、jellylade和Arc浏览器。shots.so支持电脑端提供多种美化功能如改变背景色、添加阴影等。jellylade同样可以将截图转化为美观的帖子。Arc浏览器则是一款macOS平台上的浏览器内置截图美化功能用户可以通过快捷键或开发者模式进行截图美化并可自定义背景色和水印。这些工具均能帮助用户提升截图的美观度和专业性。
finished: true
date: '2024-07-11T02:17:53.456Z'
rinId: 122
category: 软件
---

View File

@ -13,7 +13,6 @@ published: true
description: >-
为了在公共场合保护个人隐私防止他人查看自己的Twitter账号信息如ID、昵称和头像作者开发了一个油猴脚本。该脚本专门用于屏蔽Twitter首页上显示的个人信息。用户可以通过greasyfork安装此脚本源代码可在GitHub上查看。脚本使用前后对比图展示了隐藏个人信息的效果。
finished: true
rinId: 125
category: 项目
---

View File

@ -15,7 +15,6 @@ description: >-
函数用于从指定的URL下载文件可以自定义文件名`downloadFileFromBlob`
函数则用于从Blob对象下载文件同样支持自定义文件名。这两个函数均来自 `@kzttools/file-downloader`
该包的NPM地址和GitHub地址均已提供。项目遵循MIT许可证作者为kazoottt。
rinId: 63
category: 项目
---

View File

@ -12,7 +12,6 @@ description: >-
Discover an auto slugify webapp designed to convert text into URL-friendly
slugs. Check out the live demo at https://slugify.kazoottt.top/. This tool is
based on the auto-slugify library available on GitHub.
rinId: 65
category: 项目
---

View File

@ -8,7 +8,6 @@ tags: []
finished: true
published: true
slug: write-an-oil-monkey-script-that-automatically-selects-the-latest-tweets
rinId: 64
category: 项目
---

View File

@ -16,7 +16,7 @@ export const getStaticPaths = (async ({ paginate }) => {
const allPostsByDate = sortMDByDate(allPosts)
const uniqueTags = getUniqueTags(allPosts)
const uniqueCategories = getUniqueCategories(allPosts)
return paginate(allPostsByDate, { pageSize: 20, props: { uniqueTags, uniqueCategories } })
return paginate(allPostsByDate, { pageSize: 50, props: { uniqueTags, uniqueCategories } })
}) satisfies GetStaticPaths
interface Props {

View File

@ -20,7 +20,7 @@ export const getStaticPaths: GetStaticPaths = async ({ paginate }) => {
category === '未分类' ? !post.data.category : post.data.category === category
)
return paginate(filterPosts, {
pageSize: 20,
pageSize: 50,
params: { category }
})
})

View File

@ -18,7 +18,7 @@ export const getStaticPaths: GetStaticPaths = async ({ paginate }) => {
return uniqueTags.flatMap((tag) => {
const filterPosts = allPostsByDate.filter((post) => post.data.tags.includes(tag))
return paginate(filterPosts, {
pageSize: 20,
pageSize: 50,
params: { tag }
})
})