之前折腾树莓派时,不小心用Win32DiskImager把zip文件当作img写入tf卡中,之后便出现许多问题,电脑无法识别tf卡,找不到盘符,寻找许多格式化工具,恢复工具均失败,之后无意间接触到diskpart这个分区工具,便试了一下,结果竟然成功恢复了. "参考博客" 按照他的步骤走到第七步格式 ...
分类:
其他好文 时间:
2019-11-16 00:45:57
阅读次数:
76
原题链接在这里:https://leetcode.com/problems/hand-of-straights/ 题目: Alice has a hand of cards, given as an array of integers. Now she wants to rearrange the ...
分类:
其他好文 时间:
2019-11-14 13:45:12
阅读次数:
105
1 card_list = [] 2 3 4 def main_desk(): 5 print('*'*50) 6 print('欢迎使用【名片管理系统】V1.0') 7 print('1.新建名片') 8 print('2.显示全部') 9 print('3.查询名片') 10 print('0. ...
分类:
编程语言 时间:
2019-11-13 11:09:30
阅读次数:
108
解密加密源码 1 using System; 2 using System.Security.Cryptography; 3 using System.Text; 4 5 namespace Wechat 6 { 7 public static class Security 8 { 9 public ...
分类:
微信 时间:
2019-11-10 09:56:45
阅读次数:
452
1. SAS 程序 数据 data split; input R A B y; cards; 1 4 2 40.0 1 4 1 39.5 1 1 2 37.9 1 1 1 35.4 1 2 1 36.7 1 2 2 38.2 1 3 2 36.4 1 3 1 34.8 2 2 1 42.7 2 2 ...
分类:
其他好文 时间:
2019-11-09 19:17:10
阅读次数:
151
一、基于XML 实体类 package cn.spring.entity; import java.io.Serializable; public class Bank implements Serializable { private String card_code; //卡号 private ...
分类:
编程语言 时间:
2019-11-05 13:16:18
阅读次数:
81
经过前面的netty学习,大概了解了netty各个组件的概念和作用,开始自己瞎鼓捣netty和我们常用的项目的整合(很简单的整合) 1. 项目准备 2. 项目操作 右键创建一个maven项目,项目名称: hetangyuese netty 03(项目已上传github) 项目完整结构 ? maven ...
分类:
编程语言 时间:
2019-11-04 09:24:21
阅读次数:
83
主要内容: XGBoost算法的介绍 XGBoost算法的损失函数 XGBoost函数介绍 算法的应用实战——信用卡欺诈行为的识别 1.XGBoost算法的介绍 XGBoost是由传统的GBDT模型发展而来的,GBDT模型在求解最优化问题时应用了一阶导技术,而XGBoost则使用损失函数的一阶和二阶 ...
分类:
数据库 时间:
2019-11-01 20:53:31
阅读次数:
158
上一章的案例,配置日志级别为 debug,执行一个简单的查询操作,会将 JDBC 操作打印出来。本章通过 MyBatis 日志部分源码分析它是如何实现日志打印的。 在 MyBatis 的日志模块中有一个 jdbc package,package 中的内容如下图所示: BaseJdbcLogger 是 ...
分类:
其他好文 时间:
2019-10-29 11:22:54
阅读次数:
96