Obsidian forum thread: https://forum.obsidian.md/t/plugin-for-bullet-threading/37317/22
Add these CSS files in Appearance settings.
Changelog:
- 2024-08-15
- separate versions for mouse hover and active line (keyboard focus)
Obsidian forum thread: https://forum.obsidian.md/t/plugin-for-bullet-threading/37317/22
Add these CSS files in Appearance settings.
Changelog:
import { expectAssignable, expectType } from 'tsd'; | |
type Some<T> = { _some: true, value: T }; | |
type None = { _some: false }; | |
type Option<T> = Some<T> | None; | |
type GetSome<T,R> = (input: T) => Some<R>; | |
type GetOption<T,R> = (input: T) => Option<R>; | |
function isSome<T>(option: Option<T>): option is Some<T> { return option._some; } |
// #region DIGRAMS =============================================================================== | |
function computeDigramColors( | |
/** @type { Uint8Array } */ uint8Array, | |
paletteKind = 'p5_lerp', | |
blendingMiddlePoint = 0.5 | |
) { | |
const digramStats = Array.from({ length: 65536 }, () => ({ | |
count: 0, // digram occurrences | |
offsetAcc: 0.0 // accumulator to compute average position |
<# | |
.SYNOPSIS | |
Shuffle groups in an AIMP playlist ("*.aimppl4") | |
while preserving the order inside groups. | |
.PARAMETER inputPath | |
Input file to be shuffled ("*.aimppl4"). | |
#> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>longest string</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Matrix (2D-array) transpose</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |
using System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
namespace GeoInfoService | |
{ | |
public static class GeoInfoService | |
{ |
<?xml version="1.0" encoding="utf-8"?> | |
<CommandButtonInfo> | |
<MetaData> | |
<DateCreated>2016-03-24T15:45:16.0981452+03:00</DateCreated> | |
<Author>MXI</Author> | |
<Contact>http://mxii.eu.org/</Contact> | |
<Description>Navigate to the next folder within common parent folder.</Description> | |
<Version>1.0</Version> | |
</MetaData> | |
<CommandButton Type="File" SubType="Normal" PersistentID="20753363"> |
<?xml version="1.0" encoding="utf-8"?> | |
<CommandButtonInfo> | |
<MetaData> | |
<DateCreated>2016-03-24T15:45:16.0981452+03:00</DateCreated> | |
<Author>MXI</Author> | |
<Contact>http://mxii.eu.org/</Contact> | |
<Description>Navigate to the next folder within common parent folder.</Description> | |
<Version>1.0</Version> | |
</MetaData> | |
<CommandButton Type="File" SubType="Normal" PersistentID="20753363"> |