The official style guides for the Go language used in the Thanos project. Thanos is an Open source, highly available Prometheus setup with long term storage capabilities.

seen from Malaysia

seen from United States
seen from United States

seen from Sweden
seen from Canada
seen from United States
seen from United States
seen from China
seen from Bulgaria

seen from United Kingdom
seen from China

seen from China

seen from Malaysia
seen from United States
seen from China
seen from Sweden

seen from China
seen from Malaysia
seen from China

seen from Malaysia
The official style guides for the Go language used in the Thanos project. Thanos is an Open source, highly available Prometheus setup with long term storage capabilities.
BuzzWord: Functional Programming Short Guides
BuzzWord: Functional Programming Short Guides
This is summary of: Anjana Vakil’s video
1. Do everything with functions. Function take input and return output. Non functional
var name = “Anjana”; var greeting = “Hi, I’m ”; console.log(greeting + name); // Output: “Hi, I’m Anjana”
Functional
function greet(name) { return “Hi, I’m ” + name; } greet(“Anjana”); // Output: “Hi, I’m Anjana”
2.Avoid side effects. Function should only process…
View On WordPress
Team Code Review & Design Sessions
XP is about getting the right values and practices and maximize it to the extreme. CODE it's essential and practices like pair programming and unit testing / test driven are a must have. I... Mais posts no blog(http://diego-pacheco.blogspot.com/)