Skip to content

Instantly share code, notes, and snippets.

View misudo's full-sized avatar

misudo

View GitHub Profile
@misudo
misudo / MarkUnreadEmails.scpt
Created January 21, 2024 13:52 — forked from edenwaith/MarkUnreadEmails.scpt
An AppleScript to go through the mailboxes in Outlook and mark unread messages as read
-- File: MarkUnreadEmails.scpt
-- Description: Go through the mailboxes in Outlook and mark unread messages as read
-- Author: Chad Armstrong
-- Date: 22 November 2019
tell application "Microsoft Outlook"
set myInbox to folder "Inbox" of default account
set github to folder "GitHub" of myInbox
set other to folder "Other" of myInbox
@misudo
misudo / docker-compose-install.sh
Created April 17, 2023 21:09 — forked from blazewicz/docker-compose-install.sh
Install latest docker-compose on Debian, Ubuntu or Raspberry Pi OS (Raspbian)
#!/bin/bash
set -x
# This script with documentation is available at: https://gist.github.com/blazewicz/04e666ae1f25387c8b291d81b12c550c
## 1. install required dependencies with apt
apt update && apt install python3-venv python3-dev libffi-dev libssl-dev
## 2. create directory for docker-compose's virtualenv
mkdir -p /opt/local/docker-compose