The kubernetes instructions for deploying buildkit suggest creating certificates with this shell script:
sh SAN=$@ SAN_CLIENT=client
mkdir -p
The kubernetes instructions for deploying buildkit suggest creating certificates with this shell script:
sh SAN=$@ SAN_CLIENT=client
mkdir -p
| type Serializer<From, To> = { | |
| serialize: (v: From) => To; | |
| deserialize: (v: To) => From; | |
| }; | |
| const DateSerializer: Serializer<Date, number> = { | |
| serialize: (d) => d.getTime(), | |
| deserialize: (n) => new Date(n), | |
| }; |
| terraform { | |
| required_providers { | |
| hcloud = { | |
| source = "hetznercloud/hcloud" | |
| # Here we use version 1.56.0, this may change in the future | |
| version = "1.56.0" | |
| } | |
| } | |
| } |
| use std::fmt::Debug; | |
| /// # Partial Result | |
| /// | |
| /// Result type for operations which can fail, but still return some data | |
| /// | |
| /// Conceptionally, this is a (D, Option<E>) | |
| /// | |
| /// The design of this type is intended to force handling of errors, but also | |
| /// grant access to partial results in case of errors |
| Copper Plate, 1024 | |
| Aluminium Plate, 1024 |
| function automate(selector, interval) { | |
| let id; | |
| let on = () => { | |
| if (id) { | |
| console.log(selector + " already automated") | |
| return; | |
| } | |
| // old version | |
| customElements.define("monaco-editor", class extends HTMLElement { | |
| constructor() { | |
| super(); | |
| this._editorValue = "loading..." | |
| } | |
| set _editorValue(value) { |
| let DirEntry = | |
| React.FunctionComponent.Of | |
| ((fun name -> | |
| let hidden = Hooks.useState false | |
| let img = | |
| img [ Src <| Utils.getStatic "icons/directory.svg" ] | |
| let mutable className = "directory" | |
| if hidden.current then className <- className + " hidden" |
| using Makie | |
| using AbstractPlotting | |
| scene = Scene() | |
| scene = mesh(Sphere(Point3f0(0), 0.9f0), transparency=true, alpha=0.05) | |
| function cosine_weighted_sample_hemisphere() | |
| r1 = rand() |