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.
| CmdUtils.makeBookmarkletCommand({ | |
| name: "Evernote", | |
| description: "Save a note on Evernote.", | |
| icon: "http://www.evernote.com/favicon.ico", | |
| homepage: "http://www.makadia.com", | |
| author: {name: "Svapan Makadia", email: "codewzrd@hotmail.com"}, | |
| help: "Select content and invoke this command to save the selection as a note or just save the whole page without selecting anything.", | |
| url: "javascript:(function(){EN_CLIP_HOST='http://www.evernote.com';try{var%20x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/public/bookmarkClipper.js?'+(new%20Date().getTime()/100000);document.getElementsByTagName('head')[0].appendChild(x);}catch(e){location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);}})();" | |
| }) |
| import time | |
| import requests | |
| import json | |
| class DownloadStationAPI(): | |
| def __init__(self, host=None, username=None, password=None): | |
| self.name = 'DownloadStation' |
| #!/bin/bash | |
| # Place in /usr/share/backup/ | |
| # and make executable | |
| # chmod 0744 dup-backup.sh | |
| # install: | |
| # apt-get install duplicity python-gdata python-gobject-2 python-paramiko | |
| ## Remeber to change Google drive user name and Google drive folder | |
| ## And change Email | |
| # Must run as root for system wide backups |
| #!/usr/bin/python | |
| # ALL FAME GOES HERE : https://gist.github.com/mipearson/1146151 | |
| # | |
| # 1/ Place where you want (like /usr/share/munin/plugins/nginx_status_codes.py ) | |
| # 2/ Link in /etc/munin/plugins/ : | |
| # ln -s /usr/share/munin/plugins/nginx_status_codes.py /etc/munin/plugins/nginx_errors | |
| # chmod +x /etc/munin/plugins/nginx_errors | |
| # 3/ Test with | |
| # munin-run nginx_errors | |
| # 4/ If nescessary : add these lines in your munin conf |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>homebrew.mxcl.pdnsrec</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/local/opt/pdnsrec/sbin/pdns_recursor</string> | |
| </array> |