摘要: 前言: 近日。学习BUN中,突发奇想,如何实现一个直播平台? 0. BUN的安装 安装BUN 1. 初始化项目 bun init 2. 实现serve信令服务器 index.ts import Bun from 'bun'; import type {ServerWebSocket} from 'b 阅读全文
posted @ 2024-12-10 18:39 demo_you 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1. 若存在一棵树 例如: const tree = [ { id: '1', children: [ { id: '1-1', children: [ { id: '1-1-1', children: [ { id: '1-1-1-1', children: [] }, { id: '1-1-1- 阅读全文
posted @ 2024-05-24 15:25 demo_you 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1. 前提 需要有已激活github copilot的github账户, 且登录! python 环境 go环境 2. 获取Token 安装requests pip install requests 将下面代码保存为get_copilot_token.py #!/usr/bin/env python 阅读全文
posted @ 2024-03-04 15:15 demo_you 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Result 需要的同学可以直接查看结果 下载地址:点击下载 Start pnpm init pnpm install cheerio exceljs Code import Excel from "exceljs"; import cheerio from 'cheerio' import htt 阅读全文
posted @ 2024-01-11 17:20 demo_you 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 在表格页面中,我们经常用到带有展开收起功能的过滤表单,看似很简单的功能,但是实现起来通常不那么优雅。 我们使用grid布局来实现这个就非常简单: .search-form { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap 阅读全文
posted @ 2023-11-06 11:47 demo_you 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 最近开发了个项目,基座是VsCode插件,通过iframe集成了一个Vue3的子应用,子应用需要很频繁的与基座通讯。 我们可以通过 `parent.postMessage` 来向基座传递消息,通过 `window.addEventListener('message', () => {})`来监听来自 阅读全文
posted @ 2023-06-05 18:54 demo_you 阅读(44) 评论(0) 推荐(0) 编辑
摘要: ```typescript import {Spin} from 'antd' import ReactDOM from 'react-dom/client' import type {SpinProps} from 'antd' class Loading { private container 阅读全文
posted @ 2023-05-27 20:23 demo_you 阅读(51) 评论(0) 推荐(0) 编辑
摘要: ### 在Angular中有一个很好用的功能,即在不封装组件的情况下复用模板代码: > eg: ```html hello, {{title}} ``` > 我们通过`ng-template`和`ng-container`的`ngTemplateOutlet`即可实现模板复用,非常的好用!! ### 阅读全文
posted @ 2023-05-24 11:26 demo_you 阅读(567) 评论(0) 推荐(1) 编辑
摘要: 1. 修改Angular CLI webpack 配置 1.1 安装 @angular-builders/custom-webpack npm install -D @angular-builders/custom-webpack 1.2 新建webpack配置文件extra-webpack.con 阅读全文
posted @ 2022-11-30 16:35 demo_you 阅读(1160) 评论(0) 推荐(0) 编辑
摘要: 之前在vue2中实现过函数式调用组件,那么在vue3中该如何实现呢? 让我们在vue3中来实现一个函数式调用的组件吧 1. 在/src/components下创建Toast文件夹 在Toast文件夹下创建toast.vue <script setup lang="ts"> import {ref, 阅读全文
posted @ 2022-07-07 18:55 demo_you 阅读(3223) 评论(2) 推荐(1) 编辑