国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。Docker 官方和国内很多云服务商都提供了国内加速器服务。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
Ubuntu 16.04+、Debian 8+、CentOS 7+
国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。Docker 官方和国内很多云服务商都提供了国内加速器服务。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
Ubuntu 16.04+、Debian 8+、CentOS 7+
| // ==UserScript== | |
| // @name YARN Cluster Prettyfication | |
| // @namespace http://thedeetch.github.io | |
| // @version 0.5 | |
| // @description Prettyfier for YARN cluster web UI | |
| // @author thedeetch | |
| // @match *://*/cluster* | |
| // @grant none | |
| // @require http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.js | |
| // ==/UserScript== |
IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供软件/框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。
| ! Put user rules line by line in this file. | |
| ! See https://adblockplus.org/en/filter-cheatsheet | |
| ! 要走代理 | |
| ||vim.org | |
| ||packagecontrol.io | |
| ||apache.org | |
| ||*.apache.org | |
| ||readthedocs.io | |
| ||cloudera.com |
| # sublime | |
| 127.0.0.1 www.sublimetext.com | |
| 127.0.0.1 sublimetext.com | |
| 127.0.0.1 sublimehq.com | |
| 127.0.0.1 telemetry.sublimehq.com | |
| 127.0.0.1 license.sublimehq.com | |
| 127.0.0.1 45.55.255.55 | |
| 127.0.0.1 45.55.41.223 | |
| 0.0.0.0 license.sublimehq.com | |
| 0.0.0.0 45.55.255.55 |
| """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| set nu " 显示行号 | |
| set ignorecase " 搜索时忽略大小写 | |
| set showcmd " 显示执行的命令 | |
| syntax on " 语法高亮 | |
| filetype on "检测文件类型 | |
| """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" |
参考以下路径,替换文件
C:\Users\你的账户名\AppData\Local\CentBrowser\User Data\Default\Extensions\hdokiejnpimakedhajhdlcegeplioahd\4.39.0.2_0_locales\en_US\messages.json
重启浏览器
| <?xml version="1.0" encoding="UTF-8"?> | |
| <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
| <mirrors> | |
| <!-- https://blog.csdn.net/www1056481167/article/details/60139851 --> | |
| <!--自定义添加--> | |
| <mirror> |
| package cn.java666.jobtracker.common; | |
| import org.junit.Test; | |
| import java.net.Inet4Address; | |
| import java.net.InetAddress; | |
| import java.net.NetworkInterface; | |
| import java.net.SocketException; | |
| import java.util.Enumeration; |