Skip to content

Instantly share code, notes, and snippets.

View liulangwa's full-sized avatar

alexd liulangwa

  • china
View GitHub Profile
@liulangwa
liulangwa / inventory_parser.rb
Created May 2, 2022 08:33 — forked from rmetzler/inventory_parser.rb
Ansible Inventory Parser
class InventoryParser
def initialize(inventory_path)
@inventory_path = inventory_path
@data = {
"_meta" => {
"hostvars" => {}
}
}
end
@liulangwa
liulangwa / go-os-arch.md
Created December 7, 2019 06:23 — forked from asukakenji/0-go-os-arch.md
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.8.3 darwin/amd64.

A list of valid GOOS values

(Bold = supported by go out of the box, ie. without the help of a C compiler, etc.)

  • android
  • darwin