解决免费的 Oracle Cloud ipv6 隧道不通的问题
目前 Oracle Cloud 已经支持 ipv6,但需要手动在控制台配置。
根据 Oracle Cloud 文档,仅政府才给ipv6地址,但是我们可以自行建立 HE 的 ipv6 隧道。
具体的隧道建立方法请自行 google,我只提两个比较重要的点:
目前 Oracle Cloud 已经支持 ipv6,但需要手动在控制台配置。
根据 Oracle Cloud 文档,仅政府才给ipv6地址,但是我们可以自行建立 HE 的 ipv6 隧道。
具体的隧道建立方法请自行 google,我只提两个比较重要的点:
因为众所周知的原因,我主要使用美区。
上周在 色魔张大妈上看到有人 跨区共享 icloud 成功,我自己尝试多次,各种不成功,都是提示 区域问题
今天学习了一下 GoLang 协程和及其通信,写了一下 Demo
package main
import (
"fmt"
"strconv"
"sync"
"time"
)
// Maximum goroutine
const goSize = 5
// Producer Producer
type Producer struct {
Item string
}
// Result result struct
type Result struct {
Code int
Stdout string
}
// RunJob job
func RunJob(item string) (result Result) {
result.Code = 200
result.Stdout = item
return
}
// RoutineRun go routine run job
func RoutineRun(wg *sync.WaitGroup, producers chan Producer, result chan Result) {
for i := 0; i < goSize; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for producer := range producers {
time.Sleep(time.Second)
ret := RunJob(producer.Item)
result <- ret
}
}()
}
}
func main() {
var job Producer
wg := &sync.WaitGroup{}
jobCount := 20
// chan size cannot be smaller than jobCount
jobsChan := make(chan Producer, 100)
resultChan := make(chan Result, 100)
for i := 0; i < jobCount; i++ {
job.Item = "item: " + strconv.Itoa(i)
jobsChan <- job
}
close(jobsChan)
RoutineRun(wg, jobsChan, resultChan)
wg.Wait()
close(resultChan)
for {
ret, ok := <-resultChan
if !ok {
break
}
fmt.Println("code: ", ret.Code, "stdout", ret.Stdout)
}
}
记录一下 在我使用Mac过程中遇到的问题及其解决方案。
1、LaunchPad 删除 App 出现问题的情况处理:
defaults write com.apple.dock ResetLaunchPad -bool true;killall Dock
```注意:此命令会将你安装的应用全部移到第二页,并且不会保留目录
2、修复 mac VNC 连接黑屏,=> [Via](http://www.macminiworld.net/fix-the-black-screen-on-mac-os-x-vnc/)
sudo killall loginwindow
Mac 下的终端居然没有高亮。
先看最终效果:
将以下代码拷贝到 ~/.bash_profile 中:
#enables colorin the terminal bash shell export
export CLICOLOR=1
#sets up thecolor scheme for list export
export LSCOLORS=gxfxcxdxbxegedabagacad
#sets up theprompt color (currently a green similar to linux terminal)
export PS1='[033[01;32m]u@h[033[00m]:[033[01;36m]w[033[00m]$ '
#enables colorfor iTerm
export TERM=xterm-color
```使~/.bash_profile生效 运行以下命令,或者重启终端
source ~/.bash_profile
作为一个运维,每天有8个小时都在使用 Xshell ,基本每天要开几十个窗口,虽然大部分操作都写在了WEB后台,但是仍然会有Xshell的需求;不知从何时起,同时打开多个(大于3)ssh 连接的时候,Xshell 大概率的会导致未响应,偶然在官方论坛上找到了解决方案: