This file contains 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
cp -pR first-null-commit first-null-commit-scrubbed | |
cd first-null-commit-scrubbed | |
vi .git/.gitignore # edit to ignore .DS_STORE files | |
git rm -rf .DS_STORE | |
git status | |
git add . | |
git commit -m 'https://github.com/jdonson/first-null-commit/issues/4 This is to prevent git from adding annoying DS_Store files to repo. See: http://stackoverflow.com/questions/107701/how-can-i-remove-ds-store-files-from-a-git-repository ' | |
# how to test? | |
git status | |
git push |
This file contains 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
mysql> CREATE SCHEMA schems_2014 | |
CHARACTER SET utf8 | |
COLLATE utf8_general; | |
mysql> use schems_2014 | |
mysql> CREATE TABLE inventory ( | |
inv_id ... | |
); |
This file contains 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
{Diagram Define-Edit-Review-Publish Workflows} | |
| | |
['SVG DIAGRAMS'] <---- (Derived From) <-- STATE | |
| | | |
(via CASE Tools Generate) --> ['Code', 'Configs', 'Tests'] <---> YAML { yaml edit-review workflows } | |
1. What types of state? | |
- user | |
- system | |
- network |
This file contains 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
--- | |
# ^^^ YAML documents must begin with the document separator "---" | |
# | |
#### Example docblock, I like to put a descriptive comment at the top of my | |
#### playbooks. | |
# | |
# Overview: Playbook to bootstrap a new host for configuration management. | |
# Applies to: production | |
# Description: | |
# Ensures that a host is configured for management with Ansible. |
This file contains 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
<html> | |
<head> | |
LINKS here, like to css libraries!! | |
<title> | |
Title Page Here | |
</title> | |
</head> | |
<body> | |
Page Content Goes Here | |
</body> |