<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Digital Garden · Kostas Maistrelis</title><link>https://en.maistrelis.com/garden/</link><description>Digital Garden</description><language>en</language><managingEditor>Kostas Maistrelis</managingEditor><webMaster>Kostas Maistrelis</webMaster><lastBuildDate>Mon, 06 Jul 2026 03:43:35 +0300</lastBuildDate><atom:link href="https://en.maistrelis.com/garden/index.xml" rel="self" type="application/rss+xml"/><item><title>Kosmemophobia</title><link>https://en.maistrelis.com/garden/kosmemophobia/</link><pubDate>Mon, 06 Jul 2026 03:43:35 +0300</pubDate><author>Kostas Maistrelis</author><guid>https://en.maistrelis.com/garden/kosmemophobia/</guid><enclosure url="https://en.maistrelis.com/img/digital-garden-thumb.jpg" length="0" type="image/jpeg"/><description>&lt;p&gt;Kosmemophobia is the intense and persistent fear, aversion, or discomfort toward jewelry, such as rings, earrings, necklaces, or bracelets. It can appear at the sight, touch, or use of them and, in more serious cases, lead to avoidance of people or places where jewelry is present.&lt;/p&gt;
&lt;p&gt;The term is a Greek coinage: κόσμημα (kósmima), meaning «jewel» or «ornament», joined with the suffix -φοβία (-phobia, from φόβος, phóbos, «fear»). Literally, then, it is the fear of jewelry.&lt;/p&gt;</description></item><item><title>Argument structure</title><link>https://en.maistrelis.com/garden/epixirima_domi/</link><pubDate>Mon, 06 Jul 2026 00:30:15 +0300</pubDate><author>Kostas Maistrelis</author><guid>https://en.maistrelis.com/garden/epixirima_domi/</guid><enclosure url="https://en.maistrelis.com/img/digital-garden-thumb.jpg" length="0" type="image/jpeg"/><description>&lt;p&gt;&lt;img src="https://en.maistrelis.com/garden/epixirima_domi/media/epixeirima.en.jpg" alt="argument"&gt;
&lt;/p&gt;
&lt;h2 id="-sound-argument"&gt;✅ Sound argument&lt;/h2&gt;
&lt;p&gt;A sound argument is one that rests on true premises and valid reasoning.&lt;/p&gt;
&lt;h3 id="premises"&gt;Premises:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;All cats are mammals.&lt;/li&gt;
&lt;li&gt;Whiskers is a cat.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="conclusion"&gt;Conclusion:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Whiskers is a mammal.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="-rewriting-the-argument-with-variables"&gt;🔢 Rewriting the argument with variables&lt;/h2&gt;
&lt;h3 id="premises-1"&gt;Premises:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;All ① are ②.&lt;/li&gt;
&lt;li&gt;③ is a ①.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="conclusion-1"&gt;Conclusion:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;③ is a ②.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Every argument of this form is sound, regardless of what the variables stand for, as long as the premises are true.
Reasoning of this form is valid, so it guarantees that the conclusion will be true.&lt;/p&gt;</description></item><item><title>LLM Skills vs Docs vs Memory</title><link>https://en.maistrelis.com/garden/llm-skills-vs-docs-vs-memory/</link><pubDate>Sun, 05 Jul 2026 16:18:05 +0300</pubDate><author>Kostas Maistrelis</author><guid>https://en.maistrelis.com/garden/llm-skills-vs-docs-vs-memory/</guid><enclosure url="https://en.maistrelis.com/img/digital-garden-thumb.jpg" length="0" type="image/jpeg"/><description>&lt;p&gt;Three ways to give an AI coding agent (e.g. Claude Code) persistent knowledge. They are
&lt;strong&gt;not interchangeable&lt;/strong&gt; — each answers a different question.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;One-line mental model:&lt;/strong&gt; doc = what I know · skill = what I do · memory = what I remember about you.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id="the-three-at-a-glance"&gt;The three at a glance&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Where it lives&lt;/th&gt;
&lt;th&gt;Shared / in repo?&lt;/th&gt;
&lt;th&gt;Nature&lt;/th&gt;
&lt;th&gt;When it loads into context&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;memory&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;outside the repo, private to the agent&lt;/td&gt;
&lt;td&gt;no&lt;/td&gt;
&lt;td&gt;about &lt;em&gt;you&lt;/em&gt; / the working relationship + status&lt;/td&gt;
&lt;td&gt;an always-on index; details on recall&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;doc&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;in the repo (&lt;code&gt;doc/…&lt;/code&gt;)&lt;/td&gt;
&lt;td&gt;yes&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;reference&lt;/strong&gt; — how &amp;amp; why something works&lt;/td&gt;
&lt;td&gt;on-demand (the agent opens the file)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;skill&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;in the repo (&lt;code&gt;.claude/skills/&amp;lt;name&amp;gt;/&lt;/code&gt;)&lt;/td&gt;
&lt;td&gt;yes&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;procedure&lt;/strong&gt; — do X, these steps&lt;/td&gt;
&lt;td&gt;trigger always-on; body on-demand; &lt;code&gt;/&lt;/code&gt;-invocable&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="doc--passive-reference"&gt;Doc — passive reference&lt;/h2&gt;
&lt;p&gt;A Markdown file in the codebase. It just sits there, entering the agent&amp;rsquo;s context only when
someone explicitly reads it (or a top-level index points to it and the agent opens it).&lt;/p&gt;</description></item><item><title>Playground</title><link>https://en.maistrelis.com/garden/playground/</link><pubDate>Sun, 05 Jul 2026 14:27:42 +0300</pubDate><author>Kostas Maistrelis</author><guid>https://en.maistrelis.com/garden/playground/</guid><enclosure url="https://en.maistrelis.com/img/digital-garden-thumb.jpg" length="0" type="image/jpeg"/><description>&lt;p&gt;A scratch page — a quick reference for how the basic Markdown structures compose, and a live
sample to eyeball the site&amp;rsquo;s styling (tables especially). English-only by design.&lt;/p&gt;
&lt;h2 id="text-formatting"&gt;Text formatting&lt;/h2&gt;
&lt;p&gt;Plain text with &lt;strong&gt;bold&lt;/strong&gt;, &lt;em&gt;italic&lt;/em&gt;, &lt;em&gt;&lt;strong&gt;bold italic&lt;/strong&gt;&lt;/em&gt;, &lt;code&gt;inline code&lt;/code&gt;, &lt;del&gt;strikethrough&lt;/del&gt;, and an
&lt;a href="https://en.maistrelis.com/garden/"&gt;internal link to the digital garden&lt;/a&gt;
. External links get the ↗ marker, e.g.
&lt;a href="https://gohugo.io/" class="external-link"&gt;Hugo&lt;/a&gt;
.&lt;/p&gt;
&lt;h2 id="headings"&gt;Headings&lt;/h2&gt;
&lt;p&gt;Use &lt;code&gt;#&lt;/code&gt; through &lt;code&gt;######&lt;/code&gt;. On this site the note title is the &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;, so bodies start at &lt;code&gt;##&lt;/code&gt;.&lt;/p&gt;</description></item><item><title>Ropework Categories</title><link>https://en.maistrelis.com/garden/ropework/ropework_categories/</link><pubDate>Sat, 04 Jul 2026 11:18:39 +0300</pubDate><author>Kostas Maistrelis</author><guid>https://en.maistrelis.com/garden/ropework/ropework_categories/</guid><enclosure url="https://en.maistrelis.com/img/digital-garden-thumb.jpg" length="0" type="image/jpeg"/><description>&lt;h2 id="main-categories"&gt;Main Categories&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Knots&lt;/strong&gt; &lt;em&gt;(stopper, binding, loop)&lt;/em&gt; — the basic type: the knot is tied in the rope itself, without any other object or rope.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bends&lt;/strong&gt; — join two rope ends to each other (e.g. sheet bend, reef knot).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hitches&lt;/strong&gt; — tie a rope to an object: mast, ring, post (e.g. cleat hitch).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Splices&lt;/strong&gt; — permanent joins or terminations made by interweaving the rope&amp;rsquo;s strands; stronger than knots.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Lashings&lt;/strong&gt; — bind spars or poles together with wrapping turns (e.g. square lashing, diagonal lashing).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Whippings &amp;amp; Seizings&lt;/strong&gt; — whipping: protects a rope&amp;rsquo;s end from fraying; seizing: binds two rope sections parallel to each other.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Decorative / Fancy&lt;/strong&gt; — decorative techniques: Turk&amp;rsquo;s head, monkey&amp;rsquo;s fist, ocean plait, etc. Often combine aesthetics and function.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Marlinespike Seamanship&lt;/strong&gt; — the umbrella of nautical rope skill: includes knots, splices, whippings, and gear handling.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Rigging&lt;/strong&gt; — rope systems for supporting masts and controlling sails or loads; standing and running rigging.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Climbing&lt;/strong&gt; — rope techniques for vertical movement: anchors, rappel, belay systems.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Arboriculture&lt;/strong&gt; — ropework for tree surgery: climbing trees, lowering branches under control.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Rope Rescue / Technical Rescue&lt;/strong&gt; — rescue at height, confined space, cliffside; standardized techniques with certifications.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Camping / Bushcraft&lt;/strong&gt; — tents, tarp setups, suspended shelters, camp utility knots.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fishing&lt;/strong&gt; — a distinct tradition with its own terminology.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Tactical / Military&lt;/strong&gt; &lt;em&gt;(optional — thin category)&lt;/em&gt; — fast-roping, rappelling, field-expedient rigging under operational conditions.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Coiling &amp;amp; Stowage&lt;/strong&gt; — proper storage and uncoiling of rope; fundamental to every application.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Netting&lt;/strong&gt; — net construction: fishing nets, cargo nets, hammocks, sports nets.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bondage&lt;/strong&gt; — tying a person; includes shibari/kinbaku and western bondage (see subcategories).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pioneering / Scouting&lt;/strong&gt; — large structures from spars and rope (towers, bridges, gateways). Overlaps with lashings but has its own tradition and competitive culture (scout competitions).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cowboy / Western ropework&lt;/strong&gt; — lariat, lasso, trick roping, bosal, mecate. An entirely separate tradition, with its own materials (rawhide) and braiding techniques.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stage / Theatrical Rigging&lt;/strong&gt; — counterweight systems, fly systems in theatres. Different from nautical rigging — its own professional school (IATSE, etc.).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Industrial Rigging / Lifting&lt;/strong&gt; — cranes, slings, load securing. Different from sailing rigging.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="secondary--related"&gt;Secondary / related&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Rope Making / Cordage&lt;/strong&gt; — making the rope itself (twisting fibres into strands).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;String figures / games&lt;/strong&gt; — figures made with a loop of string over the fingers (e.g. cat&amp;rsquo;s cradle).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Steel wire rope&lt;/strong&gt; — rope made of twisted wires (forming process: swaging).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Knitting&lt;/strong&gt; (&lt;strong&gt;Fiber Arts&lt;/strong&gt;, along with &lt;strong&gt;crochet&lt;/strong&gt;, &lt;strong&gt;weaving&lt;/strong&gt;, &lt;strong&gt;embroidery&lt;/strong&gt;) — knitting yarn with a hook/needles;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Macramé&lt;/strong&gt; (can be considered &lt;strong&gt;Decorative Ropework&lt;/strong&gt;) — the decorative creation of knots in textiles.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="niche-but-real"&gt;Niche but real:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Chinese Knotting (中國結)&lt;/strong&gt; — a huge autonomous decorative tradition. Technically a subcategory of decorative, but worth mentioning.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Surgical Knots&lt;/strong&gt; — medical, very small scale but a codified tradition (square knot variants, surgeon&amp;rsquo;s knot).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Magic / Performance Ropework&lt;/strong&gt; — rope tricks as a genre of conjuring (Tarbell, Pavel).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Equestrian (non-cowboy)&lt;/strong&gt; — halters, lead ropes, fiador knots. Often within cowboy, but also autonomous.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="between-art-and-science"&gt;Between art and science:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Knot Theory&lt;/strong&gt; — mathematical topology. Strictly speaking it is not ropework (it studies closed curves in R³), but it is often mentioned alongside. I&amp;rsquo;d characterize it as &lt;strong&gt;adjacent&lt;/strong&gt;, not within.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="subcategories"&gt;Subcategories&lt;/h2&gt;
&lt;h3 id="bondage-subcategories"&gt;bondage Subcategories&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Shibari / Kinbaku (日本)&lt;/strong&gt; — Japanese tradition, emphasis on aesthetics, symmetry, and the rigger/bunny relationship. Technically very demanding.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Western bondage&lt;/strong&gt; — a more functional approach, less aesthetically codified.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="netting-subcategories"&gt;netting Subcategories&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Fishing nets&lt;/strong&gt; — the most classic&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cargo nets&lt;/strong&gt; — nautical/logistics&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hammocks&lt;/strong&gt; — netting with a structural use&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hair nets / decorative nets&lt;/strong&gt; — overlap with decorative&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sports nets&lt;/strong&gt; — tennis, football, etc.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Climbing nets / safety nets&lt;/strong&gt; — overlap with rescue/climbing&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="plain-rigging-subcategories"&gt;plain rigging subcategories&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;plain rigging (= nautical/sailing rigging)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Standing rigging&lt;/strong&gt; — permanent installation (shrouds, stays, backstays). In industrial there is no equivalent concept — everything is temporary/load-by-load.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Running rigging&lt;/strong&gt; — halyards, sheets, downhauls, vangs, outhauls. Dynamic handling under load in motion, with the wind changing. Industrial rigging is basically static lifts.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sail handling integration&lt;/strong&gt; — reefing systems, furling, jib changes. No equivalent outside the nautical world.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Traditional standing-rigging protection techniques&lt;/strong&gt; — worming, parceling, serving (the trio that protects rope left permanently exposed). Purely nautical, nonexistent in industrial.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Deadeyes, lanyards, hearts&lt;/strong&gt; — old tensioning systems before turnbuckles. Still alive on classic/tall ships.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Historical / traditional depth&lt;/strong&gt; — Age of Sail rigging is a whole body of knowledge, with books like Lever&amp;rsquo;s &lt;em&gt;Young Sea Officer&amp;rsquo;s Sheet Anchor&lt;/em&gt;. Industrial rigging was codified only recently (ASME B30, OSHA).&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="industrial-rigging-subcategories"&gt;industrial rigging subcategories&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Working Load Limits, safety factors, certifications&lt;/strong&gt; — maximum safe load, margin against breakage, equipment certification.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sling angle calculations&lt;/strong&gt; — the lifting angle multiplies the load per leg.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Crane signaling&lt;/strong&gt; — standardized signals (hand/radio) between operator ↔ crane.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;More modern materials (synthetic web slings, chain slings)&lt;/strong&gt; — synthetic web slings instead of steel wire ropes.&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Read Only Jokes</title><link>https://en.maistrelis.com/garden/jokes/read_only_jokes/</link><pubDate>Sat, 04 Jul 2026 11:18:39 +0300</pubDate><author>Kostas Maistrelis</author><guid>https://en.maistrelis.com/garden/jokes/read_only_jokes/</guid><enclosure url="https://en.maistrelis.com/img/digital-garden-thumb.jpg" length="0" type="image/jpeg"/><description>&lt;p&gt;A small collection of jokes that, by their very nature, cannot be told out loud; they have to be &lt;strong&gt;read&lt;/strong&gt;. Otherwise the ambiguity that arises from the way they are written (e.g. «10» as binary or decimal) is given away and the joke falls flat — hence &amp;ldquo;read only&amp;rdquo;.&lt;/p&gt;
&lt;h2 id="10-kinds-of-people"&gt;10 kinds of people&lt;/h2&gt;
&lt;p&gt;There are &lt;strong&gt;10&lt;/strong&gt; kinds of people: those who understand the binary system and those who don&amp;rsquo;t.&lt;/p&gt;
&lt;h2 id="alien--astronaut"&gt;Alien &amp;amp; astronaut&lt;/h2&gt;
&lt;p&gt;&lt;img src="https://en.maistrelis.com/garden/jokes/read_only_jokes/media/binary_joke.jpg" alt="binary joke"&gt;
&lt;/p&gt;</description></item></channel></rss>