I hereby claim:
- I am alex-ross on github.
- I am aross (https://keybase.io/aross) on keybase.
- I have a public key ASDPyzK_ROGPT4kF1IsoOIG3qMx4xOw3gme-3bbRElnEwgo
To claim this, I am signing this object:
| -- 1. Place in ~/Library/Scripts and enable the Applescript menu via the Applescript Editor | |
| -- 2. Substitute "vpn.example.com" and "redacted" for your VPN server and password | |
| -- 3. Open Security & Privacy System Preferences, go to Privacy, Accessibility | |
| -- 4. Enable Applescript Editor and System UI Server | |
| -- 5. Trigger script from the menu | |
| -- 6. Enjoy being connected | |
| tell application "Cisco AnyConnect Secure Mobility Client" | |
| activate | |
| end tell |
I hereby claim:
To claim this, I am signing this object:
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
Apple will reject apps that are using private url schemes (Ugh, Apple....) if they are pretty much obvius. Some apps are rejected and others are not, so, be aware of this issue before implementing any of those URL's in your app as a feature.
| # Gemfile | |
| group :development, :test do | |
| gem 'rspec-rails' | |
| gem "capybara" | |
| gem "selenium-webdriver" | |
| end |
| # Create a Bootable macOSHighSierra.iso for installing macOS High Sierra in Virtualbox or VMware with macOS High Sierra.app | |
| # Create a "virtual USB flash drive"/disk image: | |
| hdiutil create -o /tmp/HighSierra -size 8G -layout SPUD -fs HFS+J -type SPARSE | |
| # Mount it: | |
| hdiutil attach /tmp/HighSierra.sparseimage -noverify -mountpoint /Volumes/install_build | |
| # Write the installer files into this new disk image: |
| class ElasticsearchAT56 < Formula | |
| desc "Distributed search & analytics engine" | |
| homepage "https://www.elastic.co/products/elasticsearch" | |
| url "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.6.4.tar.gz" | |
| sha256 "1098fc776fae8c74e65f8e17cf2ea244c1d07c4e6711340c9bb9f6df56aa45b0" | |
| head do | |
| url "https://github.com/elasticsearch/elasticsearch.git" | |
| depends_on "gradle" => :build | |
| end |