- 13" Macbook Pro 3.3 GHz i7 (late 2016)
- Microsoft Surface Book (2016)
- Dell up3216q 32" monitor
| MIT License | |
| Copyright (c) 2018 Noel Bundick | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| package main | |
| import ( | |
| "crypto/hmac" | |
| "crypto/sha256" | |
| "encoding/base64" | |
| "net/http" | |
| "time" | |
| "unicode/utf8" | |
| "strconv" |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # bring in the vagrant dependency manager | |
| require File.dirname(__FILE__) + "/dependency_manager" | |
| # make sure the following plugins are installed (managed using dependency manager above) | |
| check_plugins ["vagrant-exec", "vagrant-hostmanager", "vagrant-triggers"] | |
| Vagrant.configure(2) do |config| |
| package istio | |
| import ( | |
| "time" | |
| "github.com/micro/go-micro" | |
| "github.com/micro/go-micro/client" | |
| "github.com/micro/go-micro/selector" | |
| gcli "github.com/micro/go-plugins/client/grpc" |
| // Package preact provides bindings to the preact library. | |
| package preact | |
| import "github.com/gopherjs/gopherjs/js" | |
| var preact = js.Global.Get("preact") | |
| // Attrs of an element. | |
| type Attrs map[string]interface{} |
| // webpack.config.js | |
| let ExtractTextPlugin = require("extract-text-webpack-plugin"); | |
| let HtmlWebpackPlugin = require('html-webpack-plugin'); | |
| let CopyWebpackPlugin = require('copy-webpack-plugin'); | |
| let path = require('path'); | |
| module.exports = { | |
| entry: './src/index.js', |
| <html> | |
| <head> | |
| <script src="/terminal.js/dist/terminal.js"></script> | |
| <style> | |
| #terminal { | |
| background: #000000; | |
| color: #ffffff; | |
| display: inline-block; | |
| padding: 10px; | |
| } |
| // Golang command line utility to generate an Microsoft Azure SAS token for use | |
| // with the MS Azure IoT Hub. | |
| // | |
| // USAGE: USAGE: sastoken <URI> <key> <expiresInMins> [policy] | |
| // | |
| // Copyright © 2016 The Hybrid Group (http://hybridgroup.com) | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the “Software”), to deal | |
| // in the Software without restriction, including without limitation the rights |
"pot-de-lait"
podlet is a tiny CLI tool & daemon to launch kubernetes pods on a bare docker host.
This is a proof of concept, not affiliated to the main kubernetes project, and it only supports a subset of the v1beta3 PodSpec.