首页
斐讯设备
疯言疯语
系统运维
编程语言
网站建设
友情连接
推荐
autojs
Search
1
charles破解注册码(含windows和mac)最新安装教程「亲测有效」
39 阅读
2
【omv5安装教程二】N1盒子Armbian系统下,一条命令搞定Openmediavault(OMV5)安装
18 阅读
3
【N1安装飞牛优化四】关闭不必要服务优化记录
12 阅读
4
博客简介
11 阅读
5
SSH如何访问fe80开头的ipv6????
11 阅读
登录
Search
标签搜索
JAVA
JAVA学习系列
docker
Linux
js
N1
git
模块二
端口
模块一
模块五
模块九
数据库
模块四
镜像
模块三
模块六
MySQL
百度网盘
nginx
DaiMaFengZi
累计撰写
588
篇文章
累计收到
9
条评论
首页
栏目
斐讯设备
疯言疯语
系统运维
编程语言
网站建设
页面
友情连接
推荐
autojs
搜索到
272
篇与
的结果
2022-04-21
node.js 中获取当前时间戳——毫秒级/秒级
毫秒级时间戳Date.now();秒级时间戳Math.floor(Date.now() / 1000);
2022年04月21日
2 阅读
0 评论
0 点赞
2022-04-21
Node.JS 获取时间戳(毫秒,秒)
/** * 获取当前时间戳(毫秒) */ function getNowMilliSecond(){ return Math.floor(Date.now()); } /** * 获取当前时间戳(秒) */ function getNowSceond(){ return Math.floor(Date.now() / 1000); } //当前时间戳(毫秒) console.log("curMilliSecond=%d",getNowMilliSecond()); //输出:curMilliSecond=1608090151913 //当前时间戳(秒) console.log("curSecond=%d",getNowSceond()); //输出:curSecond=1608090151
2022年04月21日
2 阅读
0 评论
0 点赞
2022-03-06
nodejs的npm修改源
在国内用npm install时,速度总是不尽如人意,解决办法是修改npm的数据源npm config set registry https://registry.npm.taobao.org修改后可以通过这个进行测试npm config get registry如果更改好了之后提示错误。Nothing to stop. No server is running for the store at /root/.pnpm-store/v3 ERROR This modules directory was created using the following registries configuration: {"default":"https://registry.npm.taobao.org/"}. The current configuration is {"default":"https://registry.npmjs.org/"}. To recreate the modules directory using the new settings, run "pnpm install"解决办法:运行pnpm install -g
2022年03月06日
0 阅读
0 评论
0 点赞
2022-02-23
无用的代码保存
/*设置首页公告样式*/ .notice { padding: 20px; border: 1px dashed #e6e6e6; color: #969696; position: relative; display: inline-block; width: 100%; /* background: #fbfbfb50; */ border-radius: 10px; background: rgb(255 255 255); } /*设置聚焦图样式*/ .top-feature { width: 100%; height: auto; margin-top: 10px; border-radius: 10px; background: rgb(255 255 255); } /*设置发现样式 h1.fes-title, h1.main-title { transition: color 1s; transition: border 1s; border-radius: 10px; background: rgb(255 255 255); }*/ /*设置首页文章样式*/ .post-list-thumb { float: left; width: 100%; height: 300px; position: relative; margin: 0px 0 20px border-radius: 10px; background-color: rgb(255 255 255); box-shadow: 0 1px 20px -6px rgb(0 0 0 / 50%); opacity: 1; transition: box-shadow .3s ease; } /*设置文章内容背景和边角*/ .entry-content { position: relative; background: rgb(255 255 255); border-radius: 10px; } /*设置文章页尾版权*/ .post-footer { padding: 20px 0; border-bottom: 1px dashed #ddd; border-top: 1px dashed #ddd; margin-top: 5px; height: 82px; border-radius: 10px; background: rgb(255 255 255); } /*设置文章评论博主说明框*/ .author-profile { padding: 30px 12.78%; text-align: center; border-radius: 10px; background: rgb(255 255 255); } /*设置评论框样式*/ .comments { clear: both; overflow: hidden; width: 100%; padding: 60px 0 80px; list-style: none; padding: 0 10px; max-width: 800px; margin-left: auto; margin-right: auto; border-radius: 10px; background: rgb(255 255 255); margin-top: 5px; } /*设置上一篇下一篇的上下间隔*/ .post-squares { overflow: hidden; width: 100%; margin: 10px 0; background: #000; border-radius: 10px; } /*设置页尾样式*/ .site-footer { padding: 2%; background: rgb(255 255 255); max-width: 800px; margin-left: auto; margin-right: auto; border-radius: 10px; } /*设置首页页尾下一页样式*/ #pagination a { padding: 13px 35px; border: 1px solid #d6d6d6; border-radius: 50px; color: #adadad; background: rgb(255 255 255); } /*设置分类页面的文章显示样式*/ .post-list { margin: 0 0 2%; position: relative; margin: 0px 0 20px border-radius: 10px; background-color: rgb(255 255 255); box-shadow: 0 1px 20px -6px rgb(0 0 0 / 50%); opacity: 1; transition: box-shadow .3s ease; border-radius: 10px; } /*设置分类页面文章热度样式*/ .info-meta { margin-top: 10px; position: absolute; top: 20px; opacity: 0; padding-top: 8px; border-top: 1px solid #ddd; transform: translate3d(-150px,0,0); visibility: hidden; transition: .7s all ease; -webkit-transition: .6s all ease; -moz-transition: .6s all linear; -o-transition: .6s all ease; -ms-transition: .6s all ease; background-color: rgb(255 255 255); border-radius: 10px; } /*设置分类页面文章头像样式*/ .feature { position: absolute; margin: 35px 12px; } /*设置分类页面文章发布时间样式*/ .p-time { position: absolute; right: 20px; top: 16px; font-size: 12px; color: #989898; letter-spacing: 0; } /*设置分类页面文章显示框高度样式*/ .post-more { margin-top: 0px; text-align: right; }
2022年02月23日
2 阅读
0 评论
0 点赞
2022-02-12
易语言,填表模式_JS表达式
填表模式_JS表达式 写法,是从元素的 body 以外的结构就开始写,还是随意结构都可以的。比如<body><div><p><div id="cc"></div></></div></body>直接div#CC 这样还是 DIV>P>DIV#CC答案:网页f12 右键 copy selector~
2022年02月12日
0 阅读
0 评论
0 点赞
2022-02-12
易语言正则表达式使用大全所有汉字字母数字符号匹配
正则匹配所有汉字:编辑框2.内容 = 正则文本 (编辑框1.内容, “([\xb0-\xf7][\xa0-\xfe]+)”)所有符号:编辑框2.内容 = 正则文本 (编辑框1.内容, “([\~\!\@\#\$\%\^\&\*\(\)\_\+\{\}\:\<\>\?\[\]\,\.\/\;\'\`\-\=\n\r])”) // 易语言不允许直接写出“"作为正则匹配方式,你可以写的其他地方来调用 //空格符我在正则那篇说了,([\s]),汉字位置为出现???所有正数字:编辑框2.内容 = 正则文本 (编辑框1.内容, “([0-9]+.[0-9]+|[0-9]+)”)所有字母:编辑框2.内容 = 正则文本 (编辑框1.内容, “([A-Za-z]+)”)所有数字(包括负数):(.*?)
2022年02月12日
1 阅读
0 评论
0 点赞
2022-02-12
易语言删首尾空(),无法删除的空白符,解决方案。
精易模块也有这个BUG。解决办法,子文本替换(),原文本 字符(9) 替换为 “”如果还是遇到删不掉的,那么,先调试成字节集,看看是哪个字节集多出来的。然后用子文本替换 字符(这里写字节集),即可。
2022年02月12日
0 阅读
0 评论
0 点赞
2022-02-12
【自用】易语言程序猿养眼高级配色
下载地址https://cdn.jsdelivr.net/gh/daimafengzi/daimafengzi/daimafengzi/20200923165601.zip
2022年02月12日
0 阅读
0 评论
0 点赞
1
...
33
34