码迷,mamicode.com
首页 >  
搜索关键字:UNC    ( 7160个结果
go 字符串拼接
func main() { s1 := "Hello" + " " + "World" fmt.Println(s1) //Hello World ss := []string{"Hello", "World"} fmt.Println(strings.Join(ss, " ")) //Hello ...
分类:其他好文   时间:2021-06-02 17:07:23    阅读次数:0
go 类型转换
func main() { s := "Hello" b := []byte(s) fmt.Println(len(b), cap(b)) fmt.Println(b) } 5 8[72 101 108 108 111] //字符串转换为字节 []byte(s) []byte转换为 string 转 ...
分类:其他好文   时间:2021-06-02 17:04:01    阅读次数:0
Overthewire-natas25
Overthewire level 25 to level 26 进入页面发现它输出了很长一段内容,仔细一瞅全是废话...但是它提供了一个选择英文和德文的界面,可以选择展示在首页上的文本的语言。 <?php // cheers and <3 to malvina // - morla functio ...
分类:其他好文   时间:2021-06-02 16:42:54    阅读次数:0
win10系统 更新后与VMware Workstation 与 Device/Credential Guard 不兼容问题
VMware Workstation 与 Device/Credential Guard 不兼容。在禁用 Device/Credential Guard 后,可以运行 VMware Workstation。 最主要的就是关掉这个Device Guard; 进入组策略设置来关闭Credential G ...
分类:Windows程序   时间:2021-06-02 14:02:06    阅读次数:0
页面上移、下移、保存、编辑备份
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@include file="/context/mytags.jsp"%> <t:base type="jquery,ea ...
分类:其他好文   时间:2021-06-02 13:14:22    阅读次数:0
nrm ls后报错 throw new ERR_INVALID_ARG_TYPE(name, 'string', value);
解决方法: C:\Users\xuefen.lv\AppData\Roaming\npm\node_modules\nrm\cli.js的第17行 注释并修改为如下 const NRMRC = path.join(process.env[(process.platform == 'win32') ? ...
分类:其他好文   时间:2021-06-02 13:01:43    阅读次数:0
divmod()
python3的divmod()内置函数 首先,函数的名字div 表示地板除法 5//2 = 2; mod表示取余数 5%2=1 所以divmod()函数:接收两个数字类型(非复数)参数,返回一个包含商和余数的元组(a // b, a % b) 举例子: def my_divmod(a: int , ...
分类:其他好文   时间:2021-06-02 12:46:20    阅读次数:0
用js模拟键盘输入
从目前找到的资料来看,这个模拟不能起到所有的作用,主要体现在键盘的有一些事件不能完整的体现 出来 先做个记录吧。 //这个就是用来输入字科符的 var inpEle=document.getElementById("stockCode"); var st ='000001' var evt = ne ...
分类:Web程序   时间:2021-06-02 12:08:21    阅读次数:0
图片放大,发大镜效果
// html部分 <div class="fdj"> <div class="left"> <div class="zhezhao"></div> </div> <div class="right"></div> </div> // css部分 .fdj{ width:100vw; height: ...
分类:其他好文   时间:2021-05-25 17:55:05    阅读次数:0
数值扩展
// 1 Number.EPSILON 是 js 表示最小精度 // console.log(Number.EPSILON); // 2.220446049250313e-16 // console.log(0.1 + 0.2); // 0.30000000000000004 // // 判断两个数 ...
分类:其他好文   时间:2021-05-24 15:45:29    阅读次数:0
7160条   上一页 1 ... 4 5 6 7 8 ... 716 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!