ICode9

精准搜索请尝试: 精确搜索
  • linux 安装docker2021-09-12 02:31:05

      一、硬件环境要求 CPU(推荐1C+) 内存(推荐2G+) 硬盘(推荐40GB+)   二、安装docker 官方安装参考:https://docs.docker.com/engine/install/centos/ #安装辅助工具 sudo yum install -y yum-utils #准备repo文件 sudo yum-config-manager \ --add-repo \ https://download.d

  • 【Golang语言之旅2】Get started with Go!2021-07-14 13:58:29

    在前一节中,已经讲述了Go是如何安装的,这一节将介绍Go代码的简单实现: 编写简单的“Hello, world”代码。使用 go 命令运行您的代码。使用 Go 包发现工具查找可以在您自己的代码中使用的包。调用外部模块的函数。 1.实现“Hello world” 首先,在cmd或者是vs code的终端输入命令行

  • windows环境consul安装教程2021-06-28 19:31:03

    目录 consul下载地址:安装测试启动关闭官方文档 consul下载地址: 目前最新版本是1.10.0。 https://www.consul.io/downloads 安装 下载完成后是一个压缩包,里面只有一个consul.exe文件,直接解压即可。 测试 在解压路径下的地址栏输入“cmd”,打开命令行窗口。 并输入“con

  • Quarkus使用及Docker构建2021-06-18 17:02:56

    官网: https://quarkus.io/ 一. 准备环境 JDK8或者11+ https://adoptopenjdk.net/ Apache Maven 版本3.6.2+ https://maven.apache.org/download.cgi GraalVM安装下载 方法一:官网下载,自己安装配置 https://www.graalvm.org/downloads/ 根据需求选择社区版或企业版 安装

  • tomcat2021-05-23 23:05:35

    The server cannot be started because one or more of the ports are invalid. Open the serve     原因是没有指定tomcat admin port ,需要指定数字而不是连接符-.   

  • Logstash could not be started because there is already another instance using the configured data d2021-05-21 14:33:27

    [root@localhost logstash-7.12.1]# sudo ./bin/logstash Using bundled JDK: /usr/local/logstash/logstash-7.12.1/jdk OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. Sen

  • [AWS] Talk: Getting started with AWS identity2021-05-13 03:32:47

    IAM roles for non-human access Any application you wrote in the cloud is probably going to accessing some other resources ion the cloud like, EC2 instance and Lambda functions need to access S3 or DynamoDB. You need some identity to make those API calls t

  • how to get started with an ubuntu server2021-05-04 22:33:08

    1.set up wireless connection on first boot, using "netplan" settings, refers to :https://netplan.io/examples/ (todo: what about cloud-init?) 2.get ssh connection sudo apt install SSH daemon sudo ufw allow 22 ssh-copy-id -i ~/.ssh/id_rsa.pub YOUR

  • Win10下安装docker 并解决 docker is starting 问题2021-04-11 12:33:21

    1. win10 需要开启 Hyper-V。 2. 在程序和功能中开启服务Server (不开启的话,安装完会报错) 3. 安装toolbox 最新版 Toolbox 下载地址: 访问 https://www.docker.com/get-started,注册一个账号,然后登录。 点击 Get started with Docker Desktop,并下载 Windows 的版本,如果你还

  • JUC并发编程2021-03-17 22:58:43

    JUC并发编程 1. 线程和进程 1. 线程和进程 进程: 一个程序,QQ.exe Music.exe 程序的集合; 一个进程往往可以包含多个线程,至少包含一个。 Java默认有几个线程: 2 个(mian、GC)。 线程:开了一个进程 Typora,写字,自动保存(线程负责的) 创建线程(对于Java而言):Thread、Ru

  • Get Started with WebRTC2021-03-03 21:33:37

    Get Started with WebRTC HTML5 Rocks Table of Contents Real-time communication without plugins Quick start A very short history of WebRTC Where are we now? Your first WebRTC MediaStream API (also known as getUserMedia API) Signaling: Session control, net

  • Pre-Commit for Git Hooks 之正确关闭提交代码检测2021-02-06 16:02:29

    当提交代码如下报错时:  $ git commit -m '修复线上bug' > running pre-commit hook: npm run precommit g > invoive-admin@1.1.1 precommit F:\zhdProgram\3wenlvma\simple-ant-admin > lint-staged [STARTED] Preparing... [SUCCESS] Preparing... [STARTED] Run

  • arcmap如何打开或关闭启动时的“getting started”界面2021-01-22 10:02:34

    一、ARCGIS 10.0 版本以上。在 Customize 菜单中设置 Arcmap Options——general——startup——去掉勾选 “Show Getting Started dialog”,打开的时候就是空白页面。     二、ARCGIS 9.3 版本。在 tools 菜单中设置 Options——general——startup——去掉勾选 “Show Gettin

  • 【LeakCanary】Getting Started2021-01-20 18:59:23

    reference from:https://square.github.io/leakcanary/getting_started/ Confirm vt. 确认;确定;证实;批准;使巩固 To use LeakCanary, add the leakcanary-android dependency to your app’s build.gradle file: 使用LeakCanary,添加 leakcanary-android 的依赖库到你 app(Mode

  • 线程详解2021-01-14 17:03:43

    线程详解1.我们都知道一个线程的启动,只有两种方式第一种是继承Thread方法,重写run方法,第二种是实现Runnable,叫个Thread执行2. 通过代码我们可以看到线程启动方法中,有start0(), 真正去启动一个线程,发现这个方法只是native修饰的方法,这边拓展一下什么是native修饰的方法 public sync

  • Get started with OSv unikernels as a Docker-alternative2021-01-11 12:01:14

        Container technologies and especially Docker has become the go-to standard for how to package and deploy microservices. It makes for a lightweight, flexible, easy-to-use and well-performing way to run single-purpose units of computing. In this post I

  • ANTLR 4(一)Getting Started2020-12-27 12:57:59

    1. 配置java环境     安装jdk1.7以上版本,我装的是“jdk-8u181-windows-x64.exe”。     设置 “C:\Program Files\Java\jdk1.8.0_181\bin" 到path环境变量。     设置 "C:\Program Files\Java\jdk1.8.0_181" 到 JAVA_HOME 环境变量。     设置  "%JAVA_HOME%\lib"和"

  • get_started_3dsctf_20162020-11-24 23:58:19

    先看ida 发现get_flag函数需要a1和a2两个参数等于特定值就可以读到flag 可以利用main中的栈溢出进行传参 32位程序payload = offset + 函数地址 + 返回地址 + 参数 返回地址我们利用程序中的exit: exp: from pwn import * p = remote('node3.buuoj.cn',29726) context.log_le

  • Getting Started with Headless Chrome2020-11-02 19:31:40

    Getting Started with Headless Chrome By Eric Bidelman Engineer @ Google working on web tooling: Headless Chrome, Puppeteer, Lighthouse TL;DR Headless Chrome is shipping in Chrome 59. It's a way to run the Chrome browser in a headless environment. E

  • npm Getting started2020-11-02 10:02:24

    目录 引子 组成 注册 配置本地环境 关于 npm CLI 版本 安装 参考资料 引子 最近工作上要接触相关的东西,开始熟悉文档,这里主要是 Getting started 部分中,感觉有帮助的内容记录。 Origin My GitHub 组成 npm 包含三个不同的部分: 网站 命令行界面(CLI) 登记处 通过使用网站

  • Getting Started GNSS Application Develop2020-10-29 02:32:24

    1. ntrip官方资料 http://software.rtcm-ntrip.org/ https://igs.bkg.bund.de/ntrip/download   2. rtklib手册 RTKLIB-rtklib_2.4.3b33/doc/manual_2.4.2.pdf RTKLIB-rtklib_2.4.3b33/doc/doc/manual.docx   3. rtklib二次开发 https://github.com/libing64/learning_rtklib  

  • ArcGIS API for Python2020-10-22 15:01:54

    https://pro.arcgis.com/zh-cn/pro-app/arcpy/get-started/arcgis-api-for-python.htm https://developers.arcgis.com/python/guide/install-and-set-up/

  • DFS 深度优先搜索2020-09-03 19:34:30

    #include "DFS.h" #include <list> #include <stack> using namespace std; DFS::DFS(int vertexCount) { this->v = vertexCount; this->adj = new list<int>[v]; } list<int> DFS::searchByStack(int s, int t){ //

  • MVC5与EF6结合教程(05):Code First 迁移和部署2020-07-08 09:06:25

    https://docs.microsoft.com/zh-cn/aspnet/mvc/overview/getting-started/getting-started-with-ef-using-mvc/migrations-and-deployment-with-the-entity-framework-in-an-asp-net-mvc-application

  • MVC5与EF6结合教程(07):读取相关数据2020-07-08 09:05:07

    https://docs.microsoft.com/zh-cn/aspnet/mvc/overview/getting-started/getting-started-with-ef-using-mvc/reading-related-data-with-the-entity-framework-in-an-asp-net-mvc-application

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

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

ICode9版权所有