[go-nuts] Capital Golang conference

2017-02-22 Thread Rajanikanth Jammalamadaka
Hello Fellow Gophers, Just wanted to let you know about this conference in the Washington DC metro area: https://www.eventbrite.com/e/capital-go-language-conference-2017-tickets-32139266411?aff=es2 Thanks Raj -- You received this message because you are subscribed to the Google Groups

[go-nuts] Re: Recommended package for SNMP

2017-02-14 Thread Rajanikanth Jammalamadaka
It worked for me fine. I did not use the trap support (which was recently added). -- 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

[go-nuts] Re: gophercon 2016 videos

2016-08-19 Thread Rajanikanth Jammalamadaka
Awesome, thanks! On Friday, August 19, 2016 at 8:20:23 AM UTC-4, Josh Kamau wrote: > > For those who have been waiting, like me, GopherCon 2016 videos are now > on youtube. e.g https://www.youtube.com/watch?v=KINIAgRpkDA > -- You received this message because you are subscribed to the Google

[go-nuts] Re: create a .rpm file for go app.

2016-09-20 Thread Rajanikanth Jammalamadaka
Build your binary and then use fpm? https://github.com/jordansissel/fpm On Tuesday, September 20, 2016 at 2:53:39 PM UTC-4, sujith...@gmail.com wrote: > > > Right now, to build my .rpm package, I'm using this website: > https://packager.io/ > > However, I would like to automate this in our prod

[go-nuts] Cross-compile Go code from a x86_64 host to an Arm system (Raspberry Pi 3)

2016-10-23 Thread Rajanikanth Jammalamadaka
Specify GOOS and GOARCH. List of supported ones: https://golang.org/doc/install/source#environment -- 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

Re: [go-nuts] Expiring map

2017-07-20 Thread Rajanikanth Jammalamadaka
t make sense to open source these, if > they have no internal dependencies. > > On Wed, Jul 19, 2017 at 3:22 PM Rajanikanth Jammalamadaka < > rajanika...@gmail.com> wrote: > >> Does somebody have a recommendation for an expiring dict? If I have to >> write my ow

[go-nuts] Expiring map

2017-07-19 Thread Rajanikanth Jammalamadaka
Does somebody have a recommendation for an expiring dict? If I have to write my own, is there a way to avoid iterating over all the keys to delete the expired entries? Thanks, Raj -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe

Re: [go-nuts] Expiring map

2017-07-19 Thread Rajanikanth Jammalamadaka
Thanks Shawn/Jan On Wednesday, July 19, 2017 at 3:32:59 PM UTC-4, Jan Mercl wrote: > > > On Wed, Jul 19, 2017 at 9:22 PM Rajanikanth Jammalamadaka < > rajan...@gmail.com > wrote: > > > Does somebody have a recommendation for an expiring dict? If I have to > write m

Re: [go-nuts] Re: How fast can gopacket handles?

2017-05-27 Thread Rajanikanth Jammalamadaka
Can you offload the actual packet processing to a different goroutine? -- 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.

[go-nuts] Re: javascript libraries

2017-09-06 Thread Rajanikanth Jammalamadaka
I did not use this much, but try gopherjs: https://github.com/gopherjs/gopherjs On Wednesday, September 6, 2017 at 10:32:49 PM UTC-4, Vickey Rawat wrote: > > Is there any javascript package in go by which i can create javascript > graphs and tables without having to learn a new language. > > I

[go-nuts] parse timestamp in Go

2019-02-07 Thread Rajanikanth Jammalamadaka
How can I parse the following timestamp in Go? date +%y%m%d%H%M%S%N 190207202017034235995 Thanks, Raj -- 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

Re: [go-nuts] parse timestamp in Go

2019-02-07 Thread Rajanikanth Jammalamadaka
Thanks. This is what I had to do as also pointed out by Martin Schnabel: https://play.golang.org/p/cC3yJ2AWquk On Thu, Feb 7, 2019 at 7:10 PM Burak Serdar wrote: > On Thu, Feb 7, 2019 at 2:28 PM Rajanikanth Jammalamadaka > wrote: > > > > How can I parse the followi