I hereby claim:
- I am ancillas on github.
- I am gbaker (https://keybase.io/gbaker) on keybase.
- I have a public key whose fingerprint is 513B 4C05 617F 17E1 DE34 796A 6041 1F64 8D6E E244
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Example HTML Code</title> | |
| <link rel="stylesheet" type="text/css" href="styles.css"> | |
| </head> | |
| <body> | |
| <div class="obnoxious">Blam!</div> | |
| </body> |
| node default { | |
| class {'passwordlessroot': | |
| publickey => "public", | |
| privatekey => "private", | |
| } | |
| } | |
| class passwordlessroot( | |
| $publickey, | |
| $privatekey |
| # == Class: dns | |
| # | |
| # This module creates a DNS configuration file for the supplied nameservers and | |
| # domain. It also supports an optional options string. | |
| # | |
| # === Supported Operating-Systems | |
| # | |
| # Ubuntu | |
| # | |
| # === Other Requirements |
| import pyDes | |
| from pyDes import * | |
| import base64 | |
| import getpass | |
| import sys | |
| pwd = getpass.getpass('Enter password') | |
| key = getpass.getpass('Enter key (optional)') | |
| if not key: |
| require 'r10k/cli' | |
| require 'r10k/deployment' | |
| require 'r10k/deployment/config' | |
| require 'r10k/task_runner' | |
| require 'r10k/task/deployment' | |
| require 'cri' | |
| module R10K::CLI |
| import requests | |
| class HoverException(Exception): | |
| pass | |
| class HoverAPI(object): | |
| def __init__(self, username, password): | |
| params = {"username": username, "password": password} | |
| r = requests.post("https://www.hover.com/api/login", params=params) |
| class test1 { | |
| $color = 'dirt' | |
| if ($color != 'dirt') or ($color != 'blue') { | |
| notify {"test1: conditional true": } | |
| } else { | |
| notify {"test1: conditional false": } | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| worker_processes auto; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| keepalive_timeout 65; | |
| server { |