老样子集成base 镜像构建,以下是clickhouse dockerfile Dockerfile FROM dalongrong/pgspider:base as build WORKDIR /app RUN apt-get update && apt-get install -y openss ...
分类:
其他好文 时间:
2020-02-22 00:44:06
阅读次数:
136
有N(1<=N<=20000)个音符的序列来表示一首乐曲,每个音符都是1..88范围内的整数,现在要找一个重复的子串,它需要满足如下条件:1.长度至少为5个音符。 2.在乐曲中重复出现(就是出现过至少两次)。(可能经过转调,“转调”的意思是主题序列中每个音符都被加上或减去了同一个整数值) 3.重复出 ...
分类:
其他好文 时间:
2020-02-19 19:09:31
阅读次数:
63
正如我在微博上所说的,使用Jekyll半年以来一直没有令我满意的主题模板,所以开始计划自己写一套好看又好用的主题模板。设计之初就明确了极简主义,风格采用扁平化了,通过卡片式设计来进行区块分明的布局,参考了Medium的ui样式和知乎专栏的视觉风格。H2O源码及使用文档 →新主题名叫”H2O”,基于J... ...
分类:
其他好文 时间:
2020-02-18 20:45:59
阅读次数:
82
业务场景:客户需要根据过滤条件的不同显示不同的列。如下方式可以实现动态的列名。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Kingdee.BOS.Core.Repor ...
分类:
其他好文 时间:
2020-02-18 20:42:55
阅读次数:
99
import 'package:flutter/material.dart';void main() { runApp(MyApp());}class MyApp extends StatelessWidget{ @override Widget build(BuildContext context ...
分类:
其他好文 时间:
2020-02-18 14:45:14
阅读次数:
56
官方主题:https://hexo.io/themes/ 1.下载主题 $ git clone https://github.com/litten/hexo theme yilia.git themes/yilia 下载后的主题在themes文件夹中 2.修改_config.yml中的theme: ...
分类:
其他好文 时间:
2020-02-17 20:07:55
阅读次数:
84
关于wordpress5.0.1的一些目录结构 1 通用函数文件 wp-includes/functions.php 2 页面文件 首页文件 wp-content\themes\主题名称\template-parts\content\content.php 内容文件 wp-content\theme ...
分类:
其他好文 时间:
2020-02-17 18:13:23
阅读次数:
76
一、水平布局Row Row控件可以分为非灵活排列和灵活排列两种,灵活的可以在外边加入Expanded使用 两者混用: import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends ...
分类:
其他好文 时间:
2020-02-16 20:47:14
阅读次数:
71
“记帐本”开始 MainActivity.java package com.example.myapplicationsecond; import android.os.Bundle; import com.google.android.material.floatingactionbutton.F ...
分类:
其他好文 时间:
2020-02-15 20:36:10
阅读次数:
78
ALTER TABLE scm_material_contract ADD CONSTRAINT material_contract_foreignid FOREIGN KEY(form_id) REFERENCES scm_purchase_contract(contract_id) ALTER ...
分类:
数据库 时间:
2020-02-15 11:41:19
阅读次数:
98