码迷,mamicode.com
首页 >  
搜索关键字:rust    ( 680个结果
通过欧拉计划学Rust编程(第54题)
由于研究Libra等数字货币编程技术的需要,学习了一段时间的Rust编程,一不小心刷题上瘾。 "刷完欧拉计划中的63道基础题,能学会Rust编程吗?" “欧拉计划”的网址: https://projecteuler.net 英文如果不过关,可以到中文翻译的网站: http://pe cn.githu ...
分类:其他好文   时间:2020-02-13 13:11:26    阅读次数:93
Linux Centos 7环境下的mailx代理163邮箱发送邮箱
mailx
分类:系统相关   时间:2020-02-10 10:14:19    阅读次数:141
Fiddler抓取https方法
基本配置 问题一 + 解决creation of the root certificate was not successful报错 问题二 + 解决unable to configure windows to trust Fiddler Root certificate 问题三 + 网页提示htt ...
分类:Web程序   时间:2020-02-08 15:59:51    阅读次数:87
Python源码---Excell写
CMD安装 xlwt pip install xlwt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com 源码———— import xlwtnew_workbook = xlwt.Workbook ...
分类:编程语言   时间:2020-02-07 13:06:35    阅读次数:71
Android教程2020 - RecyclerView获取滑动距离
获取RecyclerView滑动的距离。 "Android教程2020 系列总览" "本文链接" 前面我们已经用 "RecyclerView显示一些数据" 。 本文演示如何获取RecyclerView的滑动距离。 要实现这个功能,需要给RecyclerView添加滑动时监听 。 是一个抽象类,我们可 ...
分类:移动开发   时间:2020-02-07 10:27:23    阅读次数:90
Ethical Hacking - GAINING ACCESS(20)
CLIENT SIDE ATTACKS - Spoofing backdoor extension Change the extension of the trojan from exe to a suitable one. Make the trojan even more trustable. ...
分类:数据库   时间:2020-02-05 09:26:31    阅读次数:75
Https:设置使用证书访问Https
设置证书进行访问或被访问操作 String keyStore = “keyStore文件路径”; String KEY_STORE_PWD = "1234"; String KEY_STORE_TYPE = "PKCS12";//.p12文件类型 String trustStore =“trustS ...
分类:Web程序   时间:2020-02-04 10:33:26    阅读次数:159
diesel rust orm 框架试用
diesel 是一个不错的rust orm框架,提供了cli ,可以方便的进行migration 操作,以及帮助代码生成 以下是一个简单的试用 安装cli 注意需要最新的stable 版本,数据库使用docker-compose 运行 cargo install diesel_cli 项目准备 do ...
分类:其他好文   时间:2020-02-03 18:49:26    阅读次数:436
rust的collect, fold函数
collect nth函数 let a = [1, 2, 3]; let mut iter = a.iter(); assert_eq!(iter.nth(1), Some(&2)); assert_eq!(iter.nth(1), None); let a = [1, 2, 3]; assert_ ...
分类:其他好文   时间:2020-01-30 22:35:48    阅读次数:95
pip
1.pip通过国内源安装python包 1 pip install web.py -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 如上,以安装web.py为例 ...
分类:其他好文   时间:2020-01-28 12:14:57    阅读次数:52
680条   上一页 1 ... 15 16 17 18 19 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!