{"memos":[{"name":"memos/6zsh6X6yT8ZZZiN42Piou9", "state":"NORMAL", "creator":"users/3", "createTime":"2026-04-04T06:26:12Z", "updateTime":"2026-04-04T06:26:12Z", "displayTime":"2026-04-04T06:26:12Z", "content":"# AI\n笔迹\n", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[{"name":"attachments/bvxpLdFpxXKjKCLpPaaV34", "createTime":"2026-04-04T06:26:11Z", "filename":"《AI技术如何重塑游戏开发》.rar", "content":"", "externalLink":"https://2d83df26333ca2c29d6de95756835361.r2.cloudflarestorage.com/public/memos/2026/04/04/1775283970_%E3%80%8AAI%E6%8A%80%E6%9C%AF%E5%A6%82%E4%BD%95%E9%87%8D%E5%A1%91%E6%B8%B8%E6%88%8F%E5%BC%80%E5%8F%91%E3%80%8B.rar?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=fe08e7f33d1b391447b70eee322724a4%2F20260424%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260424T193000Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=b16b206f2ebc39c7c06a22f761bdca2bbe8fc2eb54dd7bb17b1cd7eeccac50c2", "type":"application/x-compressed", "size":"459392", "memo":"memos/6zsh6X6yT8ZZZiN42Piou9"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"AI 笔迹"}, {"name":"memos/DcNLbLyxvnbqAR5fqueRpT", "state":"NORMAL", "creator":"users/3", "createTime":"2026-03-30T08:32:40Z", "updateTime":"2026-03-30T08:32:40Z", "displayTime":"2026-03-30T08:32:40Z", "content":"感觉你是那种xxxx的那种人", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"感觉你是那种xxxx的那种人"}, {"name":"memos/nu2WgXmY99v8QD4YJWtqDa", "state":"NORMAL", "creator":"users/3", "createTime":"2026-03-13T01:06:22Z", "updateTime":"2026-03-13T01:06:22Z", "displayTime":"2026-03-13T01:06:22Z", "content":"# 前端基础demo\n```html\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <title>Navigation Menu - CSS</title>\n\n    <!-- 引入图标库 -->\n    <link\n      href=\"https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css\"\n      rel=\"stylesheet\"\n    />\n\n    <!-- 把CSS直接写在style标签里，整合到一个文件 -->\n    <style>\n        /* 全局样式重置 */\n        * {\n          margin: 0;\n          padding: 0;\n          box-sizing: border-box;\n          font-family: 'Arial', sans-serif;\n        }\n\n        body {\n          min-height: 100vh;\n          background-color: #f5f5f5;\n          display: flex;\n          justify-content: center;\n          align-items: center;\n        }\n\n        /* 导航菜单容器 */\n        .menu {\n          width: 60px; /* 默认窄宽度，只显示图标 */\n          height: 400px;\n          background-color: #2c3e50;\n          border-radius: 15px;\n          padding: 20px 0;\n          display: flex;\n          flex-direction: column;\n          justify-content: space-around;\n          align-items: center;\n          transition: width 0.3s ease; /* 宽度过渡动画 */\n          overflow: hidden;\n        }\n\n        /* 鼠标悬停时展开菜单，显示文字 */\n        .menu:hover {\n          width: 200px;\n        }\n\n        /* 菜单链接样式 */\n        .link {\n          width: 100%;\n          padding: 10px 20px;\n          display: flex;\n          align-items: center;\n          text-decoration: none;\n          color: #fff;\n          transition: background-color 0.2s ease;\n        }\n\n        /* 链接 hover 效果 */\n        .link:hover {\n          background-color: #34495e;\n          border-radius: 8px;\n          margin: 0 8px;\n        }\n\n        /* 图标样式 */\n        .icon {\n          font-size: 24px;\n          width: 30px; /* 固定图标宽度，保证对齐 */\n          text-align: center;\n          margin-right: 20px;\n        }\n\n        /* 文字样式 */\n        .txt {\n          font-size: 16px;\n          white-space: nowrap; /* 防止文字换行 */\n          opacity: 0; /* 默认隐藏文字 */\n          transition: opacity 0.3s ease 0.1s; /* 延迟显示文字，更自然 */\n        }\n\n        /* 菜单展开时显示文字 */\n        .menu:hover .txt {\n          opacity: 1;\n        }\n    </style>\n</head>\n<body>\n    <div class=\"menu\">\n      <a href=\"#\" class=\"link\">\n        <span class=\"icon\">\n          <i class=\"bx bx-home-alt-2\"></i>\n        </span>\n        <span class=\"txt\">主页</span>\n      </a>\n      <a href=\"#\" class=\"link\">\n        <span class=\"icon\">\n          <i class=\"bx bx-comment\"></i>\n        </span>\n        <span class=\"txt\">联系</span>\n      </a>\n      <a href=\"#\" class=\"link\">\n        <span class=\"icon\">\n          <i class=\"bx bx-bookmark\"></i>\n        </span>\n        <span class=\"txt\">保存</span>\n      </a>\n      <a href=\"#\" class=\"link\">\n        <span class=\"icon\">\n          <i class=\"bx bx-search\"></i>\n        </span>\n        <span class=\"txt\">查找</span>\n      </a>\n      <a href=\"#\" class=\"link\">\n        <span class=\"icon\">\n          <i class=\"bx bx-user\"></i>\n        </span>\n        <span class=\"txt\">资料</span>\n      </a>\n    </div>\n</body>\n</html>\n```", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":true, "hasIncompleteTasks":false}, "snippet":"前端基础demo"}, {"name":"memos/hiXtawxtMvehYgskG4Z6dq", "state":"NORMAL", "creator":"users/3", "createTime":"2026-03-09T04:32:49Z", "updateTime":"2026-03-09T04:32:49Z", "displayTime":"2026-03-09T04:32:49Z", "content":"Mac配色\n", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[{"name":"attachments/bZNGzbpABdWdwupPzJNjET", "createTime":"2026-03-09T04:32:49Z", "filename":"Snazzy.terminal.zip", "content":"", "externalLink":"https://2d83df26333ca2c29d6de95756835361.r2.cloudflarestorage.com/public/memos/2026/03/09/1773030767_Snazzy.terminal.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=fe08e7f33d1b391447b70eee322724a4%2F20260423%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260423T193000Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=6a44edf196e8264a425bedeb2430510cfacadaee564dd236c2a3fa0498336c7a", "type":"application/zip", "size":"1840", "memo":"memos/hiXtawxtMvehYgskG4Z6dq"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"Mac配色"}, {"name":"memos/Va2uu6nRRQ7x8AWYQZipd6", "state":"NORMAL", "creator":"users/3", "createTime":"2026-03-08T11:12:51Z", "updateTime":"2026-03-08T11:12:51Z", "displayTime":"2026-03-08T11:12:51Z", "content":"main", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[{"name":"attachments/AqEywr6MaN5dqfBVt3eb7Z", "createTime":"2026-03-08T11:12:51Z", "filename":"main.pdf.zip", "content":"", "externalLink":"https://2d83df26333ca2c29d6de95756835361.r2.cloudflarestorage.com/public/memos/2026/03/08/1772968368_main.pdf.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=fe08e7f33d1b391447b70eee322724a4%2F20260423%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260423T193000Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=5d321c09cadd21a4313036fc2f1c417a9664cefe91c448330e347dc14ce8a533", "type":"application/zip", "size":"277667", "memo":"memos/Va2uu6nRRQ7x8AWYQZipd6"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"main"}, {"name":"memos/ndquRZr9YJUFeAF3igcoRr", "state":"NORMAL", "creator":"users/3", "createTime":"2026-03-06T14:51:34Z", "updateTime":"2026-03-06T14:51:34Z", "displayTime":"2026-03-06T14:51:34Z", "content":"free-fs", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[{"name":"attachments/Sh5XZ7sDkSktN6EUuA9FfU", "createTime":"2026-03-06T14:51:34Z", "filename":"free-fs文件管理系统笔记.pdf.zip", "content":"", "externalLink":"https://2d83df26333ca2c29d6de95756835361.r2.cloudflarestorage.com/public/memos/2026/03/06/1772808688_free-fs%E6%96%87%E4%BB%B6%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E7%AC%94%E8%AE%B0.pdf.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=fe08e7f33d1b391447b70eee322724a4%2F20260426%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260426T063502Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=4625603879ab0a776dbfd8b3b8e95a2afa398c11605ff9f69d5700a5116a2037", "type":"application/zip", "size":"6184179", "memo":"memos/ndquRZr9YJUFeAF3igcoRr"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"free-fs"}, {"name":"memos/jqApSWAp4jAfDuBA6kPjGT", "state":"NORMAL", "creator":"users/3", "createTime":"2026-03-01T08:09:15Z", "updateTime":"2026-03-01T08:11:25Z", "displayTime":"2026-03-01T08:09:15Z", "content":"mac软件\nhttps://wwaoh.lanzout.com/b00zyhj80f\n密码:9uw7\n\ncode\nhttps://wwaoh.lanzout.com/b00zyhj87c\n密码:ady8", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"mac软件  密码:9uw7 code  密码:ady8"}, {"name":"memos/SrDJkpH4CwmyhWmaSZypZG", "state":"NORMAL", "creator":"users/3", "createTime":"2026-02-27T16:56:36Z", "updateTime":"2026-03-01T09:35:48Z", "displayTime":"2026-02-27T16:56:36Z", "content":"safari-tam\n```js\n// ==UserScript==\n// @name         CSDN极简净化\n// @namespace    http://tampermonkey.net/\n// @version      1.0\n// @description  只隐藏CSDN最核心的推广\n// @author       You\n// @match        *://*.csdn.net/*\n// @grant        GM_addStyle\n// @run-at       document-start\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    // 只隐藏最核心的推广元素\n    GM_addStyle(`\n        /* 隐藏工具栏中间区域（AI搜索、广告等） */\n        .toolbar-container-middle {\n            display: none !important;\n        }\n        /* 隐藏VIP按钮 */\n        .toolbar-btn-vip {\n            display: none !important;\n        }\n        /* 隐藏侧边栏VIP和DeepSeek */\n        .sidecolumn-vip,\n        .sidecolumn-deepseek {\n            display: none !important;\n        }\n        /* 隐藏GitCode和GPU算力 */\n        li[title=\"开源代码托管\"],\n        li[title=\"GPU算力\"] {\n            display: none !important;\n        }\n        .profile-imag-box {\n           display:none !important;\n        }\n        .picture-ad {\n           display:none !important;\n        }\n        /* 调整布局，让左右部分填满空间\n        .toolbar-container-left,\n        .toolbar-container-right {\n            flex-grow: 1 !important;\n        }*/\n        .wwads-cn,.wwads-vertical,.blog_container_aside ,.adsbygoogle,.swiper-slide-box-remuneration{\n           display:none !important;\n        }\n        .recommend-right{\n           display:none !important;\n        }\n    `);\n\n    // 简单定时检查\n    setInterval(function() {\n        // 确保隐藏\n        document.querySelectorAll('.recommend-right,.picture-ad,.wwads-cn,.wwads-vertical,.blog_container_aside ,.adsbygoogle,.swiper-slide-box-remuneration,.toolbar-container-middle, .toolbar-btn-vip, .sidecolumn-vip, .sidecolumn-deepseek','profile-imag-box').forEach(el => {\n            el.style.display = 'none';\n        });\n\n        // 隐藏GitCode和GPU\n        document.querySelectorAll('li[title=\"开源代码托管\"], li[title=\"GPU算力\"]').forEach(el => {\n            el.style.display = 'none';\n        });\n    }, 2000);\n\n    console.log('CSDN极简净化已启用');\n})();\n\n```", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":true, "hasIncompleteTasks":false}, "snippet":"safari-tam"}, {"name":"memos/XKGyDhoienSVCDtutNgujn", "state":"NORMAL", "creator":"users/3", "createTime":"2026-02-27T00:55:43Z", "updateTime":"2026-02-27T00:55:43Z", "displayTime":"2026-02-27T00:55:43Z", "content":"抖音网页免登陆js\n```\n// ==UserScript==\n// @name         抖音免登录以及查看评论\n// @namespace    http://tampermonkey.net/\n// @version      0.1\n// @description  关闭抖音登录面板及相关视频卡片登录引导\n// @author       wj\n// @match        https://www.douyin.com/*\n// @grant        none\n// @run-at       document-idle\n// @downloadURL https://update.greasyfork.org.cn/scripts/495495/%E6%8A%96%E9%9F%B3%E5%85%8D%E7%99%BB%E5%BD%95%E4%BB%A5%E5%8F%8A%E6%9F%A5%E7%9C%8B%E8%AF%84%E8%AE%BA.user.js\n// @updateURL https://update.greasyfork.org.cn/scripts/495495/%E6%8A%96%E9%9F%B3%E5%85%8D%E7%99%BB%E5%BD%95%E4%BB%A5%E5%8F%8A%E6%9F%A5%E7%9C%8B%E8%AF%84%E8%AE%BA.meta.js\n// ==/UserScript==\n\n(function () {\n  \"use strict\";\n\n  // Function to check for the login panel and close it\n  function checkAndCloseLoginPanel() {\n    // Find divs with id containing 'login-full-panel-'\n    var loginPanelDivs = document.querySelectorAll(\n      'div[id*=\"login-full-panel-\"]'\n    );\n    if (loginPanelDivs.length > 0) {\n      // Find the div with class 'dy-account-close'\n      var closeButton = document.querySelector(\"div.dy-account-close\");\n      if (closeButton) {\n        // Click the close button\n        closeButton.click();\n        console.log(\"登录面板已关闭\");\n      }\n    }\n  }\n\n  // Function to check for the related video card login guide and close it\n  function checkAndCloseRelatedVideoCardLoginGuide() {\n    // Find the div with id 'related-video-card-login-guide'\n    var relatedVideoCardLoginGuide = document.getElementById(\n      \"related-video-card-login-guide\"\n    );\n    if (relatedVideoCardLoginGuide) {\n      // Find the close button within the related video card login guide footer\n      var closeButton = relatedVideoCardLoginGuide.querySelector(\n        \"div.related-video-card-login-guide__footer div.related-video-card-login-guide__footer-close\"\n      );\n      if (closeButton) {\n        // Click the close button\n        closeButton.click();\n        console.log(\"相关视频卡片登录引导已关闭\");\n      }\n    }\n  }\n\n  // Check and close login panels on DOM content loaded\n  document.addEventListener(\"DOMContentLoaded\", function () {\n    checkAndCloseLoginPanel();\n    checkAndCloseRelatedVideoCardLoginGuide();\n  });\n\n  // Additionally, observe the DOM for changes and check again if necessary\n  var observer = new MutationObserver(function (mutations) {\n    mutations.forEach(function (mutation) {\n      checkAndCloseLoginPanel();\n      checkAndCloseRelatedVideoCardLoginGuide();\n    });\n  });\n\n  // Configure the observer to watch for changes in the body subtree\n  observer.observe(document.body, { childList: true, subtree: true });\n})();\n\n```", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":true, "hasIncompleteTasks":false}, "snippet":"抖音网页免登陆js"}, {"name":"memos/QqRNfydkynVfKMxhzKheJH", "state":"NORMAL", "creator":"users/3", "createTime":"2026-02-26T16:57:16Z", "updateTime":"2026-02-26T16:57:40Z", "displayTime":"2026-02-26T16:57:16Z", "content":"jinghua \n```js\n// ==UserScript==\n// @name         CSDN极简净化\n// @namespace    http://tampermonkey.net/\n// @version      1.0\n// @description  只隐藏CSDN最核心的推广\n// @author       You\n// @match        *://*.csdn.net/*\n// @grant        GM_addStyle\n// @run-at       document-start\n// ==/UserScript==\n\n(function() {\n    'use strict';\n\n    // 只隐藏最核心的推广元素\n    GM_addStyle(`\n        /* 隐藏工具栏中间区域（AI搜索、广告等） */\n        .toolbar-container-middle {\n            display: none !important;\n        }\n        /* 隐藏VIP按钮 */\n        .toolbar-btn-vip {\n            display: none !important;\n        }\n        /* 隐藏侧边栏VIP和DeepSeek */\n        .sidecolumn-vip,\n        .sidecolumn-deepseek {\n            display: none !important;\n        }\n        /* 隐藏GitCode和GPU算力 */\n        li[title=\"开源代码托管\"],\n        li[title=\"GPU算力\"] {\n            display: none !important;\n        }\n        .profile-imag-box {\n           display:none !important;\n        }\n        /* 调整布局，让左右部分填满空间\n        .toolbar-container-left,\n        .toolbar-container-right {\n            flex-grow: 1 !important;\n        }*/\n    `);\n\n    // 简单定时检查\n    setInterval(function() {\n        // 确保隐藏\n        document.querySelectorAll('.toolbar-container-middle, .toolbar-btn-vip, .sidecolumn-vip, .sidecolumn-deepseek','profile-imag-box').forEach(el => {\n            el.style.display = 'none';\n        });\n\n        // 隐藏GitCode和GPU\n        document.querySelectorAll('li[title=\"开源代码托管\"], li[title=\"GPU算力\"]').forEach(el => {\n            el.style.display = 'none';\n        });\n    }, 2000);\n\n    console.log('CSDN极简净化已启用');\n})();\n\n```", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":true, "hasIncompleteTasks":false}, "snippet":"jinghua"}, {"name":"memos/VhgBMsHoUhoUDEBdhDL748", "state":"NORMAL", "creator":"users/3", "createTime":"2026-02-14T06:55:37Z", "updateTime":"2026-02-14T06:55:37Z", "displayTime":"2026-02-14T06:55:37Z", "content":"", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[{"name":"attachments/VpmBmedFD8qQgjnpcmKXZo", "createTime":"2026-02-14T06:55:37Z", "filename":"demo笔记整理.zip", "content":"", "externalLink":"https://flomo-1317833888.cos.ap-guangzhou.myqcloud.com/memos/2026/02/14/1771052137_demo%E7%AC%94%E8%AE%B0%E6%95%B4%E7%90%86.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIDjFXjiSxDG5f1805yd3JL8h2Mdi5JKCrH%2F20260426%2Fap-guangzhou%2Fs3%2Faws4_request&X-Amz-Date=20260426T063502Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=ed929064c2fea784c2250f20786d55305cebebecde99ddcdd5734b89bca75de5", "type":"application/x-zip-compressed", "size":"2613543", "memo":"memos/VhgBMsHoUhoUDEBdhDL748"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":""}, {"name":"memos/jtwRi9MyUgaQnkbpTDQhnS", "state":"NORMAL", "creator":"users/3", "createTime":"2026-02-14T06:27:52Z", "updateTime":"2026-02-14T06:27:52Z", "displayTime":"2026-02-14T06:27:52Z", "content":"笔记", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"笔记"}, {"name":"memos/ctSbhsPdy7Kr82eEh8875F", "state":"NORMAL", "creator":"users/1", "createTime":"2026-02-09T18:23:13Z", "updateTime":"2026-02-14T14:18:35Z", "displayTime":"2026-02-09T18:23:13Z", "content":"这个煎熬的时代，除夕夜人民对年年有余愈发念念不忘。\n#思考 #闲笔", "visibility":"PUBLIC", "tags":["思考", "闲笔"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"这个煎熬的时代，除夕夜人民对年年有余愈发念念不忘。"}, {"name":"memos/HnAgKYdBhW9pbxjBBCNq5n", "state":"NORMAL", "creator":"users/3", "createTime":"2025-12-09T23:56:17Z", "updateTime":"2025-12-09T23:57:09Z", "displayTime":"2025-12-09T23:56:17Z", "content":"# filezilla功能软件 \n\nhttps://www.123865.com/s/9QRqVv-ekqY", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":true, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"filezilla功能软件"}, {"name":"memos/Nc2AodApnPP4somy6tBPA7", "state":"NORMAL", "creator":"users/3", "createTime":"2025-07-10T11:11:55Z", "updateTime":"2025-07-10T11:11:55Z", "displayTime":"2025-07-10T11:11:55Z", "content":"https://www.52pojie.cn/thread-2044685-1-1.html", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":true, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":""}, {"name":"memos/fKVNBpQtqeYF3WtHJ97nUS", "state":"NORMAL", "creator":"users/3", "createTime":"2025-07-07T11:41:39Z", "updateTime":"2025-07-07T11:41:39Z", "displayTime":"2025-07-07T11:41:39Z", "content":"找对自己的世界观，方法论，给自己勇气，大胆去迎接新世界", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[{"name":"memos/fKVNBpQtqeYF3WtHJ97nUS/reactions/4", "creator":"users/3", "contentId":"memos/fKVNBpQtqeYF3WtHJ97nUS", "reactionType":"🎉", "createTime":"2025-07-07T11:41:51Z"}, {"name":"memos/fKVNBpQtqeYF3WtHJ97nUS/reactions/5", "creator":"users/1", "contentId":"memos/fKVNBpQtqeYF3WtHJ97nUS", "reactionType":"🎉", "createTime":"2025-07-18T01:39:51Z"}, {"name":"memos/fKVNBpQtqeYF3WtHJ97nUS/reactions/6", "creator":"users/1", "contentId":"memos/fKVNBpQtqeYF3WtHJ97nUS", "reactionType":"👍", "createTime":"2025-07-18T01:40:00Z"}], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"找对自己的世界观，方法论，给自己勇气，大胆去迎接新世界"}, {"name":"memos/3iGLrCBXGqNLy5vpfW5GkV", "state":"NORMAL", "creator":"users/3", "createTime":"2025-06-19T19:10:34Z", "updateTime":"2025-06-19T19:10:34Z", "displayTime":"2025-06-19T19:10:34Z", "content":"内向者的爱，是默片时代精心剪辑的蒙太奇——没有喧闹的台词，却在光影流转的细节里，藏满了欲说还休的心动。 你不必成为在人群中高歌的诗人，只需做那个在她需要时递上伞的人，那个能听懂她沉默的人，那个用行动把“在意”写成一首只有她能读懂的散文诗的人。\n\n当你的目光因她而柔软，当你的世界因她而有了专注的方向，你本身的存在，就是最动人的告白。", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"内向者的爱，是默片时代精心剪辑的蒙太奇——没有喧闹的台词，却在光影流转的细节里，藏满了欲说还休的心动。"}, {"name":"memos/b9aHqymJBcJJfT4vDDnAk3", "state":"NORMAL", "creator":"users/3", "createTime":"2025-06-19T16:41:47Z", "updateTime":"2025-06-19T16:44:53Z", "displayTime":"2025-06-19T16:41:47Z", "content":"# 口语练习\n\nTwo roads diverged in a yellow wood,\n\nAnd sorry I could not travel both\n\nAnd be one traveler, long I stood\n\nAnd looked down one as far as I could\n\nTo where it bent in the undergrowth;\n\n黄色的树林里分出两条路\n\n可惜我不能同时去涉足\n\n我在那路口久久伫立\n\n我向着一条路极目望去\n\n直到它消失在丛林深处\n\n\n\nThen took the other, as just as fair,\n\nAnd having perhaps the better claim,\n\nBecause it was grassy and wanted wear;\n\nThough as for that the passing there\n\nHad worn them really about the same,\n\n但我却选择了另外一条路\n\n它荒草萎萎，十分幽寂\n\n显得更诱人，更美丽\n\n虽然在这两条小路上\n\n都很少留下旅人的足迹\n\n\nAnd both that morning equally lay\n\nIn leaves no step had trodden black.\n\nOh, I kept the first for another day!\n\nYet knowing how way leads on to way,\n\nI doubted if I should ever come back.\n\n虽然那天清晨落叶满地\n\n两条路都未经脚印污染\n\n呵，留下一条路等改日再见\n\n但我知道路径延绵无尽头\n\n恐怕我难以再回返\n\n\n\nI shall be telling this with a sigh\n\nSomewhere ages and ages hence:\n\nTwo roads diverged in a wood, and I -\n\nI look the one less traveled by,\n\nAnd that has made all the difference.\n\n也许多少年后在某一个地方\n\n我将轻声叹息把往事回顾\n\n一片森林里分出两条路\n\n而我却选择了人迹更少的一条\n\n从此决定了我一生的道路\n\n", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[{"name":"attachments/jGKHkbT6uUK8SKtAqazjo9", "createTime":"2025-06-19T16:41:33Z", "filename":"English.mp3", "content":"", "externalLink":"https://flomo-1317833888.cos.ap-guangzhou.myqcloud.com/memos/2025/06/19/1750351292_English.mp3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIDjFXjiSxDG5f1805yd3JL8h2Mdi5JKCrH%2F20260426%2Fap-guangzhou%2Fs3%2Faws4_request&X-Amz-Date=20260426T193000Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=0cda6aa5d60e37d42f74f37dcfc541017bb24142e262cb6ad8221d64bc3213ee", "type":"audio/mpeg", "size":"904941", "memo":"memos/b9aHqymJBcJJfT4vDDnAk3"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"口语练习 Two roads diverged in a yellow wood, And sorry I could not ..."}, {"name":"memos/RPUQXZ29XahJMYQzruZHRD", "state":"NORMAL", "creator":"users/1", "createTime":"2025-06-17T14:11:21Z", "updateTime":"2025-06-26T03:09:36Z", "displayTime":"2025-06-17T14:11:21Z", "content":"- [x] 博客网络开启负载均衡 Vercel、Github、Netlify、本地网络等等\n- [ ] 重新设计统一资源储存桶，尽量区分类型：公共、个人、高频等，进行子域名划分\n- [ ] 维护的公共API服务在Vercel已资源耗尽，尝试独立于服务器开启负载均衡\n- [x] 迁移Waline数据至博客负载服务器（影响未知）\n\n#维护 #博客", "visibility":"PUBLIC", "tags":["维护", "博客"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":true, "hasCode":false, "hasIncompleteTasks":true}, "snippet":"博客网络开启负载均衡 Vercel、Github、Netlify、本地网络等等 ..."}, {"name":"memos/FYFNoaTjBKaAaCBHj3VY5P", "state":"NORMAL", "creator":"users/3", "createTime":"2025-06-03T07:52:44Z", "updateTime":"2025-06-03T07:52:44Z", "displayTime":"2025-06-03T07:52:44Z", "content":"# snipaste\nhttps://download.snipaste.com/archives/Snipaste-2.10.7-x64.zip\nhttps://download.snipaste.com/archives/Snipaste-2.10.7-x86.zip", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":true, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"snipaste"}, {"name":"memos/WBEw4CoRYt84WRStU8GE5j", "state":"NORMAL", "creator":"users/1", "createTime":"2025-06-02T11:53:23Z", "updateTime":"2025-06-02T11:53:23Z", "displayTime":"2025-06-02T11:53:23Z", "content":"《端午既过，芒种在迩，夏午小笺》\n\n午梦沉迟唤始觉，\n茶烟饭影共疏慵。\n藤阴双倚移风日，\n驿果初藏沁雪中。\n\n忽见高梧摇晚照，\n叶筛碎碧上帘栊。\n一窗斑驳如相问，\n可是新秋遣信风？\n\n#诗意 #闲笔 ", "visibility":"PUBLIC", "tags":["诗意", "闲笔"], "pinned":false, "attachments":[{"name":"attachments/ciMWxwPBqgBNGqotmm9wcN", "createTime":"2025-06-02T11:52:48Z", "filename":"f11272fcb697c67e7c9e0348ef9feba9.jpg", "content":"", "externalLink":"https://flomo-1317833888.cos.ap-guangzhou.myqcloud.com/memos/2025/06/02/1748865168_f11272fcb697c67e7c9e0348ef9feba9.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIDjFXjiSxDG5f1805yd3JL8h2Mdi5JKCrH%2F20260426%2Fap-guangzhou%2Fs3%2Faws4_request&X-Amz-Date=20260426T193000Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=bfec729510bcb84d83e3a5c0aacc62379c648095fcf7517aaa9a244adf88f445", "type":"image/jpeg", "size":"1517825", "memo":"memos/WBEw4CoRYt84WRStU8GE5j"}], "relations":[], "reactions":[{"name":"memos/WBEw4CoRYt84WRStU8GE5j/reactions/2", "creator":"users/3", "contentId":"memos/WBEw4CoRYt84WRStU8GE5j", "reactionType":"🎉", "createTime":"2025-06-03T07:51:30Z"}, {"name":"memos/WBEw4CoRYt84WRStU8GE5j/reactions/7", "creator":"users/1", "contentId":"memos/WBEw4CoRYt84WRStU8GE5j", "reactionType":"🎉", "createTime":"2025-07-21T08:34:48Z"}], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"《端午既过，芒种在迩，夏午小笺》 午梦沉迟唤始觉， 茶烟饭影共疏慵。 藤阴双倚移风日， 驿果初藏沁雪中。"}, {"name":"memos/Ps8AULpUoErkJWxkM6YpoD", "state":"NORMAL", "creator":"users/3", "createTime":"2025-05-21T10:32:34Z", "updateTime":"2025-05-21T10:32:34Z", "displayTime":"2025-05-21T10:32:34Z", "content":"# 生成\nhttps://www.guidgen.com/", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":true, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"生成"}, {"name":"memos/e3vdNovCpoHn7jdRy98K69", "state":"NORMAL", "creator":"users/3", "createTime":"2025-04-29T13:03:14Z", "updateTime":"2025-04-29T13:03:14Z", "displayTime":"2025-04-29T13:03:14Z", "content":"", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[{"name":"attachments/ZQLrw65x2uMsq6MiYxJThQ", "createTime":"2025-04-29T13:03:13Z", "filename":"image.png", "content":"", "externalLink":"", "type":"image/png", "size":"1201995", "memo":"memos/e3vdNovCpoHn7jdRy98K69"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":""}, {"name":"memos/DnX7PpFciN2DxX7K7m7isg", "state":"NORMAL", "creator":"users/3", "createTime":"2025-04-26T16:51:28Z", "updateTime":"2025-04-26T16:51:28Z", "displayTime":"2025-04-26T16:51:28Z", "content":"字段信息\n\n插入：新增时，是否传递该字段。\n编辑：修改时，是否传递该字段。\n列表：Table 表格，是否展示该字段。\n查询：搜索框，是否支持该字段查询，查询的条件是什么。\n允许空：新增或修改时，是否必须传递该字段，用于 Validator 参数校验。\n字典类型：在显示类型是下拉框、单选框、复选框时，选择使用的字典。", "visibility":"PUBLIC", "tags":[], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"字段信息 插入：新增时，是否传递该字段。 编辑：修改时，是否传递该字段。 列表：Table 表格，是否展示该字段。"}, {"name":"memos/MS8Kg7d64tZPj69Pzogr3W", "state":"NORMAL", "creator":"users/1", "createTime":"2025-04-20T12:19:23Z", "updateTime":"2025-04-20T12:22:39Z", "displayTime":"2025-04-20T12:19:23Z", "content":"工作忙到占据生活一部分时，就像程序IO堵塞。\n适当给未来打个断点，调试生活。\n#碎碎念 ", "visibility":"PUBLIC", "tags":["碎碎念"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"工作忙到占据生活一部分时，就像程序IO堵塞。 适当给未来打个断点，调试生活。"}, {"name":"memos/RxWJtAJqSfejCsM8SVnZ53", "state":"NORMAL", "creator":"users/1", "createTime":"2025-03-25T06:04:56Z", "updateTime":"2025-03-25T06:04:56Z", "displayTime":"2025-03-25T06:04:56Z", "content":"- [ ] 有空签一个stellar分支，好些人问魔改代码\n#维护 ", "visibility":"PUBLIC", "tags":["维护"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":true, "hasCode":false, "hasIncompleteTasks":true}, "snippet":"有空签一个stellar分支，好些人问魔改代码"}, {"name":"memos/nFcVba37po9NgAKQJg6eHa", "state":"NORMAL", "creator":"users/1", "createTime":"2025-03-23T14:23:34Z", "updateTime":"2025-03-23T14:23:34Z", "displayTime":"2025-03-23T14:23:34Z", "content":"同步 hexo-circle-of-friends 为最新版\n#维护", "visibility":"PUBLIC", "tags":["维护"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"同步 hexo-circle-of-friends 为最新版"}, {"name":"memos/m22DrgnhQbukmzRdz9DWYZ", "state":"NORMAL", "creator":"users/1", "createTime":"2025-03-23T14:22:39Z", "updateTime":"2025-03-23T14:22:39Z", "displayTime":"2025-03-23T14:22:39Z", "content":"博主网站动态迁移至 memos\n#维护", "visibility":"PUBLIC", "tags":["维护"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"博主网站动态迁移至 memos"}, {"name":"memos/600291c94eb3a7c1", "state":"NORMAL", "creator":"users/1", "createTime":"2024-01-13T12:55:14Z", "updateTime":"2024-01-13T23:40:25Z", "displayTime":"2024-01-13T12:55:14Z", "content":"注目于月亮，即便迷失二三，亦落于星辰之间。\n#思考 #闲笔\n", "visibility":"PUBLIC", "tags":["思考", "闲笔"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"注目于月亮，即便迷失二三，亦落于星辰之间。"}, {"name":"memos/bfbb9fd7b030b09e", "state":"NORMAL", "creator":"users/1", "createTime":"2023-12-26T09:17:10Z", "updateTime":"2024-01-07T22:12:33Z", "displayTime":"2023-12-26T09:17:10Z", "content":"飘落银杏几叶，\n沏起碧霞一盏。\n#闲笔 ", "visibility":"PUBLIC", "tags":["闲笔"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"飘落银杏几叶， 沏起碧霞一盏。"}, {"name":"memos/9c2fe46bbd98515e", "state":"NORMAL", "creator":"users/1", "createTime":"2023-11-11T06:01:27Z", "updateTime":"2023-11-11T06:03:40Z", "displayTime":"2023-11-11T06:01:27Z", "content":"即将迎来毕业🎓，到了为工作发愁的时刻，但愿能在未来达成自己的想法。\n还有，除了迎来毕业也迎来了爱情，一起面对未来。\n#动态 ", "visibility":"PUBLIC", "tags":["动态"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"即将迎来毕业🎓，到了为工作发愁的时刻，但愿能在未来达成自己的想法。 还有，除了迎来毕业也迎来了爱情，一起面对未来。"}, {"name":"memos/6cd6f2555aa681af", "state":"NORMAL", "creator":"users/1", "createTime":"2023-08-30T08:25:35Z", "updateTime":"2023-08-31T17:38:31Z", "displayTime":"2023-08-30T08:25:35Z", "content":"上个月突然想起吾爱破解，刚好赶上它2023年的T恤预售。#动态 ", "visibility":"PUBLIC", "tags":["动态"], "pinned":false, "attachments":[{"name":"attachments/6f737e8dd3783694", "createTime":"2023-08-30T08:25:26Z", "filename":"9241120a-9659-4ff6-bb32-c235c7b4a957.jpg", "content":"", "externalLink":"https://oss.sov.red/memos/2023/08/30/1693383925_9241120a-9659-4ff6-bb32-c235c7b4a957.jpg", "type":"image/jpeg", "size":"133960", "memo":"memos/6cd6f2555aa681af"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"上个月突然想起吾爱破解，刚好赶上它2023年的T恤预售。"}, {"name":"memos/552fd719d6e816c7", "state":"NORMAL", "creator":"users/1", "createTime":"2023-08-25T15:40:09Z", "updateTime":"2023-08-31T17:38:47Z", "displayTime":"2023-08-25T15:40:09Z", "content":"花与寄语赠予友人，\n愿孤城独居能习惯。\n苏上凤城映晚晖，\n沪中繁华绽芳辉。\n亲离苏州往沪城，\n福运随行伴新程。\n#动态 \n", "visibility":"PUBLIC", "tags":["动态"], "pinned":false, "attachments":[{"name":"attachments/3f47f32def63d2fb", "createTime":"2023-08-25T15:33:17Z", "filename":"b8555316-5931-4971-bbf3-0b81ba9a6b5d.jpg", "content":"", "externalLink":"https://oss.sov.red/memos/2023/08/25/1692977596_b8555316-5931-4971-bbf3-0b81ba9a6b5d.jpg", "type":"image/jpeg", "size":"169480", "memo":"memos/552fd719d6e816c7"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"花与寄语赠予友人， 愿孤城独居能习惯。 苏上凤城映晚晖， 沪中繁华绽芳辉。 亲离苏州往沪城，"}, {"name":"memos/cc56a07b8f29c48c", "state":"NORMAL", "creator":"users/1", "createTime":"2023-08-19T11:17:57Z", "updateTime":"2024-01-02T18:20:34Z", "displayTime":"2023-08-19T11:17:57Z", "content":"剁手的开端\n#动态 ", "visibility":"PUBLIC", "tags":["动态"], "pinned":false, "attachments":[{"name":"attachments/6b37925e7a54a17a", "createTime":"2023-08-19T11:17:14Z", "filename":"a5b3dcda-a0f5-49de-a077-12bcba10c331.jpg", "content":"", "externalLink":"https://oss.sov.red/memos/2023/08/19/1692443833_a5b3dcda-a0f5-49de-a077-12bcba10c331.jpg", "type":"image/jpeg", "size":"264787", "memo":"memos/cc56a07b8f29c48c"}, {"name":"attachments/85a5f400251b7882", "createTime":"2023-08-19T11:17:06Z", "filename":"7e22a424-d331-4af7-add5-ec0d33d5a182.jpg", "content":"", "externalLink":"https://oss.sov.red/memos/2023/08/19/1692443825_7e22a424-d331-4af7-add5-ec0d33d5a182.jpg", "type":"image/jpeg", "size":"227637", "memo":"memos/cc56a07b8f29c48c"}], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"剁手的开端"}, {"name":"memos/8558d4555ce4f269", "state":"NORMAL", "creator":"users/1", "createTime":"2023-08-18T18:16:12Z", "updateTime":"2023-08-18T18:42:03Z", "displayTime":"2023-08-18T18:16:12Z", "content":"#动态 memos更新到0.14，把flomo转memos的项目也更新了一下\n- [x] 支持0.14\n- [x] 支持创建时间同步", "visibility":"PUBLIC", "tags":["动态"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":true, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"memos更新到0.14，把flomo转memos的项目也更新了一下支持0.14 支持创建时间同步"}, {"name":"memos/30107a991269116c", "state":"NORMAL", "creator":"users/1", "createTime":"2022-03-23T04:37:40Z", "updateTime":"2024-01-07T22:13:03Z", "displayTime":"2022-03-23T04:37:40Z", "content":"那天春意盎然微风拂面\n凛冬过后杭州才给我展露她人情味的一面\n鼓楼曲声下的麻将\n西湖楼台上的扑克\n云栖竹径中的春游\n#闲笔 ", "visibility":"PUBLIC", "tags":["闲笔"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"那天春意盎然微风拂面 凛冬过后杭州才给我展露她人情味的一面 鼓楼曲声下的麻将 西湖楼台上的扑克"}, {"name":"memos/c62f3d7162c59f96", "state":"NORMAL", "creator":"users/1", "createTime":"2022-01-23T03:33:11Z", "updateTime":"2024-01-02T18:47:31Z", "displayTime":"2022-01-23T03:33:11Z", "content":"害怕午后时分一人睡大觉，醒来暮色已过，四下昏黑。倒也享受。\n#闲笔", "visibility":"PUBLIC", "tags":["闲笔"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"害怕午后时分一人睡大觉，醒来暮色已过，四下昏黑。倒也享受。"}, {"name":"memos/c64b0f104130f1d8", "state":"NORMAL", "creator":"users/1", "createTime":"2021-12-22T13:30:26Z", "updateTime":"2024-01-02T18:52:11Z", "displayTime":"2021-12-22T13:30:26Z", "content":"人生不如意事，十之八九。\n未至而立之年，沾之六七。\n世人说三道四，思之一二。\n#闲笔", "visibility":"PUBLIC", "tags":["闲笔"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"人生不如意事，十之八九。 未至而立之年，沾之六七。 世人说三道四，思之一二。"}, {"name":"memos/ad1035adc239bba6", "state":"NORMAL", "creator":"users/1", "createTime":"2021-10-11T21:31:12Z", "updateTime":"2024-01-07T22:15:34Z", "displayTime":"2021-10-11T21:31:12Z", "content":"应该多培养兴趣爱好，才更有期待，如追的剧更新、等的游戏发售、下周约个球、杰伦有新曲、一本有趣的书、喜欢的露营地……\n期待也许会伴随着生活的美感蜂拥而至，降临灰色的世界。\n#自己 #闲笔", "visibility":"PUBLIC", "tags":["自己", "闲笔"], "pinned":false, "attachments":[], "relations":[], "reactions":[], "property":{"hasLink":false, "hasTaskList":false, "hasCode":false, "hasIncompleteTasks":false}, "snippet":"应该多培养兴趣爱好，才更有期待，如追的剧更新、等的游戏发售、下周约个球、杰伦有新曲、一本有趣的书、喜欢的露营地……"}], "nextPageToken":""}