上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: ```shell sudo apt-get install exfat-fuse exfat-utils ``` 阅读全文
posted @ 2019-09-14 15:15 明卿册 阅读(1853) 评论(0) 推荐(0) 编辑
摘要: 当年玩嵌入式的写过一个,源码已经上传至github https://github.com/zzz130981/zzz130981 Simple digital oscilloscope based on STM32F103 阅读全文
posted @ 2019-09-10 17:44 明卿册 阅读(1258) 评论(0) 推荐(0) 编辑
摘要: 一、起因 ​ 最近在学习《TensorFlow实战Google深度学习框架(第2版)》和《21个项目玩转深度学习 基于TensorFlow的实践详解》中发现,两本书所使用的tensorflow的版本都是1.4.0,然而通过pip或者pycharm安装的tensorflow都还是1.14.0,所以我选 阅读全文
posted @ 2019-09-04 16:27 明卿册 阅读(7871) 评论(0) 推荐(0) 编辑
摘要: 这几天在使用Corda开发区块链应用时,教程中给出的项目是用Gradle创建的,但是因为众所周知的原因,有些jar包在导入的时候出现了问题。 气人的IntellJ idea居然不走代理,即使我在setting中设置了它还是不走,如图: 所以只能在操作系统层面来设置了,本人使用的是Ubuntu18.0 阅读全文
posted @ 2019-09-02 20:27 明卿册 阅读(895) 评论(0) 推荐(0) 编辑
摘要: 最近做项目,用到了intellJ IDEA,有几个常用的快捷键记录一下(本人的操作系统是ubuntu18.04): 双击shift : 快速搜寻 Ctrl + 单击 function/class:导航到funciton/class定义 Ctrl + / : 注释/取消注释 选中的代码 Alt + e 阅读全文
posted @ 2019-09-02 15:03 明卿册 阅读(819) 评论(0) 推荐(0) 编辑
摘要: 使用virtualenv创建不同环境时,始终大面积报错,其中最重要的一行是: pip._vendor.requests.exceptions.InvalidSchema: Missing dependencies for SOCKS support. 大概报错如下: 其实很简单,虽然我有梯子,但是没 阅读全文
posted @ 2019-08-31 11:08 明卿册 阅读(2551) 评论(0) 推荐(0) 编辑
摘要: ```c++ include include include using namespace std; int main() { int n; string s; cin n; queue num; queue op; while(n ) { cin s; s.push_back('+'); for 阅读全文
posted @ 2019-08-17 19:38 明卿册 阅读(861) 评论(0) 推荐(0) 编辑
摘要: ```c++ include include include using namespace std; int main() { int N; cin N; long arr = new long[N]; for (int i = 0; i arr[i]; } long max = arr[0], 阅读全文
posted @ 2019-08-16 19:02 明卿册 阅读(500) 评论(0) 推荐(0) 编辑
摘要: ```c++ class Solution { public: int longestUnivaluePath(TreeNode* root) { if(root == nullptr) return 0; int ans = 0; univalue(root, &ans); return ans; } private... 阅读全文
posted @ 2019-07-25 11:54 明卿册 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 算法结构 Feistel结构 16轮迭代 将Ri-1用函数f运算一下 f(Ri-1)和Li-1异或一下 将上一步的结果作为下一轮的右侧,即Ri 将Ri-1变成下一轮的左侧(即Li) SP结构 DES算法流程: 生成16个48位的子密钥 总结:64bit->56bit->48bit 置换选择1 给定: 阅读全文
posted @ 2019-05-05 00:04 明卿册 阅读(730) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页