Skip to content

Instantly share code, notes, and snippets.

@chrisbombria
chrisbombria / konk-llm.md
Created October 1, 2025 15:10 — forked from eleanorkonik/konk-llm.md
LLM prompt for useful note headers

The Konik Method: LLM Step-by-Step Process for Obsidian Vault

Overview

This process transforms highlighted quotes from Readwise imports into claim-based headers that can later be spun out into atomic notes/zettelkasten-style index cards. The goal is to convert passive highlights into actionable, searchable claims.

  • Files contain highlights with ID numbers (format: ### id123456789 or loc 12345)
  • Original highlights may have basic annotations but need conversion to claim statements

Step-by-Step Process

File Name

{{title|replace(',','_')|replace(':','_')|replace('/','_')|replace('\n','_')}}

Page Metadata

{% raw %}
> [!IMPORTANT] Next highlight
@chrisbombria
chrisbombria / tp2md.pl
Created March 15, 2024 19:57 — forked from jabofh/tp2md.pl
Convert TaskPaper formatted File or Input to Markdown on Standard Output
#!/usr/bin/env perl -T
use strict;
use warnings;
use Getopt::Std;
my $VERSION = "0.0.5";
$Getopt::Std::STANDARD_HELP_VERSION = 1;
#===============================================================================
@chrisbombria
chrisbombria / obsidian-web-clipper.js
Created January 25, 2022 19:11 — forked from kepano/obsidian-web-clipper.js
Obsidian Web Clipper Bookmarklet to save articles and pages from the web (for Safari, Chrome, Firefox, and mobile browsers)
javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{
default: Turndown
}, {
default: Readability
}]) => {
/* Optional vault name */
const vault = "";
/* Optional folder name such as "Clippings/" */