(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.
| #!/bin/bash | |
| apt-get update | |
| apt-get install bind9 | |
| cat <<EOF > /etc/bind/named.conf.options | |
| options { | |
| directory "/var/cache/bind"; | |
| forwarders { | |
| 8.8.8.8; | |
| 8.8.4.4; |
(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.