2014-08-31 Lingxian Kong
其实关于oslo.config的使用,在它代码库的oslo.config.cfg.py文件中有很详细的注释说明。但为了避免每次都去阅读一遍(而且有的用法确实不经常用),还是有选择的做一下笔记,以便查询使用。这个笔记不是关于oslo.config方法的全集,因为有些东西我认为没必要记录的就略去了。 因为oslo.config用了iniparser和argparse,所以最好是对它们有一些理解和掌握。 术语: 本篇对于英文中的options统一翻译成配置项 配置项支持的类型 strings, integers, floats, booleans, lists, 'multi strings' and 'key/value p 继续阅读 »
2017-06-14 Jamling
在写本文之前,我还以为自己对android的bitmap很熟悉,直到自己亲手写代码实践,才发现自己错了很多年。真是汗颜啊! more Bitmap Config 首先,根据Android API 25的文档简要说明一下Android的Bitmap.Config以下4个选项 继续阅读 »
2018-02-03 ruki
This release provide user custom menu config, like make menuconfig for linux: If you want to known more usage, please see online documents。 Source code: Github, Gitee. New features Add del_files() api to delete files in the files list Add rule(), add_rules() api to implement the custom build rule and improve add_ 继续阅读 »
2014-12-19 MoreFreeze
The config.yml file in the Freshman21 theme includes five parts. First part is the site info. 继续阅读 »
2017-12-30 Vaniot
git
配置 查看当前的配置 shell git config --list #查看当前仓库配置 git config --global --list #查看全局配置 设置 shell git config --global user.name "vaniot@example.com" #设置用户邮箱 git config --global user.email "vaniot" #设置用户名 配置文件 shell /.git/config #仓库的配置文件 ~/.gitconfig #用户全局配置 ## 仓库的相关操作 ### 创建仓库 shell git clone #git的克隆有两种方式 git init ### g 继续阅读 »
2014-07-25 刘太华
项目用fabric做代码更新, 大体流程是利用fabric的接口, 登录到指定服务器上, 干一些事情. 而实际fabric在执行这个过程的时候, 使用的是ssh协议. 奇怪的问题是, 当在批量操作一些更新的时候, 批量是指可能对单个服务器目标同时有多个fabric的ssh连接操作, 此时会报错ssh_exchange_identification, 已经在一次更新中导致个别项目漏了更新. 仔细google, 已经看到第2页了, 找到的说法几乎都是把 sshd:ALL加入 /etc/hosts.allow中, 但是明显不是我这个问题的答案. 继续阅读 »
2016-06-10 litaotao
1. 常用命令 git init # 初始化本地git仓库(创建新仓库) git config --global user.name "xxx" # 配置用户名 git config --global user.email "xxx@xxx.com" # 配置邮件 git config --global color.ui true # git status等命令自动着色 git config --global col 继续阅读 »
2014-02-05 Lingxian Kong
虚拟机上如果跑业务,启动时不可避免的要从外界获取一些信息,在OpenStack中,这些信息通常是,密钥信息, 网络信息,metadata, root密码,自定义文件等。这些信息获取来源有如下几种。 Config Drive Nova可以配置为,将userdata和metadata信息写入一种特殊的配置驱动--config drive,当虚拟机启动时自动挂载,虚拟机可以从该驱动获取信息(比如虚拟机id,主机名或user data),当DHCP服务不可用时,通常使用Config Drive传递网络配置信息(IP地址,掩码,或者网关)。 继续阅读 »
2017-12-29 Vaniot
一、安装配置Git 1.安装git,下载地址。 git中文教程Pro git 2.配置用户信息: $ git config --global user.name "vaniot"//用户名 $ git config --global user.email "vaniot@gmail.com"//填写自己的邮箱 3.配置SSH密钥 配置Github的SSH密钥可以让本地git项目与远程的github建立联系,让我们在本地写了代码之后直接通过git操作就可以实现本地代码库与Github代码库同步。 打开git本机是否存在SSH Keys检测 $ cd ~/. ssh //检测本机用户home目录下是否存在.ssh 若不存 继续阅读 »
2018-01-11 leung
``` db: image: mongo volumes: - ~/www/db:/data container_name: db restart: always www: build: . ports: - "12333:8000" volumes: - ~/www/logs:/www/logs - ~/www/public:/www/public - ~/www/config:/www/config links: - db container_name: www 继续阅读 »