这是今天解决的三个问题:
- 解决bootstrap glyphicon加载过慢
- mysql命令行添加提示信息
- python getpass模块用法
bootstrap glyphicon loading slow
Requirements
glyphicon glyphicon-info-sign loading too slow, sometimes I thinks it’s missing, is it possible to accelrate the downloading speed?
Solution
Use awesome to replace bootstrap glyphicon1
2<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
<i class="fa fa-info-circle" aria-hidden="true"></i>
Linux mysql 命令行使用技巧
mysql在命令行内添加主机、数据库、用户名信息
编辑/etc/mysql/my.cnf,添加1
2[mysql]
prompt="\\u@\\h : \\d \\r:\\m:\\s>"
python getpass module usage & demo
introduction
getpass
module is use for user to type in password
basic usage
1 | import getpass |
with prompt
1 | import getpass |