日常生活的交流与学习

首页 新随笔 联系 管理
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页

2022年11月26日 #

摘要: D:\code_gitee\go_example\main.go package main import ( "fmt" ) func main() { // 显示声明类型 const a string = "hello" // 隐式声明类型 const b = "hello" // 多重赋值 co 阅读全文
posted @ 2022-11-26 23:19 lazycookie 阅读(24) 评论(0) 推荐(0) 编辑

2022年11月25日 #

摘要: res = JSON.stringify({ x: 10.0, y: 3.0, angle: 0 }); console.log(res); byteArr = [] for(let c of res){ byteArr.push(c.charCodeAt().toString(16)) } con 阅读全文
posted @ 2022-11-25 19:54 lazycookie 阅读(34) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221125173515693-1092716301.png) ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221125173637678-1151949652.png) 阅读全文
posted @ 2022-11-25 17:35 lazycookie 阅读(173) 评论(0) 推荐(0) 编辑

2022年11月23日 #

摘要: 自己命名的文件名或者包名,不能和已有的安装包重复,否则导入错误 阅读全文
posted @ 2022-11-23 09:49 lazycookie 阅读(19) 评论(0) 推荐(0) 编辑

2022年11月21日 #

摘要: 工厂模式 阅读全文
posted @ 2022-11-21 23:18 lazycookie 阅读(10) 评论(0) 推荐(0) 编辑

2022年11月20日 #

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120200239864-799467158.png) 阅读全文
posted @ 2022-11-20 20:03 lazycookie 阅读(21) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120200037433-558157284.png) 阅读全文
posted @ 2022-11-20 20:01 lazycookie 阅读(23) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120195612530-119171326.png) 阅读全文
posted @ 2022-11-20 19:56 lazycookie 阅读(133) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120195334158-718688101.png) 阅读全文
posted @ 2022-11-20 19:53 lazycookie 阅读(18) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120194936194-742751764.png) 阅读全文
posted @ 2022-11-20 19:49 lazycookie 阅读(14) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120194732980-1589161286.png) 阅读全文
posted @ 2022-11-20 19:47 lazycookie 阅读(16) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120194404345-1429190215.png) 阅读全文
posted @ 2022-11-20 19:44 lazycookie 阅读(38) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120194002557-1783148300.png) 阅读全文
posted @ 2022-11-20 19:40 lazycookie 阅读(137) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120145758129-1148362771.png) 阅读全文
posted @ 2022-11-20 14:58 lazycookie 阅读(45) 评论(0) 推荐(0) 编辑

