[go-nuts] Problems with regexp

2017-08-28 Thread Paulo Coutinho
Hi, Well, I'm having a problem with regular expressions, so all online regexp testers work, including those that run on go. But locally and on the playground does not work and I do not understand what is wrong. Can anyone help me with this? Follow the code link: Https://play.golang.org/p/yVpU

[go-nuts] New free tool JIRA to PDF

2017-04-11 Thread Paulo Coutinho
Hi, I have made a new tool to export JIRA issues to PDF using a JQL query. It help us, i think can help anyone. https://github.com/prsolucoes/jira-to-pdf -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop r

[go-nuts] Re: Go cross compilation for Xtensa

2017-01-13 Thread Paulo Coutinho
Any evolution here? Do you deploy anything using it? Thanks. On Monday, April 20, 2015 at 12:15:39 PM UTC-3, k.ja...@gmail.com wrote: > > I tried building crosstool-NG with golang enabled. Now I have xtensa-gccgo > tool. Need to figure it out how to use it. > -- You received this message

Re: [go-nuts] Golang for ARM

2016-12-18 Thread Paulo Coutinho
16 at 4:09 AM, Paulo Coutinho > wrote: > > Hi, > > > > Im making a free repository to show how to compile Golang for ARM v7 > > (Android). > > > > Link: > > https://github.com/prsolucoes/golang-for-arm > > > > Error: > > arm-linux-andro

[go-nuts] Golang for ARM

2016-12-17 Thread Paulo Coutinho
Hi, Im making a free repository to show how to compile Golang for ARM v7 (Android). Link: https://github.com/prsolucoes/golang-for-arm Error: arm-linux-androideabi-gcc: error: unrecognized command line option '-m64' Can anyone help me? The Dockerfile is in repository. Thanks. -- You receive

[go-nuts] Re: Problem with slice and object copy

2016-12-06 Thread Paulo Coutinho
No more problems. The problem is with me that dont update the list to server app and remain with the old list. But thanks. The project is updated with optimizations here: https://github.com/prsolucoes/gohc Thanks. On Tuesday, December 6, 2016 at 8:40:26 PM UTC-2, Paulo Coutinho wrote

[go-nuts] Problem with slice and object copy

2016-12-06 Thread Paulo Coutinho
Hi, In my project i have a slice of Healthcheck objects. On each second i make range on it healthcheck list to process. But when i get the object inside range, it change the pointer address, it makes a copy of the healthcheck, what is a problem to me. Can anyone help me get the current object

[go-nuts] Re: Create a new instance by TypeOf

2016-10-14 Thread Paulo Coutinho
ecause CollectorGoogleAnalytics does not > implement ICollector, since GetName is defined on type > *CollectorGoogleAnalytics and not CollectorGoogleAnalytics. > This works (I changed line 24): https://play.golang.org/p/SIFh3W3qhW > > On Saturday, October 15, 2016 at 4:02:51 AM UTC+2, Paulo Cou

[go-nuts] Create a new instance by TypeOf

2016-10-14 Thread Paulo Coutinho
Hi, I made an example to my problem: https://play.golang.org/p/zVLH8J7EiP But what i need is have some plugins that use an interface to return some data. But the plugin is auto inserted in a map of type: map[string]reflect.TypeOf or can be (will be better): map[string]ICollector After get the