Converting any HTML template into a Django template The normal way Any HTML, CSS, JS or BootStrap template can be converted into a Django compatible t ...
分类:
Web程序 时间:
2020-09-18 02:57:40
阅读次数:
47
<template> <div> <div class="goods"> <div class="menu-wrapper" ref="menuWrapper"> <ul> <li v-for="(item,index) in dishes" :key="index" class="menu-ite ...
分类:
其他好文 时间:
2020-09-18 02:53:28
阅读次数:
28
一、安装 yum install -y ansible 二、密钥授权 ssh-keygen -t rsa注释:-t type指定要创建的密钥类型。 rsa 加密算法 三、模块介绍(https://www.cnblogs.com/mcsiberiawolf/articles/10056777.html ...
分类:
其他好文 时间:
2020-09-18 02:00:30
阅读次数:
37
Cotree 题意: 由N个点构成两棵树,问在两颗树之间连接一条边之后,各点之间距离和的最小值为多少 题解: 进行两次DFS找到两颗树的重心,将两个重心连接起来,再进行一次DFS求出距离和即可 #include <iostream> #include <map> #include <vector> ...
分类:
其他好文 时间:
2020-09-18 01:35:09
阅读次数:
30
将管理节点的脚本上传至被管理节点执行,理论上此模块不许需要被管理服务器上有python [root@ceph1 ~]# cat a.sh touch /tmp/ansible-script [root@ceph1 ~]# ansible webservers -m script -a "a.sh" ...
分类:
其他好文 时间:
2020-09-18 01:10:39
阅读次数:
31
官网 [root@ceph1 ~]# cat a.repo [epel] name=Extra Packages for Enterprise Linux 7 - $basearch #baseurl=http://download.fedoraproject.org/pub/epel/7/$bas ...
分类:
其他好文 时间:
2020-09-18 01:09:51
阅读次数:
28
自定义组件 navbarvue (胶囊底部高度 - 状态栏的高度) + (胶囊顶部高度 - 状态栏内的高度) = 导航栏的高度 <template> <view class="navbar"> <view class="navbar-fixed"> <!-- 状态栏小程序撑起高度 --> <view ...
分类:
微信 时间:
2020-09-18 00:23:26
阅读次数:
73
2020年9月13日13:50:39 定义(what) 科比会三步上篮,我会三步上篮 科比会投篮,我会投篮 科比会打铁,我会打铁 科比 = 我 Define the skeleton of an algorithm in an operation, deferring some steps to s ...
分类:
其他好文 时间:
2020-09-18 00:06:34
阅读次数:
29
1 #include <iostream> 2 #include<binaryNode.hpp> 3 #include<cassert> 4 #include<queue> 5 #include<vector> 6 7 using namespace std; 8 9 template<class ...
分类:
编程语言 时间:
2020-09-17 23:50:30
阅读次数:
40
ansible运行报错:CryptographyDeprecationWarning,本文旨在解决该问题。
分类:
其他好文 时间:
2020-09-17 22:44:47
阅读次数:
58