Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
:root { | |
--default-font: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji; | |
--editor-font: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace; | |
/* --override-font: "BIZ UDゴシック"; */ | |
/* --override-font: "HackGen35"; */ | |
/* --override-font: "BIZ UDPゴシック"; */ | |
/* --override-font: "Yu Gothic"; */ | |
} | |
.cm-content { |
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
[data-type=tagfolder-link-view] .tree-item-children.nav-folder-children { | |
display: flex; | |
flex-direction: column; | |
} | |
[data-type=tagfolder-link-view] .tree-item.nav-folder { | |
order: -2; | |
} | |
[data-type=tagfolder-link-view] .tree-item.nav-folder:has(.is-active) { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file has been truncated, but you can view the full file.
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
/* | |
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD AND TERSER | |
if you want to view the source, please visit the github repository of this plugin | |
*/ | |
"use strict"; | |
var extendStatics, __assign, __create = Object.create, __defProp = Object.defineProperty, __getOwnPropDesc = Object.getOwnPropertyDescriptor, __getOwnPropNames = Object.getOwnPropertyNames, __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty, __defNormalProp = (_, ee, ne) => ee in _ ? __defProp(_, ee, { | |
enumerable: true, | |
configurable: true, |
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
// Use with Deno | |
import { NostrFetcher } from "npm:nostr-fetch"; | |
import WebSocket from "npm:ws"; | |
// This script fetches Nostr posts from specified relays and saves them to a CouchDB database. | |
// Use following .env variables: | |
// - FETCH_MINE_RELAYS: Comma-separated list of relay URLs to fetch posts from. | |
// - FETCH_MINE_AUTHORS: Comma-separated list of author public keys to filter posts (hex-format). | |
// - FETCH_MINE_DAYS_AGO: Number of days ago to start fetching posts from. | |
// - FETCH_MINE_DB_URI: CouchDB URI to save the posts. |
OlderNewer