In your command-line run the following commands:
brew doctorbrew update
In your command-line run the following commands:
brew doctorbrew update| # WARNING: This is a simple example with no security for production, don't run Minio without TLS | |
| # Using Docker 17.05.0-ce, install the plugin | |
| $ docker plugin install minio/minfs:edge | |
| # Start Minio instance on storage server, the following will mount minio's data storage into /mnt/data on the host. | |
| $ docker run -p 9000:9000 --name minio1 -v /mnt/data:/data -v /mnt/config:/root/.minio minio/minio server /data | |
| # Create a minfs volume on the client that will mount the Minio bucket as a volume to its Docker containers. | |
| $ docker volume create -d minio/minfs:edge --name <volume name> -o endpoint=http://<minio endpoint>:9000 -o access-key=<access key> -o secret-key=<secret key> -o bucket=<new bucket name> -o opts=cache=/tmp/teststore |
| $('input[id="pick_period2"]').daterangepicker({ | |
| singleDatePicker: true, | |
| showDropdowns: false, | |
| minDate: moment(today).add(1, 'days'), | |
| maxDate: moment(today).add(45, 'days'), | |
| //add locale to your daterangepicker call function | |
| locale: { | |
| format: 'DD-MM-YYYY', | |
| applyLabel: 'Принять', | |
| cancelLabel: 'Отмена', |
| # escape=` | |
| # Image with NET CORE installation to extract executables for final image | |
| FROM microsoft/aspnetcore:2.0.0-nanoserver As CoreBuild | |
| # Middleware image used to extract ASP.NET core module | |
| From microsoft/iis as WindowsBuild | |
| SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'Continue'; $verbosePreference='Continue';"] | |
| # Installing NET CORE webhosting in middleware image so latest module and configuration schema is extracted for final image | |
| ADD https://download.microsoft.com/download/B/1/D/B1D7D5BF-3920-47AA-94BD-7A6E48822F18/DotNetCore.2.0.0-WindowsHosting.exe ".\hosting.exe" |
| # One liner | |
| wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
| # Explained | |
| wget \ | |
| --recursive \ # Download the whole site. | |
| --page-requisites \ # Get all assets/elements (CSS/JS/images). | |
| --adjust-extension \ # Save files with .html on the end. | |
| --span-hosts \ # Include necessary assets from offsite as well. | |
| --convert-links \ # Update links to still work in the static version. |
| <ifModule mod_headers.c> | |
| Header always set Content-Security-Policy "upgrade-insecure-requests;" | |
| </IfModule> |
| using System; | |
| namespace PKCS1ToPKCS8Application | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| byte[] importedPrivateKeyBytes = Convert.FromBase64String("MIIEowIBAAKCAQEAtuHuMvnE3fYz/eom8mF7xxLXPETjfUpVYHL6AUVwXKKCrZ6uFszh2bY7ADoiIpuPTS0NVNYeKLlu6T59qzyr0bnT8KgXdZJFVzYWIh8VOLTb2zghlu8BeBoJP9t/a34Mj7gGJUZWBgECopEGCXrFwyIvXSW0JU5YrJinyyPhUjUXLeyowJUXoLwEafOHBRRiZZv1SNlntQOAenHFB/1uv2Y5xmdHm7xl+jjeo469u+pY535RCekmam9hWbZcn/WZEf9BZEmE2i4v7Qj72V92LrSUSSjF6w6lgU3B+Byu0XR8ZeUjD+FP9ZKvJyEtxlxOVaADQ+/udghUr1PnfXIHRQIDAQABAoIBAHG1UBFJ0unfJrx9VfHmQruoL0M94eQIz8TEOEWKEy7FrFKfEscCZHqlH1Io0wiJiDQICv3wk5fmk9taC3DorDweOnSrTsq/Q3XSHzjf8qXrbbeD0v6xZEx0g8O8iiEfolfJp6iNbvcUsbq6SPKj70pAewqDYtq/N8s4rztS98nQQ5PAQ10Zv3X910lc0vnPlPKew4y7w6hwb/pbiEBLbbV9tYAVaAm63n/EYxjo3UCRA0BJZxhJbRdEQzCEzClXlo6txx7nGQz/omv574P22ASCAfyrFNhaT20DR+ilIXe+edBpJehD6Q/lpO56STawb9xCAk6+aerM5dcIBMTETRECgYEA3RdnfpY1Z8KtOT1rVUeI094vylP1HONrcXNSsV0sbNPSwoK91UpO0mfsLLWxLtjvX52yixhfKxQ0QLYq3nyC8SRj2GE07aO1HZ81MI/9Y6ynJkw+ |
| <div>list of things</div> | |
| <my-pagination | |
| (goPage)="goToPage($event)" | |
| (goNext)="onNext()" | |
| (goPrev)="onPrev()" | |
| [pagesToShow]="3" | |
| [page]="page" | |
| [perPage]="limit" | |
| [count]="total"></my-pagination> |
| import { | |
| trigger, | |
| state, | |
| style, | |
| animate, | |
| transition | |
| } from '@angular/animations'; | |
| import { AnimationEntryMetadata } from "@angular/core"; |
| // just an example. A cleaner way is to wrap the showLine-stuff in a dedicated component | |
| <template> | |
| <div> | |
| <my-line v-if="showLine" :data="lineData" :options="options"> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| data () { |