Skip to content

Instantly share code, notes, and snippets.

6.5M ./localExtract/bubbleProf/One4MBFile
6.6M ./localExtract/bubbleProf
896K ./localExtract/doctor/One64MBFile
408K ./localExtract/doctor/One4MBFile
1.3M ./localExtract/doctor
7.9M ./localExtract/flame/One64MBFile
6.4M ./localExtract/flame/One4MBFile
15M ./localExtract/flame
23M ./localExtract
1.2M ./unixFsAddGo_balanced/bubbleProf/One4MBFile
@Elexy
Elexy / kubernetes.yaml
Created November 26, 2018 07:10
Runtime Contract
service1:
configuration:
probes:
liveness:
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 5
timeoutSeconds: 1
readiness:

Keybase proof

I hereby claim:

  • I am elexy on github.
  • I am elexy (https://keybase.io/elexy) on keybase.
  • I have a public key ASCAUJbOZjkjPmgTm6pGWbtUFPH57Vx7nzF_bzP56btqlQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am elexy on github.
  • I am elexy (https://keybase.io/elexy) on keybase.
  • I have a public key ASAgh-mdg-auXEvT5NobhcMDfos1x6bOjlx62hfoCYxYVQo

To claim this, I am signing this object:

Tue May 9 09:22:28 UTC 2017
$ cat inventory/kubernetes.ini
#master01 ansible_ssh_host=master01.vanlanschot.cobrowser.com
master02 ansible_ssh_host=master02.vanlanschot.cobrowser.com
node101 ansible_ssh_host=node101.vanlanschot.cobrowser.com
node102 ansible_ssh_host=node102.vanlanschot.cobrowser.com
node103 ansible_ssh_host=node103.vanlanschot.cobrowser.com
node104 ansible_ssh_host=node104.vanlanschot.cobrowser.com
node105 ansible_ssh_host=node105.vanlanschot.cobrowser.com
newnode ansible_ssh_host=new.vanlanschot.cobrowser.com
PLAY [localhost] ***************************************************************
TASK [kargo-defaults : Configure defaults] *************************************
Friday 28 April 2017 10:00:15 +0200 (0:00:00.019) 0:00:00.019 **********
ok: [localhost] => {
"msg": "Check roles/kargo-defaults/defaults/main.yml"
}
TASK [bastion-ssh-config : set_fact] *******************************************
@Elexy
Elexy / routeConfigService.coffee
Last active January 4, 2016 03:38
Gain access to the angular ui router at runtime
angular.module('app').provider 'RouteConfig',
['$stateProvider', ($stateProvider) ->
# this will configure the routes from the received json
# using $stateProvider.state() like in app.config
configurator = ($http) -
console.log $stateProvider
updateRoutes: ->
configService.get().then (conf) ->
# add routes here from 'conf'
@Elexy
Elexy / angular-hammer.coffee
Last active December 19, 2015 19:49
Testing hammer.js inside Angular app with Karma e2e testing. Include this file in your e2e config together with https://github.com/jtangelder/faketouches.js and you can simulate taps and doubletaps using this DSL extension. The other gestures are easily added... if you don't like the coffeescript just run it through http://js2coffee.org/ to get …
###
Usage:
hammer(selector).tap() trigger a Hammer Tap event
hammer(selector).doubleTap() trigger a Hammer DoubleTap event
###
angular.scenario.dsl "hammer", () ->
hammerTime = {}
hammerTime.tap = () ->
@Elexy
Elexy / gauge.js
Created February 27, 2013 22:25 — forked from tomerd/gauge.js
function Gauge(placeholderName, configuration)
{
this.placeholderName = placeholderName;
var self = this; // some internal d3 functions do not "like" the "this" keyword, hence setting a local variable
this.configure = function(configuration)
{
this.config = configuration;