etm

ETM项目周报(12.13-12.19)

半腔热情 提交于 2020-02-07 09:00:27
亲爱的ETM伙伴: 距离2020年只有10天, 全国多地初雪已至, 春节在期待中赶来。 暖冬中,有媒体报道称: 央行数字货币有望在深圳、苏州两地试点。 停留于文书的数字人民币, 距离现实中落地不再遥远。 各方亦在期待中奔赴。 那么本周ETM有何新动态? 一起来看看ETM周报吧。 项目进展 ETM-Core ETM-Core 主网稳定运行 23 天 ETM-Core 主网区块高度 665277(截止 12 月 20 日 17 时) ETM-Contract 智能合约,已完成 60% ETM-Module ETM 主网第二批映射已完成 ETM-Explorer 部分 Bug 修复,已完成 80% ETM-Wallet 部分 Bug 修复,已完成 60% ETM-Pay、ETM-ID 已完成 98% 节点状态管理 Web Tools 功能改进,新增节点备注信息 ETM-Web WebSite 新增资讯版块日常更新,已上线 运营进展 社群数据 官方微信社群数量:220+ 官方微信社群人数:58200+ 官方微信客服好友:14300+ 官方电报群人数:52000+ 官方微博关注人数:10000+ 官方微信公众号关注人数:2000+ 运营数据 官方微信公众号发布 2 篇图文 官方微博发布 6 条微博 在币乎、CSDN、简书、大鱼号、百家号、头条号、知乎号、企鹅号等各内容平台发布文章 社群活动

java Spring定时器 每个季度执行一次

纵饮孤独 提交于 2019-12-04 10:46:51
@Scheduled(cron = " 0 00 00 1 4,7,10,1 ?")//每个季度的第一天零点进行统计此注解是每个季度结束后的下一天执行(因为Spring不识别字母(L---每月最后一天))所以只能采用下个月的第一天以下代码针对时间进行处理 Calendar cal = Calendar.getInstance();//当前时间int month = cal.get(Calendar.MONTH) + 1;//当前月份int year = cal.get(Calendar.YEAR);//当前年int quarter=0;//当前季度int stm = 1;//季度的起始月份int etm = 3;//季度的结束月份switch (month){ case 1: stm = 10; etm=12; quarter=3; year=year-1; break;//因为一月份进入方法是统计上一年第四季度的信息,所以处理年份信息 case 10: stm = 7; etm=9; quarter=2; break;//本年 case 7: stm = 4; etm=6; quarter=1; break;//本年 case 4: stm = 1; etm=3; quarter=0; break;//本年}最终得到 year---年份     quarter--季度    

JSchException: Algorithm negotiation fail diffie-hellman-group14-sha1

匿名 (未验证) 提交于 2019-12-03 01:00:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I know this has been asked a few times but I have tried many of the accepted solutions already given. I am creating a simple SSH tunnel using JSch. and I keep getting this error along with this in the logs: INFO: diffie-hellman-group14-sha1 is not available. I have already added the Java unlimited policy files to the correct folder and I have added this algorithm to the KexAlgorithms section in the sshd_config file. Below is the full log breakdown. INFO: Connecting to xx.xx.xxx.xxx port 22 INFO: Connection established INFO: Remote version