[go-nuts] Production Support

2020-12-09 Thread jm...@tele-metron.com
I have developed an API server using GO. Started as a retirement project but now has actual company that is ready to replace their current technology. I am looking for a group or individual that may be interested in taking on the support of the code base as I start to take retirement seriously.

[go-nuts] how do i upgrade to latest version of go?

2018-04-24 Thread JM
I currently have on my mac: go version go1.9 darwin/amd64 and want to upgrade to the latest. Thanks. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-n

[go-nuts] Re: latest go examples

2018-04-13 Thread JM
thanks. I run a software engineering team so I've been less hands-on lately and want to get back into keeping my skills current. On Friday, April 13, 2018 at 10:14:08 AM UTC-6, JM wrote: > > Where can I find some examples of using go that uses the latest releases? > I went to

[go-nuts] latest go examples

2018-04-13 Thread JM
Where can I find some examples of using go that uses the latest releases? I went to golang.org but still looking. I am aware of gobyexample.com but not sure if it's kept updated as new builds are released. thanks. -- You received this message because you are subscribed to the Google Groups "g

[go-nuts] gobot and raspberry pi

2018-02-05 Thread JM
anyone know where i would begin to figure out if i can use this: https://www.robotshop.com/uk/arducam-multi-camera-adapter-module-raspberry-pi.html on a pi with gobot? I cant find any api or reference on how to use it, let alone anything for golang. on want to run multiple cameras to take differ

[go-nuts] aws lambda native support for go in a few weeks

2017-12-01 Thread JM
just announced this week at re:invent. also cloud 9 the new dev ide also supports go. In case anyone cares ^^^ -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to g

[go-nuts] what's new with Go in the past year?

2017-11-12 Thread JM
Unfortunately, I have been out of Go land for about a year and want to get back into it. What has added/changed over the past year? Thanks -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails

[go-nuts] git submodule vs normal go vendoring

2017-09-30 Thread JM
can anyone tell me the pros/cons of using git submodule update instead of godep govendor etc... ? git submodule update --init --recursive -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails f

[go-nuts] Re: SOLID Design Patterns in GO

2017-03-03 Thread JM
Dave Cheney Solid Design Patterns in Go https://www.youtube.com/watch?v=0IaBAl7onCE On Tuesday, March 29, 2016 at 9:26:31 AM UTC-6, JM wrote: > > Anyone care to elaborate on how these are altered when using Go? For > example I would think that the O and the I may have to be adjus

[go-nuts] Re: Recommended package for SNMP

2017-02-14 Thread JM
how did this work out for you? I'm looking at doing some stuff with snmp v3. On Thursday, December 10, 2015 at 8:32:41 PM UTC-7, Rajanikanth Jammalamadaka wrote: > > Thanks Eric. > > Seems like this one: https://github.com/soniah/gosnmp will work for me. > > Will keep your technique as a back

[go-nuts] [ANN] Rapid API tool: AWS Lambda + API Gateway + Go (Aegis)

2017-01-19 Thread JM
Does AWS lambda support go finally or are you using a node js wrapper? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. F

[go-nuts] Re: How has your company adopted Go ?

2016-12-20 Thread JM
converted a web app from python to go. performance, simplicity, and keeping the team excited were the top, and also the only other contender that had a had a chance at the time was node js which was quickly eliminated for many reasons. I am doing consulting work for a fortune 50 company and al

[go-nuts] filtering go in memory objects?

2016-12-16 Thread JM
I am now getting into data processing with go and looking for resources on filtering and querying slices and maps. For example a slice or map of data in a in memory cache that will be queried instead of hitting the db. There is a package here https://github.com/ahmetalpbalkan/go-linq but I am

[go-nuts] logrus and aws lambda now working

2016-11-30 Thread JM
im running go in aws lambda via node and a js wrapper. Everything works but when i try to log to cloudwatch it blows up and returns my log statements in the output of my lambda functions. Is anyone using golang in lambda and able to log to cloudwatch? How are you doing it? I just now realiz

[go-nuts] folder and package structure with ddd based micro services

2016-10-31 Thread JM
im building a micro service layer using the following folder structure. I have unit tests for everything and each if store in it's relative folder. I am thinking of moving everything in my domain model into one root folder and not have sub folders for each. then just have NewAggregate1 instea

[go-nuts] interactive debugger for go ??

2016-09-06 Thread JM
Will there be a debugger that will allow me to step into my code, watch the flow, and go line by line in real time, see values set, etc..? does this already exist and i'm just not aware of it? I'm not a full time go dev right now, but use it part time so I may just not know about this

[go-nuts] looking for the equivelant golang code in the aws s3 sdk, but have not found it yet. Anyone help here??? Thanks.

2016-07-15 Thread JM
I am trying to find the equivalent of getSignedURL and hoping i'm just blind and overlooking it somewhere. //Generates a short lives signed url to be used from the client to upload an image. function(req, res){ aws.config.update({accessKeyId: AWS_ACCESS_KEY , secretAccessKey: AWS_SECRET_KE

[go-nuts] Re: can't install gomobile

2016-07-02 Thread JM
obile tool and see if that fixes the problem. > > - elias > > On Saturday, July 2, 2016 at 4:56:58 AM UTC+2, JM wrote: >> >> windows pro on 64x. Anyone know what's going on here? Im using the >> following reference. https://github.com/golang/go/wiki/Mobile >

[go-nuts] can't install gomobile

2016-07-01 Thread JM
windows pro on 64x. Anyone know what's going on here? Im using the following reference. https://github.com/golang/go/wiki/Mobile C:\WINDOWS\system32>go get golang.org/x/mobile/cmd/gomobile C:\WINDOWS\system32>gomobile init gomobile: rename C:\GoPath\pkg\gomobile\work-399306583\android-ndk-r12\

[go-nuts] Webcam

2016-06-26 Thread JM
I searched the forum and there were a few posts but they were old. Looking for any updates I'm looking for a way to take a photo from my default webcam via code. I am using ComandCam now with exec.Command and it works fine, but it takes 3 seconds for each photo if i loop though and keep taking

[go-nuts] better understanding of * and & in go

2016-06-20 Thread JM
Can someone answer the question below in the first comment of the ChangeRefValue function? Also can anyone provide better explanations of waht's going on here, or a link that explains? Thanks. playground version: https://play.golang.org/p/8dYdYoL0WI package main import "fmt" func main() {