url模块是用来解析url的 有三个方法: parse: 可以将字符串转换成对象 format:和parse相反,将对象转换成字符串 relove:拼接url parse使用 1 const url = require("url") 2 const urlStr = "https://usernam ...
分类:
Web程序 时间:
2021-03-16 13:23:35
阅读次数:
0
问题 如果你用过svn,一定知道svn export,可以用来从代码库中导出一份干净的代码(没有.svn等)。git是否有类似功能呢? git archieve 可以用于将库中代码打包。 1. 基本用法: git archive --format tar.gz --output "./output. ...
分类:
其他好文 时间:
2021-03-15 11:26:06
阅读次数:
0
/// <summary> /// 日期格式 2019-04 /// </summary> public const string DATE_MONTH_FORMAT = "yyyy-MM"; /// <summary> /// 日期格式 2019-04-25 /// </summary> publ ...
分类:
其他好文 时间:
2021-03-15 10:39:21
阅读次数:
0
Docker版本 docker-ce.x86_64 # 社区版 docker-ee # 企业版 docker镜像站:https://hub.docker.com/ Kubernetes:https://kubernetes.io/zh/ 阿里云镜像站:https://developer.aliyun ...
分类:
Web程序 时间:
2021-03-11 12:07:03
阅读次数:
0
-- 查看表结构desc 表名; -- 查看表中字段的结构信息select table_name,column_name,column_comment from information_schema.columns where table_schema ='表所在的库' and table_name ...
分类:
数据库 时间:
2021-03-10 12:59:11
阅读次数:
0
Tinyply 源码阅读 ply格式介绍见:http://paulbourke.net/dataformats/ply/ tinyply项目路径为:https://github.com/ddiakopoulos/tinyply/ 这里先放一个ply的示例: ply format ascii 1.0 ...
分类:
其他好文 时间:
2021-03-09 13:21:52
阅读次数:
0
分割回文串 回溯算法 求所有解,所以使用回溯算法来枚举所有的解。代码如下 class Solution { /** * @param String $s * @return String[][] */ function partition($s) { $res = []; $this->backtr ...
分类:
其他好文 时间:
2021-03-08 14:15:59
阅读次数:
0
quickSort def partition(arr,low, high): i=(low-1) p=arr[high] for j in range(low, high): if arr[j]<=p: i+=1 arr[i],arr[j]=arr[j],arr[i] arr[i+1],arr[h ...
分类:
编程语言 时间:
2021-03-08 14:00:56
阅读次数:
0
https://blog.csdn.net/holdlg/article/details/62436537 time.time() 得到浮点型的时间戳 time.localtime() 都得到 struct_time time.strftime() 可以这么理解 “string format tim ...
分类:
其他好文 时间:
2021-03-06 14:58:28
阅读次数:
0
前面字体设的是 Ubuntu Mono,没有的可以去Ubuntu里拷一份,字体放大了点。剩下的是一些基本的操作,可按需取用。 开启自动全屏仅适用于Windows系统。 1 (custom-set-variables 2 ;; custom-set-variables was added by Cus ...
分类:
系统相关 时间:
2021-03-06 14:43:24
阅读次数:
0