Description: 当年狐狸智斗绳子,换来了生命的重生,心里美滋滋的,尾巴翘的更高了。猎人可谓是机智、勇敢,而这件事情让他颜面扫尽,因此猎人决定夺回面子,再次和狡猾的狐狸一分高下。 大家都知道当年猎人输就输在绳子上面,因此猎人所要做的第一件事情就是从绳子上做文章。 假设一根绳子所能承受的最大的 ...
分类:
其他好文 时间:
2020-05-02 20:34:02
阅读次数:
55
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ...
分类:
编程语言 时间:
2020-05-02 18:51:05
阅读次数:
118
xadmin中的用法: class NewCourseAdmin: list_display = ['name', 'detail', 'degree', 'learn_times', 'students'] list_editable = ['degree', 'desc'] def querys ...
分类:
其他好文 时间:
2020-05-02 00:11:28
阅读次数:
242
https://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_liunx_52_ldap_for_jenkins.html ldap 原来有一套phpLDAPadmin的用户管理系统 创建一个ou,直接导入以下模板 dn: ou=jenkins_test,ou= ...
分类:
其他好文 时间:
2020-05-01 18:43:17
阅读次数:
167
一:介绍 Shell是一种脚本语言,那么,就必须有解释器来执行这些脚本。Unix/Linux上常见的Shell脚本解释器有bash、sh、csh、ksh等,习惯上把它们称作一种Shell。我们常说有多少种Shell,其实说的是Shell脚本解释器。 二:第一行的解释 #! /bin/bash 此行称 ...
分类:
系统相关 时间:
2020-05-01 01:24:52
阅读次数:
95
python 判断是否为空NaN import math math.isnan(val) 或 import pandas as pd pd.isnull(val) math常用于数字,传字符串会报错,pd较为通用 Python获取当前时间及格式化 # 导入time模块 import time # 打 ...
分类:
编程语言 时间:
2020-04-29 15:09:19
阅读次数:
97
——数组中常用的方法有:给数组末尾添加新内容的push方法,删除数组最后一项的pop方法,删除数组第一项的shift方法,向数组首位添加新内容unshift方法等等 数组常用的一些方法 1、push() 向数组的末尾添加新内容 参数:要添加的项。传递多个用逗号隔开,任何数据类型都可以 返回值:新增后 ...
分类:
编程语言 时间:
2020-04-28 23:21:17
阅读次数:
156
多个参数进行查询 List<Integer> select(@Param("list")List<Map> maps); <select id="select" resultType="java.lang.Integer"> <foreach collection="list" index="ind ...
分类:
数据库 时间:
2020-04-28 20:08:43
阅读次数:
71
1、配置问题 <!-- 是否开启自动驼峰命名规则(camel case)映射, --> <setting name="mapUnderscoreToCamelCase" value="true"/> 或者 //开启驼峰映射 bean.getObject().getConfiguration().se ...
分类:
数据库 时间:
2020-04-28 12:58:41
阅读次数:
193