软件环境 Python 3.6.8 (很可能 Python2.7.x 也有类似问题) Win10 问题描述 C:\Users\peterpan\Desktop>pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ jinja2 Lookin ...
分类:
Windows开发 时间:
2020-03-23 22:59:44
收藏:
0 评论:
0 赞:
0 阅读:
163
最近想搭建一套CI/CD环境尝试一下,因为手里云服务太小了(1C1G),撑不起来gitlab和jenkins。恰巧年前配了台高配版的windows机器,就想在家里的机器上通过docker装gitlab和jenkins。 但是经过尝试,发现docker在windows10下面使用有很多坑,从网上帖子看 ...
分类:
Windows开发 时间:
2020-03-23 22:55:45
收藏:
0 评论:
0 赞:
0 阅读:
93
如果了解sg函数,就知道如果全部相异或是0则必败,否则必胜 #include<iostream> #include<unordered_map> #include <unordered_set> #include<cstring> using namespace std; const int N=1 ...
分类:
Windows开发 时间:
2020-03-23 22:43:17
收藏:
0 评论:
0 赞:
0 阅读:
110
| 序号 | 命令 | 含义 | | : | : | | | 1 | dir(directory) | 列出当前目录下的文件 | | 2 | cd(change directory) | 改变当前所在目录 | | 3 | cls(clear screen) | 清屏 | | 4 | del(dele ...
分类:
Windows开发 时间:
2020-03-23 22:37:04
收藏:
0 评论:
0 赞:
0 阅读:
72
FreeCAD作为一款基于OpenCasCAD内核的开源CAD软件,可以在GitHub上下载源代码。阅读源代码,有助于我们学习CAD软件架构,了解底层几何算法。 由博主Caesar卢尚宇自学整理(纯粹出于对三维CAD软件开发的热爱) 目录 拓扑数据脚本 https://www.cnblogs.com ...
分类:
Windows开发 时间:
2020-03-23 21:51:18
收藏:
0 评论:
0 赞:
0 阅读:
1001
获取跳转路径中的参数,传参就是获取指定参数,不传参就是获取全部参数 为了保险起见,建议 参数使用encodeURI()加密,使用的时候使用decodeURI()解密 function getRequestParam(param) { //获取当前的地址 var url = window.locati ...
分类:
Windows开发 时间:
2020-03-23 20:00:55
收藏:
0 评论:
0 赞:
0 阅读:
144
使用ASP.NET Core 3.x 构建 RESTful API - 1.准备工作学习记录.Net CoreWeb Api RESTful API Web API简介:web API通常是指"使用HTTP协议并通过网络调用的API",由于它使用了HTTP协议,所以需要通过URL信息来指定端点.AP... ...
分类:
Windows开发 时间:
2020-03-23 19:53:12
收藏:
0 评论:
0 赞:
0 阅读:
84
1,使用全局管理员登录Office365AzureAD注册GraphAPI应用,具体参考官网链接https://docs.microsoft.com/zh-cn/graph/auth-register-app-v22,在API权限添加委托应用---以下权限实际上没什么用处,需要将运行graphapi的账号添加为被读取Onedrive站点的管理员Sites.Read.AllSites.ReadWri
分类:
Windows开发 时间:
2020-03-23 18:51:55
收藏:
0 评论:
0 赞:
0 阅读:
105
//c# datetime 格式化 2 DateTime dt = DateTime.Now; 4 //2017/11/14 10:46:56 5 label1.Text = dt.ToString();//2017/11/14 10:46:56 6 label2.Text = dt.ToFileT ...
分类:
Windows开发 时间:
2020-03-23 18:40:58
收藏:
0 评论:
0 赞:
0 阅读:
67
#region MyRegion /// <summary> /// /// </summary> private static void DeleteItself() { string vBatFile = Path.GetDirectoryName(Application.ExecutableP ...
分类:
Windows开发 时间:
2020-03-23 18:29:27
收藏:
0 评论:
0 赞:
0 阅读:
72
Stardock公司开发的一款效率软件Groupy,类似浏览器的多标签页管理,拖动窗口就能把不同的界面组合成一个窗口。 安装后界面: 效果图: 【下载地址】https://www.lanzous.com/iakfayj ...
分类:
Windows开发 时间:
2020-03-23 17:24:53
收藏:
0 评论:
0 赞:
0 阅读:
93
1.封装的方法 public static T GetT<T>(T t, List<string> list) { System.Reflection.PropertyInfo[] properties = t.GetType().GetProperties(); for (int i = 0; i ...
分类:
Windows开发 时间:
2020-03-23 17:10:33
收藏:
0 评论:
0 赞:
0 阅读:
152
普通环境路径如下: 【控制面板】--【系统和安全】--【管理工具】--【本地安全策略】--【网络列表管理器策略】--【网络】--【网络位置】,设定之后也可以设定一下【用户权限】 域控环境路径如下: 不像Windows Server 2003 ,Windows Server 2012 域控制器的管理工 ...
分类:
Windows开发 时间:
2020-03-23 16:39:01
收藏:
0 评论:
0 赞:
0 阅读:
117
pip install pywinauto ERROR: Could not find a version that satisfies the requirement six (from pywinauto) (from versions: none) ERROR: No matching dis ...
分类:
Windows开发 时间:
2020-03-23 16:05:55
收藏:
0 评论:
0 赞:
0 阅读:
159
在C#开发中经常需要进行Web远程访问,方法很多,也使用了很久,但一直没有做一个总结。 C#中用来进行远程请求的方法有很多,如WebClient,WebRequest等,也各有特点。今天在这里主要介绍WebRequest。 先从相对入门的不需要证书验证,不需要登录的开始。 //GET类型的请求 pu ...
分类:
Windows开发 时间:
2020-03-23 15:25:31
收藏:
0 评论:
0 赞:
0 阅读:
73
内容摘录 《Exploring Advanced Features in C# 探索C#中的高级特性》 1 public class TupleExample 2 { 3 4 public (string guitarType,int stringCount) GetGuitarType() 5 { ...
分类:
Windows开发 时间:
2020-03-23 15:04:30
收藏:
0 评论:
0 赞:
0 阅读:
103
这道题因为斜率可能不是一直递增,所以要用二分来维护 #include<iostream> #include<algorithm> #include<cstdio> #include<vector> using namespace std; typedef long long ll; const in ...
分类:
Windows开发 时间:
2020-03-23 13:45:35
收藏:
0 评论:
0 赞:
0 阅读:
75
电脑最近因为各种原因崩溃,只能重装系统,因此要从新安装tensorflow-gpu。相比之前几次安装,这次安装是最为顺利的,因此把整个过程记录一下,以便日后可以参考。 电脑配置: WIN10系统+8个cpu单元+16(8+8)G内存+Nvida Geforece GTX 965M显卡 安装版本: c ...
分类:
Windows开发 时间:
2020-03-23 13:43:20
收藏:
0 评论:
0 赞:
0 阅读:
135
一、C#基本认识 1.1.区分.net与C# .net:一般指.Net Framework框架,是Microsoft开发的一个平台。 代码库 定义了基本的类型,也称为通用类型系统(Common Type System,CTS) 包含.net公共语言运行库(Common Language Runtim ...
分类:
Windows开发 时间:
2020-03-23 13:38:40
收藏:
0 评论:
0 赞:
0 阅读:
79
常见数据类型 C 的类型一般分为 值类型 、 引用类型 两大类型。 值类型的实例存放在栈中,引用类型会在栈中放置一个指针指向堆中的某一块内容。 C 为我们内置了几个数据类型供我们使用: |关键词简写|对应的类全称(点击可以查看对应的API)|值范围|说明| |: :|: |: |: | | bool ...
分类:
Windows开发 时间:
2020-03-23 13:24:41
收藏:
0 评论:
0 赞:
0 阅读:
53