Read VBA macros (or vbaProject.bin) of an Excel file without opening it in MS Excel [closed]

There is a very large PDF from Microsoft which documents how to extract functions from the vbaproject.bin: https://interoperability.blob.core.windows.net/files/MS-OVBA/%5bMS-OVBA%5d.pdf [Source] This resource is current & available as of June 27, 2019. The event that this link goes stale (Microsoft periodically changes their permalink structure or otherwise alters how they implement their documentation/answer repositories, etc.), search for … Read more

Golang equivalent of npm install -g

Update: If you’re using Go 1.16, this answer still works, but go install has changed and is now the recommended method for installing executable packages. See Karim’s answer for an explanation: https://stackoverflow.com/a/68559728/10490740 Using Go >= 1.11, if your current directory is within a module-based project, or you’ve set GO111MODULE=on in your environment, go get will … Read more