I hereby claim:
- I am artdevjs on github.
- I am artdev (https://keybase.io/artdev) on keybase.
- I have a public key whose fingerprint is 4441 B5B6 5EB2 2472 65F1 E23A D81A E1A3 FC8C 17E3
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #compdef vagrant | |
| # ------------------------------------------------------------------------------ | |
| # Description | |
| # ----------- | |
| # | |
| # Completion script for Vagrant (http://vagrantup.com). | |
| # | |
| # ------------------------------------------------------------------------------ | |
| # Authors | |
| # ------- |
| #!/usr/bin/env bash | |
| # 1 = VMware Tools ISO is mounted from vSphere | |
| # 2 = Download VMware Tools (assumes you can connect to internet) | |
| INSTALL_METHOD=2 | |
| # Thanks to Rich Trouton for tip on Tools being available online | |
| VMWARE_TOOLS_DOWNLOAD_URL="http://softwareupdate.vmware.com/cds/vmw-desktop/fusion/7.1.2/2779224/packages/com.vmware.fusion.tools.darwin.zip.tar" | |
| # DO NOT MODIFY BEYOND HERE # |
| /* | |
| _ | |
| ___/\ /(_)_ __ ___ ___ ___ ___ | |
| / __\ \ / / | '_ ` _ \ / __/ __/ __| | |
| \__ \\ V /| | | | | | | (__\__ \__ \ | |
| |___/ \_/ |_|_| |_| |_|\___|___/___/ | |
| Author: Artem Medvedev | |
| repo : https://gist.github.com/artdevjs/4e1cd4ffb9a7f4171fb35e93eb53be86 |
| " _ | |
| " ___/\ /(_)_ __ ___ _ __ ___ | |
| " / __\ \ / / | '_ ` _ \| '__/ __| | |
| " \__ \\ V /| | | | | | | | | (__ | |
| " |___/ \_/ |_|_| |_| |_|_| \___| | |
| " | |
| " Author: Artem Medvedev | |
| " repo : https://gist.github.com/artdevjs/78df4ae6b4040156a64c299ddd976cbc | |
| " |
| /** | |
| * jQuery like DOM class | |
| * @class | |
| */ | |
| class DOM { | |
| /** | |
| * create a new array like object of elements | |
| * @constructor | |
| */ | |
| constructor(selector) { |
| #!/bin/bash | |
| ################################################################################ | |
| # Does a mass upgrade of your Homebrew apps and allows you to interactively | |
| # select which Cask apps to upgrade. | |
| # | |
| # Author: Derrek Young, derrekyoung.com | |
| # Requirements: | |
| # Homebrew http://brew.sh/ | |
| # Cask https://caskroom.github.io/ |