This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
Scan for access points (run multiple times for more complete scan):
# connmanctl scan wifi
Scan completed for wifi
Long story short, ansible does not work on a Windows control machine, so you basically have to:
ansible --connection=local ...
in the target vmBelow are Vagrantfile
examples for both approaches
node { | |
git 'https://github.com/CloudBees-community/spring-petclinic.git' | |
env.PATH = "${tool 'Maven 3.2.2'}/bin:${env.PATH}" | |
sh 'mvn package' | |
wrap([$class: 'CloudFoundryCliBuildWrapper', | |
apiEndpoint: 'https://api.hackney.cf-app.com', | |
skipSslValidation: true, |
#!/usr/bin/env ansible-playbook | |
--- | |
- name: test how easy_install, pip, and yum modules works via proxy | |
hosts: all | |
environment: | |
http_proxy: http://192.168.1.10:3128 | |
https_proxy: http://192.168.1.10:3128 | |
tasks: | |
- name: Install easy_install | |
yum: |
# BREW with xcode | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
sudo xcodebuild | |
brew update | |
brew install caskroom/cask/brew-cask | |
# BROWSERS | |
brew cask install firefox google-chrome | |
# JAVA |
Starting with 1.12 in July 2016, Docker Swarm Mode is a built-in solution with built-in key/value store. Easier to get started, and fewer ports to configure.