This file contains hidden or 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 type { Kysely } from "kysely"; | |
import type { Adapter } from "next-auth/adapters"; | |
import type { DB } from "kysely-codegen"; | |
/** | |
* mostly copy pasted from the unmerged kysely adapter PR to next-auth repo | |
* | |
* assumes Account, User and Session ids are Int (not String). | |
* |
This file contains hidden or 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
#= | |
trying out dataframes. | |
1. read .ldjson | |
2. store in dataframe | |
3. grab some reasonably simple stats from it | |
4. write to new .ldjson | |
=# | |
using JSON3; | |
using DataFrames |
This file contains hidden or 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
var CODE_VERSION = '6a5c8d06';/* The contents of this file will be copied unmodified to the top of your build. */ | |
/******/ (() => { // webpackBootstrap | |
/******/ "use strict"; | |
/******/ var __webpack_modules__ = ({ | |
/***/ "./src/ability/jump.ts": | |
/*!*****************************!*\ | |
!*** ./src/ability/jump.ts ***! | |
\*****************************/ |
This file contains hidden or 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
// ==UserScript== | |
// @name YareCodeSyncButton | |
// @namespace https://yare.io/ | |
// @include https://yare.io/d1/* | |
// @version 1 | |
// ==/UserScript== | |
//Create a button | |
var input = document.createElement("input"); | |
input.type="button"; |