安装Mac OS 上使用 brew安装:
1$ brew install rust
官方文档
安装完成后执行如下命令:
1$ rustc --version
如果看到如下信息,表明你安装成功:
1rustc 1.67.0-nightly (e0098a5cc 2022-11-29)
格式:rustc x.y.z(abcabcabc yyyy-mm-dd)
更新 rustup 本身版本:
1$ rustup update
卸载 rust所有程序:
1$ rustup self uninstall
更新工具链:
1$ rustup update
Hello World在安装 ...
简介Multipass 是一个轻量虚拟机管理器,是由 Ubuntu 运营公司 Canonical 所推出的开源项目。运行环境支持 Linux、Windows、macOS。在不同的操作系统上,使用的是不同的虚拟化技术。在 Linux 上使用的是 KVM、Window 上使用 Hyper-V、macOS 中使用 HyperKit 以最小开销运行 VM,支持在笔记本模拟小型云。
同时,Multipass 提供了一个命令行界面来启动和管理 Linux 实例。下载一个全新的镜像需要几秒钟的时间,并且在几分钟内就可以启动并运行 VM。
打开任意 MacOS 命令行,键入以下命令查看版本12345# ...
在 mac终端运行命令的时候会被提示没有同意 xcode证书 ,这个时候需要在 Terminal中同意 license。
123You have not agreed to the Xcode license agreements. You must agree to both license agreements below in order to use Xcode.Press the 'return' key to view the license agreements at '/Applications/Xcode.app/Contents/Reso...
问题工程里有这么一段代码:
1234<template> <img id="logo" alt="Wails logo" src="./assets/images/logo-universal.png"/> <HelloWorld/></template>
IDE 提示错误信息: The template root requires exactly one element.
原因这是因为 vue的模版中只能有一个根节点,所以在 <template>中插入第二...
问题服务器出现问题:
1There appears to be trouble with your network connection. Retrying
原因yarn 超时
解决办法123456#查看代理yarn config list#删除代理yarn config delete proxy#更换淘宝镜像yarn config set registry https://registry.npm.taobao.org
以上。
问题在 git仓库中新建了一个仓库,想要把本地的工程目录推送上去:
123git initgit add .git commit "提交说明"
添加远程 git仓库:
1git remote add origin https://<access_token>@github.com/sakishum/xxx.git
推送到远程仓库:
1git push origin main
提示错误:
1234567git push -u origin mainTo https://github.com/sakishum/xxx.git ! [rejected] ...
简介
官网: zincsearch项目地址: zinc,该项目开源目前 Star数 9.7k+。开源协议:Apache 2.0
Zinc 是一个进行全文索引的开源搜索引擎,企业内部搭建搜索引擎常用 Solr、Elasticsearch,它们都是使用 Java实现的,底层依赖 Lucene,Java相对来说占用较多内存。 Zinc目标就是作为 Elasticsearch的轻量级替代品。 Zinc运行所需的内存不到 100 MB,使用 bluge(bulge是 Golang实现的全文检索库,功能上类似 lucene)作为底层索引库。与 elasticsearch相比,它非常简单且易于操作。...
安装在 mac上使用 brew安装 ansible:
1brew install ansible
安装完成后进行验证:
1ansible --version
基础功能建立一个文件夹,例如在 Documents下建立一个名为 ansible的目录:
1mkdir -p ~/Documents/ansible
接着在目录下建立一个 hosts文件,命令:
1vim ~/Documents/ansible/hosts
內容如下:
1234567[localhost]127.0.0.1 ansible_ssh_user=root ansible_ssh_port=22[all:vars]a...
避免 Ansible 无法存取第一次登录的 Server问题最近使用 ansible批量管理服务器,这批机器都没在我本机登录过,在首次运行 ansible-playbook操作时出现报错:
1fatal: [cache_01]: FAILED! => {"msg": "Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this. Please add t...
背景最近在工作中需要访问redis,为了方便使用,将redis的地址、端口、密码等写到配置中读取。例如:
12345# redis configurationredis: db: 0 addr: 'redis-ip:10086' password: '******'
这样配置是没问题的,但计划赶不上变化,当需求改成写个命令行工具来读访问 redis时,就用不上配置文件了。redis的配置需要从命令行的参数传入,例如:
1cmd subcmd --redis_addr 'redis-ip:10086' --redis_pw...