Is there a solid, canonical, correct name for x64 architecture? Or operating system name? (i.e. windows vs win32 vs NT-5.1)
Or is there literally no standard way to represent these things? node: process.arch() // x64 porcess.platform() // darwin // win32 bash: uname -m // x86_64 uname -s // Darwin // NT-5.1 (maybe?) go: runtime.GOARCH // amd64 runtime.GOOS // darwin // windows AJ ONeal /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
