graph LR
A(Start)
A --> B[Look for an item]
B --> C{Did you find it?}
C -->|Yes| D(Stop looking)
C -->|No| E{Do you need it?}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Syntax: update-esdoc.sh REPOSITORY_SLUG | |
if [ "$#" -ne 1 ] | |
then | |
echo '✗ Syntax update-esdoc.sh REPOSITORY_SLUG' >&2; | |
exit 1; | |
fi | |
git=$1 |
- Homebrew
- VirtualBox
- Vagrant:
brew install vagrant
- Composer:
brew tap caskroom/cask && brew cask install vagrant
- Laraver installer:
composer global require laravel/installer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo OFF | |
net session >nul 2>&1 | |
if %ERRORLEVEL% equ 0 ( | |
echo [OK] Administrator PRIVILEGES Detected! | |
echo. | |
) else ( | |
echo ######## ######## ######## ####### ######## | |
echo ## ## ## ## ## ## ## ## ## | |
echo ## ## ## ## ## ## ## ## ## | |
echo ###### ######## ######## ## ## ######## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require_relative '../config/boot' | |
require 'pathname' | |
require 'fileutils' | |
require 'json' | |
include FileUtils | |
# path to your application root. |
NewerOlder