上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 49 下一页
摘要: 先创建图片文件夹,图片名就是用户名 from tkinter import * from PIL import Image, ImageTk import time,random,os class RandomName(Frame): def __init__(self, parent=None, 阅读全文
posted @ 2024-04-23 09:53 朝阳1 阅读(101) 评论(4) 推荐(0)
摘要: 新建txt文本,输入名字,每个进行换行 from tkinter import * import time class RandomName(Frame): def __init__(self, parent=None, **kw): Frame.__init__(self, parent, kw) 阅读全文
posted @ 2024-04-23 09:13 朝阳1 阅读(203) 评论(0) 推荐(0)
摘要: 多进程数据是隔离的,也就是说大部分时间不同的用户登录,其实不在一个进程,没办法直接通信 如果是单进程版本其实就跟gin框架那些一样了多线程+channel不存在数据隔离的问题 main.go package main import ( "flag" "fmt" "log" "sync" "githu 阅读全文
posted @ 2024-04-22 17:49 朝阳1 阅读(158) 评论(0) 推荐(0)
摘要: gitee地址 https://gitee.com/newly-released_0/express-mysql-jwt jwt的代码 const express = require('express') const app = express() const compression = requi 阅读全文
posted @ 2024-04-22 17:42 朝阳1 阅读(22) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- from __future__ import unicode_literals, print_function from datetime import datetime import tornado from tornado.options impo 阅读全文
posted @ 2024-04-19 14:42 朝阳1 阅读(16) 评论(0) 推荐(0)
摘要: 地址 https://github.com/dockur/windows composer version: "3" services: windows: image: dockurr/windows container_name: windows environment: VERSION: "wi 阅读全文
posted @ 2024-04-19 09:15 朝阳1 阅读(288) 评论(0) 推荐(0)
摘要: 网上都是gin框架的优雅重启,这里配置一下fiber 先build一份version = "v0.0.1",再修改一份version = "v0.0.2",用for循环请求接口发现服务不会停止 package main import ( "fmt" "github.com/cloudflare/ta 阅读全文
posted @ 2024-04-18 12:50 朝阳1 阅读(98) 评论(0) 推荐(0)
摘要: 不是会员开不起,而是免费更有性价比 周董的歌也是免费听 https://zz123.com 阅读全文
posted @ 2024-04-17 15:27 朝阳1 阅读(75) 评论(0) 推荐(0)
摘要: 原理:pyautogui + opencv进行图片识别,然后进行操作.所以记得装 pip install opencv-python import pyautogui import pyperclip pyautogui.PAUSE = 1#每次延迟1秒 pyautogui.FAILSAFE=Tru 阅读全文
posted @ 2024-04-16 17:38 朝阳1 阅读(466) 评论(0) 推荐(1)
摘要: import ( "context" "encoding/json" "fmt" "github.com/elastic/go-elasticsearch/v8" "github.com/elastic/go-elasticsearch/v8/esapi" "github.com/elastic/g 阅读全文
posted @ 2024-04-16 16:34 朝阳1 阅读(500) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 49 下一页