Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
cinst 1password | |
cinst 7zip | |
cinst 7zip.install | |
cinst AdobeAIR | |
cinst adobereader | |
cinst Atom | |
cinst markdownpad2 |
var gulp = require('gulp'); | |
var browserify = require('browserify'); | |
var source = require("vinyl-source-stream"); | |
var babelify = require("babelify"); | |
var watchify = require('watchify'); | |
var gutil = require('gulp-util'); | |
var browserSync = require('browser-sync'); | |
var historyApiFallback = require('connect-history-api-fallback') | |
var opts = { |
<template> | |
<div class="input-group date"> | |
<input type="text" value.bind="value" class="form-control"><span class="input-group-addon"><i class="glyphicon glyphicon-calendar"></i></span> | |
</div> | |
</template> |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Net; | |
namespace EventStoreService | |
{ | |
public class EventStoreService | |
{ |
public class Cache : ICache | |
{ | |
private ConcurrentDictionary<string, DateTime> cacheLookup = new ConcurrentDictionary<string,DateTime>(); | |
public Response Get(NancyContext ctx) | |
{ | |
DateTime lastmodified; | |
if(ctx.Request.Method == "GET") //Could be POST as well I guess | |
{ |
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="ducknorris" | |
# Uncomment the following line to use case-sensitive completion. |
1. Create the KV config: | |
docker run traefik \ | |
storeconfig \ | |
--consul \ | |
--consul.prefix="traefik" \ | |
--consul.watch \ | |
--consul.endpoint="CONSUL_IP:8500" \ | |
--consulcatalog=true \ | |
--consulcatalog.endpoint="CONSUL_IP:8500" \ |
# This is a GCR vanity domain. It aliases our domain to a specific | |
# bucket in GCR. | |
# e.g.`docker pull gcr.example.com/foobar` -> gcr.io/my_bucket/foobar | |
server { | |
server_name gcr.example.com; | |
listen 80; | |
listen 443 ssl; | |
location = /v2/ { | |
# If we redirect this, it can detect as unauthorized, but the token |
package handlers | |
import ( | |
"encoding/json" | |
"net/http" | |
) | |
type Pageable struct { | |
Total int | |
Items interface{} |