View Things-Outlook.AppleScript
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
tell application "Microsoft Outlook" | |
set theMessageList to selected objects | |
log theMessageList | |
set theMessage to item 1 of theMessageList | |
set theSubject to the subject of theMessage | |
set theTime to the time received of theMessage | |
set theBody to the plain text content of theMessage | |
set theSender to the sender of theMessage | |
set theSender to the address of theSender | |
set theID to the id of theMessage |
View Markdium-text.txt
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
docker-compose down |
View Markdium-Shell.bash
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
mkdir /home/pi/homebridge | |
cd /home/pi/homebridge | |
sudo nano docker-compose.yml |
View Markdium-text.txt
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
docker images |grep -v REPOSITORY|awk '{print $1}'|xargs -L1 docker pull |
View Markdium-text.txt
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
brew cask install osxfuse | |
brew install sshfs |
View Markdium-Shell.bash
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
sudo mkfs.ext4 /dev/sda1 |
View Markdium-text.txt
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
docker run hello-world |
View Markdium-YAML.YML
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
version: '2' | |
services: | |
homebridge: | |
image: oznu/homebridge:latest | |
restart: always | |
network_mode: host | |
volumes: | |
- ./config:/homebridge | |
environment: | |
- PGID=1000 |
View Markdium-text.txt
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
sudo diskutil unmount force /Volumes/Applepie |
View Markdium-text.txt
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
sudo apt-get install rcconf |
NewerOlder