码迷,mamicode.com
首页 >  
搜索关键字:github commit push pull add    ( 90927个结果
git学习之通俗易懂篇(三)
本篇学习远程仓库 首先明白远程仓库的意义 我们的原有理解是:git仓库是可以帮助我们记录并保存我们对文件的各种行为,方便我们管理文件、编辑文件 现在的需求是:本地的git仓库我们想要一个备份,以防万一; 而且这个备份可以和我们的工作同步,不需要手动备份; 如果有人和我们一起协同工作,也可以随时拿到文 ...
分类:其他好文   时间:2021-05-04 16:25:01    阅读次数:0
C - Arrangement for Contests
题目链接 维护一个区间最小值同时维护一个区间最小值的减法 #include <bits/stdc++.h> using namespace std; const int N = 100010; int a[N]; int n,k; struct node{ int l,r; int v,add; } ...
分类:其他好文   时间:2021-05-04 16:06:56    阅读次数:0
Pandas-02-DataFrame运算
1. 算术运算 add(other) 比如进行数学运算加上一个具体数字 data["open"].add(10) # open列加10 # data["open"] + 10 # 一般不这么写 sub(other) 用法同add 2. 逻辑运算 2.1. 逻辑运算符号 逻辑运算类型:>, >=, < ...
分类:其他好文   时间:2021-05-04 16:04:10    阅读次数:0
CF776D The Door Problem
CF776D The Door Problem 原题链接 题意: 给定 n扇门 m 把钥匙,每一把钥匙会同时控制 k_i 扇门,每扇门最多被两把钥匙控制。求是否存在一个使用钥匙的方法使得全部的门都变成开的。 思路1(2-sat): 与上题类似,考虑每扇门的不同初始状态造成的不同操作。 若该门初始状态 ...
分类:其他好文   时间:2021-05-04 16:01:59    阅读次数:0
docker常用命令
安装镜像:docker pull 镜像名称 查看所有运行容器:docker ps -a 运行容器:docker run --name 容器名称 进入指定容器:docker exec -it 容器名称 bash 重启容器:docker restart 容器名称 停止所有容器:docker stop $ ...
分类:其他好文   时间:2021-05-04 15:53:31    阅读次数:0
linux c++(makefile)
makefile makefile|Makefile 目标:依赖 tab键 规则命令 版本一 app:main.c add.c gcc -o app -I./include main.c add.c 版本二 app: main.o add.o gcc -o app -I./include main. ...
分类:编程语言   时间:2021-05-04 15:41:38    阅读次数:0
linux下安装微信
基于wine模式安装微信. 参考 https://github.com/zq1997/deepin-wine 在4K屏幕下, 分辨率太高导致字体太小, 如下调整 ...
分类:微信   时间:2021-05-04 15:33:57    阅读次数:0
Vue3+ElementPlus+Koa2 全栈开发后台系统
##Vue3+ElementPlus+Koa2 全栈开发后台系统 Vue3 ElementPlus Koa2-介绍 Element Plus,一套为开发者、设计师和产品经理准备的基于 Vue 3.0 的桌面端组件库。 到目前为止,Element每月已经获得了48800个Github Stars和10 ...
分类:其他好文   时间:2021-05-04 15:29:38    阅读次数:0
nginx日志分析--可视化
#1. 安装依赖 yum install glib2 glib2-devel GeoIP-devel ncurses-devel zlib zlib-devel -y wget https://github.com/maxmind/geoip-api-c/releases/download/v1.6 ...
分类:其他好文   时间:2021-05-04 15:25:34    阅读次数:0
Computer Networks COMPSCI 453: Select Lectures Notes (Resources and Foreword)
Computer Networking: a Top-Down Approach (8th ed.) : Select Lectures Notes Navigator 1 Resources and Introduction 2 Chapter 1: Introduction 3 Chapter ...
分类:Web程序   时间:2021-05-04 15:21:01    阅读次数:0
90927条   上一页 1 ... 56 57 58 59 60 ... 9093 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!