π
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
| network: | |
| ethernets: | |
| your-network-interface: | |
| addresses: | |
| - 167.114.81.59/32 | |
| nameservers: | |
| addresses: | |
| - 213.186.33.99 | |
| search: [] | |
| optional: true |
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
| ββ(~/Code/homestead)(release S:2 no-remote)βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| βββ vagrant destroy -f && vagrant up β(13:20:33)(06/17/19)ββ | |
| ==> homestead-7: VM not created. Moving on... | |
| Bringing machine 'homestead-7' up with 'virtualbox' provider... | |
| ==> homestead-7: Importing base box 'laravel/homestead'... | |
| ==> homestead-7: Matching MAC address for NAT networking... | |
| ==> homestead-7: Checking if box 'laravel/homestead' version '7.2.1' is up to date... | |
| ==> homestead-7: Setting the name of the VM: homestead-7 | |
| ==> homestead-7: Clearing any previously set network interfaces... | |
| ==> homestead-7: Preparing network interfaces based on configuration... |
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
| ββ(~)βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| βββ laravel new TestApp β(09:27:37)(07/05/19)ββ | |
| Crafting application... | |
| Loading composer repositories with package information | |
| Installing dependencies (including require-dev) from lock file | |
| Package operations: 80 installs, 0 updates, 0 removals | |
| - Installing doctrine/inflector (v1.3.0): Loading from cache | |
| - Installing doctrine/lexer (1.0.2): Loading from cache | |
| - Installing dragonmantank/cron-expression (v2.3.0): Loading from cache | |
| - Installing erusev/parsedown (1.7.3): Loading from cache |
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
| Windows PowerShell | |
| Copyright (C) Microsoft Corporation. All rights reserved. | |
| PS C:\WINDOWS\system32> cd C:\Users\halo\Code\homestead\ | |
| PS C:\Users\halo\Code\homestead> vagrant up | |
| ==> vagrant: A new version of Vagrant is available: 2.2.5 (installed version: 2.2.4)! | |
| ==> vagrant: To upgrade visit: https://www.vagrantup.com/downloads.html | |
| Bringing machine 'homestead' up with 'hyperv' provider... | |
| ==> homestead: Verifying Hyper-V is enabled... |
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
| C:\Users\media\Code\homestead (master) | |
| Ξ» vagrant up | |
| Bringing machine 'homestead' up with 'virtualbox' provider... | |
| ==> homestead: Importing base box 'laravel/homestead'... | |
| ==> homestead: Matching MAC address for NAT networking... | |
| ==> homestead: Checking if box 'laravel/homestead' version '8.0.0' is up to date... | |
| ==> homestead: Setting the name of the VM: homestead | |
| ==> homestead: Clearing any previously set network interfaces... | |
| ==> homestead: Preparing network interfaces based on configuration... | |
| homestead: Adapter 1: nat |
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
| vagrant@homestead:~$ composer create-project --prefer-dist laravel/laravel blog | |
| 1/11: http://repo.packagist.org/p/provider-archived$354e0c0055dcbee7808779b081a9ad737e6a1592463d83902f17af24db5b47ee.json | |
| 2/11: http://repo.packagist.org/p/provider-latest$6b2ce3400b0827bf126b57259f52a3780aebc3e925b2f462cbac8e28999f0d0d.json | |
| 3/11: http://repo.packagist.org/p/provider-2014$fa53505ab7a9cdb7fa9313fa68a2b6cfce6f44f453f709a1e2efc3bab1e7cb22.json | |
| 4/11: http://repo.packagist.org/p/provider-2013$b1660752b71f4e8b6b9d3130551f6bcfb3c1e896bd75f81cf5ca5a06499fb157.json | |
| 5/11: http://repo.packagist.org/p/provider-2019-01$c3186b7fc78fa7a5e6a33b5753b56b70b87e60b978cb1dea32e6e73909c6eb97.json | |
| 6/11: http://repo.packagist.org/p/provider-2018-10$a703f7e0b78f27971289f10ac9c7e0e93f26136b7862064c55ec43621110e593.json | |
| 7/11: http://repo.packagist.org/p/provider-2016$d4c10af717f46e857a1d1ced73d22ea3e3571234d12c3e7806592c0da91fa0a1.json | |
| 8/11: http://repo.packagis |
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
| <?php | |
| $speed = ['quick', 'slow']; | |
| $animal = ['rabbit', 'turtle']; | |
| // Typical String Concatenation | |
| $string = 'The ' . $speed[0] . ' ' . $animal[1] . ' jumped over the fence'; | |
| // Breaking on Concatenation operator BEFORE the line exposes in each new line | |
| // we're able to easily skim down the file and see we're concatenating. Also |
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
| vagrant@vagrant:~$ composer create-project laravel/laravel not-vbox-share | |
| Installing laravel/laravel (v5.8.17) | |
| - Installing laravel/laravel (v5.8.17): Downloading (100%) | |
| Created project in not-vbox-share | |
| > @php -r "file_exists('.env') || copy('.env.example', '.env');" | |
| Loading composer repositories with package information | |
| Updating dependencies (including require-dev) | |
| Package operations: 80 installs, 0 updates, 0 removals | |
| - Installing symfony/polyfill-ctype (v1.11.0): Downloading (100%) | |
| - Installing phpoption/phpoption (1.5.0): Downloading (100%) |
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
| halo@vboxsftest:~$ composer create-project laravel/laravel fresh-laravel | |
| Installing laravel/laravel (v5.8.17) | |
| - Installing laravel/laravel (v5.8.17): Downloading (100%) | |
| Created project in fresh-laravel | |
| > @php -r "file_exists('.env') || copy('.env.example', '.env');" | |
| Loading composer repositories with package information | |
| Updating dependencies (including require-dev) | |
| Package operations: 80 installs, 0 updates, 0 removals | |
| - Installing symfony/polyfill-ctype (v1.11.0): Downloading (100%) | |
| - Installing phpoption/phpoption (1.5.0): Downloading (100%) |
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
| C:\Users\halo\Code\bento\packer_templates\centos (fix-hyper-v-variable-names) | |
| Ξ» packer validate centos-5.11-i386.json | |
| Template validation succeeded, but there were some warnings. | |
| These are ONLY WARNINGS, and Packer will attempt to build the | |
| template despite them, but they should be paid attention to. | |
| Warnings for build 'vmware-iso': | |
| * Your vmx data contains the following variable(s), which Packer normally sets when it g |