[go-nuts] Re: Go += Package Versioning

2018-02-24 Thread Sean Russell
Russ, I'm working on adding support for Bitbucket, per your comment in #23950 . I'm struggling a bit with executing the tests in x/vgo -- should I expect vgo test to work? I feel like I'm missing something obvious. I added unit tests first and they'

Re: [go-nuts] Re: Go += Package Versioning

2018-02-25 Thread Sean Russell
On Sunday, February 25, 2018 at 1:08:31 AM UTC-5, Sam Whited wrote: > > FYI, there is an active CL for this here: https://golang.org/cl/95578 > Thanks Sam -- I found it, and it's working fine. I'm still curious as to what I'm doing wrong in executing the tests in x/vgo . --- SER -- You recei

[go-nuts] Re: Install vim-go as a pacakge in vim 8

2016-09-19 Thread Sean Russell
On Monday, September 19, 2016 at 5:13:21 AM UTC-4, Tamás Gulácsi wrote: > > Nope, I'm on neovim (with plug for the plugins) for a long time now... I don't think I even needed a plug for the plugins -- I just cp -r ~/.vim ~/.config/nvim and everything worked, including vim-go. --- SER -- You r

[go-nuts] Re: iconvg: a compact, binary format for simple vector graphics

2016-10-25 Thread Sean Russell
Hi, On Monday, October 24, 2016 at 2:52:48 AM UTC-4, Nigel Tao wrote: > > The Material Design icon set (https://design.google.com/icons/) > consists of 961 vector icons. As SVG files, this totals 312,887 bytes. > As 24*24 pixel PNGs, 190,840 bytes. As 48*48 pixel PNGs, 318,219 > bytes. As IconV

Re: [go-nuts] Idea for versioning in the new Go package manager.

2016-11-01 Thread Sean Russell
Hi, On Wednesday, October 26, 2016 at 4:42:13 AM UTC-4, Axel Wagner wrote: > > I thought about this too, but came to the conclusion that this would first > require a good definition of what "API breakage" actually means. > > In it's strictest interpretation as "any go package that imports this w

[go-nuts] polymorphism (for Go 2.0), new fast playground is live

2016-06-13 Thread Sean Russell
Interesting work. I understand this is very much a work in progress; how would you (eventually) see the implementation of map(), e.g.: https://play.golang.org/p/GogrfKf-oA Or is this an accepted limitation of functionality for simplicity, that any single generic scope must have at most a singl

[go-nuts] I found a quote that explains why I find Go beautiful!

2016-06-13 Thread Sean Russell
Nice! -- 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. For more options, visit https://groups.google.com/d/optout.

[go-nuts] Re: polymorphism (for Go 2.0), new fast playground is live

2016-06-16 Thread Sean Russell
For others: use Firefox for his playground; it doesn't function in Chrome on either my tablet and or my laptop. --- SER On Monday, June 13, 2016 at 9:41:52 AM UTC-4, charr...@gmail.com wrote: > > > > On Monday, June 13, 2016 at 1:28:26 PM UTC+2, Sean Russell wrote: >>

[go-nuts] Re: polymorphism (for Go 2.0), new fast playground is live

2016-06-16 Thread Sean Russell
Hi, On Monday, June 13, 2016 at 9:41:52 AM UTC-4, charr...@gmail.com wrote: > > for reference, here is the mymap() > > http://tsoh.host/test.html#8e4ae712 > > it simply runs the callback on every slice member > I apologize; I didn't communicate my question well. Your map example functions on a

[go-nuts] Re: polymorphism (for Go 2.0), new fast playground is live

2016-06-16 Thread Sean Russell
I'm sorry -- the "share" button doesn't seem to be working, or doesn't work in Firefox or Chrome. And I have a window hung on "waiting for remote server," so I might have broken your playground. Here's my code in (hopefully) compileable form for your processor: package main impoort "strconv

[go-nuts] Re: A proposal for generic in go

2016-06-22 Thread Sean Russell
On Tuesday, June 21, 2016 at 10:29:37 AM UTC-4, Henry wrote: > You still haven't provided any argument why generics is indispensable. That can't be the litmus for language feature inclusion; if it was, Go would resemble ASM. In my personal experience, something North of 50% of my non-trivial

Re: [go-nuts] How to hide command line argument from ps

2016-06-22 Thread Sean Russell
On Tuesday, June 21, 2016 at 9:56:21 PM UTC-4, Lazytiger wrote: > Thanks for all the replies. I agree that there is a better way to do the > security jobs. I ask this question just for curiosity, to find out if there > is a equivalence way to do this in golang. From all the replies I assume > th

Re: [go-nuts] How to hide command line argument from ps

2016-06-23 Thread Sean Russell
> On Jun 23, 2016, at 8:00 AM, Nick Craig-Wood wrote: > > Environment variables are quite insecure too. On linux you can read any > processes environment variables using /proc/PID/environ, eg Env variables are more secure than ps, which is what your question asked. Maybe a linux forum would

[go-nuts] Re: A proposal for generic in go

2016-06-29 Thread Sean Russell
On Wednesday, June 29, 2016 at 2:31:59 AM UTC-4, Egon wrote: > > Just to be clear what I consider a *great example* for analyzing generics: > > 2. 3+ real-world packages/applications use that package > * By real-world here I mean it wasn't written for learning or fun, but > rather solving a conc

Re: [go-nuts] What dependency management tool do you use?

2016-07-12 Thread Sean Russell
On Tuesday, July 12, 2016 at 4:25:42 PM UTC-4, Peter Mogensen wrote: > gvt > > It's KISS and does the job. +1 gvt is the best I've used. * It doesn't force checking in the dependencies * The manifest is straightforward and easily committed separately * It's nicely encapsulated entirely in the v

Re: [go-nuts] What dependency management tool do you use?

2016-07-13 Thread Sean Russell
Hi Nathan, On Wednesday, July 13, 2016 at 11:43:09 AM UTC-4, Nathan Fisher wrote: > Out of curiosity if the upstream deletes their repo does a force push > invalidating a sha or in some other way causes a dangling reference how do you > protect against that without checking the dependency in? I'm

[go-nuts] Can plugins be used across repositories?

2020-02-29 Thread Sean Russell
Has anyone had any success using plugins across repositories using Go modules? I have two github repositories; one uses plugins (USER), the other contains a plugin (USED). I have a tag on a commit in the USER repo, and the go.mod in the USED repo references that version. Both go.mod files ref