自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (57)
  • 收藏
  • 关注

原创 问题排查:Docker Swarm部署Dubbo Admin出错

我参加的课程,网易云课堂《Java高级开发工程师》,它的容器化专题有一道作业题是:把dubbo-admin服务部署到swarm集群上,并对容器进行动态扩容我本以为这是一个简单的任务,不料部署时却出了岔子,Dubbo Admin服务死活不启动,最后调试到半夜3点才解决。以下是对整个过程的复盘。遭遇问题环境:VirtualBoxUbuntu 18.04.4Docker 19.03.12使用的Dubbo Admin镜像是我上篇博文中构建的dubbo-admin:1.0。启动一个Zooke

2020-08-02 02:35:12 618

原创 Docker部署Dubbo Admin全流程

环境Ubuntu 18.04VirtualBox安装Dockercurl -fsSL https://get.docker.com -o get-docker.shsudo sh get-docker.sh --mirror Aliyun将当前用户添加到docker组:sudo usermod -aG docker $USER需重新登录,才能生效。配置Docker镜像加速sudo vim /etc/docker/daemon.json配置好后,重启Docker以生效:sud

2020-08-01 15:41:45 3039 1

原创 Socket API和BIO

以下是我学习网络编程的一些笔记。Socket API任何现代应用程序,如要访问互联网,必须通过Socket API. Socket这个单词的意思是“插座”,曾经被译为“插口”,现在一般翻译为“套接字”。程序员通常会把socket简写为sock.Socket API最初是在BSD Unix上出现的,后面Linux系统也实现了一套相同的API. Windows系统的实现则是Windows Sockets API (简称WSA).Windows对Socket API的实现并不正统。要严肃地学习网络编程,最

2020-06-07 01:33:37 179

Real-Time Collision Detection PDF 英文 文字版

Real-Time Collision Detection Christer Ericson (游戏中的)实时物理检测

2017-02-25

Physics for Flash Games Animation and Simulations PDF 英文 文字版

Physics for Flash Games Animation and Simulations Dev Ramtal 在Flash中用ActionScript模拟物理

2017-02-25

游戏物理引擎开发 PDF 英文 文字版

Game Physics Engine Development 【美】Ian Millington

2017-02-25

C语言接口与实现 PDF 中文

C语言接口与实现 【美】David R. Hanson 如何在C语言中设计、实现函数库

2017-02-25

Object-oriented programming with ANSI-C PDF 英文 文字版

用ANSI-C实现各种OO机制

2017-02-25

Basic Category Theory for Computer Scientists DJVU 英文

《计算机科学家的基础范畴论》 本书是DJVU格式,需要下载WinDjView或其他工具查看

2017-02-25

Algorithms A Functional Programming Approach 2nd Edition DJVU

《算法-用函数式语言描述》第2版 学FP的同学用得到 本书是DJVU格式,需要下载WinDjView或其他工具查看

2017-02-25

Advanced Topics in Types and Programming Languages PDF 英文

本书是《Types and Programming Languages》的升级版,讲解更深入的类型知识

2017-02-25

Types and Programming Languages PDF 英文

《类型与编程语言》 学FP的同学可能需要这本书

2017-02-25

Functional Programming with Overloading and Higher-Order Polymorphism PDF 英文

函数式编程入门论文 讲解常见的“函数式”特性

2017-02-25

Effective Modern C++ PDF 英文 文字版

Effective C++系列,但讲的是如何应用C++ 11新标准中的特性

2017-02-25

C++ for Programmers CHM 英文

一本比较老的C++入门书,偏向软件工程方法

2017-02-25

Real World Haskell PDF 英文

Haskell界有名的入门书

2017-02-25

Java 1.6 API CHM 中文

Java 1.6 API文档 Windows帮助文件版 单文件

2017-02-25

Java Concurrency in Practice PDF 英文 文字版

Java Concurrency in Practice Brian Goetz Java并发编程实战

2017-02-25

Extending and Exbedding Perl PDF 英文

Perl扩展编写的参考书

2017-02-25

Programming Perl 4th Edition PDF 英文 文字版

Perl界著名的“骆驼书”

2017-02-25

Perl CD BookShelf CHM 英文

Perl电子书小合集,包括: Perl in a Nutshell Learning Perl Learning Perl on Win32 Systems Programming Perl Advanced Perl Programming Perl Cookbook

2017-02-25

Windows 程序设计 侯捷 CHM 中文

Windows 程序设计 【美】Charles Petzold 侯捷 翻译 有名的Windows开发入门书

2017-02-25

COM技术内幕 PDF 中文

COM技术内幕 【美】Dale Rogerson

2017-02-25

Write Yourself a Scheme in 48 Hours PDF 英文 文字版

Write Yourself a Scheme in 48 Hours 在48小时内用Haskell写一个Scheme解释器 【中国台湾】唐凤(唐宗汉)

2017-02-25

R5RS PDF 英文 文字版

Revised5 Report on the Algorithmic Language Scheme Scheme语言的里程碑标准 参考文档

2017-02-25

The Seasoned Schemer PDF 英文 扫描

The Seasoned Schemer 【美】Daniel P. Friedman Scheme语言方面的注明书 不是很清晰 sorry

2017-02-25

EOPL 第3版 PDF 英文 文字版

Essentials of Programming Languages 3rd Edition 【美】Daniel P. Friedman 用Scheme描述编程语言原理的神书

2017-02-25

Common Lisp the Language, 2nd Edition CMU HTML 英文

Common Lisp the Language, 2nd Edition CMU版 Common LISP有名的文档

2017-02-25

Common Lisp Hyper Spec HTML

Common Lisp Hyper Spec网站版 CL有名的文档

2017-02-25

LISP 1.5 Programmers Manual PDF 英文

LISP 1.5 Programmers Manual 约翰·麦卡锡 版的LISP手册

2017-02-25

On Lisp PDF 英文版

On Lisp 【美】Paul Graham LISP宏应用方面 有名的书

2017-02-25

ANSI Common Lisp 中文翻译版 PDF

ANSI Common Lisp中文翻译版 【美】Paul Graham

2017-02-25

PIC16F887 数据手册 PDF 中文

PIC16F887 数据手册

2017-02-25

LCD 1602 显示屏 数据手册 PDF 英文

LCD1602数据手册

2017-02-25

数据结构与算法分析 C++描述 PDF 中文版

数据结构与算法分析-C++描述 【美】Mark Allen Weiss

2017-02-25

Static Single Assignment for Decompilation PDF

Static Single Assignment for Decompilation Michael James,Van Emmerik

2017-02-25

On Computing the Transitive Closure of a Relation PDF

On Computing the Transitive Closure of a Relation 计算二元关系的(自反)传递闭包 编译器设计,有名的论文

2017-02-25

Basics of Compiler Design Anniversary Edition PDF 英文

Basics of Compiler Design Anniversary Edition Torben Ægidius Mogensen

2017-02-25

Programming Language Processors in Java PDF 英文

Programming Language Processors in Java David A. Watt 用Java编写编译器和解释器

2017-02-25

计算的本质:深入剖析程序和计算机 PDF 中文 文字版

计算的本质:深入剖析程序和计算机 [英] Tom Stuart

2017-02-25

Data Structures and Algorithms with Python PDF 英文 文字版

Data Structures and Algorithms with Python Kent D. Lee Steve Hubbard

2017-02-25

Artificial Intelligence A Modern Approach 2nd Edition PDF 英文

人工智能: 一种现代方法 英文 文字版

2017-02-25

游戏编程精粹2 PDF 中文

Game Programming Gems 2 Mark.A.Deloura 扫描版

2017-02-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除