ITAKEN'S PAGES
使用python 对token进行加密 使用python 对token进行加密
加密原理 python 代码实现加密方法 与 验证方法 ^1# token类 # @author itaken<regelhh@gmail.com> # @since 2017-07-28 class Connector:
2017-08-13
scss 一些语法 scss 一些语法
@import 引入其他样式 @import "home"; // 引入 home.scss 样式 @import "home.css" // 引入 home.css 样式 声明变量 // 定义支持的浏览器 $supported-br
2017-08-10
python classmethod 与 staticmethod 的区别 python classmethod 与 staticmethod 的区别
#!/usr/bin/env python3 class Kls(object): def __init__(self, data=None): self.data = data def printd(s
2017-08-07
如何对文章中的代码添加代码高亮 如何对文章中的代码添加代码高亮
使用 highlight.js 在页面中添加,如下代码 ^1 <link rel="stylesheet" href="/path/to/styles/default.css"> <script src="/path/to/
2017-08-06
网络不良与垃圾信息举报受理平台站点 网络不良与垃圾信息举报受理平台站点
12321举报中心中国反钓鱼联盟举报入口:http://jubao.apac.cn/complaint.html 安全联盟 360恶意网址举报平台猎网查询入口:https://110.360.cn/ 腾讯电脑管家举报平台 阿里11
2017-07-13
windows 重置MySQL root密码 windows 重置MySQL root密码
问题描述 直接使用mysql压缩包解压, 使用root账号无法登录. $mysql -u root Enter password: ERROR 1045 (28000): Access denied for user 'root
2017-07-12
jekyll server 无法启动 jekyll server 无法启动
问题描述 今天下载了别人家的jekyll blog, 执行 jekyll server 之后, 发现 http://127.0.0.1:4000 一直被占用. 重启之后,都无法关闭该blog,运行自己的 jekyll blog 结果报错.
2017-07-07
vue页面间通信 vue页面间通信
参考文档 vue组件之间的通信 vue非父子组件怎么进行通信 vue.js入门基础
2017-07-06
git创建 gh-pages , github pages git创建 gh-pages , github pages
创建 gh-pages 分支 vue-example ‹master› $ git branch -m master gh-pages 或者使用下面命令: $ git branch gh-pages $ git checkout gh
2017-07-03
git分支操作 git分支操作
创建分支 $ git branch demo 创建并切换分支 $ git checkout --orphan demo , git checkout -b demo 查看分支 $ git branch demo * master
2017-07-02
5 / 10