utc

date / time conversion from user's local time to UTC on website

删除回忆录丶 提交于 2020-01-29 13:18:46
问题 I'm currently adding an out of office like system to a website, where users will be able to mark their out of office dates and times such that they can provide another users's information to use as a backup while they are out. The problem I have, is converting the users's local time to UTC. I've seen other posts that address this issue by supplying UTC to the user, and having the client (js) convert the time to and from local time. I do, however, have access to a propriety system I can use to

Local Time Convert To UTC Time In Hive

拜拜、爱过 提交于 2020-01-29 02:07:31
问题 I searched a lot on Internet but couldn't find the answer. Here is my question: I'm writing some queries in Hive. I have a UTC timestamp and would like to change it to UTC time, e.g., given timestamp 1349049600, I would like to convert it to UTC time which is 2012-10-01 00:00:00. However if I use the built in function from_unixtime(1349049600) in Hive, I get the local PDT time 2012-09-30 17:00:00. I realized there is a built in function called from_utc_timestamp(timestamp, string timezone) .

Hyperledger fabric1.4.0搭建环境

旧街凉风 提交于 2020-01-26 14:10:00
Hyperledger fabric1.4.0搭建环境 原创牧竹子 最后发布于2019-05-11 21:10:20 阅读数 630 收藏 展开 Hyperledger fabric1.4.0搭建环境 版本 在Ubuntu 18.04上搭建Hyperledger fabric1.4.0环境 https://www.jianshu.com/p/4f58e0fcb9f9 https://blog.csdn.net/javaexploreroooo/article/details/71157902 https://blog.csdn.net/zgljl2012/article/details/52896372 https://blog.csdn.net/songfadan/article/details/80827446 环境和工具 操作系统 ubuntu14 go 1.11.1 docker 17.06.2-ce docker-compose 1.23.1 curl组件for windows 常用的几个vagrant命令 $ vagrant init # 初始化 $ vagrant up # 启动虚拟机 $ vagrant halt # 关闭虚拟机 $ vagrant reload # 重启虚拟机 $ vagrant ssh # SSH 至虚拟机 $ vagrant suspend #

CentOS7--配置时间和日期

我的未来我决定 提交于 2020-01-26 06:20:14
CentOS7提供三个命令行工具,可用于配置和显示有关系统日期和时间的信息。 timedatectl: Linux 7中的新增功能,也是systemd其中的一部分。 date:系统时钟,也成为软件时钟,一旦系统启动并且系统时钟被初始化,系统时钟就完全独立硬件时钟。 hwclock: real-time clock ( RTC ) 通常被称为 硬件时钟 ,(在系统集成电路板上),即使在机器关闭时也能正常工作。实时时钟可以使用UTC( Universal Time )或本地时间,建议使用UTC。 使用 timedatectl 命令 显示当前日期和时间: timedatectl [root@zydev ~]# timedatectl Local time: Mon 2017-11-06 01:22:46 CST #中部标准时间,UTC+8 Universal time: Sun 2017-11-05 17:22:46 UTC RTC time: Sun 2017-11-05 17:22:46 Time zone: Asia/Shanghai (CST, +0800) NTP enabled: no NTP synchronized: no RTC in local TZ: no DST active: n/a  改变ntpd和chrony状态不会立即生效,需要执行: systemctl

CentOS 7 设置时间和日期

元气小坏坏 提交于 2020-01-26 06:17:18
CentOS 7 有两种类型的时间: 实时时间(Real-Time Clock,RTC),通常称为硬件时间,完全独立于操作系统运行,一般是由主板上的COMS负责维护,因此在操作系统关闭后也能运行。 系统时间(System Time),也称为软件时间,由Linux内核维护,其初始值基于硬件时间, 一旦Linux启动并且系统时间被初始化,系统时间就完全独立于硬件时间。 CentOS 7 提供了三个命令行工具,可以用来显示和配置时间: timedatectl,date, hwclock;timedatectl是CentOS 7的新工具,可以同时管理系统时间和硬件时间,date是CentOS 6就有的工具,只能管理系统时间,一般是脚本中用于格式化输出时间,hwclock主要用于管理硬件时间。 使用timedatectl命令 CentOS 7 中以ctl结尾的命令,几乎都是systemd的一部分,timedatectl也不例外。 显示当前日期和时间 [root@localhost ~]# timedatectl Local time: Fri 2018-07-20 17:46:09 CST Universal time: Fri 2018-07-20 09:46:09 UTC RTC time: Fri 2018-07-20 09:46:09 Time zone: Asia/Shanghai

