在搭建UOJ中,发生了一些问题,解决后记录于此。 There is something wrong with database >_<.... Connection refused 方法: docker exec -it uoj /bin/bash service mysql restart 未完待 ...
分类:
其他好文 时间:
2020-06-25 12:12:26
阅读次数:
79
git init 创建工作区 git add . 添加到暂存区 提交到版本区 git commit -m 'init app' 记录远程仓库地址 git branch 查看分支 创建并切换分支 git push -u origin my 推送到远程仓库 git status 查看本地状态 git a ...
分类:
其他好文 时间:
2020-06-25 12:02:44
阅读次数:
76
#!/usr/bin/env python3 # * coding: utf8 *"""目录:Python格式化字符串的4中方式一:%号(掌握)二:str.format(掌握)三:f-Strings(掌握)四:标准库模板五:总结四种方式的应用场景""""""Python格式化字符串的4种方 ...
分类:
其他好文 时间:
2020-06-25 11:48:42
阅读次数:
64
Search in Rotated Sorted Array (M) 题目 Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., [0,1,2,4,5 ...
分类:
其他好文 时间:
2020-06-25 10:21:08
阅读次数:
61
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 10:16:30
阅读次数:
70
打开ueditor.all.js 注释掉以下三行 // var root = UE.htmlparser(html);// me.filterInputRule(root);// html = root.toHtml(); 将 html.push(creatInsertStr( vi.url, vi ...
分类:
其他好文 时间:
2020-06-25 10:09:08
阅读次数:
94
首先,在阿里云服务器上配置docker环境,配置时候一定要注意镜像地址的配置: 登录镜像仓库就可以下拉镜像 1、查找jenkins docker search jenkins docker push jenkinsci/blueocen 运行 docker run -d --name=jenkins ...
分类:
其他好文 时间:
2020-06-25 09:31:41
阅读次数:
48
在服务器上安装xxx软件时报错,提示如下: Installation failed with error code: (0x80070643), "Fatal error during installation...". Solution: 1. 将当前登录帐号登录到Local Administra ...
分类:
其他好文 时间:
2020-06-25 09:23:11
阅读次数:
125
题目信息 时间: 2019-06-24 题目链接:Leetcode tag:栈 难易程度:简单 题目描述: 定义栈的数据结构,请在该类型中实现一个能够得到栈的最小元素的 min 函数在该栈中,调用 min、push 及 pop 的时间复杂度都是 O(1)。 示例: MinStack minStack ...
分类:
其他好文 时间:
2020-06-25 09:21:29
阅读次数:
54
http.Pusher只支持Go 1.8或更高版本 package main import ( "html/template" "log" "github.com/gin-gonic/gin" ) var html = template.Must(template.New("https").Pars ...
分类:
其他好文 时间:
2020-06-24 23:59:20
阅读次数:
127