摘要:
先执行test1(),再执行test2: function test1() { return new Promise(resolve => { setTimeout(() => resolve("test1"), 2000); }); } function test2() { console.log 阅读全文
摘要:
1. 登陆管理后台-外观-主题选项 2. SEO设置 3. 找到编辑页脚第二行信息-点击文本,输入以下信息,备案号改成自己的。 <a href="http://www.beian.miit.gov.cn/" rel="external nofollow" target="_blank">京ICP备1 阅读全文
摘要:
1. 通过post方法请求 curl -d 'type=0?enable=1' "http://127.0.0.1/api/test" 传递json: curl -H "Content-Type: application/json" -X POST -d '{"type":0, "enable":" 阅读全文
摘要:
查找test目录及其子目录下的.ipynb_checkpoints文件或文件夹并删除 find test -name ".ipynb_checkpoints" -exec rm -rf '{}' \; 阅读全文
摘要:
Json字符串: curl -s http://ip-api.com/json/ {"status":"success","country":"Hong Kong","countryCode":"HK","region":"HCW","regionName":"Central and Western 阅读全文
摘要:
#include<stdio.h> int main() { printf("Hello World!\n"); } Ubuntu 环境:sudo apt updatesudo apt install build-essentialgcc hello.c -o hello./helloHello W 阅读全文
摘要:
1.说明:<config> 指配置文件名,如dhcp,firewall,fstab等 uci set <config>.<section>=<section-type> 增加一个节点到文件中 uci set <config>.<section>.<option>=<value> 增加一个选项和值到节 阅读全文
摘要:
/etc/nginx/sites-available/default location中添加autoindex_localtime on; server { listen 80 default_server; root /var/www/; # Add index.php to the list i 阅读全文
摘要:
1. 当前登陆生效: jenkins -> 系统管理 -> 脚本命令行:System.setProperty('org.apache.commons.jelly.tags.fmt.timeZone', 'Asia/Shanghai') 2. 日程表里这样写 TZ=Asia/Shanghai 0 10 阅读全文
摘要:
1. Linux上的Docker CE仍然是免费的 https://forums.docker.com/t/license-to-use-docker-community-edition/114840/3 WSL的情况: 2. 我是否需要付费才能继续使用 Docker Desktop? https: 阅读全文
摘要:
python -m SimpleHTTPServer 8080 python -m Web服务器模块 [端口号,默认8000] “Web服务器模块”有如下三种:BaseHTTPServer: 提供基本的Web服务和处理器类,分别是HTTPServer和BaseHTTPRequestHandler。S 阅读全文
摘要:
1. PUTTY 支持SSH, Telnet, Serial串口 https://files.cnblogs.com/files/v5captain/putty.zip https://the.earth.li/~sgtatham/putty/0.77/w64/putty.exe 2. HFS - 阅读全文
摘要:
服务器端监听9995端口: nc -l 9995 客户端连接: 服务器IP是192.168.1.10没有安装的nc命令的可以使用telnet命令: nc 192.168.1.10 9995或telnet 192.168.1.10 9995 #telnet可以验证端口没有开放,不能进行双向通信 nc通 阅读全文
摘要:
循环显示格言,效果见本博客页面拉到最底部。 <!-- 循环展示 --> <div align="center"> <span id="ewan">永远相信美好的事情即将发生!</span> <script type="text/javascript"> const arr = [ '只要人人都能献出 阅读全文
摘要:
https://www.test-ipv6.com/ https://ipv6-test.com/ https://ipw.cn/ipv6ping/ IPV6网站:http://ipv6.ustb.edu.cn 阅读全文