代码改变世界

[Docker] 制作并运行 Nginx 镜像

2019-05-28 11:05 by jetwill, 672 阅读, 0 推荐, 收藏, 编辑
摘要:环境 操作系统(cat /etc/redhat release):CentOS Linux release 7.6.1810 (Core) Docker:18.09.6 文件 Dockerfile entrypoint.sh 相关命令 要点说明 CMD 是作为参数传给 ENTRYPOINT,对于这个 阅读全文

[Docker] 在CentOS6.8 安装 Docker

2019-05-18 00:45 by jetwill, 1069 阅读, 0 推荐, 收藏, 编辑
摘要:运行docker Linux内核版本需要在3.8以上,针对centos6.5 内核为2.6的系统需要先升级内核.不然会特别卡,退出容器. 安装Docker 参考资料 "详解Centos6.5下docker 环境搭建" "新手根据菜鸟教程安装docker,从No package docker io a 阅读全文

Module 4 - Azure SQL

2019-05-05 18:40 by jetwill, 247 阅读, 0 推荐, 收藏, 编辑
摘要:1) Migrate AdventureWorks database from SQL Server instance to Azure SQL using DMA.2) Update WebApp connection strings to use Azure SQL.Links:· How to 阅读全文

Azure基础(一)云的概念 - 云计算的原理

2019-04-29 18:24 by jetwill, 642 阅读, 0 推荐, 收藏, 编辑
摘要:Azure fundamentals - Cloud Concepts - Principles of cloud computing Explore the core concepts of cloud computing and how it can help your business. Mo 阅读全文

Azure基础(三)- Azure的物理架构和服务保证

2019-04-29 16:08 by jetwill, 336 阅读, 0 推荐, 收藏, 编辑
摘要:Azure fundamentals - Core Cloud Services - Azure architecture and service guarantees Azure provides a global network of secure datacenters you can dep 阅读全文

Azure基础(二)- 核心云服务 - Azure简介

2019-04-29 14:36 by jetwill, 606 阅读, 0 推荐, 收藏, 编辑
摘要:Azure fundamentals - Core Cloud Services - Introduction to Azure Learn what Microsoft Azure is and how it relates to cloud computing 了解什么是Azure以及Azure 阅读全文

Module 3 - Azure - Web Apps

2019-04-25 09:41 by jetwill, 407 阅读, 0 推荐, 收藏, 编辑
摘要:Module 3 - 微软云 Azure - Web Apps 1. Create new Web application in the Azure Portal Azure Portal -> App Services -> Add -> Web App。 在这个过程中,Azure Portal 阅读全文

Azure架构(一):云计算基础

2019-04-18 18:22 by jetwill, 1406 阅读, 0 推荐, 收藏, 编辑
摘要:云计算的定义 云计算(英语:cloud computing),是一种基于互联网的计算方式,通过这种方式,共享的软硬件资源和信息可以按需求提供给使用各种计算终端(桌面电脑、笔记本电脑、平板电脑、手机等)的用户。通过云计算,我们把互联网变为了消费者(顾客)和服务提供商之间的抽象层。 云计算的基本特性弹性 阅读全文

程序设计与算法(一)C语言程序设计CAP之字符串

2017-12-27 16:27 by jetwill, 1334 阅读, 0 推荐, 收藏, 编辑
摘要:C++中的字符串 字符串有三种形式 + 用双引号括起来的字符串常量,如果"CHINA"、"C++ program" + 存放于字符串数组中,以'\0'字符(ASCII吗为0)结尾 + string对象。string是C++标准模板库里的一个类,专门用于处理字符串(略)。 字符串常量 + 字符串常量占 阅读全文

编程填空:第i位替换

2017-12-19 10:29 by jetwill, 1091 阅读, 0 推荐, 收藏, 编辑
摘要:编程填空:第i位替换 "OpenJudge" 总时间限制:1000ms 内存限制:1024kB 描述:写出函数中缺失的部分,使得函数返回值为一个整数,该整数的第i位和m的第i位相同,其他位和n相同。 请使用【一行代码】补全bitManipulation1函数使得程序能达到上述的功能 include 阅读全文