Skip to content

Instantly share code, notes, and snippets.

---
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: kiali-gateway
namespace: istio-system
spec:
selector:
istio: ingressgateway
servers:
@mikemilano
mikemilano / .lando.yml
Last active May 6, 2020 02:06
Lando config for Symfony
# Rename the `name` property and add this `.lando.yml` file to your project root.
#
# bin/console commands:
# lando console ...
#
# symfony commands:
# lando symfony ...
#
# Your .env file should include this:
# DATABASE_URL=mysql://root@database:3306/main

Keybase proof

I hereby claim:

  • I am mikemilano on github.
  • I am mikemilano (https://keybase.io/mikemilano) on keybase.
  • I have a public key ASABz2i1e4NWC-1JfHHTn0X2IKP7lVuwfxscQLW9pFd2rgo

To claim this, I am signing this object:

@mikemilano
mikemilano / entrollment-log.es-index-template
Last active June 5, 2019 14:16
Elasticsearch index template example
By adding the following template to an Elasticsearch
instance, you will assure any index with a name
beginning with `enrollment-log` will inherit the
mappings defined within.
PUT _template/enrollment-log
{
"template": "enrollment-log*",
"settings": {
"number_of_shards": 4
<?php
namespace App\Command;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
@mikemilano
mikemilano / Motorcycle.php
Created October 3, 2017 21:19
A simple PHP class which allows for chaining the setters.
<?php
class Motorcycle {
private $make;
private $model;
/**
* Returns the motorcycle make.
*
* @return string The motorcycle make
@mikemilano
mikemilano / platformsh-snapshots.sh
Created June 8, 2017 15:03
Platform.sh Snapshots
#!/bin/sh
source ~/.bashrc
platform project:list --pipe|awk '{cmd="platform snapshot:create --no-wait -q -e master -p "$1; print cmd}'|sh
@mikemilano
mikemilano / gist:4996cd15a50f202c81771fcb9bc693b3
Created January 4, 2017 00:46
Remove Drupal Commerce 2 from Drupal 8
drush cr
drush pmu commerce_payment_example -y
composer remove drupal/commerce_payment_example
drush pmu commerce_payment -y
drush pmu commerce_checkout -y
drush pmu commerce_cart -y
drush pmu commerce_order -y
drush pmu commerce_product -y
drush pmu commerce_store -y
drush pmu commerce_price -y
@mikemilano
mikemilano / gist:6923819
Last active September 18, 2016 03:43
Python's Twisted framework watching a directory and broadcasting changes to zeromq.
from twisted.internet import inotify
from twisted.python import filepath
import zmq
from pprint import pprint
class FileSystemWatcher(object):
def __init__(self, path_to_watch):
self.path = path_to_watch
self.context = zmq.Context()
@mikemilano
mikemilano / altlogin.module
Created October 15, 2013 00:06
alt login example
<?php
/**
* @file
* Provides a web service for logging in.
*/
/**
* Implements hook_menu().
*/
function altlogin_menu() {