- 在终端进入目录:cd ~/
- 如果没有 .pip 文件夹,那么就新建这个文件夹,mkdir .pip
- 然后在 .pip 文件夹内新建一个文件 touch pip.conf
- 编辑pip.conf 文件,写入第三方源
|
|
|
|
|
|
|
|
|
|
|
|
安装
|
|
生成GPG密匙对
|
|
初始化密码存储
|
|
查看密码目录树
|
|
插入一个新密码
|
|
显示已有密码
|
|
生成密码
|
|
copy密码
|
|
from… import
如 from A import b,相当于
import A
b = A.b
再如:
“from t2 import var1” 相当于:
import t2
var1 = t2.var1
在此过程中有一个隐含的赋值的过程
import… as
import A as B,给予A库一个B的别称,帮助记忆。
pyCharm 当中使用VirtualEnv
python 类
|
|
问题:我们有时候希望写的javabean转换为Map方便数据操作,那么我们怎么做呢?
|
|
为了写一个富文本编辑器上个周末和这个周一真的很累,本来想着用一个开源大神写的richEdit来实现发现还是有很多局限性的,richedit 就是使用了html 5的一个global 属性contenteditable属性让div具有了可编辑内容的效果,但是如果我想在div中添加一个图片,图片点击后右上角会出现一个删除按钮这样稍微复杂一些的操作就不行了,因为这个属性是让div里面包含的所有的子元素都可以编辑。
定义和用法
tagName 属性返回元素的标签名。
在 HTML 中,tagName 属性的返回值始终是大写的。
git 仓库中添加子仓库
git 删除子仓库
Delete the relevant section from the .gitmodules file.
Stage the .gitmodules changes git add .gitmodules.
Delete the relevant section from .git/config .
Run git rm –cached path_to_submodule (no trailing slash).
Run rm -rf .git/modules/path_to_submodule.
问题一: 重新add子module的时候提示: ‘repo’ already exists in the index
解决办法:
|
|
在.gitmodules配置文件中删除子module的相关配置后要记得使用
git rm –cached path_to_submodule (no trailing slash).删除缓存否则别人删除的子module会一直报url找不到的错误
|
|
hexo new post "article-tile"
这个时候就可以在hexo根目录下的source\_posts下看到新生成的文件article-title.md
hexo g
hexo d
上面的两个命令可以组合成一个
还可以使用组合命令:hexo g -d
以上内容是生成和发布博客的一般流程,下面我记录一下我的github + hexo搭建流程供有需要的人参考和学习
申请github
搭建hexo
$ wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
安装主题
Yilia
|
|