随笔分类 - 开发工具
摘要:http://www.flounder.com/ebcdictoascii1.htm https://www.browserling.com/tools/text-to-ascii https://theasciicode.com.ar/extended-ascii-code/acute-accen
阅读全文
摘要:一、查看topic列表 mqadmin.cmd topicList -n localhost:9876 二、查看consumer mqadmin.cmd consumerProgress -n localhost:9876 参考资料 https://www.cnblogs.com/gmq-sh/p/
阅读全文
摘要:WORKSPACE_TIMEZONE=UTC 改为 WORKSPACE_TIMEZONE=PRC 参考资料 Laradock注意事项 - caibaotimes - 博客园 (cnblogs.com)
阅读全文
摘要:5W1H系列 | Nacos 帮我们解决什么问题?(配置管理篇)-阿里云开发者社区 (aliyun.com)
阅读全文
摘要:打开.m2/settings.xml,找到mirrors,把其中的默认设置注释掉,添加下面这段: <mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> <name>Nexus aliyun</name> <url>http://mav
阅读全文
摘要:wget http://mirrors.advancedhosters.com/apache/ant/binaries/apache-ant-1.10.12-bin.tar.gz sudo tar xvfvz apache-ant-1.10.12-bin.tar.gz -C /optsudo ln
阅读全文
摘要:1.修改 .env ,把 INSTALL_AMQP = false 改为 INSTALL_AMQP = true 2.切换到laradock目录下,执行 docker-compose up -d rabbitmq 第2步出现了:error pulling image configuration: G
阅读全文
摘要:# 注意 -F: 与 '{print $1}' 之间要有空格 cat /etc/passwd | awk -F: '{print $1}'
阅读全文
摘要:一、安装中文语言包 执行 sudo dpkg-reconfigure locales 使用空格键选中en_US.UTF-8、zh_CN.UTF-8,按tab切换到OK,接着默认选中en_US.UTF-8 二、重启wsl 以管理员方式打开cmd,依次执行下面的命令 net stop LxssManag
阅读全文
摘要:依次打开settings => Appearance & Behavior => System Settings ,找到 Reopen projects on startup 选项,改为 New window 或 Ask 即可
阅读全文
摘要:一、从github下载源码,执行下面的命令 git clone https://github.com/vuejs/devtools.git 二、编译chrome扩展 cd devtools yarn install yarn build 在执行yarn build(或npm run build)你可
阅读全文
摘要:前言:在Windows 11下配置kafka,请确保已经配置好了jdk和zookeeper,本文使用的是jdk 11.0.11 + zookeeper 3.7.0,配置jdk的方法请参考其他资料,这里不再赘述 一、配置zookeeper 下载地址 https://dlcdn.apache.org/z
阅读全文