shanghai

uuid

泄露秘密 提交于 2019-12-08 21:40:46
#_author:来童星#date:2019/12/8#1.回顾class school: def __init__(self,name): self.name=name def __str__(self): return self.names1=school('shanghai')s2=school('beijing')print(s1,s2)# shanghai beijing#2.uuidimport uuidprint(uuid.uuid1())# e62a6fb6-19bf-11ea-b069-907841064ab5print(uuid.uuid1())# e62ae49a-19bf-11ea-9cfd-907841064ab5print(uuid.uuid1())# e62ae49b-19bf-11ea-b3a2-907841064ab5print(uuid.uuid1())# e62ae49c-19bf-11ea-a03b-907841064ab5 来源: https://www.cnblogs.com/startl/p/12008028.html

hive 整合ranger

雨燕双飞 提交于 2019-12-04 06:27:57
一、 安装 hive 插件 1 、解压安装 # tar zxvf ranger-2.0.0-SNAPSHOT-hive-plugin.tar.gz -C /data1/hadoop/ 2 、修改 install.properties POLICY_MGR_URL=http://192.168.4.50:6080 REPOSITORY_NAME=hivedev COMPONENT_INSTALL_DIR_NAME=/data1/hadoop/hive #hive 安装目录 XAAUDIT.SOLR.ENABLE=true XAAUDIT.SOLR.URL=http://192.168.4.50:6083/solr/ranger_audits CUSTOM_USER=hduser CUSTOM_GROUP=hduser 3 、启动 hive 插件 # sudo ./enable-hive-plugin.sh 启动 hive 插件以后,默认生成 hiveserver2-site.xml 文件,或者在已经存在的该文件下添加如下信息: <property> <name>hive.security.authorization.enabled</name> <value>true</value> </property> <property> <name>hive.security

Mybatis查询Mysql datetime类型时,相差8小时 解决方案

匿名 (未验证) 提交于 2019-12-02 22:02:20
查出来的数据跟数据库里的数据相差了8个小时,这是为什么呢? 这是因为Mysql 使用系统默认时区,东八区。 而Tomcat java使用UTC时区进行处理业务逻辑。 时区的不同,从而导致Mysql数据库中datetime类型的值查询后转到Java Bean,值多了8个小时。 解决方法 serverTimezone=Asia/Shanghai : jdbc.url=jdbc:mysql://127.0.0.1:3306/caipiao?useUnicode=true&characterEncoding=UTF-8 &serverTimezone=Asia/Shanghai

23.装饰器

本秂侑毒 提交于 2019-11-30 06:30:12
装饰器 原网站, 直接调用执行函数 def home(): print("---首页---") def american(): print("---欧美专区---") def japan(): print("---日本专区---") def shanghai(): print("---上海专区---") # 需求::1,网址一开始免认证,上线功能,对日本和上海专区进行认证 account = { "is_authenticated": False, "username": "caona", "password": "123" } def login(): if account["is_authenticated"] is False: username = input("user:") password = input("password:") if username == account["username"] and password == account["password"]: print("welcome to you ") account["is_authenticated"] = True else: print("wrong name or password") else: print("用户已经登陆成功") def home(): print("---首页---"

springboot2.0 连接数据库

若如初见. 提交于 2019-11-29 21:18:28
springboot2.0 连接数据库需要设置时区 #mysql spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://127.0.0.1:3306/springboot?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai spring.datasource.username=root spring.datasource.password= #jpa spring.jpa.show-sql=true spring.jpa.hibernate.ddl-auto=update 加上serverTimezone=Asia/Shanghai,中国的标准时间,不然会报时区错误 来源: https://blog.csdn.net/pzc_3018/article/details/100922027

Docker基础镜像时区修改

寵の児 提交于 2019-11-27 08:44:44
我们在构建自己的docker镜像时,系统默认一般为UTC,我们需要改为CST Ubuntu16.04基础镜像: 1 FROM ubuntu:16.04 2 MAINTAINER xx@example 3 RUN ln -sf /usr/share/zoneinfo/Asia/ShangHai /etc/localtime 4 RUN echo "Asia/Shanghai" > /etc/timezone 5 RUN dpkg-reconfigure -f noninteractive tzdata Alpine3.6基础镜像: 1 FROM alpine3.6 2 MAINTAINER xx@example.cn 3 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories 4 RUN apk add --no-cache tzdata \ 5 && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ 6 && echo "Asia/Shanghai" > /etc/timezone \ 7 &&rm -rf /var/cache/apk/* /tmp/* /var/tmp/* $HOME/.cache 来源:

Systems Union 招聘 C# 程序员

柔情痞子 提交于 2019-11-26 23:55:30
Systems Union (Shanghai) Ltd. 招聘若干 C# / Senior C# developer 职位,我们期待有志在软件行业发展的优秀人才加盟。 Essential: -Educated to Degree level or equivalent -(12months+) C# Development -OO / UML Development experience -Good English (both written and oral) Desirable: -RUP / Agile Development -Finance/accountancy experience and/or qualifications 公司地址:上海市西藏中路268号来福士广场办公楼15楼1502-1506室(200001) 公司网站:http://www.systemsunion.com 联系方式:孙小姐 season_sun@systemsunion.com 转载于:https://www.cnblogs.com/systemsunion/archive/2005/04/22/143330.html 来源: https://blog.csdn.net/weixin_30407613/article/details/99210206