back to work!
ā Module 4 of AWS Cloud Practitioner Essenitals
#devops #aws #devup
Working through Module 3 of an AWS Cloud Practitioner Essentials course on AWS Skill Builder.
Completed 'Containers and Orchestration on AWS'
#devops #learning #aws
ā Module 3 of an AWS Cloud Practitioner Essentials course complete.
on to module 4.
#devops #aws #cloud
The hierarchy in Go has been one of the most challenging things within the language structure to understand. Things calling other things and different things and round and round we go LOL, it's a lot but it's been very rewarding to dig deeper into.
ticker := time.NewTicker(time.Second)
'ticker' is a declared var
time.NewTicker = function call (NewTicker) from the package "time"
time.Second is a value derived from the package "time" utiliziing the constant "Second" delacred under type Duration
after hours of use/exhaustive study š
#Go