JavaScript - difference between Date(), new Date(), and ISODate

泪湿孤枕 提交于 2020-01-24 06:37:05
问题 I've seen various versions of this question, but none of them answer my needs. I want to create an ISODate for MongoDB and I'm using Node.js. In Node, when I do: console.log(Date()); I get: Mon Sep 26 2016 15:17:04 GMT-0400 (EDT) <-- This is correct. When I do: console.log(new Date()); I get: 2016-09-26T19:17:04.731Z <- This is 4 hours ahead My understanding of the way to do ISODATE is: var isodate = new Date().toISOString() console.log(isodate); Which yields a time 4 hours ahead of "now". My

每周一个 Python 标准库 | time

风格不统一 提交于 2020-01-21 19:10:50
技术博客:https://github.com/yongxinz/tech-blog 同时,也欢迎关注我的微信公众号 AlwaysBeta ,更多精彩内容等你来。 几乎所有的正式代码中,我们都需要与时间打交道。在Python中,与时间处理有关的模块包括 time , datetime 以及 calendar ,本节主要讲解time模块。 在 Python 中,用三种方式来表示时间,分别是时间戳、格式化时间字符串和结构化时间 时间戳( timestamp ):也就是 1970 年 1 月 1 日之后的秒,例如 1506388236.216345,可以通过 time.time() 获得。时间戳是一个浮点数,可以进行加减运算,但请注意不要让结果超出取值范围。 格式化的时间字符串( string_time ):也就是年月日时分秒这样的我们常见的时间字符串,例如 2017-09-26 09:12:48 ,可以通过 time.strftime('%Y-%m-%d') 获得; 结构化时间( struct_time ):一个包含了年月日时分秒的多元元组,例如 time.struct_time(tm_year=2017, tm_mon=9, tm_mday=26, tm_hour=9, tm_min=14, tm_sec=50, tm_wday=1, tm_yday=269, tm_isdst=0)

Fabric CA环境的集成

回眸只為那壹抹淺笑 提交于 2020-01-20 18:35:34
我们前面关于Fabric的所有文章中用到的例子都没有CA Server,都是由cryptogen这个工具根据crypto-config.yaml而生成的。但是在实际生产环境中,我们肯定不能这么做,我们应该为每个Org建立一个CA,由CA来管理其中的用户。下面我们就试着讲Fabric CA集成到整个Fabric网络中,并用CA Client生成新用户,最终使用新用户调用ChainCode,验证新用户的合法性。我们仍然以官方的e2e_cli为例,关于这个例子的环境搭建,可以参考我的上一篇博客: http://www.cnblogs.com/studyzy/p/7437157.html 1.修改docker-compose文件,增加CA容器 我们就以给org1这个组织增加CA容器为例,打开e2e_cli文件夹中的docker-compose-cli.yaml ,增加以下内容: ca0: image: hyperledger/fabric-ca environment: - FABRIC_CA_HOME=/etc/hyperledger/fabric-ca-server - FABRIC_CA_SERVER_CA_NAME=ca0 - FABRIC_CA_SERVER_TLS_ENABLED=false ports: - "7054:7054" command: sh -c 'fabric

Create moment Object from UTC string

こ雲淡風輕ζ 提交于 2020-01-17 04:41:09
问题 I'm getting from my webservice an UTC date String such as the following : "2015-06-06T12:30:12Z" I need to display it following these 2 rules : If date < 1 week, display it like : 3 days ago or 23 mins ago.... If date > 1 week, display the date YYYY-DD-MM Now I'm trying to build a moment object but seems to be returning something weird : var sDate = "2015-06-06T12:30:12Z"; var momentDate = moment(sDate); var fromNow = momentDate.fromNow(); console.log("momentDate : " + momentDate); //

Angular material date picker: Date Parsing UTC problem 1 day before

六眼飞鱼酱① 提交于 2020-01-14 14:36:18
问题 I know there are several threads about this and i read them all but couldn't fix this for days. I might found a solution but it seems to be do dirty for me. So as other users I have the same problem with the datePicker. For me it's the Angular Material Datepicker mat-datepicker When I log the value I get the correct result: Wed Dec 24 1999 00:00:00 GMT+0100 (Mitteleuropäische Normalzeit) but in the request it is 1999-12-23T23:00:00.000Z What I tried yet: I've added { provide: MAT_MOMENT_DATE