target | ignores | filters | tags | ||||
---|---|---|---|---|---|---|---|
.obsidian/snippets |
|
|
|
target | ignores | filters | |||
---|---|---|---|---|---|
.obsidian/snippets |
|
|
target | ignores | filters | tags | ||||
---|---|---|---|---|---|---|---|
.obsidian/snippets |
|
|
|
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
/* iAWriter-ish style. */ | |
.cursorWrapper .x-cursor { | |
opacity: 1; | |
background: #00bbff; | |
width: 3px; | |
left: -1px; | |
top: calc( -6px - var(--header-height)); | |
height: calc(12px + var(--cursor-height)); | |
transition: opacity; | |
} |
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
/* iAWriter-ish style. */ | |
.cursorWrapper .x-cursor { | |
opacity: 1; | |
position: relative; | |
background: #00bbff; | |
width: 3px; | |
left: -1px; | |
top: 0; | |
left: 0; | |
transition: opacity; |
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 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 | |
if you want to view the source, please visit the github repository of this plugin | |
*/ | |
"use strict"; | |
var __defProp = Object.defineProperty; | |
var __getOwnPropDesc = Object.getOwnPropertyDescriptor; | |
var __getOwnPropNames = Object.getOwnPropertyNames; | |
var __hasOwnProp = Object.prototype.hasOwnProperty; |
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 { webcrypto } from "node:crypto"; | |
const KEY_RECYCLE_COUNT = 100; | |
type KeyBuffer = { | |
key: CryptoKey; | |
salt: Uint8Array; | |
count: number; | |
}; | |
let semiStaticFieldBuffer: Uint8Array; |
OlderNewer