codecamp

背景

最近 GO 语言很火,Docker、Kubernetes 等著名软件均是由 GO 编写的。打算用一个月时间体验一下 GO 的魅力。

准备如下:

    开发工具:Intellij Idea + GO SDK + GO Plugin

    学习站点:

        1. 基础学习 https://www.w3cschool.cn/go/

        2. 进阶学习 https://studygolang.com/     https://www.golangtc.com/

        3. 深入学习 https://golang.org/

    


配置篇-suricata.yaml-2
工具安装 Intellij Idea + GO SDK + GO Plugin
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }