【问题描述】 Failed with error: dst refspec 1.9.3-20100630 matches more than one. failed to push some refs to 'git@xxxxxx.git' 【问题根源】 tag名字和分支名字一样 【解决方案】 删除 ...
分类:
其他好文 时间:
2020-07-10 15:10:11
阅读次数:
59
引擎: 4.24 事前准备: Alembic是作为插件依附在引擎中,要在工程中使用需要先在Build.cs里面加上dependency: PublicIncludePaths.AddRange( new string[] { // ... add public include paths requi ...
分类:
其他好文 时间:
2020-07-10 11:40:34
阅读次数:
96
使用Pechkin.Synchronized可以方便导出html为pdf,但是对于https路径的图片并不支持,仅支持http路径下的图片 解决方案:图片使用本地绝对路径(相对于服务器) 以下是我获取本地绝对路径的方法 #region 获得当前绝对路径 /// <summary> /// 获得当前绝 ...
分类:
Web程序 时间:
2020-07-10 00:46:00
阅读次数:
116
目前我能想到的是最笨的办法,能以后想到更好的方法的时候在来继续做把 题目描述: 将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 示例: 输入:1->2->4, 1->3->4输出:1->1->2->3->4->4 遇到的错误: 解决方法,把以下两句原 ...
分类:
其他好文 时间:
2020-07-09 22:44:09
阅读次数:
90
random模块的使用 random是Python内置模块, 想要使用该模块, 第一步需要进行导入, 下面介绍几种random常用的函数 import random print(random.random()) # 大于0且小于1之间的小数 print(random.randint(1, 3)) # ...
分类:
其他好文 时间:
2020-07-09 15:15:34
阅读次数:
66
[root@iZ8vb5j88w6ebjejfmy39jZ software]# ./atlassian-confluence-6.7.1-x64.bin Unpacking JRE ... Starting Installer ... Jul 08, 2020 11:57:40 PM java.u ...
分类:
其他好文 时间:
2020-07-09 01:24:54
阅读次数:
102
数字取整 >>> import numpy >>> print(numpy.ceil(1.7)) 2.0 >>> print(numpy.floor(1.7)) 1.0 >>> print(int(1.7)) 1 >>> ...
分类:
其他好文 时间:
2020-07-08 23:24:17
阅读次数:
93
<Table class="table" :columns="columns1" :data="tableData" highlight-row :max-height="500" border @on-selection-change="onSelectionChange" @on-row-cli ...
分类:
其他好文 时间:
2020-07-08 19:36:41
阅读次数:
281
几个常用正则 <!-- 验证 8-16 位数字 --> var reg =/^\d{8,16}$/ <!-- 验证 8-12 位数字、字母 --> var reg=/^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,12}$/ <!-- 验证手机号 --> /^1[34 ...
分类:
其他好文 时间:
2020-07-08 13:37:18
阅读次数:
52
<?php function demo01($a) { echo $a; } call_user_func("demo01", "hello world"); 输出 1.配合命令行参数使用 <?php //把第一个参数做为回调参数使用 $i = getopt("i:"); $i = $i['i']; ...
分类:
其他好文 时间:
2020-07-08 13:17:32
阅读次数:
63