为了让脚本内容看起来更好,载入系统函数./etc/init.d/functionsfunctions这个脚本是给/etc/init.d里边的文件使用的。提供了一些基础的功能,看看里边究竟有些什么。首先会设置umask,path,还有语言环境,然后会设置success,failure,warning,normal几种情况下的字体颜色。下面..
分类:
其他好文 时间:
2017-06-23 15:45:01
阅读次数:
178
作为有志青年,es6 还是需要掌握的,要看懂还得能写........ 文章作者说的很好, 可以快速过一遍。 es6的常用语法。 mark 作个摘要记录 最常用的ES6特性 let, const, class, extends, super, arrow functions, template str ...
分类:
其他好文 时间:
2017-06-22 21:49:37
阅读次数:
118
内置函数: 详查下网址 https://docs.python.org/3/library/functions.html?highlight=built#ascii divmod(x, y) # (商, 模)enumerate(可迭代对象) # (序号,值)eval(字符串) # 把字符串当成命令执 ...
分类:
其他好文 时间:
2017-06-21 21:13:28
阅读次数:
179
页面地址: http://myspace123.qiniudn.com/love/index.html 目录文件结构: index.html + View Code jquery\jquery-1.8.3.min.js js\functions.js var $window = $(window), ...
分类:
Web程序 时间:
2017-06-21 17:32:15
阅读次数:
1801
4.5 Inline Functions 以下是Point class 的一个加法运算符的可能实现内容: class Point { friend Point operator+(const Point&, const Point&); }; Point operator+(const Point ...
分类:
编程语言 时间:
2017-06-20 20:18:50
阅读次数:
136
这篇文章是对上篇文章的一个补充,主要环绕下面两点展开。one-connection-per-thread的实现方式以及线程池中epoll的使用。 one-connection-per-thread 依据scheduler_functions的模板,我们也能够列出one-connection-per- ...
分类:
数据库 时间:
2017-06-20 20:12:49
阅读次数:
288
一、内置函数 内置函数详解:http://www.runoob.com/python/python-built-in-functions.html 二、匿名函数 匿名函数就是不需要显式的指定函数 特点: 1、lambda只是一个表达式,函数体比def简单很多 2、lambda的主体是一个表达式,而不 ...
分类:
编程语言 时间:
2017-06-20 18:13:17
阅读次数:
263
函数 当代码出现有规律的重复的时候,只写一次函数实现多次使用(调用) 可使用的函数: 自定义函数 内置函数:文档 https://docs.python.org/3/library/functions.html,本身内置了很多有用的函数,可以直接调用,如max(),abs()。 调用函数: 要知道函 ...
分类:
编程语言 时间:
2017-06-19 00:36:36
阅读次数:
295
Referece: https://realpython.com/blog/python/inner-functions-what-are-they-good-for/ Let’s look at three common reasons for writing inner functions. R ...
分类:
其他好文 时间:
2017-06-15 15:30:58
阅读次数:
231
1.ecmall 自带的写入日志方法:do_log4php("函数名","类名",$param); $param是参数 在类里调用写入之日的方法 需要先加载函数工具库 import('functions.lib'); 生成的日志存在于 temp/logs。 配置路径就在 log4php.proper ...
分类:
其他好文 时间:
2017-06-15 15:29:04
阅读次数:
205