Once Bob saw a string. It contained so many different letters, that the letters were marked by numbers, but at the same time each letter could be met ...
分类:
其他好文 时间:
2018-02-05 12:47:47
阅读次数:
477
数据库Table xxx is marked as crashed and should be repaired错误的解决方法服务器断电等原因可能导致数据表损坏,导致访问的时候提示:Table xxx is marked as crashed and should be repaired其中xxx为 ...
分类:
数据库 时间:
2018-01-03 18:33:37
阅读次数:
190
实现过程: 1. npm引入:npm install marked --save 2.在需要的文件(.ts)里import Marked from "marked"; 如果.js: var marked = require('marked'); 3.使用 致谢项目: https://github.c ...
分类:
Web程序 时间:
2017-12-24 13:40:45
阅读次数:
306
Java 变量类型 在Java语言中,所有的变量在使用前必须声明。声明变量的基本格式如下: type identifier [ = value][, identifier [= value] ...] ; 格式说明:type为Java数据类型。identifier是变量名。可以使用逗号隔开来声明多个 ...
分类:
编程语言 时间:
2017-12-09 12:01:16
阅读次数:
168
今天临时要写接口文档,然后发现部门给的文档是markdown文件的,而接口文档是要html格式的,因此想直接把markdown转为html 这里我使用的是marked 首先初始化一个node项目 npm init 然后安装marked npm install marked --save 先引入fs和 ...
分类:
Web程序 时间:
2017-12-08 17:01:21
阅读次数:
289
单下划线、双下划线、头尾双下划线说明: __foo__: 定义的是特殊方法,一般是系统定义名字 ,类似 __init__() 之类的。 _foo: 以单下划线开头的表示的是 protected 类型的变量,即保护类型只能允许其本身与子类进行访问,不能用于 from module import * _ ...
分类:
编程语言 时间:
2017-12-04 13:26:51
阅读次数:
169
1. 条形图 barplot() 2. 饼图:饼图在商业世界中无所不在,然而多数统计学家,包括R相应文档的编写者,都对它持否定态度。相对于饼图,他们更推荐使用条形图或点图,因为相对于 面积,人们对长度的判断更为精确 pie() pie3D() 3. 直方图 :可以展示连续变量的分布. hist(x, ...
分类:
编程语言 时间:
2017-12-02 22:04:31
阅读次数:
280
源码地址: 作者网站: 简介 这是一款基于NodeJs开发的简单的Markdown编辑器,其UI是仿照简书的Markdown编辑器;主要功能:实时解析,实时保存,实时预览,全屏等 预览 技术栈 + NodeJs + Express + Swig + Marked + highJs + Jquery ...
分类:
其他好文 时间:
2017-11-27 18:51:30
阅读次数:
177
题目描述 A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at ...
分类:
其他好文 时间:
2017-11-11 19:50:56
阅读次数:
167
在尝鲜vuex2时,发现vuex2增加了 mapGetters 和 mapActions 的方法,借助stage2的 Object Rest Operator 特性,可以写出下面代码:methods: { marked, ...mapActions([ 'getArticles' ])}但是在借助b ...
分类:
其他好文 时间:
2017-10-31 17:43:45
阅读次数:
204