Skip to content

Instantly share code, notes, and snippets.

View Oxyrus's full-sized avatar
🥟

Andrés Pérez Oxyrus

🥟
View GitHub Profile
go: extracting google.golang.org/grpc v1.13.0
-> unzip C:\Users\USUARIO\go\src\mod\cache\download\google.golang.org\grpc\@v\v1.13.0.zip: invalid file name google.golang.org/grpc@v1.13.0/.github/ISSUE_TEMPLATE
go: extracting github.com/kelseyhightower/envconfig v1.3.0
-> unzip C:\Users\USUARIO\go\src\mod\cache\download\github.com\kelseyhightower\envconfig\@v\v1.3.0.zip: invalid file name github.com/kelseyhightower/envconfig@v1.3.0/.travis.yml
go: extracting github.com/golang/protobuf v1.1.0
-> unzip C:\Users\USUARIO\go\src\mod\cache\download\github.com\golang\protobuf\@v\v1.1.0.zip: invalid file name github.com/golang/protobuf@v1.1.0/.gitignore
go: downloading github.com/vektah/gqlgen v0.0.0-20180710015341-ac9e5a66f879
-> unzip C:\Users\USUARIO\go\src\mod\cache\download\github.com\vektah\gqlgen\@v\v0.0.0-20180710015341-ac9e5a66f879.zip: invalid file name github.com/vektah/gqlgen@v0.0.0-20180710015341-ac9e5a66f879/.circleci/config.yml
go: extracting github.com/tinrab/retry v1.0.0
-> unzip C:\Users\USUARIO\go\sr
@Oxyrus
Oxyrus / ariake.vim
Created October 10, 2017 02:09 — forked from eritbh/ariake.vim
" Vim color file
" Converted from Textmate theme Ariake using Coloration v0.4.0 (http://github.com/sickill/coloration)
set background=dark
highlight clear
if exists("syntax_on")
syntax reset
endif
@Oxyrus
Oxyrus / cache.go
Created July 22, 2017 17:07 — forked from zemirco/cache.go
golang database layer with cache
type CacheInterface interface {
Get(key string) ([]byte, error)
Set(key string, value interface{}) error
}
// Cache implements CacheInterface.
type Cache struct {
// wrap redis pool connection
// or whatever you need
}