休闲迷宫效果图(Ps:copy美团) 休闲迷宫代码 <html lang="en"> <head> <meta charset="utf-8"> <title>休闲迷宫</title> <style type="text/css"> span{ display: inline-block; widt ...
分类:
其他好文 时间:
2020-06-30 10:36:30
阅读次数:
72
go中的copy,一般习惯来讲都是值拷贝,但是这种拷贝存在的问题是锁对象的“失效” 如何对一个对象进行nocopy处理,下面是一种方式 package main import ( "fmt" ) type noCopy struct{} // Lock is a no-op used by -cop ...
分类:
其他好文 时间:
2020-06-29 22:58:40
阅读次数:
63
import os import shutil import time start_time = time.time() # 需要被复制的文件夹 old_path = r'C:\old_dir' new_path = r'C:\new_dir' all_list = os.listdir(old_p ...
分类:
编程语言 时间:
2020-06-29 22:38:13
阅读次数:
131
Typora的日常使用方法 原文地址:https://www.jianshu.com/p/a6a6a22e9393 ” Markdown 是一种轻量级标记语言,创始人是约翰·格鲁伯(John Gruber)。它允许人们 “使用易读易写的纯文本格式编写文档,然后转换成有效的 HTML 文档。” 1. ...
分类:
其他好文 时间:
2020-06-29 18:28:23
阅读次数:
67
最近写项目,由于设备原因,需要将一台电脑的项目拷贝到另一台电脑上,在另一个电脑上继续编写。由于配置属性原因,最终还是在另一台电脑上创建了新项目,只是把这些cpp文件都复制过去了,然后重新部署属性。 背景:这个项目运行时有加入外部参数,完整项目(包含环境部署)拷贝到新电脑上,发现每次运行也是自带事先设 ...
分类:
编程语言 时间:
2020-06-29 15:38:26
阅读次数:
73
SORT COPY 2010-10-31 23:02 第一种方式: 006300 //SYSIN DD * 006400 SORT FIELDS=COPY 006500 /* 第二种方式: 006300 //SYSIN DD * 006400 OPTION COPY006500 /* ...
分类:
其他好文 时间:
2020-06-29 11:55:53
阅读次数:
69
类别的创建 integer.h @interface integer : NSObject @property int integer; @end integer.m @implementation integer @end 类别 integer+display.h integer+display. ...
分类:
其他好文 时间:
2020-06-29 00:20:44
阅读次数:
61
1.查询镜像id、或者名称 docker images 2.打标签 docker tag nginx-dev xxx/nginx-dev-copy:v1 nginx-dev:为容器名称(也可以是容器id) xxx: 为 https://hub.docker.com/ 自己注册的用户名 nginx-d ...
分类:
其他好文 时间:
2020-06-28 18:59:40
阅读次数:
165
根据库名获取所有表的信息 SELECT * FROM information_schema.`TABLES` WHERE TABLE_SCHEMA = 'erp'; 根据库名获取所有表名称和表说明 SELECT TABLE_NAME, TABLE_COMMENT FROM information_s ...
分类:
数据库 时间:
2020-06-28 18:58:56
阅读次数:
61
sp_send_dbmail [ [ @profile_name = ] 'profile_name' ] [ , [ @recipients = ] 'recipients [ ;n ]' ] [ , [ @copy_recipients = ] 'copy_recipient [ ;n ]' ] ...
分类:
数据库 时间:
2020-06-28 11:16:10
阅读次数:
57