[toc] 自带的admin 杀手级功能: 在新建项目时候已经自动生成! 1、创建超级用户: 2、登录admin系统; 3、配置文件修改: 4、注册表: 进入app下的 文件: 5、刷新admin页面即可 XAdmin后台 继承自admin. 1、安装xadmin模块, 同时也会安装相关依赖包: , ...
分类:
其他好文 时间:
2018-07-02 23:09:04
阅读次数:
373
head标签 我们首先来介绍一下head标签的主要内容和作用,文档的头部描述了文档的各种属性和信息,包括文档的标题、编码方式及URL等信息,这些信息大部分是用于提供索引,辩认或其他方面的应用(移动端)的等。 以下标签是可以用在head标签中的: <head lang='en'> <title>标题信 ...
分类:
其他好文 时间:
2018-06-30 11:04:03
阅读次数:
138
划分问题和快排 普通划分 给定一个数组arr, 和一个数num, 请把小于等于num的数放在数组的左边, 大于num的数放在数组的右边。要求额外空间复杂度O(1), 时间复杂度O(N) 想法是这样的,维持一个index,表示在index以及以前的数字都是小于等于num的。 荷兰国旗问题 给定一个数组 ...
分类:
其他好文 时间:
2018-06-29 14:10:12
阅读次数:
165
使用固定的数组实现栈和列表 实现栈的思想很简单,固定的数组,然后维持一个在栈顶的index,入栈的时候存入元素 index++,出栈的时候只需要将index--,就可以了。 使用固定的数组实现栈的代码如下: 实现队列的时候,我们维持两个index,一个start,一个end,并且维持一个size表示 ...
分类:
其他好文 时间:
2018-06-28 17:34:13
阅读次数:
173
The motion system positions the probe relative to the product in 4 degrees of freedom. The product is mounted on an air bearing spindle (), and the pr ...
分类:
其他好文 时间:
2018-06-26 00:49:13
阅读次数:
178
A cylindrical scanning setup with an optical distance probe is non-contact, universal and fast. With a probe with 5 mm range, circular tracks on freef ...
分类:
其他好文 时间:
2018-06-25 20:35:05
阅读次数:
158
官网链接:https://pay.weixin.qq.com/wiki/doc/api/tools/cash_coupon.php?chapter=13_4&index=3 参考连接:https://www.cnblogs.com/wenhx/p/WeChat-RedPacket-Interface ...
分类:
其他好文 时间:
2018-06-23 13:25:04
阅读次数:
695
#!/bin/bash#rename.shcount=1forimgin.jpg.JPGdonew=image-$count.${img##*.}new1=echo$new|trA-Za-zmv"$img""$new1"2>/tmp/demo/chapter2/log.fileif[$?-eq0]thenecho"Renaming$imgto
分类:
其他好文 时间:
2018-06-21 17:36:58
阅读次数:
129
https://mp.weixin.qq.com/s/aU4sg7780T3_5tJeApFYOQ 参考芯片参考手册第5章:Chapter 5 Microcontroller Boot There are two external pins on the microcontroller that a ...
分类:
其他好文 时间:
2018-06-21 00:05:05
阅读次数:
222
Median and standard deviation 中值和标准差的计算比前面的例子复杂一点。因为这种运算是非关联的,它们不是那么容易的能从combiner中获益。中值是将数据集一分为两等份的数值类型,一份比中值大,一部分比中值小。这需要数据集按顺序完成清洗。数据必须是排序的,但存在一定障碍, ...
分类:
其他好文 时间:
2018-06-19 16:29:41
阅读次数:
182