- 团队名称:TINOCO
['taɪ'noʊkoʊ]
- 作者:
- 项目进展:
- 部署 NocoDB + TiDB 实例
- 邀请好友试用,评价性能和效果
- (持续调研中)
- 项目仓库:https://github.com/bambooom/nocodb-example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" xml:space="preserve" width="1" height="1"> | |
<rect x="0" y="0" width="1" height="1" fill="#AAAAAA"></rect> | |
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// 这两者是等效的 | |
$yesterday = date('Y-m-d', time() - 86400); | |
$yesterday = date('Y-m-d', strototime('-1 day')); | |
// 上个月第一天 | |
$date = date('Y-m-d', strtotime('first day of last month')); | |
// 上个月最后一天 | |
$date = date('Y-m-d', strtotime('last day of last month')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function reader (file, options) { | |
options = options || {}; | |
return new Promise(function (resolve, reject) { | |
let reader = new FileReader(); | |
reader.onload = function () { | |
resolve(reader); | |
}; | |
reader.onerror = reject; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function convertToMustache(str) { | |
var stack = [], | |
reg = /{{([#\/]?)(\w+)?\s?(..\/)?(\w+)?}}/g; | |
str = str.replace(reg, function (match, pre, helper, path, key) { | |
if (pre === '#') { | |
stack.push({ | |
type: helper, | |
key: key | |
}); | |
} |