$2a$11$sG7cAo8d.cTrkkoRdly6J.mU5B34G9zREEU6.W3Awcmwv4IO9rDEO
Deno's node:sqlite implementation does not support numbered positional parameters like ?1, ?2, etc. This causes a "column index out of range" error when using this SQLite parameter syntax, which is a deviation from Node.js behavior and standard SQLite functionality.
- Deno version: 2.2.0+ (tested on latest)
- Platform: Linux
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
| { | |
| inputs = { | |
| nixpkgs.url = "github:nixos/nixpkgs?ref=nixpkgs-unstable"; | |
| treefmt-nix.url = "github:numtide/treefmt-nix"; | |
| flake-parts.url = "github:hercules-ci/flake-parts"; | |
| systems.url = "github:nix-systems/default"; | |
| git-hooks-nix.url = "github:cachix/git-hooks.nix"; | |
| devenv.url = "github:cachix/devenv"; | |
| gleam-overlay.url = "github:Comamoca/gleam-overlay"; | |
| gleam2nix.url = "git+https://git.isincredibly.gay/srxl/gleam2nix"; |
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
| BEGIN KEYBASE SALTPACK SIGNED MESSAGE. kXR7VktZdyH7rvq v5weRa0zkE78jT2 xx4mvYJXYo3keN1 6JPECHTfC2pKgdk CUAIOTiXhoXcVkI MfsMj19rATXPr1D 8O4aIGws28li5wk Rlcavjgda8mb0pP sSU23i4N2fj6aWO D8z89eP3Bf29rti 4jbKN1y0hjdpXB9 bKikEZ1qvUCVKtG mo0SNIHXOSSJNcT fDtex5y3Pt1uLDd uvIxt1X. END KEYBASE SALTPACK SIGNED MESSAGE. |
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
| { | |
| description = "An example flake for build latest gleam."; | |
| inputs = { | |
| nixpkgs.url = "github:nixos/nixpkgs?ref=nixpkgs-unstable"; | |
| flake-parts.url = "github:hercules-ci/flake-parts"; | |
| systems.url = "github:nix-systems/default"; | |
| devenv.url = "github:cachix/devenv"; | |
| rust-overlay.url = "github:oxalica/rust-overlay"; | |
| }; |
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
| /* | |
| よくある投稿がダーッと流れてくるアレができるスクリプトです。 | |
| Denoで実行することを想定しています。 | |
| 2024/10/21 現在動くコードです。 | |
| Blueskyはライブラリの変更が激しいのでこのスクリプトも参考程度に読むことをお勧めします。 | |
| */ | |
| import { cborDecodeMulti } from "npm:@atproto/common"; | |
| import { AtpAgent } from "npm:@atproto/api"; |
NewerOlder