首页 > 2020年06月25日 > 全部分享
git设置不用每次输入密码
这样在输入过一次密码之后,以后就不需要每次都输入密码了。touch ~/.git-credentials,git config --global credential.helper store ...
分类:其他   时间:2020-06-25 09:52:34    收藏:0  评论:0  赞:0  阅读:110
python中unittest的使用
基本使用 import unittestclass Testcase(unittest.TestCase): @classmethod def setUpClass(cls): pass @classmethod def tearDownClass(cls): pass def setUp(self ...
分类:编程语言   时间:2020-06-25 09:52:08    收藏:0  评论:0  赞:0  阅读:76
PTA 乙级 1002 写出这个数 (20分)
1 #include<stdio.h> 2 3 int main(){ 4 char str[10][5] = {"ling","yi","er","san","si","wu","liu","qi","ba","jiu"}; 5 char num[100]; 6 int sum = 0, i = ...
分类:其他   时间:2020-06-25 09:51:49    收藏:0  评论:0  赞:0  阅读:77
PTA 乙级 1004 成绩排名 (20分)
写的很冗余,也没考虑类之间的关系,还能更简洁,更高效,仅做参考 有时间考虑做一个学生数据库 1 import java.util.Arrays; 2 import java.util.HashMap; 3 import java.util.Scanner; 4 5 public class Main ...
分类:其他   时间:2020-06-25 09:51:27    收藏:0  评论:0  赞:0  阅读:55
220. Contains Duplicate III
Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between nums[i] and ...
分类:其他   时间:2020-06-25 09:51:02    收藏:0  评论:0  赞:0  阅读:65
Visual Studio 开发 Odoo,配置过程记录
不断修正记录 Visual Studio 开发 Odoo 的环境设置过程,备忘! 1、安装 Python 环境,设置环境路径 Path,通过 Cmd 测试 版本 Python --version ; 2、安装 Visual Studio 社区版(选择 16.7 Preview), 仅 选择 Pyth ...
分类:其他   时间:2020-06-25 09:50:42    收藏:0  评论:0  赞:0  阅读:194
环形链表判断
方法一: 哈希表 时间复杂度:O(n) 空间复杂度:O(n) class Solution: def hasCycle(self, head: ListNode) -> bool: dict = {} while head: if head in dict: return True else: di ...
分类:其他   时间:2020-06-25 09:50:22    收藏:0  评论:0  赞:0  阅读:61
CodeForces 1237H Balanced Reversals
CodeForces 1237H Balanced Reversals 2s,512MB 长度为偶数 \(n\) 的01串 \(a,b\) . 问是否可以通过至多 \(n+1\) 次如下操作将 \(a\) 变成 \(b\) . 选择一个偶数 \(p \le n\) ,将 \(a\) 变成 \(a_p ...
分类:其他   时间:2020-06-25 09:49:19    收藏:0  评论:0  赞:0  阅读:74
百度PARL初探
强化学习是近些年最火,最接近“真实情况”的深度学习方式。对比其他学习注重的是决策问题,通过智能体与周边环境的交互学会了如何能获得更多的奖励。 百度的paddle团队开源了强化学习PARL项目,该项目有几大特性: 在实际任务中尝试使用强化学习解决问题 快速调研下不同强化学习算法在同一个问题上的效果 搭 ...
分类:其他   时间:2020-06-25 09:48:55    收藏:0  评论:0  赞:0  阅读:70
nested exception is java.lang.NoClassDefFoundError: com/fasterxml/jackson/core/util/DefaultIndenter
需要加 <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --><dependency> <groupId>com.fasterxml.jackson.core</groupId> <art ...
分类:编程语言   时间:2020-06-25 09:47:05    收藏:0  评论:0  赞:0  阅读:70
文件监控系统
文件监控FileSystemWatcher类,主要用于监控系统上制定的文件异动。该类位于System.Io, NotifyFilters枚举类型的属性是决定其监控文件那些行为的关键,(在WPF中有一个INotifyPropertyChanged的接口监控对象属性变化的通知) public enum ...
分类:其他   时间:2020-06-25 09:46:45    收藏:0  评论:0  赞:0  阅读:73
通过curl调用 k8s service api 无法修改 spec.port
由于使用模板替换生成的 yaml 文件,端口号deployment service 是一致的,但是在发布时不能确定jar应用的端口号(真不配合,没办法) 造成要修改端口号,deployment 替换模板后直接调用 curl PUT 可以更新,但是service 出现问题, 前期是删除sevice,造 ...
分类:Windows开发   时间:2020-06-25 09:46:10    收藏:0  评论:0  赞:0  阅读:82
合并两个有序链表
方法1:迭代 m、n为两个有序链表的长度 时间复杂度:O(m+n) 空间复杂度:O(1) class ListNode: def __init__(self, val=0, next=None): self.val = val self.next = next class Solution: def ...
分类:其他   时间:2020-06-25 09:44:47    收藏:0  评论:0  赞:0  阅读:60
Installation failed with error code: (0x80070643)
在服务器上安装xxx软件时报错,提示如下: Installation failed with error code: (0x80070643), "Fatal error during installation...". Solution: 1. 将当前登录帐号登录到Local Administra ...
分类:其他   时间:2020-06-25 09:44:26    收藏:0  评论:0  赞:0  阅读:188
阿里云DRS数据库本地连接不上问题,ESC服务器可以连上
按照阿里云文档进行连接 创建RDS MySQL实例(就是购买) 设置白名单 申请或释放外网地址(本地连接需要申请外网,用外网地址连接,如果是ESC服务器用内网连接即可) 创建数据库和账号 连接MySQL实例 按照上面步骤进行,在ESC上安装mysql客户端,然后在ESC服务其上登录 mysql -h ...
分类:数据库技术   时间:2020-06-25 09:44:06    收藏:0  评论:0  赞:0  阅读:130
Centos7开启iptables防火墙关闭firewall防火墙
一、场景介绍因服务器被***,删除了数据库,并索要金额。鉴于不安全性,决定开启iptables防火墙实现安全性,并将默认的firewalld卸掉。二、具体步骤安装iptableiptable-service先检查是否安装了iptablesserviceiptablesstatus安装iptablesyuminstall-yiptables升级iptablesyumupdateiptables安装ip
分类:其他   时间:2020-06-25 09:22:30    收藏:0  评论:0  赞:0  阅读:55
一键查看服务器利用率
一键查看服务器利用率
分类:其他   时间:2020-06-25 09:21:19    收藏:0  评论:0  赞:0  阅读:83
部署SpringBoot项目到Windows云服务器上
部署SpringBoot项目到Windows云服务器上 技术概述 将SpringBoot项目打包成jar包部署到Windows云服务器,使得客户端程序可以连接到后端及数据库; 技术详述 这里是使用jar包在云服务器端运行; 项目方面 1.得保证有一个可以运行的完整项目及其配套的依赖等,并且配置好ma ...
分类:编程语言   时间:2020-06-25 09:19:28    收藏:0  评论:0  赞:0  阅读:117
差分入门两题 —— ACwing101 最高的牛
1.提示给出 关系可能重复 故需要引入Hash判重 2.对于给定关系<a,b> 显然我们可以把 a+1 ~b-1 的牛整体减一来达到 ,所以这里可以利用到差分关系 ,最后利用差分的前缀和即实际高度即可 unordered_map<int, int> mp; int c[maxn]; int main ...
分类:Windows开发   时间:2020-06-25 09:18:56    收藏:0  评论:0  赞:0  阅读:80
NtFlushBuffersFile
Hello all,i have some problem with NtFlushBuffersFile(). I should call it in virtual FS driver. Only one reference I have found - in ntdll.dll, but dr ...
分类:其他   时间:2020-06-25 09:17:58    收藏:0  评论:0  赞:0  阅读:80
1182条   上一页 1 ... 53 54 55 56 57 ... 60 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!