Simple design: probably a good one!
This article is intended to be rather short ™. I will discuss my latest tool [https://github.com/adonese/ebs-live](ebs live dashboard api consumer). As the name suggests, this tool simply converts EBS’s website into an API. Pretty simple right. the problem we have an html document we want to parse it to extract some text, v We can use Go’s excellent x/net/html library to parse the html. html package provides the following: proper utf-8 encoding html body node traversing (e.g., it does exactly what your browser do with manipulating and accessing the DOM) The code for this part is really simple so, i won’t go into it at all. ...