I hereby claim:
- I am chaosbunker on github.
- I am drodewyk (https://keybase.io/drodewyk) on keybase.
- I have a public key ASBwhumdyGJWsjb9V2CAdFmnFZBFRlD_GEPRh4GG5SRwwwo
To claim this, I am signing this object:
| -- Function to select a menu item | |
| -- We will use this to trigger the search box for the App Store | |
| on do_menu(app_name, menu_name, menu_item) | |
| try | |
| -- bring the target application to the front | |
| tell application app_name | |
| activate | |
| end tell | |
| tell application "System Events" | |
| tell process app_name |
| #!/bin/bash | |
| # install homebrew | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master$ | |
| brew doctor | |
| # Install required packages from Homebrew | |
| brew tap homebrew/dupes | |
| brew install coreutils binutils diffutils ed findutils gawk gnu-indent gnu-sed \ |
| #!/usr/bin/python | |
| '''Uses Cocoa classes via PyObjC to set a random desktop picture on all screens. | |
| Tested on Mountain Lion and Mavericks. | |
| See: | |
| https://developer.apple.com/library/mac/documentation/cocoa/reference/applicationkit/classes/NSWorkspace_Class/Reference/Reference.html | |
| https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURL_Class/Reference/Reference.html |
| #!/usr/bin/env bash | |
| sudo launchctl unload /Library/LaunchDaemons/com.googlecode.munki.* | |
| sudo rm -rf "/Applications/Utilities/Managed Software Update.app" | |
| sudo rm -rf "/Applications/Managed Software Center.app" | |
| sudo rm -f /Library/LaunchDaemons/com.googlecode.munki.* | |
| sudo rm -f /Library/LaunchAgents/com.googlecode.munki.* | |
| sudo rm -rf "/Library/Managed Installs" |
I hereby claim:
To claim this, I am signing this object:
I couldn't wait until the official guide on how to do this is released, so I tried to figure it out and this is how I got it working.
The .env file for docker-compose
[email protected]
PL_SERVER_PORT=3000
PL_SERVER_URL=https://example.com/api
PL_PWA_PORT=8080
PL_PWA_URL=https://example.com
| #!/usr/bin/env bash | |
| # Chromium update script | |
| # | |
| # Get latest build from | |
| # https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html | |
| # Mac | Linux | ... | |
| OS=Mac | |
| DL_URL=https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/${OS} | |
| LATEST=$(curl "https://www.googleapis.com/storage/v1/b/chromium-browser-snapshots/o/${OS}%2FLAST_CHANGE" | jq '.metadata."cr-commit-position-number"' | sed -e s/\"//g) |
| # send bucket cleanup script for https://send.ephemeral.land | |
| # Editable variables | |
| # __ | |
| aws_access_key_id = "AKIAIOSFODNN7EXAMPLE" | |
| aws_secret_access_key = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" | |
| bucket = "mysendbucket" | |
| lower_limit_days = 1 | |
| upper_limit_days = 28 | |
| prefixes = range(lower_limit_days, upper_limit_days+1) | |
| endpoint = "https://s3.eu-central-1.wasabisys.com" # Endpoint of bucket |