(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| module("resty.consul", package.seeall) | |
| _VERSION = '0.1.0' | |
| function service_nodes(service) | |
| local http = require "resty.http" | |
| local json = require "cjson" | |
| local hc = http:new() | |
| local upstream = "" |
| #!/bin/sh | |
| set -e | |
| gh="https://github.com/" | |
| repos=" | |
| ipython/traitlets | |
| ipython/ipython | |
| jupyter/jupyter_core |
| #!/usr/bin/env python | |
| """ | |
| Example Usage: | |
| $ ansible -i machine.py machinename -m ping | |
| """ | |
| import argparse | |
| import subprocess |
| import json | |
| import glob | |
| import os | |
| from os.path import join, basename | |
| # install this with "conda install -c conda-forge python-graphviz" | |
| import graphviz as gv | |
| # path to your conda environment | |
| path = os.environ.get('CONDA_PREFIX') | |
| if path is None: |