pborman

Results 36 comments of pborman

Looking at the code it appears that NullUUID can actually be implemented outside of the uuid package itself. Have you considered making a simple package that provides this type?

As mentioned i a code review, these should be limited to package main. Libraries that want a different generator should call a different function. The good new is, that unlike...

Sorry for the delay. I have a concern about adding every possible marshaling function to this package. While the code is not great in size, there are a number of...

@ayang64 For equality it just is `myuuid == theiruuid`. Making UUIDs be comparable for equality is actually the reason that `github.com/google/uuid` was forked from `github.com/pborman/uuid`. The latter has now been...

What you want is `uuid.NullUUID` which is like a `UUID` but it can be null (at the cost of additional data). uuid.Nil has a specific definition and it is not...

I encountered the same issue. I did come up with a hack that works in my workflow. I wrote a shell script I named `macdown-reopen` that utilizes AppleScript: ``` #!/bin/sh...