上一页 1 2 3 4 5 6 7 8 9 ··· 97 下一页
摘要: vue could not resolve解决方法 package.json package-lock.json改成正确的文件就好了 最好的方法就是重新新建项目 然后npm install安装 这样保证不会有版本的问题出现 阅读全文
posted @ 2022-10-28 09:30 newmiracle宇宙 阅读(863) 评论(0) 推荐(0) 编辑
摘要: python下载视频的方法 you-get pip install you-get 安装 稳的一匹 阅读全文
posted @ 2022-10-09 16:30 newmiracle宇宙 阅读(34) 评论(0) 推荐(0) 编辑
摘要: import win32gui, win32ui, win32con, win32api import time # GetDesktopWindow 获得代表整个屏幕的一个窗口(桌面窗口)句柄 hd = win32gui.GetDesktopWindow() # 获取所有子窗口 hwndChild 阅读全文
posted @ 2022-09-29 22:10 newmiracle宇宙 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 重启php-fpm的方法 netstat -ntlp 找到进城id 然后 kill -9 进城 然后再循环 返回查看进城id 直到php-fpm端口关闭位置 阅读全文
posted @ 2022-09-28 17:42 newmiracle宇宙 阅读(122) 评论(0) 推荐(0) 编辑
摘要: vuecli公用node_module的方法 直接软连接 mklink /D "C:\Users\gonnsai0\AppData\Local\Google\Chrome\User Data\Default\Cache" "D:\Chrome\Cache" 就行了 反正这个文件只有读取 不会写入 软 阅读全文
posted @ 2022-09-05 10:07 newmiracle宇宙 阅读(92) 评论(0) 推荐(0) 编辑
摘要: from random import randint from PIL import Image class SearchEntry(): def __init__(self, x, y, g_cost, f_cost=0, pre_entry=None): self.x = x self.y = 阅读全文
posted @ 2022-08-20 10:34 newmiracle宇宙 阅读(89) 评论(0) 推荐(0) 编辑
摘要: python获取图片中某个像素的坐标 模糊查询 from PIL import Image def zhaose(pic,r1,g1,b1): img = Image.open(pic) pixels = img.load() width, height = img.size xy={}; xy[' 阅读全文
posted @ 2022-08-16 00:01 newmiracle宇宙 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: -- 测试协程 local thread = require('thread') --处理协程的错误 local thread_id = thread.create(function() nLog('2再运行协程') nLog('这里触发了就会继续切换到主线程 不会因为延迟堵塞') msleep(3 阅读全文
posted @ 2022-08-14 10:14 newmiracle宇宙 阅读(217) 评论(0) 推荐(0) 编辑
摘要: local dituxylist={{x=2,y=2},{x=3,y=3}} print(dituxylist[1].x); 对象 数组 阅读全文
posted @ 2022-08-11 12:51 newmiracle宇宙 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 触摸精灵教程1 1 先注册账号 这里需要注意有2个账号!! 1个是开发平台的 1个是手机上的安卓触摸精灵的账号 2个不一样的 2个账号注册好 然后进入开发平台 绑定安卓触摸精灵的账号就可以了 3 雷电模拟器 要设置桥接模式 网络设置下 就好 4 打开TS studio编辑 main.lua 写个di 阅读全文
posted @ 2022-08-08 21:02 newmiracle宇宙 阅读(194) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 97 下一页