| title | Learning How to Learn |
|---|---|
| subtitle | An evidence-based guide to faster, durable, and adaptive mastery |
| date | 2026-08-06 |
| language | en-US |
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
| # ARGUMENT FRAMEWORK | |
| ═══════════════════════════════════════════ | |
| ## I. INTRODUCTION — SETUP | |
| ═══════════════════════════════════════════ | |
| Motion: "This house [should/believes/would]..." | |
| Stance: FOR or AGAINST | |
| Status Quo: What is the current state of affairs? What exists today | |
| that the motion seeks to change or preserve? |
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
| /* Ensure the container takes full height of the pane */ | |
| html, body { | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| #app-container { | |
| display: flex; |
Facebook works with advertisers to target you. These instructions are one of the many ways to begin crippling that relationship. When AI targeting is crippled, your psychosecurity improves :)
- On your desktop machine, goto https://accountscenter.facebook.com/ads/audience_based_advertising
- Maximize the browser window
- Press F12 and click on the Console tab
- Select the code below, copy it, paste it upon the Console line (The area next to the > character in the Console window), and press enter:
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
| A recreation of the [Typst](https://typst.app) inspired by https://github.com/SAWARATSUKI/ServiceLogos. Created in Inkscape. | |
| # License | |
| 1. Competely free for personal use. | |
| 2. Credit this gist or me (fenjalien) when sharing or distributing the image. | |
| 3. No commercial use, unless explicit permission has been granted. |
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
| #let _records-to-dict(records) = { | |
| let formatted = (:) | |
| for r in records { | |
| for (k, v) in r { | |
| let cur = formatted.at(k, default: ()) | |
| cur.push(v) | |
| formatted.insert(k, cur) | |
| } | |
| } | |
| formatted |
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
| .editor-group-watermark > .letterpress { | |
| background-image: url("https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/VSCode/VSCode-Thick.png") !important; | |
| opacity: 0.75; | |
| } |
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
| -- Pandoc Lua-filter for Obsidian Callouts | |
| -- Original Source: https://forum.obsidian.md/t/rendering-callouts-similarly-in-pandoc/40020/ | |
| -- Notes: | |
| -- Original snippet modified to output Hugo {{< admonition >}} shortcodes with collapse. | |
| -- Make sure to have a blank line before and after the `> [!note]` line of the callout block. | |
| -- The filter works recursively so if you want callouts within callouts, make sure to leave a blank line | |
| -- before and after the `> [!note] Your title here` line of each callout. | |
| -- Usage: |
NewerOlder