Skip to content

Instantly share code, notes, and snippets.

View mfbx9da4's full-sized avatar

David Alberto Adler mfbx9da4

View GitHub Profile
@mfbx9da4
mfbx9da4 / auto-open-enums.overlay.yaml
Created January 20, 2026 20:23
Auto open all enums greater than length 1 by default
overlay: 1.0.0
x-speakeasy-jsonpath: rfc9535
info:
title: example overlay
version: 0.0.0
actions:
- target: $..[?length(@.enum) > 1]
description: Automatically open all enums that have length > 1
update:
x-speakeasy-unknown-values: allow
package smallbitset
import (
"fmt"
)
type BitSetI interface {
Set(uint64)
Clear(uint64)
Test(uint64) bool
{ "keys": ["k4.public.9KzD6ag94xlrBpUf1tAs6MAoevCLfHLa530TimMW6lg"] }
import { generateKeys, sign, verify } from "paseto-ts/v4";
const key = generateKeys("public", { format: "paserk" });
console.log("key", key);
import { generateKeyPair } from "jose/key/generate/keypair";
import { exportJWK } from "jose/key/export";
import { JWK } from "jose";
async function generateKey() {
const keyId = globalThis?.crypto.randomUUID();
const algorithm = "EdDSA"; // Some example asymmetric algorithms
const key = await generateKeyPair(algorithm, { extractable: true });
const exportedPrivate = await exportJWK(key.privateKey);
{
"keys": [
{
"crv": "Ed25519",
"x": "qD7X8DrHfg0UuYstKt3FPBGqGBqY3N4lGwn9xX-nnXE",
"kty": "OKP",
"kid": "4b901935-5a56-4891-be18-a0a29cc9d35e",
"alg": "EdDSA"
}
]
export function foo0(any: string) {
console.log(any);
}
export function bar0() {
const any = "asdf";
console.log(any);
}
export function foo1(as: string) {
console.log(as);
}
@mfbx9da4
mfbx9da4 / App.tsx
Last active March 7, 2022 10:12
Github issue realm-js flatlist + listener poll for transaction
import React, { useEffect, useLayoutEffect, useState } from 'react'
import { FlatList, SafeAreaView } from 'react-native'
import RNFS from 'react-native-fs'
import Realm from 'realm'
export function App() {
const r = useWaitForRealm()
const [initialized, setInitialized] = useState(false)
useEffect(() => {
@mfbx9da4
mfbx9da4 / App.tsx
Last active March 6, 2022 19:44
Github issue realm-js flatlist + listener
import React, { useEffect, useLayoutEffect, useState } from 'react'
import { FlatList, SafeAreaView } from 'react-native'
import RNFS from 'react-native-fs'
import Realm from 'realm'
export function App() {
const r = useWaitForRealm()
const [initialized, setInitialized] = useState(false)
/**
* The transformer signature is based on https://github.com/cevek/ttypescript#program
* Need to use https://github.com/microsoft/TypeScript/blob/bae0f508184280c59d2865a35efc63be362eacfa/src/compiler/factory/nodeFactory.ts
* The goal is to conver `a!.m()` to `if (!a) { throw new Error('Attempted to use nullish value "a"'} else { a.m() }`
* https://astexplorer.net/#/gist/9ec2af3e8c15fd2cde848941e14f566b/d9ddca954379374f98a4097d9bde4c346dac8567
*/
export default function (program) {
const checker = program.getTypeChecker()
return (context) => {
return (sourceFile) => {