ICode9

精准搜索请尝试: 精确搜索
  • docker-compose的最简单安装方式2020-03-24 16:03:53

    安装docker-compose $ curl -L https://github.com/docker/compose/releases/download/1.8.0/run.sh > /usr/local/bin/docker-compose $ chmod +x /usr/local/bin/docker-compose$ docker-compose --version [root@localhost ~]# curl -L https://github.com/docker/compo

  • A Complete Tutorial on Time Series Modeling in R2020-03-23 22:01:45

      TAVISH SRIVASTAVA, DECEMBER 16, 2015    LOGIN TO BOOKMARK THIS ARTICLE   Overview Time Series Analysis and Time Series Modeling are powerful forecasting tools A prior knowledge of the statistical theory behind Time Series is useful before Time series

  • 04-树6 Complete Binary Search Tree (30分)2020-03-23 12:00:14

    题目描述 A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: The left subtree of a node contains only nodes with keys less than the node's key. The right subtree of a node contains only nodes with keys

  • 在 Windows 10 上安装 PostgreSQL 时出错:Warning:Problem running post-install step. Installation may not comp2020-03-23 09:57:27

    错误信息 Warning Problem running post-install step. Installation may not complete correctly Failed to start the database server. 解决方案 方案 1(推荐) 安装 PostgreSQL 到 WSL 上,参考 https://gist.github.com/michaeltreat/40a2f444d8ff6c89af958733448da093 方案 2 手

  • 数据清洗实验2020-03-21 22:01:21

    #大数据分析基础 实验四 # 1. 启动Rstudio 软件,新建R Script 文件 # 2. 利用read.csv 函数导入D 盘中的bank-additional-full.csv 数据到Rstudio, # 并赋值为mydata,然后展示mydata 的前5 行数据,并创建缺失值。 mydata <- read.csv("./bank-additional-full.csv", sep = ';')

  • FIFA: A Complete Player Dataset2020-03-08 19:02:43

    Winter 2020FIFA: A Complete Player Dataset18k+ Latest FIFA Players, with ~80 Attributes Extracted from FIFAdatabaseeZvh,kFIFA: The Fédération Internationale de Football Association[a] (FIFA /ˈfiːfə/ FEEFə;French for 'International Federation of Assoc

  • Docker方式部署Nextcloud2020-02-29 15:00:32

    如果你想搭建个人或者团队私有网盘,那么 NextCloud 可能是目前最好的选择了。 网盘介绍 众所周知,国内很多网盘都关停了,现有的百度云还限速,甚至网盘里的文件还会被删除,网盘使用体验差、安全性堪忧。 团队内部分享文件,用微信传输有大小限制,且只能通过公网上传下载;用 QQ 传输虽然可

  • Kubernetes(K8s)(五)——在K8s集群上搭建redis和docker的留言簿2020-02-26 16:54:34

    (1).实验环境   需要三个镜像:web前端镜像php-frontend、redis-master和redis-slave。其中web前端通过JavaScript redis api实现与redis-master交互。 (2).扩展:flannel   flannel是K8s默认提供的网络插件。Flannel是由CoreOs团队开发社交的网络工具,CoreOS团队采用L3 Overlay模

  • A1064 Complete Binary Search Tree (30分)2020-02-19 23:00:52

    一、技术总结 这一题就是将给的数,构造一个完全二叉排序树 关键就是要利用完全二叉树的特点,如果该结点的下标是x,那么左子树的结点下标一定是2 x,右子树下标是2x+1,然后二叉排序树的中序遍历是从小到大的。 二、参考代码 #include<bits/stdc++.h> using namespace std; const int ma

  • shell _autotab complete2020-01-14 15:05:02

    # bash completion for apollo.sh -*- shell-script -*- # Usage: ./apollo.sh TAB autotab_list=("check" "build" "build_dist" "clean_dist" "build_min" "build_prof" "build_no_perception" \ &

  • kubernetes-部署LNMP环境运行Discuz2019-12-26 13:02:27

    说明:本实验在该篇章https://www.cnblogs.com/douyi/p/12031600.html集群基础上模拟真实的一个线上环境,在k8s集群中部署LNMP环境运行Discuz论坛   一、下载公共镜像【deploy上操作】   1:下载mysql5.7镜像 1 [root@master ~]# docker pull mysql:5.7 2 5.7: Pulling from lib

  • 通过iframe下载文件,判断下载完成2019-12-21 14:58:07

    领导给安排的任务,数据导出功能,加个等待效果。 当时我就想,这玩意实现不了啊,因为整个是通过iframe下载的,后台直接返回的文件流,没办法执行js代码啊 然后我想到了iframe的onload事件就试了一下,不好使啊,然后网上搜了一下,还真搜到了,通过判断iframe的document的readyState。 代码如下: //

  • egret:TweenGroup播放完成后的回调问题2019-12-10 20:04:21

    this.vs.addEventListener('complete',this.listenVSComplete,this); 当动画组里出现只有一个关键帧的时候,回调不成功   解决办法:需要添加一个关键帧      

  • CF1228D Complete Tripartite2019-12-10 15:53:04

    思路: 任选一点a,和a没有边直接相连的点一定和a在同一个集合,由此构造得到一个集合A。用类似的方法再构造一个集合B,并将剩下的点放在集合C中,就得到了三个集合A,B,C。再检查A,B,C是否符合要求即可。 实现: 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int N = 100005; 4

  • ubuntu18下Docker运行springboot项目2019-10-16 09:50:48

    1.springboot项目打成jar包 mvn install 2.编写Dockerfile # 基础镜像使用javaFROM java:8# 作者#MAINTAINER sk# VOLUME 指定了临时文件目录为/tmp。# 其效果是在主机 /var/lib/docker 目录下创建了一个临时文件,并链接到容器的/tmpVOLUME /tmp# 将jar包添加到容器中并更名为ap

  • Overloud TH U Complete for Mac(吉他谱曲软件)2019-10-12 15:55:09

    Overloud TH U mac版是一套由Overloud制作的吉他谱曲软件。Overloud TH U for Mac为用户准备了89个吉他放大器和4低音放大器,吉他柜50个,低音柜2个,18个麦克风型号,是一款音乐爱好者不容错过的软件。它可以让你改变前和功率管的模型,以及模拟一个变量的行动。这使您可以对任何放大器模型

  • Codeforces Round #589 (Div. 2) D. Complete Tripartite(染色)2019-10-03 17:04:25

    链接: https://codeforces.com/contest/1228/problem/D 题意: You have a simple undirected graph consisting of n vertices and m edges. The graph doesn't contain self-loops, there is at most one edge between a pair of vertices. The given graph can be disconne

  • 使用docker运行springboot项目2019-10-03 16:03:25

    本文主要讲的是使用docker运行springboot项目 获取一个springboot项目 这里我没有重新构建,用的之前写的一个项目,直接从github上下载下来,地址:https://github.com/FunCodingOfWe/kevin-boot 注意:我现在已经将dockerfile上传 编写Dockerfile # 基础镜像使用java FROM java:8 # 作者 M

  • Complete Tripartite2019-10-02 15:00:27

    D - Complete Tripartite 思路:这个题是个染色问题。理解题意就差不多写出来一半了。开始的时候还想用离散化来储存每个点的状态,即它连接的点有哪些,但很无奈,点太多了,long long范围内肯定存不完,于是想到用python来写,但是 py 也没有很熟练.....便放弃了。 需要注意的: 要统计总共有多

  • 【Codeforces Round #589 (Div. 2) D】Complete Tripartite2019-09-30 14:57:24

    【链接】 我是链接,点我呀:) 【题意】 题意 【题解】 其实这道题感觉有点狗。 思路大概是这样 先让所有的点都在1集合中。 然后随便选一个点x,访问它的出度y 显然tag[y]=2 因为和他相连了嘛 然后其他没有和x相连的点显然只能和x在同一个集合中 所以其他1集合的点你会发现

  • 1064 Complete Binary Search Tree (30 分)(BST)2019-09-06 19:07:34

    1、大佬思路学习了。。。 #include <cstdio> #include <cstring> #include <vector> #include <queue> #include <set> #include <map> #include <stack> #include <cmath> #include <unordered_map> #include <algorithm>

  • docker学习5-docker安装tomcat环境和部署war包2019-09-03 18:51:43

    下载tomcat镜像 [root@bogon data]# docker pull tomcatUsing default tag: latestlatest: Pulling from library/tomcat9cc2ad81d40d: Pulling fs layer e6cb98e32a52: Pulling fs layer ae1b8d879bad: Downloading 42cfa3699b05: Waiting 8d27062ef0ea: Waiting 9b91647396e3:

  • 了解美杜莎(Medusa)2019-09-02 11:51:54

    (1).美杜莎介绍   Medusa(美杜莎)是一个速度快,支持大规模并行,模块化的暴力破解工具。可以同时对多个主机,用户或密码执行强力测试。Medusa和hydra一样,同样属于在线密码破解工具。Medusa是支持AFP, CVS, FTP, HTTP, IMAP, MS-SQL, MySQL, NCP (NetWare),NNTP,PcAnywhere, POP3, Po

  • DBCA静默方式建库2019-08-17 16:09:10

    DBCA静默方式建库 本篇blog结构图:   使用DBCA的图形方式建库实在有诸多不便,但是使用静默方式建库就比较方便了,一个命令即可搞定。   使用dbca安装oracle数据库实例也有差不多两种方法: 一种就是根据模板文件进行安装,在上文中提到了在oracle安装程序的安装文件夹下的respon

  • Codeforces 1203F2 Complete the Projects (hard version)2019-08-15 18:03:05

    [cf题面](https://codeforces.com/contest/1203/problem/F2 Time limit 2000 ms Memory limit 262144 kB 解题思路 先留坑,吃完饭来填 源代码 #include<cstdio> #include<algorithm> int n,r; struct Data{ int need,delta; bool operator < (const Data & a)co

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有