I hereby claim:
- I am strlng on github.
- I am strlng (https://keybase.io/strlng) on keybase.
- I have a public key ASDeAWZZoIDQI6OTLPulU_rqoW5_D9_TVkATlLPyqyoZfQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| SOURCE="${BASH_SOURCE[0]}" | |
| while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink | |
| DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" | |
| SOURCE="$(readlink "$SOURCE")" | |
| [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located | |
| done | |
| DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" |
| on alfred_script(q) | |
| tell application "Mail" | |
| set lst to (get selection) | |
| set _msgRecent to my GetNewerMessage(lst) | |
| repeat with _msg in _msgRecent | |
| set _msgSubject to _msg's subject | |
| set _msgBody to _msg's content | |
| set _msgSender to _msg's sender | |
| set _msgURL to "message://%3c" & _msg's message id & "%3e" -- Fixed: OmniFocus doesn't accept "<" and ">" as part of a URL | |
| tell application "OmniFocus" |
| #!/usr/bin/env ruby | |
| require 'optparse' | |
| require 'json' | |
| require 'active_support/inflector' | |
| options = {} | |
| OptionParser.new do |opt| | |
| opt.on('-u WWWUSER', '--wwwuser=WWWUSER', 'User web server runs as') { |o| options[:server_user] = o } | |
| opt.on('-d DOCROOT', '--docroot=DOCROOT', 'Document root') { |o| options[:doc_root] = o } |
| ### Keybase proof | |
| I hereby claim: | |
| * I am sterlinganderson on github. | |
| * I am strlng (https://keybase.io/strlng) on keybase. | |
| * I have a public key whose fingerprint is 01D9 D982 FF22 9EDF 1B59 B58A 4D9E 9AFC E59D 2D88 | |
| To claim this, I am signing this object: |
| (* | |
| OmniFocus Selected Mail Messages.applescript | |
| Copyright (c) 2015 Jonathan 'Wolf' Rentzsch: http://rentzsch.com | |
| Some rights reserved: http://opensource.org/licenses/mit | |
| Pure AppleScript reimplementation of OmniGroup's Clip-o-Tron for OmniFocus. | |
| Hopefully this implementation will be more resilient against OS X, Mail, and OmniFocus updates. | |
| Successfully tested against OS X 10.10.1, OmniFocus 1.10.6, and OmniFocus 2.0.4. |
| #!/usr/bin/python | |
| import uuid | |
| # Two dimensional array consisting of MAC Address, IP Address, Name | |
| imacs=[["xx:xx:xx:xx:xx:xx","xxx.xxx.xxx.xxx","hostname"]] | |
| for imac in imacs: | |
| uniqueid = uuid.uuid4() | |
| command = "dhcp:static_maps:_array_id:" + str(uniqueid) + " = create\n" |