上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 38 下一页
摘要: //1.call方法 // 2.apply方法 // 3.arguments对象 function add(a, b){ console.log(a + b); } add(1, 2); // call方法第一个参数是this指针,即调用者,第二个参数开始,就是原函数的实际参数 add.call(n 阅读全文
posted @ 2024-01-26 12:30 __username 阅读(9) 评论(0) 推荐(0) 编辑
摘要: demo import threading import time def print_thread_info(thread_name): """线程函数,打印线程名称和ID以及一些文本""" for i in range(3): time.sleep(1) thread_id = threadin 阅读全文
posted @ 2024-01-24 10:00 __username 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 网上的教程千篇一律,但是我的不成功,于是自己写了个。 环境:ubuntu20 首先安装,参考其它教程【一般ubuntu都自带了】 然后: vim /etc/crontab 回车看到: 最后输入: 32 * * * * root su - root -c "cd /root/chao_code/fg 阅读全文
posted @ 2024-01-21 18:41 __username 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 环境 vs2022 报错 C6031 返回值被忽略:"scanf"解决办法【C语言】 解决 2.在禁用特定警告中 添加 4996 ,6031 原因 因为在ANSI C中没有scanf_s(),只有scanf(),但是scanf()在读取时不检查边界,所以可能会造成内存泄露 阅读全文
posted @ 2024-01-17 17:31 __username 阅读(689) 评论(0) 推荐(0) 编辑
摘要: 解决 pip install crypto pycryptodome pip uninstall crypto pycryptodome pip install pycryptodome 参考链接 https://blog.csdn.net/Ahuuua/article/details/108800 阅读全文
posted @ 2024-01-17 15:57 __username 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 记录一些好软件 pdf文件转化:https://pdfgear.com/zh/ A Windows and Office activator:https://github.com/massgravel/Microsoft-Activation-Scripts JetBrains Activation 阅读全文
posted @ 2024-01-08 22:50 __username 阅读(20) 评论(0) 推荐(0) 编辑
摘要: # 使用 NLTK 进行文本处理 import nltk from nltk.tokenize import word_tokenize path = r"E:\Code\Python\录制\python-crawler\作业\test" nltk.data.path.append(path) # 阅读全文
posted @ 2024-01-06 19:53 __username 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 链接:https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z 生成10秒曲子代码 好难听 from pydub import AudioSegment import numpy as np # Helper function to create a 阅读全文
posted @ 2023-12-30 20:21 __username 阅读(17) 评论(0) 推荐(0) 编辑
摘要: toRefs是Vue.js 3中的一个实用函数,用于将响应式对象转换为普通对象,其中每个属性都是一个ref对象。这在某些情况下很有用,特别是想要将一个包含多个响应式属性的对象传递给子组件时。 以下是toRefs的基本用法: import { reactive, toRefs } from 'vue' 阅读全文
posted @ 2023-12-25 20:46 __username 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 安装pnpm pnpm create vite@latest my-vue-app -- --template vue cd my-vue-app pnpm install pnpm run dev 文档 https://cn.vitejs.dev/ 阅读全文
posted @ 2023-12-25 07:38 __username 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 38 下一页

本文作者:DIVMonster

本文链接:https://www.cnblogs.com/guangzan/p/12886111.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。