摘要: TS DOM 类型的声明 lib.dom.d.ts HTMLInputElement <input type="text" @change="handleChange" /> const handleChange = (evt: Event) => { console.log((evt.target 阅读全文
posted @ 2022-11-20 14:44 lazycookie 阅读(113) 评论(0) 推荐(0) 编辑

摘要: 需要开启两个实验性选项和关闭一个语法检查 阅读全文
posted @ 2022-11-20 14:33 lazycookie 阅读(48) 评论(0) 推荐(0) 编辑

摘要: init函数 绑定事件 阅读全文
posted @ 2022-11-20 10:30 lazycookie 阅读(18) 评论(0) 推荐(0) 编辑

摘要: todolist的设计思路 阅读全文
posted @ 2022-11-20 10:28 lazycookie 阅读(19) 评论(0) 推荐(0) 编辑

摘要: HTMLElement HTMLButtonElement 阅读全文
posted @ 2022-11-20 10:26 lazycookie 阅读(31) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221120102334657-152600689.png) 阅读全文
posted @ 2022-11-20 10:23 lazycookie 阅读(25) 评论(0) 推荐(0) 编辑

2022年11月19日 #

摘要: C:\my_script\videoRemote\remoteKey.ahk  GroupAdd, remoteKey, ahk_exe msedge.exe GroupAdd, remoteKey, ahk_exe chrome.exe GroupAdd, remoteKey, ahk_exe 阅读全文
posted @ 2022-11-19 22:47 lazycookie 阅读(52) 评论(0) 推荐(0) 编辑

摘要: C:\my_script\typora\typora - 副本.ahk ;热键标记 ; !感叹号代表Alt键 ; # 井号代表 Windows 键 ; ^ 上三角号代表 Ctrl键 ; + 加号代表 Shift 键 ; 执行 ; ::代表按下前面快捷键后会执行后面的命令。 ; Typora ; 快捷 阅读全文
posted @ 2022-11-19 22:46 lazycookie 阅读(128) 评论(0) 推荐(0) 编辑

摘要: C:\my_script\mspaint\msPaint.ahk ;热键标记 ; !感叹号代表Alt键 ; # 井号代表 Windows 键 ; ^ 上三角号代表 Ctrl键 ; + 加号代表 Shift 键 ; 执行 ; ::代表按下前面快捷键后会执行后面的命令。 #IfWinActive ahk 阅读全文
posted @ 2022-11-19 22:46 lazycookie 阅读(132) 评论(0) 推荐(0) 编辑

摘要: C:\my_script\2anki\cnblog2anki\cnblog2anki.py from base64 import encode import os import re import shutil import easygui from subprocess import run fr 阅读全文
posted @ 2022-11-19 22:18 lazycookie 阅读(42) 评论(0) 推荐(0) 编辑

摘要: 单例模式 阅读全文
posted @ 2022-11-19 11:29 lazycookie 阅读(18) 评论(0) 推荐(0) 编辑

2022年11月18日 #

摘要: threejs加载STL文件 效果: 加载 stl 格式的文件需要设置材质 material; stl、obj 都是静态模型,不可以包含动画, fbx 除了包含几何、材质信息,可以存储骨骼动画等数据。 代码: 加载STL文件 requestAnimationFrame() <!DOCTYPE htm 阅读全文
posted @ 2022-11-18 22:18 lazycookie 阅读(338) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221118161612732-2109875722.png) ![image](https://img2022.cnblogs.com/blog/1222814/202211/1222814-20221118162059624-1456780019.png) 阅读全文
posted @ 2022-11-18 16:21 lazycookie 阅读(324) 评论(0) 推荐(0) 编辑

2022年11月17日 #

摘要: const isValid = function (s) { const stack = []; for (let i = 0; i < s.length; i++) { let c = s[i]; switch (c) { // 左括号入栈,即将与左括号匹配的右括号入栈 case "(": sta 阅读全文
posted @ 2022-11-17 19:59 lazycookie 阅读(18) 评论(0) 推荐(0) 编辑

摘要: E:\song\code2md\main.py import os import re import shutil import easygui from easygui import * from pathlib import Path class User(EgStore): def __ini 阅读全文
posted @ 2022-11-17 19:26 lazycookie 阅读(15) 评论(0) 推荐(0) 编辑

摘要: E:\song\cpc_log_v6_fastapi\app.py from fastapi import FastAPI, Depends from fastapi.middleware.cors import CORSMiddleware from fastapi.openapi.docs im 阅读全文
posted @ 2022-11-17 19:12 lazycookie 阅读(88) 评论(0) 推荐(0) 编辑

摘要: // three.js import * as THREE from 'three'; import SpriteText from 'three-spritetext'; // 引入tween import * as TWEEN from '@tweenjs/tween.js'; import t 阅读全文
posted @ 2022-11-17 14:14 lazycookie 阅读(538) 评论(0) 推荐(0) 编辑

摘要: https://vuejsexamples.com/ 阅读全文
posted @ 2022-11-17 13:30 lazycookie 阅读(42) 评论(0) 推荐(0) 编辑

摘要: E:\song\threejs_learn\vite-project\index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <link rel="icon" type="image/svg+xml" h 阅读全文
posted @ 2022-11-17 09:34 lazycookie 阅读(29) 评论(0) 推荐(0) 编辑

摘要: // three.js import * as THREE from 'three'; import SpriteText from 'three-spritetext'; // 引入tween import * as TWEEN from '@tweenjs/tween.js'; import t 阅读全文
posted @ 2022-11-17 08:15 lazycookie 阅读(72) 评论(0) 推荐(0) 编辑

2022年11月16日 #

摘要: C:\Users\Administrator\Desktop\手写\01_instanceOf.js function instance_of(target, origin) { let targetP = target.__proto__; let originP = origin.prototy 阅读全文
posted @ 2022-11-16 23:23 lazycookie 阅读(29) 评论(0) 推荐(0) 编辑

摘要: D:\code_gitee\python_cnblog2anki_and_weibo2anki\main.py import os import re import shutil import easygui from bs4 import BeautifulSoup from easygui im 阅读全文
posted @ 2022-11-16 23:17 lazycookie 阅读(83) 评论(0) 推荐(0) 编辑

摘要: 工厂模式 三个按钮控制一个header框,成功,警告,错误,分别对应三个颜色 创建了一个Base类,里面存放着Success,Warning,Error三个类的公共方法和属性 Factrory类,根据不同的status创建不同的对象, 然后想要扩展的东西就是再各自的类里面进行扩展, 再Base类,还 阅读全文
posted @ 2022-11-16 23:15 lazycookie 阅读(18) 评论(0) 推荐(0) 编辑

摘要: D:\code_gitee\python_code2md_gitee\code2md\main.py import os import re import shutil import easygui from easygui import * from pathlib import Path cla 阅读全文
posted @ 2022-11-16 22:46 lazycookie 阅读(112) 评论(0) 推荐(0) 编辑

摘要: 创建几何体的顶点数据可以手动定义,可以自定义一个函数创建,也可使用 three.js 提供的函数创建,本节课主要讲解一些 2D 或 3D 线条的构造函数及其方法属性, 如何通过这些构造函数获得一系列曲线上的顶点数据。 three.js中的曲线类型 线性曲线(直线) LineCurve LineCur 阅读全文
posted @ 2022-11-16 16:28 lazycookie 阅读(880) 评论(0) 推荐(0) 编辑

摘要: E:\song\agv_fastapi_socket2\fastapi-socketio-example-main\app.py import os import pathlib import secrets import time from typing import Optional impor 阅读全文
posted @ 2022-11-16 14:11 lazycookie 阅读(298) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页