本文是Git服务的搭建指南,Gitea 是一个自己托管的Git服务程序。他和GitHub, Bitbucket or Gitlab等比较类似。他是从 Gogs 发展而来社区版本 ...
分类:
其他好文 时间:
2020-07-01 12:30:14
阅读次数:
231
gate 一年前做的. 求一个字符串由多少个循环节构成. KMP. 结论:若$n % (n-next[n]) \not= 0$则不是由循环节构成的. 否则,答案为$n/(n-next[n])$. code #include<cstdio> #include<iostream> #include<cm ...
分类:
其他好文 时间:
2020-07-01 09:51:14
阅读次数:
65
前言 昨天迁移网站,今天突然出了Ueditor请求后台配置项http错误,上传功能将不能正常使用 步骤 看了下网络请求发现是config.json文件没有读取到,重新覆盖了该文件后恢复,不过不排除网络问题造成的 cp -rvf public/static/js/ue/config.json /dat ...
分类:
Web程序 时间:
2020-06-30 14:49:35
阅读次数:
310
Using the Power Apps visual Let's look at the steps required to use the Power Apps visual in your Power BI report. Power Apps visual is available by d ...
分类:
移动开发 时间:
2020-06-29 11:30:50
阅读次数:
107
转自:https://www.cnblogs.com/wsmwsm/p/12910590.html 一、需求 根据部门汇总业绩,并展示员工业绩明细(效果图如下) 二、实现步骤: 2.1 将原始数据加载至power query中处理 2.2 对业绩进行汇总处理 比如第二行的海安与最后一行的海安为同一个 ...
分类:
其他好文 时间:
2020-06-29 00:32:49
阅读次数:
109
Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power set). Note: The solution set must not conta ...
分类:
其他好文 时间:
2020-06-29 00:11:37
阅读次数:
54
一、说明 在平常工作中,总有人来问我怎么显示百分比,平常工作中虽只是知道有这个功能,但是如果到操作的时候,也是一个一个的试。 这次就写个博客纪录一下。 二、数据源 数据源是我随便编的,如有雷同,纯属巧合。 三、透视表 3.1 表格展示 3.2 文字说明 总计的百分比:以总计的值为分母,对应的数值为分 ...
分类:
其他好文 时间:
2020-06-29 00:01:53
阅读次数:
114
打开菜单Tools>Execute Commands>Edit/Run Script. 并执行下面语句 Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim blankStr blankStr = Space(1) ...
分类:
其他好文 时间:
2020-06-28 20:39:16
阅读次数:
68
if (!message.touser) { $("#sound").attr('src', "https://taibao-image.ecdpower.net/shtlc/chat/msg.mp3"); Notification.requestPermission(function (permi ...
分类:
其他好文 时间:
2020-06-27 16:21:01
阅读次数:
195
MySQL的函数: 数字函数: 1.ABS函数:绝对值 2.ROUND函数:四舍五入 3.FLOOR函数:强制舍位到最近的整数 4.CEIL函数:强制进位到最近的整数 5. POWER函数:幂函数 6.LN函数:对数函数 7.SQRT函数:开平方 8.PI函数:圆周率 9.Sin/Cos/Tan/C ...
分类:
数据库 时间:
2020-06-27 13:31:37
阅读次数:
109