[go-nuts] [ANN] BIFF  (BIFurcation Framework) easy nesting tests

2018-05-19 Thread Gerardo Oscar JT
Here is BIFF , a small library for testing that takes advantage of scope of nested functions to write tests faster and

[go-nuts] Re: [ANN] Dependencies for dummies

2018-05-16 Thread Gerardo Oscar JT
t: > > src/github.com/my/project/vendor/github.com/fulldump/goconfig > > Why are you doing it this way? > > Have you tried vgo? https://github.com/golang/vgo > > Matt > > On Sunday, May 13, 2018 at 3:12:59 PM UTC-5, Gerardo Oscar JT wrote: >> >> Hi gophers! >&g

[go-nuts] Re: [ANN] Dependencies for dummies

2018-05-15 Thread Gerardo Oscar JT
Updated script with option --parallel (enabled by default), up to 6x faster in a project with 10 dependencies :D El domingo, 13 de mayo de 2018, 22:12:59 (UTC+2), Gerardo Oscar JT escribió: > > Hi gophers! > > Golang do not have a canonical way to download dependencies. Glide is

[go-nuts] Re: Actually I'm learning golang but I need involve me a project. do you guys know about a project to help it?

2018-05-14 Thread Gerardo Oscar JT
Hi Eduardo, I started a free blogging system at https://github.com/fulldump/blogo with some videos documenting the process (in spanish) https://www.youtube.com/watch?v=tPMVwd1js0I=PLMPsqnO6mKSDaL1nX3gzUP43HXJtIl4xJ. It starts from scratch. It is deployed to https://blogo.tech/ with CI/CD

[go-nuts] [ANN] Dependencies for dummies

2018-05-13 Thread Gerardo Oscar JT
Hi gophers! Golang do not have a canonical way to download dependencies. Glide is the last one I have been using and it is like a drunk elephant in my laptop. This weekend I have managed to summon the force to work on a silly script that read a list of git repos, and do the clones, one by one.

[go-nuts] Re: [ANN]: golax, a framework to build REST APIs

2016-09-30 Thread Gerardo Oscar JT
New Golax Interceptor: 'NoCache' to avoid browser http caching https://github.com/fulldump/golax/blob/master/interceptors.go#L66-L84 El jueves, 18 de febrero de 2016, 0:47:46 (UTC+1), Gerardo Oscar JT escribió: > > New release 0.3.0 https://github.com/fulldump/golax/releases/tag/

[go-nuts] Re: [ANN] Configuration library

2016-07-27 Thread Gerardo Oscar JT
t; cli values precedence. fun4all !! El miércoles, 27 de julio de 2016, 8:16:03 (UTC+2), Gerardo Oscar JT escribió: > > Maybe too simple, maybe there are several solutions, but here > https://github.com/fulldump/goconfig is a configuration library to avoid > the over-verbosity of fla

[go-nuts] [ANN] Configuration library

2016-07-27 Thread Gerardo Oscar JT
Maybe too simple, maybe there are several solutions, but here https://github.com/fulldump/goconfig is a configuration library to avoid the over-verbosity of flag library. It also allow load configuration from a json file. It works like this: type myconfig struct { Name string `The