jenkins部署vue项目 安装nodejs 配置nodejs的源,去官网查看需要安装的版本和介绍 V8.x: # curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - yum安装node.js yum ins ...
分类:
其他好文 时间:
2021-06-23 17:07:38
阅读次数:
0
一、MoveIt!运动学插件IKFAST 引言:MoveIt!中的运动学求解器 1.KDL Kinematics and Dynamics Library (KDL)是MoveIt!中的默认运动学插件,在使用MoveIt! Setup Assistant进行模型配置时,可以进行配置。KDL的优点是可 ...
分类:
其他好文 时间:
2021-06-22 18:04:32
阅读次数:
0
VUe2.0 和 Vue3.0 的生命周期作对比 beforeCreate -> 请使用 setup() created -> 请使用 setup() beforeMount -> onBeforeMount mounted -> onMounted beforeUpdate -> onBefore ...
分类:
其他好文 时间:
2021-06-21 20:37:32
阅读次数:
0
官方指导: https://github.com/Trusted-AI/adversarial-robustness-toolbox/wiki/Get-Started#setup 安装记录: 方法 1:使用 conda 安装 conda install -c conda-forge adversar ...
分类:
其他好文 时间:
2021-06-20 17:44:00
阅读次数:
0
from turtle import * def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for ...
分类:
其他好文 时间:
2021-06-18 20:05:27
阅读次数:
0
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:
其他好文 时间:
2021-06-18 20:00:08
阅读次数:
0
服务安装与启动 官方文档:https://docs.jumpserver.org/zh/master/install/setup_by_fast/ 官方给出的一键安装脚本(注:要求系统内存≥4G): curl -sSL https://github.com/jumpserver/jumpserver ...
分类:
其他好文 时间:
2021-06-16 17:59:44
阅读次数:
0
1、docker介绍 详情参见:https://www.cnblogs.com/xiaoyuanqujing/p/11839932.html 0 各种软件用什么语言写的 zabbix(监控软件):php ansible(批量管理主机,执行命令,无angent):python # angent客户端 ...
分类:
其他好文 时间:
2021-06-16 17:31:04
阅读次数:
0
#### vue3 如何获取 dom 1. 通过 ref 1. 在 html 标签上指定 ref 属性 2. 在 setup 中定义并返回.注意:**标签上的 ref 属性名需要跟 setup 中的对应** ```javascript <h1 ref="msg">Welcome to vue3 ap ...
分类:
其他好文 时间:
2021-06-15 18:23:11
阅读次数:
0
from turtle import *def square(size=50): pencolor('orange') for i in range(4): fd(size) left(90)def main(): setup(800,600) speed(0) for i in range(10) ...
分类:
其他好文 时间:
2021-06-15 18:22:41
阅读次数:
0