最开始并没有注意到这个问题, 因为从设备拿到手, 用USB Burning Tool刷入潜龙版的安卓4.4.2, 再到运行EmuELEC, Armbian, 再到给Kernel 5.3的Armbian编译RTL8189FTV的驱动, 都还算顺利. 因为Kernel 5.3也差不多搞定了, 开始打安卓 ...
分类:
其他好文 时间:
2019-12-09 01:10:14
阅读次数:
769
创建目录 项目名称: vue init app css reset.sass js home index.vue router index.js main.js App.vue views index.html 安装webpack 创建配置文件 webpack.config.js 基础配置 entr ...
分类:
Web程序 时间:
2019-12-08 17:39:55
阅读次数:
137
1. git log 定义:该命令显示从最近到最远的提交日志。每一次提交都有对应的 commit id 和 commit message。 💡如果嫌弃输出的信息杂乱无章,那么加上 --pretty=oneline 参数试试吧! 2. git reset --hard id 定义:根据 id 回退到 ...
分类:
其他好文 时间:
2019-12-08 12:56:46
阅读次数:
92
锐捷:clear ip dhcp binding * //清除DHCP池 H3C:reset dhcp server ip-in-use pool vlan_XXX //清除VLAN的DHCP池 dis dhcp server statistics //查看配置情况 dis dhcp server ...
分类:
其他好文 时间:
2019-12-08 12:53:38
阅读次数:
955
导航守卫 全局守卫 后置钩子 路由独享守卫 组件内守卫 router view 复用 控制滚动行为 进入页面之后直接滚动到指定位置 获取路由参数 首先在路由中设置对应的参数 跳转链接中 to="/blog/2" 可以在对应的组件中使用 this.$route.params.id 获取参数值 2 通过 ...
分类:
其他好文 时间:
2019-12-08 10:26:54
阅读次数:
123
今天学习了一些关于使用SSH管理远程会话的知识,还顺便学习了四种配置网卡的方法,分别是1.编辑配置文件2,nmtui3,nm-connection-editor4,系统配置
分类:
其他好文 时间:
2019-12-08 01:09:04
阅读次数:
99
生产者: # !/usr/bin/env python # -*- coding: utf-8 -*- import pika # 创建连接对象 connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhos ...
分类:
其他好文 时间:
2019-12-07 01:30:09
阅读次数:
105
生产者: # !/usr/bin/env python # -*- coding: utf-8 -*- import pika # 创建连接对象 connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhos ...
分类:
其他好文 时间:
2019-12-07 01:09:11
阅读次数:
72
#-*- coding: utf8 -*- import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 删除操作 print(r.keys()) r.delete(*["xxx"]) # 要加星 ...
分类:
其他好文 时间:
2019-12-06 21:18:59
阅读次数:
83
#-*- coding: utf8 -*- import redis pool = redis.ConnectionPool() r = redis.Redis(connection_pool=pool) # 支持事务 pipe = r.pipeline(transaction=True) pipe ...
分类:
其他好文 时间:
2019-12-06 21:11:51
阅读次数:
100