Date: [date]
Between us [company name] and you [customer name].
In short; neither of us will share any confidential information about each-other, by any means, with anyone else.
| Host * | |
| Compression yes | |
| ControlMaster auto | |
| ControlPath /tmp/ssh-conn-%r@%h:%p.con | |
| ControlPersist 30 | |
| ForwardAgent yes | |
| ServerAliveInterval 100 | |
| IdentityFile ~/.ssh/id_rsa | |
| AddKeysToAgent yes | |
| UseKeychain yes |
| <?php | |
| /** | |
| * I had to parse an XLSX spreadsheet (which should damn well have been a CSV!) | |
| * but the usual tools were hitting the memory limit pretty quick. I found that | |
| * manually parsing the XML worked pretty well. Note that this, most likely, | |
| * won't work if cells contain anything more than text or a number (so formulas, | |
| * graphs, etc ..., I don't know what'd happen). | |
| */ |
| add_filter("mce_external_plugins", "tomjn_mce_external_plugins"); | |
| function tomjn_mce_external_plugins($plugin_array){ | |
| $plugin_array['typekit'] = get_template_directory_uri().'/typekit.tinymce.js'; | |
| return $plugin_array; | |
| } |