摘要:
使用 pip 安装 selenium 下载 chromedriver,添加在PATH中 阅读全文
摘要:
参考官方文档:https://docs.docker.com/engine/installation/linux/ubuntu/ 1. 安装一些使 apt 可以使用 https 的源 sudo apt-get install -y --no-install-recommends \ apt-tran 阅读全文
摘要:
# mysql 容器的启动docker run -d -p 3306:3306 -v /database_files/products/data:/var/lib/mysql -v /database_files/products/conf.d:/etc/mysql/conf.d -e MYSQL_ 阅读全文
摘要:
相关的环境: win 7 x64 vs2013 community python 2.7.10 AMD64 python 3.5 AMD64 LLVM 3.5 cmake 3.5 YouCompleteMe 不支持 python 2.7.11 一、编译vim支持python 下载vim代码,命令: 阅读全文
摘要:
set rtp+=$VIM/vimfiles/bundle/Vundle.vim/ call vundle#rc('$VIM/vimfiles/bundle/') Bundle 'VundleVim/Vundle.vim' 阅读全文
摘要:
编译使用的gcc版本和gcov的版本对不上的话,使用lcov和gcov的时候会报错lcov的错误:[xx@localhost XXX]$ lcov --capture --directory cov --output-file xxx.info --test-name xxxCapturing co... 阅读全文
摘要:
gvim的插件安装笔记 1.安装vunble插件 该插件主要用于管理别的插件,借助与git,从github来下载插件,实现自动安装前提条件是git安装正确,可以听过cnd使用,并且可以正确访问github 首先从github下载vunble,https://github.com/Valloric/Y 阅读全文
摘要:
mysql存储过程和存储函数存数函数代码示例:DROP PROCEDURE IF EXISTS calc_ci_day_suc_rate;delimiter //CREATE FUNCTION calc_ci_day_suc_rate(dt DATE, exp_version VARCHAR(64)... 阅读全文
摘要:
动态创建类的声明使用内置函数type,原型:class type(name, bases, dict)name是类的名字,相当于__class__bases是类的基类,元组,可以有多个基类,但是基类必须直接或者间接继承自object类,否则会报错dict是类的变量,字典类型,相当于静态变量,与在__... 阅读全文
摘要:
安装和配置ubuntu server 已经自动安装了progresql,故安装步骤就省略初始postgresql没有密码,不能使用,需要先设置密码,命令(从网上随意找的)如下:sudo su postgres -c psql template1ALTER USER postgres WITH PAS... 阅读全文