common

layui 自定义模块

丶灬走出姿态 提交于 2019-11-30 12:15:22
新建模块目录modules 新建common.js layui.define(['jquery'], function (exports) { var $ = layui.jquery; var obj = { test: function () { alert('test from common'); } }; //输出接口 exports('common', obj); }); 配置 layui.config({ base: '/xadmin/lib/layui/modules/' //自定义layui组件的目录 }).extend({ //设定组件别名 common: 'common', // 如果相同可以不设置别名 }); 使用 layui.use(['common'], function () { let common = layui.common; common.test(); } ); 来源: https://www.cnblogs.com/jiqing9006/p/11584174.html

Ansible的roles角色详解

雨燕双飞 提交于 2019-11-30 10:44:11
1. Roles目录结构 2. Roles基本使用 这个roles主要是将已知的文件结构预先是由roles定义好的,它会自动的加载这里面的文件内容,例如任务handlers,都会自动去加载,也就是roles对已知的进行分类分组,使我们很容易的去管理,roles提供一种层次化和结次化组织你的playbook,这也是我们去使用它的目的,它不像playbook是一个具体的使用,而roles它是一个组织的方式,这种方式也是通过ansible的一个最佳实践。 1. roles的目录结构 它在目录下有个site,yaml,这个是一个统一的入口,因为它会关联很多的文件,所以我们只需要对着这个统一的入口进行操作 另外就是角色或者功能模块进行部署,像下面的webservers.yaml和fooservers.yml site.yml 统一的入口,会关联很多的文件 webservers.yml 角色或者功能模块进行部署 fooservers.yml hosts 角色或者功能模块进行部署 roles/ 角色目录,下面又分为不同的模块 common/ 像common 和webservers,相当于两个模块,common用于存放一些公共资源的地方,例如可能会有很多的项目会用到共同的变量,或者有相同的依赖,那么都可以在common的这模块下去定义,这个模块也可以称为角色,这个角色下面还有很多的目录

LeetCode #4 Longest Common Subsequence

匆匆过客 提交于 2019-11-30 06:03:58
Question Given two strings text1 and text2 , return the length of their longest common subsequence. A subsequence of a string is a new string generated from the original string with some characters(can be none) deleted without changing the relative order of the remaining characters. (eg, "ace" is a subsequence of "abcde" while "aec" is not). A common subsequence of two strings is a subsequence that is common to both strings. If there is no common subsequence, return 0. 动归经典问题,最长公共子序列,注意是子序列而不是子串 Example 1: Input: text1 = "abcde", text2 = "ace" Output: 3 Explanation: The longest common

在Ubuntu12.04上的Common Lisp开发环境配置

南楼画角 提交于 2019-11-30 05:15:19
一,安装最新的Emacs 1,清理旧的emacs sudo apt-get update sudo apt-get install sudo apt-get purge emacs emacs-snapshot-common emacs-snapshot-bin-common emacs-snapshot emacs-snapshot-el emacs-snapshot-gtk emacs23 emacs23-bin-common emacs23-common emacs23-el emacs23-nox emacs23-lucid auctex apel emacs24 emacs24-bin-common emacs24-common emacs24-common-non-dfsg emacs-el 2,添加PPA: sudo add-apt-repository ppa:cassou/emacs sudo apt-get update 3,安装emacs-snapshot sudo apt-get install emacs-snapshot-el emacs-snapshot-gtk emacs-snapshot 或者安装emacs24 sudo apt-get install emacs24 emacs24-el emacs24-common-non-dfsg 二,安装

selenium.common.exceptions.ElementNotVisibleException: Message: element not interactable报错

点点圈 提交于 2019-11-30 01:22:10
selenium.common.exceptions.ElementNotVisibleException: Message: element not interactable 页面元素不可交互 调试发现其实是 self.driver.find_element_by_xpath("//li[text()='新闻']")找到了多个元素 重新定位一下保证找到的值是唯一的就ok 来源: https://www.cnblogs.com/wenm1128/p/11543643.html

How to pass common dictionary data to every page in django

感情迁移 提交于 2019-11-30 00:17:32
I have a common data {the logged-in user's message number) to display on every page. I can simply pass to template as dict={'messagenumber':5} return render_to_response('template.html',dict,context_instance=RequestContext(request)) But it looks tedious if i have this dict data pass to very page. Is there an easier way to pass common data to every page? Thanks django django-templates share | improve this question edited Sep 27 '11 at 12:41 Evgeny 3,669 2 2 gold badges 42 42 silver badges 53 53 bronze badges asked Jul 11 '10 at 2:13 icn icn 6,518 31 31 gold badges 87 87 silver badges 126 126

Leetcode: Longest Common Subsequence

断了今生、忘了曾经 提交于 2019-11-29 21:26:32
Given two strings text1 and text2, return the length of their longest common subsequence. A subsequence of a string is a new string generated from the original string with some characters(can be none) deleted without changing the relative order of the remaining characters. (eg, "ace" is a subsequence of "abcde" while "aec" is not). A common subsequence of two strings is a subsequence that is common to both strings. If there is no common subsequence, return 0. Example 1: Input: text1 = "abcde", text2 = "ace" Output: 3 Explanation: The longest common subsequence is "ace" and its length is 3.

uboot自定义添加命令

荒凉一梦 提交于 2019-11-29 20:59:31
1、添加命令   1.u-boot的命令格式:   U_BOOT_CMD(name,maxargs,repeatable,command,”usage”,"help")   name:命令的名字,不是一个字符串;   maxargs:最大的参数个数;   repeatable:命令是可重复的;   command:对应的函数指针   2.在uboot/common目录下,随便找一个cmd_xxx.c文件,将cmd_xxx.c文件拷贝一下,并重新命名为cmd_hello.c     cp cmd_xxx.c cmd_hello.c   3.进入到cmd_hello.c中,修改     a:修改宏U_BOOT_CMD     U_BOOT_CMD宏参数有6个:     第一个参数:添加的命令的名字     第二个参数:添加的命令最多有几个参数(注意,假如你设置的参数个数是3,而实际的参数个数是4,那么执行命令会输出帮助信息的)     第三个参数:是否重复(1重复,0不重复)(即按下Enter键的时候,自动执行上次的命令)     第四个参数:执行函数,即运行了命令具体做啥会在这个函数中体现出来     第五个参数:帮助信息(short)     第六个参数:帮助信息(long)     b:定义执行函数     执行函数格式:int do_hello(cmd_tbl_t *cmdtp

【IDEA使用技巧】(4) —— IDEA 构建Java Maven项目、导入Eclipse项目、多Module Maven项目

微笑、不失礼 提交于 2019-11-29 11:20:42
1.IntelliJ IDEA构建Java Maven项目 1.1. IDEA构建Java Maven项目 ①选择Create New Project,选择创建Maven项目,并勾选Create from archetype,选择:maven-archetype-quickstart,点击Next; ②为创建的Maven项目命名GroupId与ArtifactId,其中GroupID是项目组织唯一的标识符,实际对应JAVA的包的结构,是main目录里java的目录结构;ArtifactID就是项目的唯一的标识符,实际对应项目的名称,就是项目根目录的名称。更多详细请阅读博客: https://www.cnblogs.com/yaowen/p/8603573.html ③点击Next,在如下界面配置好对应的Maven安装时的配置信息即可,点击Next、Finish完成Maven项目创建。 ④Maven项目会自动从配置的镜像url路径下载依赖包,并构建build项目,后期项目需要引入其他依赖Jar包,只需在pom.xml中的<dependency></ dependency>中引入对应的依赖文件即可; 1.2. IDEA对Java Maven项目打包 进入Terminal命令界面,在本地项目路径下执行:mvn clear compile进行编译,运行mvn clean

Google Guava 类库简介

孤者浪人 提交于 2019-11-29 09:57:33
Guava 是一个 Google 的基于java1.6的类库集合的扩展项目,包括 collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, 等等. 这些高质量的 API 可以使你的JAVa代码更加优雅,更加简洁,让你工作更加轻松愉悦。下面我们就开启优雅Java编程学习之旅!   项目相关信息:   官方首页:http://code.google.com/p/guava-libraries   官方下载:http://code.google.com/p/guava-libraries/downloads/list   官方文档:http://docs.guava-libraries.googlecode.com/git/javadoc http://www.ostools.net/apidocs/apidoc?api=guava   源码包的简单说明:   com.google.common.annotations:普通注解类型。   com.google.common.base:基本工具类库和接口。   com.google.common.cache:缓存工具包,非常简单易用且功能强大的JVM内缓存。   com