TryAgain

解决Github中使用Octotree时,出现 Error: API limit exceeded 报错 或者 Error: Connection error报错的问题(详细操作)

左心房为你撑大大i 提交于 2020-07-27 21:53:17
对于科研工作者来说, Github 是不可多得的利器,那么 Octotree 插件的使用将会让用户在使用 Github 时拥有更好的体验,提高学习工作的效率。但是笔者在使用的过程中遇到以下这样的问题,下面将介绍遇到的问题以及解决办法。 1. 问题描述 在 Github 中使用 Octotree 遇到以下两个问题: 问题一: 出现 "Error: API limit exceeded(You have exceeded the Github API rate limit. To continue using Octotree, you need to provide a Github access token. Please go to Setting and enter a token)"报错。 问题二: 出现"Error: Connection error(Cannot connect to website. If your network connection to this website is fine, maybe there is an outage of the API.Please try again later)" 出现这两种问题的原因都是由于API的限制,问题的解决方法如下: 2. 解决办法 以问题一为例,两个问题的解决办法是一样的,操作也一样。步骤如下: (1

python日记—语法错误 & 异常处理

一曲冷凌霜 提交于 2020-05-07 14:49:41
#1.语法错误 SyntaxError #2.异常 Exceptions #print(8/0) #处理单一异常 while True: try: #将可能会出现异常的语句放到try中 x = int(input('Enter an integer:')) break except ValueError: #如果出现异常,将跳到except中执行 print('Not valid input, try again...') #处理多种异常 try: f = open('file.txt') s = f.readline() i = int(s.strip()) except OSError as err: print('OS error:',err) 来源: oschina 链接: https://my.oschina.net/jugier/blog/4269288

ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot ...

不羁岁月 提交于 2020-05-06 09:11:04
mysql 配置文件目录:/etc/my.cnf root 密码为空的时候配置文件中下面这句: skip-grant-tables GRANT ALL PRIVILEGES ON *.* TO IDENTIFIED BY '123' WITH GRANT OPTION; 执行这句时候错误: ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement mysql> GRANT ALL PRIVILEGES ON *.* TO IDENTIFIED BY '123' WITH GRANT OPTION; ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement 这个时候我们只需要 flush privileges 一下,在添加用户就OK了, mysql> flush privileges; Query OK, 0 rows affected (0.01 sec) mysql> GRANT ALL PRIVILEGES ON *.*

简单实现一个ES5 Vue Dialog 插件

淺唱寂寞╮ 提交于 2020-04-30 12:58:00
调用vant的Dialog组件觉得用起来很爽,于是乎想自己也实现一个~ 由于考虑到项目兼容性,所以没用ES6写法 (一)效果图如下: (二)可配置参数:图标,内容,是否自动消失,是否显示底部按钮区域,还有按钮回调函数 (三)组件代码 var pconfirm = Vue.extend({ template: '\ <transition name="fade">\ <div v-show="isShowFlag">\ <div class="com-comfirm">\ <div class="com-comfirm-content">\ <div class="com-comfirm-icon-wrap">\ <img :src="icon" alt="">\ </div>\ <div class="com-comfirm-desc">\ {{desc}}\ </div>\ </div>\ <div class="com-comfirm-foot" v-show="!autoDisappear">\ <div class="com-comfirm-cancel" v-show="cancelShow" @click="handleCancel">取消</div>\ <div @click="handleSure">确定</div>\ </div>\ </div>\ <div

esp8266物联网开发四:MQTT本地操控

痞子三分冷 提交于 2020-04-26 14:07:05
之前利用点灯科技的库来使小爱同学控制LED的过程中,我们大略提到了一下MQTT的整体流程,由于其MQTT服务器是由点灯科技提供的,所以对其中的很多连接细节,我们并不知道,本节我们准备通过搭建本地的MQTT服务器,然后通过MQTT Client向MQTT服务器发送控制命令,来控制我们的LED灯。 首先,我们需要启动MQTT服务器,启动方式我们就不需要多说了,之前章节有讲解,启动完毕之后,其连接地址为:192.168.43.2:1883,切记连接地址不可写成127.0.0.1,否则无法连接成功。 然后,开始进行编码操作,具体编码内容如下: #include <ESP8266WiFi.h> #include <PubSubClient.h> #define JDQ 16 const char * MQTT_SERVER = " 192.168.43.2 " ; const int MQTT_PORT = 1883 ; const char * MQTT_USRNAME = " addmin " ; const char * MQTT_PASSWD = " public " ; const char * TOPIC = " home/devices/onoff/ " ; const char * CLIENT_ID = " scy-mqtt-client " ; //

mysql参数max_binlog_cache_size设置不当引发的血案

て烟熏妆下的殇ゞ 提交于 2020-04-26 07:47:05
日常运维中的坑真是防不胜防,不一小心就遇到别人给你挖的坑。最近又遇到经验不足的DBA不知道从哪拷贝的配置文件(据说是当时参加某培训机构视频培训是资料里的模板,真的是误人子弟呀),其中把max_binlog_cache_size设置的只有2G,而MySQL早已将此参数的默认值调整的很大了(18446744073709547520),实在没想通为何有人会如此修改。 1、 故障描述 收到告警,从库SQL线程停止,查看日志,其中的错误内容如下: [ ERROR ] Slave SQL for channel '' : Worker 1 failed executing transaction ' 370e03bf-aa09-11e9-9bd3-e4434b2aa008:248804226 ' at master log , end_log_pos 2149953254 ; Could not execute Update_rows event on table dbname.tbname; Multi - statement transaction required more than ' max_binlog_cache_size ' bytes of storage; increase this mysqld variable and try again, Error_code:

kafka 生产者

♀尐吖头ヾ 提交于 2020-04-23 21:49:50
依赖: < dependency > < groupId >org.apache.kafka</ groupId > < artifactId >kafka-clients</ artifactId > < version >2.5.0</ version > </ dependency > 普通api: Properties props = new Properties(); props.put("bootstrap.servers", "localhost:9092"); props.put("acks", "all"); props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer"); props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer"); Producer<String, String> producer = new KafkaProducer<>(props); for (int i = 0; i < 100; i++) producer.send(new ProducerRecord<String, String>("my-topic",

Mac免密登录

别等时光非礼了梦想. 提交于 2020-04-09 17:01:04
目的:每次登录服务器都需要输入密码比较费劲,设置成免密登录就方便多了! 在本机执行服务器上的脚本,如果没有设置免密登录会报: Host key verification failed Permission denied Permission denied, please try again 设置成免密登录执行起来就方便多了,网上一搜一大把,介绍这个的不过我还是要自己写一个。因为我在设置的时候,出现了一些问题,看了好多博文才解决,记录一下日后可以节省点时间。 第一步:在本机生成秘钥(注意:秘钥存放的位置,建议使用默认位置,后面一路回车) ssh-keygen 第二:上传公钥到服务器(假设,服务器的IP是:192.168.11.2,用户是:root) ssh -copy- id -i ~/. ssh /id_rsa.pub root@ 192.168 . 11.2 设置完后,可以登录对应的主机,然后到对应的目录下查看自己的公钥是否已经加入了对应的文件之中,命令如下: cd ~/. ssh ls - l vim authorized_keys 第三步:验证设置是否ok,通过ssh命令直接登录 ssh root@ 192.168 . 11.2 免密登录的原理,如下图所示: 参考如下: linux命令之 ssh-keygen linux命令之 ssh-copy-id ssh

SAP S/4HANA里如何创建Customer主数据以及执行后续处理

谁说胖子不能爱 提交于 2019-12-06 22:01:06
来自Jerry的同事Zhang Sean. 1, Launch tcode: BP and select the Organization 2, Maintain the information for Customer role 3, Maintain information for name and search 4, Maintain the Address 5, Maintain the information for Sales and Distribution 6, then maintain which Sales Area this customer is assigned to, you could also maintain the information for other Sales Area by the button "Switch Area". Then after that you shall maintain the information for Order, Shipping, Billing. 7, last but the most important, remember to save the BP, then you will get the Customer for the SD business. 8, Then you could

DRF 用户密码验证

一世执手 提交于 2019-12-05 04:39:22
密码字段验证 参考 serializers.py from django.contrib.auth import password_validation class PhoneCodeSerializer(BaseSerializer): code = serializers.CharField( required=True, allow_blank=False, min_length=4, max_length=4, help_text='验证码', error_messages={ 'blank': '请输入验证码', 'required': '请输入验证码', 'min_length': '验证码格式错误', 'max_length': '验证码格式错误', }) phone = PhoneField( required=True, max_length=11, min_length=11, help_text='手机号') def validate_code(self, code): """ code.create user.receive user.register t1 t2 t3 5min内: t3-t1<5 t3-5<t1: 5min内 t3-5>t1: 过期 :param code: :return: """ last_record = VerifyCode