上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 37 下一页
摘要: 间隔5毫秒打印 var data=['a','b','c']; $.each(data,function(k,v) { setTimeout(function(){ console.log('值:'+v+',time:'+k*500); },k*500); }); 阅读全文
posted @ 2021-02-20 17:18 该显示昵称已被使用了 阅读(61) 评论(0) 推荐(0)
摘要: https://c.runoob.com/front-end/61 阅读全文
posted @ 2021-02-15 22:03 该显示昵称已被使用了 阅读(42) 评论(0) 推荐(0)
摘要: document.location Title <body> <b>document.location使用举例 </b ><p> <script type ="text/javascript"> document.write( " 当前位置: " + document.location + " <p 阅读全文
posted @ 2021-02-15 11:52 该显示昵称已被使用了 阅读(134) 评论(0) 推荐(0)
摘要: 前端版本: https://github.com/plotly/plotly.js 百分比柱状图: https://plotly.com/javascript/bar-charts/ python版本: https://mp.weixin.qq.com/s/1Y7FLqwKWG72RcYqxdBhA 阅读全文
posted @ 2021-02-10 14:49 该显示昵称已被使用了 阅读(762) 评论(0) 推荐(0)
摘要: Gerrit的commit-msg hook https://blog.csdn.net/taiyangdao/article/details/71079021 Gerrit 添加review # 1 @PLUGIN@ plugin [reviewers] enableREST = true ena 阅读全文
posted @ 2021-02-05 17:43 该显示昵称已被使用了 阅读(110) 评论(0) 推荐(0)
摘要: git push origin HEAD:refs/for/master的意思 git push <remote 名字> <本地分支的名字> : <远程库的名字> git push origin HEAD:refs/for/master git push 肯定是推送 origin : 是远程的库的名 阅读全文
posted @ 2021-02-05 16:30 该显示昵称已被使用了 阅读(186) 评论(0) 推荐(0)
摘要: # 类的定义 class RobotObjectDict(dict): def __getattr__(self, attr): value = self[str(attr).upper()] return RobotObjectDict(value) if isinstance(value, di 阅读全文
posted @ 2021-02-02 18:10 该显示昵称已被使用了 阅读(62) 评论(0) 推荐(0)
摘要: <open cmd> cd <to your Ryven folder (the outer one)> python -m venv venv venv/Scripts/activate # windows cd venv/Scripts/activate 执行activate.bat pip i 阅读全文
posted @ 2021-02-01 14:10 该显示昵称已被使用了 阅读(56) 评论(0) 推荐(0)
摘要: Supports any database which has JDBC driver (which basically means - ANY database). also supports non-JDBC datasources (MongoDB, Cassandra, Couchbase, 阅读全文
posted @ 2021-02-01 13:05 该显示昵称已被使用了 阅读(173) 评论(0) 推荐(0)
摘要: 论坛的项目 https://www.kesci.com/home/project 自己的项目 import pandas as pd import numpy as np import altair as alt import pymysql from sqlalchemy import creat 阅读全文
posted @ 2021-02-01 10:55 该显示昵称已被使用了 阅读(159) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 37 下一页