- Atleast 7 VM's: 1 corresponding to each node and 1 for DNS Server.
- Keep note of the IP's of each VM and assign them to a node.
- A publicly accessible IP address of each of the above machines and a private IP address for each of them (these may be the same address depending on the machine environment). These will be referred to as
<publicIP>
and<privateIP>
below. - The FQDN of the machine, which resolves to the machine's public IP address (if the machine has no FQDN, you should instead use the public IP). Referred to as
<hostname>
below. - A DNS root zone in which to install your repository and the ability to configure records within that zone. This root zone will be referred to as
<zone>
below. In setting of DNS, this is referred to asims.hom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from graphics import * | |
def get_y(x): | |
return x*x*x - 2*x +2 | |
def main(): | |
win = GraphWin("Graphing calulator", 300, 300) | |
win.yUp() | |
x_prev = -10 | |
y_prev = get_y(x_prev) |
##less command
Added the following support to less command
- emoticon support
- diagonal navigation support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval(function(){ | |
document.title = "Enjoy the world cup" | |
}, 500); |
OlderNewer