Ansible 1 2 3 4 5 6 7 8 9 10 . ├── _provision │ └── main.yml │ └── _tasks │ └── main.yml │ └── _vars │ └── main.yml | ├── _vagrant-box │ └── Vagrantfile Vagrant 1 2 3 4 ...
DevOps Books
Accelerate The Science of Lean Software and DevOps: Building and Scaling High Performing Technology Organizations por Nicole Forsgren PhD (Autor), Jez Humble (Autor), Gene Kim (Autor) Ansibl...
Erlang Basics
Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Some of its uses are in telecoms, banking, e-commerce, computer te...
Latex to Html
MathJax Perfect to render equations but don’t have structures support like tables and lists. <html> <head> <title>MathJax TeX Test Page</title> <script type="text/x-ma...
First peripheral only with radio static.
In March 1975, thirty-two computer enthusiasts met in Gordon French’s garage around an Altair 8800 computer. No one had seen anything like it, and they shared whatever information they had. Steve...
Rails 4 Turbolinks
What is it? gem 'turbolinks' “This is a gem that works similar to pjax, but instead of worrying about what element on the page to replace, and tailoring the server-side response to fit, we re...
Clima tempo module for Node.js
version : 0.0.9 Communication with Clima Tempo accessing information about the weather of Brazil. Installation npm install clima-tempo Usage var clima = require(clima-tempo); va...
Writing and Publishing Node.js Modules
Write If you have a library and you want to share with the other programs, it’s time to create a module. It’s very simple but you have to known some rules. Structure -example-module -lib e...
Blocks, Procs e Lambdas
Blocks Writing methods that can accept blocks is simple. There’s no special syntax needed, you can simply write the method as you would any other. To call any block passed to the method, use the...