- Install Deno (at the time of writing, using version 1.46.3)
https://docs.deno.com/runtime/fundamentals/installation
- Install Deno Jupyter Kernel
https://docs.deno.com/runtime/reference/cli/jupyter
- Install dotnet interactive
https://docs.deno.com/runtime/fundamentals/installation
https://docs.deno.com/runtime/reference/cli/jupyter
2024-09-13T17:08:51.9746120Z [00-a1b958cb466a2e7e8ffc1e3887df7429-6b8b98cd6f3067e7-00] [KernelInvocationContext] [KernelInvocationContext] ▶ +[ ⁞Ϲ⁞ SubmitCode #!connect jupyter --help (Token: 2OrVnNbLSO28kad/YNNmMg==, TargetKernelName: csharp, DestinationUri: ) ] | |
2024-09-13T17:08:51.9750460Z [00-a1b958cb466a2e7e8ffc1e3887df7429-c559b98a211c5d3f-00] [KernelScheduler] [Run] ▶ +[ ⁞Ϲ⁞ DirectiveCommand (Token: 2OrVnNbLSO28kad/YNNmMg==.1, TargetKernelName: csharp, DestinationUri: ) ] | |
2024-09-13T17:08:51.9751390Z [00-a1b958cb466a2e7e8ffc1e3887df7429-c559b98a211c5d3f-00] ℹ ➡️ DirectiveCommand kernel://pid-77815/ (arrived) | |
2024-09-13T17:08:51.9751660Z [00-a1b958cb466a2e7e8ffc1e3887df7429-c559b98a211c5d3f-00] ℹ ➡️ DirectiveCommand kernel://pid-77815/csharp (arrived) | |
2024-09-13T17:08:51.9757320Z [00-a1b958cb466a2e7e8ffc1e3887df7429-c559b98a211c5d3f-00] ℹ ⁞Ε⁞ StandardOutputValueProduced '' (FormattedValues: 'Description: ...' (text/plain)) (ValueId: ) (Command: SubmitCode, Token: 2OrVnNbLSO28kad/YNNmMg==) | |
20 |
error[E0277]: the trait bound `AnalysedType: wasm_wave::wasm::WasmType` is not satisfied | |
--> /Users/toni/.cargo/registry/src/index.crates.io-6f17d22bba15001f/golem-wasm-rpc-0.0.26/src/text.rs:7:17 | |
| | |
7 | type Type = AnalysedType; | |
| ^^^^^^^^^^^^ the trait `wasm_wave::wasm::WasmType` is not implemented for `AnalysedType` | |
| | |
= help: the following other types implement trait `wasm_wave::wasm::WasmType`: | |
wasm_wave::value::Type | |
wasmtime::ValType | |
wasmtime::component::Type |
address=/.test/127.0.0.1 | |
address=/.dev/127.0.0.1 | |
#listen-address=127.0.0.1 |
#!/bin/sh | |
URL="https://0x0.st" | |
if [ $# -eq 0 ]; then | |
echo "Usage: 0x0.st FILE\n" | |
exit 1 | |
fi | |
FILE=$1 |
pipelines: | |
branches: | |
<BRANCH_NAME>: | |
- step: | |
services: | |
- docker | |
name: Deploy to GKE | |
deployment: staging | |
image: google/cloud-sdk:latest | |
script: |
#!/usr/bin/env bash | |
set -e | |
set -o pipefail | |
error() { | |
echo "ERROR: $@" 1>&2 | |
echo "Exiting installer" 1>&2 | |
exit 1 | |
} |
-- split-string-into-rows.sql | |
-- Duane Hutchins | |
-- https://www.github.com/duanehutchins | |
-- Split a string into a mysql resultset of rows | |
-- This is designed to work with a comma-separated string (csv, SET, array) | |
-- To use a delimiter other than a comma: | |
-- Just change all the occurrences of ',' to the new delimiter | |
-- (four occurrences in SET_EXTRACT and one occurrence in SET_COUNT) |
//ISODate struct | |
type ISODate struct { | |
Format string | |
time.Time | |
} | |
//UnmarshalJSON ISODate method | |
func (Date *ISODate) UnmarshalJSON(b []byte) error { | |
var s string | |
if err := json.Unmarshal(b, &s); err != nil { |