2020-06-30 19:21:03 2901 [ERROR] Error reading packet from server: binlog truncated in the middle of event; consider out of disk space on master; the ...
分类:
数据库 时间:
2020-06-30 20:15:08
阅读次数:
89
Nginx配置通用语法 Nginx的配置文件只是一个普通的文本文件,这里借用《深入理解Nginx模块开发与架构解析》上的例子记录Nginx配置的通用语法。 user nobody; worker_processes 8; error_log varlog/nginx/error.log error; ...
分类:
其他好文 时间:
2020-06-30 17:44:24
阅读次数:
64
在idea2020上运行插件时,报错: 2020-06-28 15:24:31,119 [ 693828] ERROR - llij.ide.plugins.PluginManager - com/intellij/psi/PsiType java.lang.NoClassDefFoundError ...
分类:
其他好文 时间:
2020-06-30 17:32:54
阅读次数:
500
1.使用数组加链表的形式简单的实现hashmap的put,get,size方法package com.ycs;import java.util.Collection;import java.util.Map;import java.util.Set;public class MyHashMap<K, ...
分类:
其他好文 时间:
2020-06-30 17:21:23
阅读次数:
54
option = { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, series: [{ data: [120, 200, ...
分类:
其他好文 时间:
2020-06-30 16:02:33
阅读次数:
165
pandas绘图 pandas绘图是基于matplotlib的上层封装 正常工作一般先用pandas绘图,再辅以matplotlib修改组件 Pandas绘图的优势: 代码简洁 针对pandas数据结构专门优化过(series/DataFrame) 劣势: pandas绘图自定义程度较差 matpl ...
分类:
其他好文 时间:
2020-06-30 16:01:20
阅读次数:
96
受害者端:nfsniff.c #include <linux/module.h> #include <linux/kernel.h> #include <linux/skbuff.h> #include <linux/in.h> #include <linux/ip.h> #include <lin ...
分类:
其他好文 时间:
2020-06-30 15:58:59
阅读次数:
58
import pymysql 1.登录mysql conn = pymysql.connect(host= '127.0.0.1',user='root',password='123',database='homework') 2.获取游标 cur = conn.cursor() # cur = c ...
分类:
数据库 时间:
2020-06-30 14:27:33
阅读次数:
71
本章通过讨论Git的基本架构组成和一些重要概念,来探讨Git的不同之处和原因。 一: 基本概念 1、版本库。 1】Git版本库只是一个简单的数据库,包含所有用来维护与管理项目的修订版本和历史记录。 2】Git版本库不但提供版本库中的所有文件的副本,还提供版本库本身的副本。 3】版本库配置是不随着cl ...
分类:
其他好文 时间:
2020-06-30 13:05:52
阅读次数:
49
1.jQuery ajax $.ajax({ type: 'POST', url: url, data: data, dataType: dataType, success: function () {}, error: function () {} }); 传统 Ajax 指的是 XMLHttpR ...
分类:
移动开发 时间:
2020-06-30 12:58:19
阅读次数:
69