Skip to content

Instantly share code, notes, and snippets.

@roee88
roee88 / Cargo.toml
Last active February 2, 2023 02:47
Arrow datafusion sample compiled to wasm32-wasi
[package]
name = "datafusion_sample"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
datafusion = { path = "../arrow-datafusion/datafusion", default-features = false }
@roee88
roee88 / ext.json
Last active April 20, 2021 18:35
kin-openapi external references bug
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"a": {
"type": "string"
},
"b": {
"type": "object",
"description": "I use a local reference.",
"properties": {
set -e
setup_minio() {
helm repo add minio https://helm.min.io
helm install --wait minio minio/minio
}
upload_csv() {
ACCESS_KEY=$(kubectl get secret minio -o jsonpath="{.data.accesskey}" | base64 --decode)
SECRET_KEY=$(kubectl get secret minio -o jsonpath="{.data.secretkey}" | base64 --decode)