# Path to your oh-my-zsh installation.export ZSH=/home/zcy/.oh-my-zsh# Set name of the theme to load.# Look in ~/.oh-my-zsh/themes/# Optionally, if yo ...
分类:
其他好文 时间:
2018-05-16 18:43:38
阅读次数:
177
首先第一步,现在命令行中输入npm i element-ui,如: 接着在mian.js 中添加 import ElementUI from 'element-ui'import 'element-ui/lib/theme-chalk/index.css'Vue.use(ElementUI) 如:= ...
分类:
其他好文 时间:
2018-05-16 13:20:50
阅读次数:
160
单下划线(_) 通常情况下,会在以下3种场景中使用: 1、在解释器中:在这种情况下,“_”代表交互式解释器会话中上一条执行的语句的结果。这种用法首先被标准CPython解释器采用,然后其他类型的解释器也先后采用。 Python 1 2 3 4 5 6 7 8 9 10 >>> _ Traceback ...
分类:
编程语言 时间:
2018-05-15 22:33:07
阅读次数:
184
1.主题预览 material主题:https://equinsuocha.io/material theme/ /default 2.效果预览 ...
分类:
其他好文 时间:
2018-05-15 17:43:30
阅读次数:
180
第一步,vim.zshrc添加#ZSH_THEME="robbyrussell"#ZSH_THEME="agnoster"#ZSH_THEME="fino"ZSH_THEME="fino-time"#ZSH_THEME="ys"#ZSH_THEME="pygmalion"#ZSH_THEME="tonotdo"第二步,cd.oh-my-zsh/themes修改vimfino-time.zsh-th
分类:
其他好文 时间:
2018-05-11 15:39:37
阅读次数:
140
1. 编译 wget https://nginx.org/download/nginx-1.13.10.tar.gz tar xvf nginx-1.13.10.tar.gz cd nginx-1.13.10 ./configure --with-http_ssl_module --with-htt ...
分类:
其他好文 时间:
2018-05-09 16:50:32
阅读次数:
325
超级Bootstrap模板库:http://www.wrapbootstrap.com/ http://www.templategarden.com/https://shapebootstrap.nethttp://thebootstrapthemes.com/ 免费的HTML5 响应式网页模板:h ...
分类:
其他好文 时间:
2018-05-08 12:15:31
阅读次数:
138
当前 idea 主题为:(idea 自带) idea 编辑器的主题颜色字体为:(网上下载的 jar 包) 因为今天在安装下面这个主题时需要在 idea的 plugins里安装这个主题,所以在线下载时失败了,设置sr的http代理并开启sr的全局模式就能正常下载了 Material Theme UI ...
分类:
Web程序 时间:
2018-05-04 17:02:35
阅读次数:
593
style name=”AppBaseTheme” parent=”Theme.AppCompat.Light” 改为 改为 style name=”AppBaseTheme” parent=”android:Theme.Light” 同理,将 style name=”AppBaseTheme” p ...
分类:
移动开发 时间:
2018-05-03 17:23:26
阅读次数:
214
单例模式 单例模式(Singleton Pattern)是一种常用的软件设计模式,该模式的主要目的是确保某一个类只有一个实例存在。当你希望在整个系统中,某个类只能出现一个实例时,单例对象就能派上用场。 比如,某个服务器程序的配置信息存放在一个文件中,客户端通过一个 AppConfig 的类来读取配置 ...
分类:
编程语言 时间:
2018-05-03 16:32:40
阅读次数:
188