def getHash(f):
line = f.readline()
hash = hashlib.md5()
while (line):
hash.update(line)
line = f.readline()
...
yekong
4年前 (2021-04-30)
喜欢
# 生成随机字符串
def generate_random_str(randomlength=16):
"""
生成一个指定长度的随机字符串
"""
random_str = '&...
yekong
4年前 (2021-04-30)
喜欢
删除后就只剩下一个了
...
yekong
4年前 (2021-04-29)
喜欢
进入仓库 需要至少2个分支
切换分支
选择分支
点击更新
确认后默认分支就变更好了
...
yekong
4年前 (2021-04-29)
喜欢
new AMap.Map('echartmap', {
mask:mask,
center:[126.013828,43.652461],
...
yekong
4年前 (2021-04-29)
喜欢
vue未渲染前会出现{{}}
在渲染的根节点添加v-cloak 可以避免{{}}出现
<style type="text/css">
[v-cloak] {
display: none;
}
</style&g...
yekong
4年前 (2021-04-27)
喜欢
创建a标签模拟点击实现新窗口,避免被浏览器拦截
function openLink(url, target) {
var a = document.createElement('a');
a.setAttribute('href',...
yekong
4年前 (2021-04-27)
喜欢
css
@keyframes warn {
0% {
-moz-transform: scale(0.3);
transform: scale(0.3);
opacity: 1;
}
50% {
-moz-transform: sca...
yekong
4年前 (2021-04-26)
喜欢
marker = new AMap.Marker({
map: this.map,
position: Latlong,
icon: n...
yekong
4年前 (2021-04-26)
喜欢
在主题文件夹下面找到timthumb.php,打开后查找 define(‘VERSION’,’XXX’);
我的是
define ('VERSION', '2.8.13');
在它前面添加一行
$_SERVER['DOCUMENT_RO...
yekong
4年前 (2021-04-25)
喜欢