Skip to content

Instantly share code, notes, and snippets.

View vrtmrz's full-sized avatar
💫
Almost at the halfway mark!

vorotamoroz vrtmrz

💫
Almost at the halfway mark!
View GitHub Profile
@vrtmrz
vrtmrz / Obsidian_BIZUDPGothic_OSS_for_screwdriver.md
Last active March 26, 2022 01:59
Set MORISAWA BIZ UD Font (Proportional) to Obsidian by Screwdriver
target ignores filters tags
.obsidian/snippets
/node_modules
/.git
_OSS\.cssˆ
conf
@vrtmrz
vrtmrz / Obsidian_UDEV_GOTHIC_LG_R_OSS_for_screwdriver.md
Created March 28, 2022 07:35
Set UDEV Gothic to Obsidian by Screwdriver
target ignores filters
.obsidian/snippets
/node_modules
/.git
UDEVGothicLG-Regular\.cssˆ
@vrtmrz
vrtmrz / Obsidian_UDEV_GOTHIC_35_LG_R_OSS_for_screwdriver.md
Created March 29, 2022 09:56
Set UDEV Gothic (3:5) to Obsidian by Screwdriver
target ignores filters tags
.obsidian/snippets
/node_modules
/.git
_OSS\.cssˆ
conf
@vrtmrz
vrtmrz / deploy_couchdb_to_flyio.ipynb
Last active May 18, 2023 08:56
deploy_couchdb_to_flyio.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
/* 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;
}
@vrtmrz
vrtmrz / iaw2.css
Created February 20, 2023 07:47
iAWriter-ish-style2
/* iAWriter-ish style. */
.cursorWrapper .x-cursor {
opacity: 1;
position: relative;
background: #00bbff;
width: 3px;
left: -1px;
top: 0;
left: 0;
transition: opacity;
@vrtmrz
vrtmrz / deploy_couchdb_to_flyio_v2.ipynb
Last active February 7, 2024 10:20
deploy_couchdb_to_flyio_v2.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vrtmrz
vrtmrz / deploy_couchdb_to_flyio_v2_with_swap.ipynb
Last active February 7, 2024 10:19
deploy_couchdb_to_flyio_v2_with_swap.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vrtmrz
vrtmrz / main.js
Created August 10, 2023 06:50
LinkFolder - Patched TagFolder(0.15.24)
/*
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;
@vrtmrz
vrtmrz / encrypt.ts
Created August 22, 2023 02:49
Create a setup URI from environment values
import { webcrypto } from "node:crypto";
const KEY_RECYCLE_COUNT = 100;
type KeyBuffer = {
key: CryptoKey;
salt: Uint8Array;
count: number;
};
let semiStaticFieldBuffer: Uint8Array;