上一页 1 2 3 4 5 6 7 8 9 ··· 32 下一页
摘要: 一、Docker安装 推荐:docker教程 通过 uname -r 命令查看你当前的内核版本 uname -r 使用 root 权限登录 Centos。确保 yum 包更新到最新。 yum update 卸载旧版本(如果安装过旧版本的话) sudo yum remove docker docker 阅读全文
posted @ 2023-06-16 14:30 奥兰王子 阅读(659) 评论(0) 推荐(0) 编辑
摘要: 从事多年的开发,对于.net可以说有一定的总结,有关于教科书般的文档,献于交流.本文整理了当前企业web开发中的管理系统,商城等系统的常用开发技术栈。 C#常见运算符一元运算符(+、-、!、~、++、--)算术运算符(*、/、%、+ 、 – )移位运算符(<< 、>> )关系和类型测试运算符(==、 阅读全文
posted @ 2023-06-16 14:17 奥兰王子 阅读(175) 评论(0) 推荐(0) 编辑
摘要: getElementsByTagName 和 getElementsByClassName 这两个方法查找多个 dom 元素,返回的是 htmlcollection 类型,是伪数组而不是真数组,故不能使用数组的方法。 我们可以使用数组原型配合 slice 方法,利用 call,apply,bind 阅读全文
posted @ 2023-06-16 14:10 奥兰王子 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 目录 用途: 网站介绍 Httpbin访问方式 常用接口地址: 本地部署httpbin 在Windows系统中部署Httpbin服务 在Linux系统中部署Httpbin服务 官方网站:https://httpbin.org/或者:http://httpbin.org/开源地址:https://gi 阅读全文
posted @ 2023-06-16 10:29 奥兰王子 阅读(412) 评论(0) 推荐(1) 编辑
摘要: // 声明变量名为a的对象var a = {a:1,b:2,c:"wangwei"};// 将JSON对象转化为JSON字符,赋值给变量let strResult =JSON.stringify(a)// 查看变量strResult是什么类型typeof strResult // 'string' 阅读全文
posted @ 2023-06-14 18:38 奥兰王子 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 在使用pip进行软件包安装的时候出现问题: WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.解决: mkdir -p ~ 阅读全文
posted @ 2023-06-13 14:49 奥兰王子 阅读(58) 评论(0) 推荐(0) 编辑
摘要: [ -d ~/aa ] || mkdir ~/aa [ -f ~/sample.txt ] && echo "Fiel exits" || touch ~/sample.txt 查看前一条命令的返回值 echo $? echo $? 查看命令执行成功与否的原理“进程生命周期” 当一个进程执行完毕时, 阅读全文
posted @ 2023-06-11 10:26 奥兰王子 阅读(674) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/m0_52137388/article/details/123218806 阅读全文
posted @ 2023-06-10 07:35 奥兰王子 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://www.yuucn.com/a/1592417.html 阅读全文
posted @ 2023-06-09 17:28 奥兰王子 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1.打开centos的yum文件夹 cd /etc/yum.repos.d/ 2.安装wget yum -y install wget 3.用wget下载repo文件,选择下面其中一个即可 wget http://mirrors.aliyun.com/repo/Centos-7.repo wget 阅读全文
posted @ 2023-06-09 17:17 奥兰王子 阅读(587) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 32 下一页