05 2022 档案

摘要:在SQL Lab写好SQL,点击CREATE VIEW AS 输入要创建的view名字 此时点Data -> Add dataset选择刚才创建的view就可以了 https://hub.docker.com/r/apache/supersethttps://zhuanlan.zhihu.com/p 阅读全文
posted @ 2022-05-26 22:51 i舒 阅读(267) 评论(0) 推荐(0) 编辑
摘要:需要安装插件: PostgreSQL Database然后在global configuration配置数据库连接信息 mytests表存放json数据 import groovy.json.JsonSlurper#Pipeline example: pipeline { agent any sta 阅读全文
posted @ 2022-05-23 13:59 i舒 阅读(449) 评论(0) 推荐(0) 编辑
摘要:创建自增序列 https://blog.csdn.net/songchunyi/article/details/7711108?spm=1001.2101.3001.6650.1&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault 阅读全文
posted @ 2022-05-22 23:22 i舒 阅读(643) 评论(0) 推荐(0) 编辑
摘要:groovy 使用jdbc驱动程序链接posgresql jdbc连接数据库的5种方式:https://blog.csdn.net/m0_46394255/article/details/121350172 example1 1. 在groovy 脚本中打印classpath路径(将): print 阅读全文
posted @ 2022-05-21 11:57 i舒 阅读(5132) 评论(0) 推荐(0) 编辑
摘要:https://www.bilibili.com/video/BV1fJ411i7PB?p=18 阅读全文
posted @ 2022-05-19 22:28 i舒 阅读(16) 评论(0) 推荐(0) 编辑
摘要:cmake 官方文档:https://cmake.org/cmake/help/v3.0/manual/cmake-commands.7.html 让find_packages可以找到:https://zhuanlan.zhihu.com/p/102955723 install(TARGETS My 阅读全文
posted @ 2022-05-18 21:29 i舒 阅读(48) 评论(0) 推荐(0) 编辑
摘要:比如要从镜像 nginx:latest生成dockerfile: docker pull pegleg/whaler docker run -t --rm -v /var/run/docker.sock:/var/run/docker.sock:ro pegleg/whaler -sV=1.36 n 阅读全文
posted @ 2022-05-18 16:38 i舒 阅读(353) 评论(0) 推荐(0) 编辑
摘要:pip install setuptools 一个最基本的”setup.py”文件如下: #coding:utf8 from setuptools import setup setup( name='MyApp', # 项目名 version='1.0', # 版本号 packages=['myap 阅读全文
posted @ 2022-05-17 23:11 i舒 阅读(130) 评论(0) 推荐(0) 编辑