码迷,mamicode.com
首页 >  
搜索关键字:3d format    ( 13577个结果
sqli-labs系列——第二关
less2 and 1=1有回显,and 1=2无回显,为数值型注入 order by 4–+报错,有3行 查询数据库名 ?id=0' union select 1,(select group_concat(schema_name) from information_schema.schemata) ...
分类:数据库   时间:2021-03-16 13:40:45    阅读次数:0
node中的url模块
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
git导出代码的方法~archive
问题 如果你用过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
Kubernetes-Docker基础
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
mysql - 查看表结构命令
-- 查看表结构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 源码阅读
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
参数里时间格式的转换
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
我的 Emacs 配置文件
前面字体设的是 Ubuntu Mono,没有的可以去Ubuntu里拷一份,字体放大了点。剩下的是一些基本的操作,可按需取用。 开启自动全屏仅适用于Windows系统。 1 (custom-set-variables 2 ;; custom-set-variables was added by Cus ...
分类:系统相关   时间:2021-03-06 14:43:24    阅读次数:0
摄像头调用
from __future__ import print_function import numpy as np import cv2 as cv def main(): def decode_fourcc(v): v = int(v) return "".join([chr((v >> 8 * i ...
分类:其他好文   时间:2021-03-06 14:32:36    阅读次数:0
13577条   上一页 1 ... 10 11 12 13 14 ... 1358 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!