View automerge.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"time" | |
"github.com/automerge/automerge-go" | |
) | |
type S struct { |
View rxdb-external-attachments-storage.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
BulkWriteRow, | |
EventBulk, | |
RxAttachmentData, | |
RxAttachmentWriteData, | |
RxDocumentData, | |
RxDocumentDataById, | |
RxJsonSchema, | |
RxStorage, | |
RxStorageBulkWriteResponse, |
View dom.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const getScrollParent = (node?: Element | null): Element | null => { | |
if (node == null) { | |
return null; | |
} | |
if (node.scrollHeight > node.clientHeight) { | |
return node; | |
} else { | |
return getScrollParent(asElement(node.parentNode)); | |
} |
View multipass-docker.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
groups: | |
- docker | |
users: | |
- name: ubuntu | |
sudo: ALL=(ALL) NOPASSWD:ALL | |
groups: users,docker,admin | |
ssh-authorized-keys: | |
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDwB83EYt+55hfu6SzIFKrZ7E8Vli2NaZ5E1vgieFslSGJfJGECfrK8m26/5US/W+Rjfgi9VR0L1zY92eld92134mQQFiPeGWpU88iUVykNmm6B8iA6I/AlzPa+qeZaH5iteWvUxqApZ1s0nFnIVA9PI9+OSzEX/nDrWEiNMxc2H1L0GIf/OAzCEs8WllVSHSqA35wuXQBkPDF6d+SMtRe6tZ82BT5InSFmWVP+TBREV2/okrgEJSF9exD8myXKuPqe4pCZqVgiHMi1NpGs/sDack/yuOHVT+eMKVE23j4r5zhvkMS4Y4oEpj4v0V8DChZSniMvhvp9qxKMJJKwKDWn |
View devcontainer.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
[[ $ENVRC_RUN != yes ]] && source /etc/envrc | |
# whether running via vscode env probe | |
if shopt -q login_shell && [[ "$BASH_EXECUTION_STRING" =~ $HOME/.vscode-server/bin/.*/node ]]; then | |
old_bash_path="$(which bash)" | |
if [ ! -z "${ENV_PRINT_COMMAND}" ]; then | |
cd "${WORKSPACE_DIR}" |
View subscribe-erc20-transfers.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Contract, getDefaultProvider, utils } from "ethers"; | |
const provider = getDefaultProvider("homestead"); | |
const abi = [ | |
"function symbol() view returns (string)", | |
"function decimals() view returns (uint8)", | |
"event Transfer(address indexed from, address indexed to, uint value)", | |
]; |
View Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM xtruder/debian-nix-devcontainer:flakes | |
# docker user | |
ARG DOCKER_GID=966 | |
RUN groupadd -g ${DOCKER_GID} docker && usermod -a -G docker ${USERNAME} | |
# create volume for pulumi | |
RUN sudo -u user mkdir -p /home/${USERNAME}/.pulumi | |
VOLUME /home/${USERNAME}/.pulumi |
View Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM xtruder/debian-nix-devcontainer:flakes | |
# docker user | |
ARG DOCKER_GID=966 | |
RUN groupadd -g ${DOCKER_GID} docker && usermod -a -G docker ${USERNAME} | |
# create volume for pulumi | |
RUN sudo -u user mkdir -p /home/${USERNAME}/.pulumi | |
VOLUME /home/${USERNAME}/.pulumi |
View olm.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as path from 'path'; | |
import * as pulumi from '@pulumi/pulumi'; | |
import * as k8s from '@pulumi/kubernetes'; | |
import { filesDir } from './util'; | |
interface OperatorLifecycleManagerArgs { | |
namespace?: pulumi.Input<string>; | |
imageRef?: pulumi.Input<string>; |
View csv2pocket.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import argparse | |
import sys | |
import requests | |
parser = argparse.ArgumentParser() | |
parser.add_argument("--csv", help="CSV to import", required=True) | |
parser.add_argument("--encoding", help="File encoding", default="utf-8") | |
parser.add_argument("--token", help="API token to use", required=True) | |
parser.add_argument("--consumerkey", help="Consumer key token to use", required=True) |
NewerOlder