平台: Node基础语言: NodeJS TypeScript(ES6)包管理器 : npm(速度慢/队列安装包) yarn(速度快/同时安装任务)语言框架:angular (基于typescript) vue(文档更全/国内更主流) react(JSX 支持在 JavaScript 代码中编写 H ...
分类:
其他好文 时间:
2019-12-19 13:06:44
阅读次数:
87
1.中文官网: https://eslint.cn/ 2.先看一个写好的eslint规则: 3.下面再给一个例子 module.exports = { "parser": "babel-eslint", 'env': { 'browser': true, 'es6': true }, 'extend ...
分类:
其他好文 时间:
2019-12-19 12:44:33
阅读次数:
173
\ This is a configuration file for Zabbix server daemon \ To get more information about Zabbix, visit http://www.zabbix.com \ GENERAL PARAMETERS \ Opt ...
分类:
其他好文 时间:
2019-12-18 12:52:32
阅读次数:
98
1、顺序结构、分支结构、选择结构顺序结构:从上到下,代码一行一行的执行,不会发生跳跃。分支结构:if结构 if-else结构选择结构:if else-if switch-case循环结构:while do-while for foreach 2、if结构语法:if(关系表达式或者bool类型的值或者 ...
分类:
Web程序 时间:
2019-12-18 00:12:50
阅读次数:
111
DotNetCore.RabbitMQ.Extensions介绍 这是一个 基于.NETStandard 2.0的Rabbit轻量级框架,可以让开发人员无需关注底层变动,专注编写业务代码,从而达到便捷开发。 特性 DotNetCore.RabbitMQ.Extensions,非常的小巧,下面将介绍 ...
分类:
其他好文 时间:
2019-12-16 19:28:00
阅读次数:
72
//引用Microsoft.Office.Interop.Outlook.dll using Outlook = Microsoft.Office.Interop.Outlook; using Microsoft.Office.Interop.Outlook; Outlook.Application ...
using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Packaging; using DocumentFormat.OpenXml.Spreadsheet; using System; using System.Collections ...
分类:
其他好文 时间:
2019-12-14 17:33:18
阅读次数:
114
课程目录:01、课程介绍02、内容综述03、揭开Netty面纱04、为什么舍近求远:不直接用JDKNIO?05、为什么孤注一掷:独选Netty?06、Netty的前尘往事07、Netty的现状与趋势08、Netty怎么切换三种I-O模式?09、源码剖析:Netty对I-O模式的支持10、Netty如 ...
分类:
Web程序 时间:
2019-12-13 23:50:36
阅读次数:
418
On a staircase, the i-th step has some non-negative cost cost[i] assigned (0 indexed). Once you pay the cost, you can either climb one or two steps. Y ...
分类:
其他好文 时间:
2019-12-13 14:20:55
阅读次数:
92
1、一个demo(https://www.reactjscn.com/docs/state-and-lifecycle.html) class Clock extends React.Component { constructor(props) { super(props); this.state ...
分类:
其他好文 时间:
2019-12-13 14:11:16
阅读次数:
87