Let's say you want to host domains first.com and second.com.
Create folders for their files:
| /** | |
| * @usage: | |
| * | |
| * <RadioBox label="Foo" value="foo" v-model="MySelectedValue" /> | |
| * <RadioBox label="Bar" value="bar" v-model="MySelectedValue" /> | |
| * <RadioBox label="Baz" value="baz" v-model="MySelectedValue" /> | |
| * | |
| * data(){ | |
| * return { | |
| * MySelectedValue: "", |
| [ | |
| { | |
| "parish": "ChristChurch", | |
| "name": "ABC Highway", | |
| "codes": "14008, 15057, 15059, 15096, 17080, 17081, 17087, 17088, 17090, 17091, 17092, 17093" | |
| }, | |
| { | |
| "parish": "ChristChurch", | |
| "name": "Amity Lodge", | |
| "codes": "15001, 15002, 15003, 15005, 15007" |
| Here's how to: | |
| 1. Run PowerShell as an Administrator | |
| 2. Disable NetBIOS settings: $adapters=(gwmi win32_networkadapterconfiguration ) | |
| Foreach ($adapter in $adapters){ | |
| Write-Host $adapter | |
| $adapter.settcpipnetbios(2) | |
| } | |
| Enable NetBIOS settings: $adapters=(gwmi win32_networkadapterconfiguration ) | |
| Foreach ($adapter in $adapters){ | |
| Write-Host $adapter |
| <template> | |
| <multiselect | |
| v-bind="$attrs" | |
| v-on="listeners" | |
| :value="completeValue" | |
| :options="options" | |
| :track-by="trackBy" | |
| :taggable="taggable" | |
| @tag="addTag" | |
| class="key-multiselect" |
| import { Component, Input } from '@angular/core'; | |
| import { Router } from '@angular/router'; | |
| import { AngularFire, FirebaseListObservable } from 'angularfire2'; | |
| import { Observable } from 'rxjs'; | |
| declare var firebase: any; | |
| interface Image { | |
| path: string; |
| git pull | |
| composer install --no-dev --optimize-autoloader | |
| php artisan optimize | |
| php artisan route:cache | |
| php artisan cache:clear | |
| php artisan migrate:refresh --seed --force |