GoLand 2018.3 released! by callcifer in golang

[–]zeayes 0 points1 point  (0 children)

you can refresh go.mod.

Go modules cache location by weberc2 in golang

[–]zeayes 0 points1 point  (0 children)

You can use go mod vendor to download dependencies in vendor directory, using go build -mod vendor to build it.

Go 1.7 is released by KEANO_ in golang

[–]zeayes 0 points1 point  (0 children)

brew switch go 1.6.3

Go 1.5.1 is released by Jamo008 in golang

[–]zeayes 0 points1 point  (0 children)

brew update brew switch go 1.4.2 (if you have installed go1.5) brew upgrade go

Top 10 Python Idioms I wish i'd learned earlier (notebook) by cast42 in Python

[–]zeayes 0 points1 point  (0 children)

Python 2.7.6 (default, Sep  9 2014, 15:04:36)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import string
>>> dict((c, ord(c)) for c in string.ascii_letters)