Aug 13, 2016

ruby hex to dec and dec to hex

$ irb

irb(main):001:0> "ff".to_i 16
=> 255

irb(main):004:0> 255.to_s 16
=> "ff"

irb(main):007:0> "ff".hex
=> 255


No comments:

Post a Comment

Kubernetes

kubectl installation $ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl...