| Level | Netural | Male | Femail | example $p | | Informal | They | He | She | $p want a boat | | Posisive | Their | His | Hers | $p boat is awesome | | Groups | all | guys | ladies | Hey $p | | Formal | Y'all | Sir | Madam | Hello good $p | | Titles | Mx | Mr | Ms | Hello $p Williams, your marital status dos not matter in your title |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.user.start-minikube</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/bin/zsh</string> | |
<string>-l</string> |
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
#IAM function | |
LambdaExecRole: | |
Type: AWS::IAM::Role | |
Properties: | |
AssumeRolePolicyDocument: | |
Version: '2012-10-17' | |
Statement: | |
- | |
Effect: Allow | |
Principal: |
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
ruby_block "checkcontroler" do | |
block do | |
pass_codes = [200, 302, 000] | |
Chef::Mixin::Shellout.send(:include Mixin::Shellout::ShellOut) | |
retcode = "curl --insecure --silent --output /dev/null --write-out '%{http_code}' https://#{node.private_ip}" | |
until pass.include?(retcode.std_out) do | |
execute 'cfn-signal' | |
# TODO: get info on this | |
command "/opt/aws/bin/cfn-signal --success true ' - Ref: WaitHandle02" | |
end |
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
skipping: [host.com] => (item=https://github.com/foobar/example-theme.git) => {"changed": false, "item": "https://github.com/foobar/example-theme.git", "ski | |
p_reason": "Conditional check failed", "skipped": true} |
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
TASK [debugging for each row.] ************************************************* | |
ok: [localhost] => { | |
"msg": " this is the data for row 2" | |
} | |
TASK [debug each rows data] **************************************************** | |
ok: [localhost] => { | |
"row.1.values().0.2.effectiveValue.stringValue": "VARIABLE IS NOT DEFINED!" | |
} |
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
vars: | |
web_user: web_user | |
dirs: | |
cache: /opt/ansible/cache | |
web_root: /srv/www/ | |
repo: redacted | |
#set password to "random" to have password auto_generated | |
mysql: | |
user: fop_user | |
db: fop_db |
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
TASK [debug] ******************************************************************* | |
ok: [localhost] => { | |
"omeka_cache": [ | |
{ | |
"app": "/opt/omeka/apps" | |
}, | |
{ | |
"plugins": "/opt/omeka/plugins" | |
}, | |
{ |
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
omeka_instances: # All attributes listed | |
- omeka.dev: # <--- need to access this on line 6 | |
url: omeka.dev | |
version: "{{ omeka_default_version }}" | |
location: "http://omeka.org/files/omeka-{{ self.value.version }}.zip" #gitrepo or or URL of omeka core app | |
directory: "/srv/www/{{ self.key.value }}" | |
instance_owner: "{{ omeka_default_instance_user }}" | |
db_host: "{{ omeka_default_database_host }}" | |
db_name: "{{ self.url }}" | |
db_user: "{{ self.url }}" |
NewerOlder