代码改变世界

vscode go 调试 launch.json

2020-03-02 13:32 by ycliu912, 4659 阅读, 0 推荐, 收藏, 编辑
摘要:{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https: 阅读全文

golang.GoInAction.5-62

2018-12-06 00:31 by ycliu912, 383 阅读, 0 推荐, 收藏, 编辑
摘要://《Go 语言实战》 p110_listing60.go //这个示例程序展示当内部类型和外部类型要 //实现同一个接口的方法 package main import ( "fmt" ) //notifier 是一个定义了 //通知类行为的接口 type notifier interface { 阅读全文

trac

2018-12-03 14:17 by ycliu912, 609 阅读, 0 推荐, 收藏, 编辑
摘要:官网 插件 https://trac-hacks.org/wiki/WorkflowNotificationPlugin https://trac-hacks.org/svn/notifyallusersplugin/ https://trac-hacks.org/wiki/OnSiteNotifi 阅读全文

helm

2018-12-03 13:07 by ycliu912, 228 阅读, 0 推荐, 收藏, 编辑
摘要:简介 https://www.kubernetes.org.cn/3435.html 阅读全文

stackstorm

2018-12-03 12:58 by ycliu912, 261 阅读, 0 推荐, 收藏, 编辑
摘要:https://blog.csdn.net/sxb0841901116/article/details/79827880 阅读全文

hhvm-centos5

2016-07-29 14:16 by ycliu912, 160 阅读, 0 推荐, 收藏, 编辑
摘要:sudo wget http://mirrors.sohu.com/fedora-epel/5/x86_64/epel-release-5-4.noarch.rpmsudo rpm -Uvh *.rpm 阅读全文

hhvm-centos6

2016-07-28 23:51 by ycliu912, 273 阅读, 0 推荐, 收藏, 编辑
摘要:http://blog.csdn.net/lxlmj/article/details/22283043 [note]: http://serverfault.com/questions/340709/install-php-mcrypt-on-centos-6 Package php-mcrypt. 阅读全文

[192]Factorialize a Number

2016-06-27 13:46 by ycliu912, 200 阅读, 0 推荐, 收藏, 编辑
摘要:function factorialize(num) { return (num <= 1) ? 1 :num * factorialize(num - 1); } factorialize(5); 阅读全文

jenkins-info-send-build-artifacts-over-ssh

2016-05-25 15:59 by ycliu912, 1320 阅读, 0 推荐, 收藏, 编辑
摘要:SSH Publishers SSH Servers: ssh-mos.douins.com Transfers: Transfer Set Source files: Remove prefix: Remote directory: Exec command: kill -9 $(ps -ef | 阅读全文

jenkins-info-parameterize-build-process-configure

2016-05-25 15:44 by ycliu912, 255 阅读, 0 推荐, 收藏, 编辑
摘要:参数化构建过程:[note:00] Choice: Name : SererviceImpl Choices: dev online alitest alionline mostest Build Root POM : pom.xml Goals and options : clean instal 阅读全文