=== ANCHOR POEM ===
═════════════════════════════════════════════════════════════──────────────────────
 When you're working, don't write down your ideas.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════─────────┴───────────┘

=== SIMILARITY RANKED ===

--- #1 messages/401 ---
════════════════════════════════════════════════───────────────────────────────────
 The only thoughts that survive are the ones you write down.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────┴───────────┘

--- #2 fediverse/5724 ---
══════════════════════════════════════════════════════════════════─────────────────
 never say "nevermind" when you've got a good idea
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────┴───────────┘

--- #3 image/img-8688 ---

🖼 things-I-almost-posted: sword-of-damocles.png things-I-almost-posted: sword-of-damocles.png
--- #4 image/img-8689 ---
🖼 things-I-almost-posted: yet-still-we-profane.png things-I-almost-posted: yet-still-we-profane.png
--- #5 fediverse/5584 --- ═════════════════════════════════════════════════════════════════────────────────── don't do ANYTHING unless you got at least two people working with you. Otherwise you'll burn out or be overwhelmed. ┌───────────┐ similar chronologicaldifferent═══════════════════════════════════════════════════════════════─────┴───────────┘ --- #6 fediverse/1643 --- ════════════════════════════════════════════════─────────────────────────────────── sometimes it's important to be innovative, and sometimes it's important to put your head down and work. Which is why we're always kept busy on things that benefit them, not us. ┌───────────┐ similar chronologicaldifferent══════════════════════════════════════════════──────────────────────┴───────────┘ --- #7 image/img-8690 ---
🖼 dnd-pictures-from-the-internet: black-and-gold.webp dnd-pictures-from-the-internet: black-and-gold.webp
--- #8 fediverse/5460 --- ═════════════════════════════════════════════════════════════════────────────────── if you sit down to write and nothing comes to mind, then either nothing needs to be said or maybe you should spend time reading instead. ... okey dokey, time to read I guess. ┌───────────┐ similar chronologicaldifferent═══════════════════════════════════════════════════════════════─────┴───────────┘ --- #9 fediverse/2756 --- ══════════════════════════════════════════════════───────────────────────────────── my ideas are not the useful ones. the thoughts they spark in *yours* are. ┌───────────┐ similar chronologicaldifferent════════════════════════════════════════════════────────────────────┴───────────┘ --- #10 fediverse/2057 --- ═════════════════════════════════════════════════────────────────────────────────── @user-1071 if you work too fast, your ideas will run out and you'll be drawn elsewhere. It's not a tragedy, it's the finishing of the project. Relish it, and learn what you can before springing in a new directory, full of vigor and ready for a new thought. ┌───────────┐ similar chronologicaldifferent═══════════════════════════════════════════════─────────────────────┴───────────┘ --- #11 messages/427 --- ═════════════════════════════════════════════════────────────────────────────────── If everyone can do whatever they want, they'll tend to prefer the easy way. And the easy way is rarely the right way. ┌───────────┐ similar chronologicaldifferent═══════════════════════════════════════════════─────────────────────┴───────────┘ --- #12 fediverse/4843 --- ═══════════════════════════════════════════════════════════──────────────────────── just because someone did something one way and it worked, doesn't mean you have to do it that way again. but you should have a reason why you aren't doing it that way. ┌───────────┐ similar chronologicaldifferent═════════════════════════════════════════════════════════───────────┴───────────┘ --- #13 messages/1056 --- ═══════════════════════════════════════════════════════════════════════──────────── That which tends to guide your thoughts. ───────────┐ similar chronological different════════════════════════════════════════════════════════════════════───────────┘ --- #14 fediverse/5514 --- ═════════════════════════════════════════════════════════════════────────────────── this, but with my "ideas" or whatever ┌───────────┐ similar chronologicaldifferent═══════════════════════════════════════════════════════════════─────┴───────────┘ --- #15 fediverse/2058 --- ═════════════════════════════════════════════════────────────────────────────────── @user-1071 I have the opposite problem, where my ideas come too quickly and they're gone before I can implement. I think I'd prefer to burn out TBH because burning out just means an inexcusable output of energy (in return for not-enough-learning) ┌───────────┐ similar chronologicaldifferent═══════════════════════════════════════════════─────────────────────┴───────────┘ --- #16 fediverse/614 --- image.png ══════════════════════════════════════════───────────────────────────────────────── What does your template for a new project look like? Here's mine:
39 lines of C code included in it's original form here:  #include <stdio.h> #include "pthread.h" #include "raylib.h"  void* draw(void* args){    const int screenWidth = 800;    const int screenHeight = 450;     InitWindow(screenWidth, screenHeight, "template");     SetTargetFPS(4);     while (!WindowShouldClose())    {       BeginDrawing();          ClearBackground(RAYWHITE);          /* do something */       EndDrawing();    }     CloseWindow();    return NULL; }  void* game(void* args){    /* do something */    return NULL; }  int main(void) {    void* args;     pthread_t threads[2];    pthread_create(&threads[0], NULL, draw, &args);    pthread_create(&threads[1], NULL, game, &args);    return 0; }
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────┴───────────┘

--- #17 fediverse/5794 ---
═══════════════════════════════════════════════════════════════════────────────────
 *the only useful thing I can do is write, everything else just flutters and
 sparks*
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════───┴───────────┘

--- #18 fediverse/94 ---
═══════════════════════════════════════────────────────────────────────────────────
 @user-107 If you can figure out how to do it well, everything else seems less
 difficult. : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════───────────────────────────────┴───────────┘

--- #19 fediverse/5169 ---
══════════════════════════════════════════════════════════════─────────────────────
 if you ever find yourself in a situation where you have to describe everything
 that you do,
 
 leave that situation
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────┴───────────┘

--- #20 fediverse/2363 ---
══════════════════════════════════════════════════─────────────────────────────────
 Don't know what to do? Do *anything at all*, and odds are you'll either see an
 opportunity to do something better or you'll have an idea.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────┴───────────┘

--- #21 messages/1116 ---
═════════════════════════════════════════════════════════════════════════──────────
 What works for me might not work for another,
 
 But 
 
 What works for me might work for another.
                                                           ─────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════─────────┘

--- #22 messages/1209 ---
═══════════════════════════════════════════════════════════════════════════────────
 Beauty of a thousand words in a thousand characters. That is my writing.
                                                           ───────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════───────┘

--- #23 messages/943 ---
══════════════════════════════════════════════════════════════════─────────────────
 yeah it's important to take breaks when you're working on something great,
 otherwise you'll run out of learning points.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════────┴───────────┘

--- #24 fediverse_boost/458 ---
◀═[BOOST] ┌──────────────────────────────────────────────────────────────────────────┐  maybe i should just work on my memoir...                                  └──────────────────────────────────────────────────────────────────────────┘                                                         similar                      chronological                       different─▶

--- #25 fediverse/905 ---
═══════════════════════════════════════════────────────────────────────────────────
 having trouble naming things?
 
 just name it after it's inevitable logical conclusion! AKA the message you're
 trying to get across.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════───────────────────────────┴───────────┘

--- #26 fediverse/1072 ---
════════════════════════════════════════════───────────────────────────────────────
 @user-782 @user-783 
 
 modern problems require blunt solutions
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════──────────────────────────┴───────────┘

--- #27 fediverse/618 ---
══════════════════════════════════════════─────────────────────────────────────────
 Can't stop thinking 
 
 [the rest is left blank, as a testament to the inability of the author to
 express their thoughts in a temporally contextual way. Presumably the previous
 text would be followed by an "about..." with the rest dedicated to a
 particular thought that felt important enough to share with the internet.]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────┴───────────┘

--- #28 messages/1498 ---
════════════════════════════════════════════════════════════════════════════───────
 Everything that I write is fiction.
                                                           ──────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════──────┘

--- #29 fediverse/170 ---
═══════════════════════════════════════────────────────────────────────────────────
 reality is write-only
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════───────────────────────────────┴───────────┘

--- #30 notes/why-I-write ---
══════════════════════════════════════════════════════════════════════════════════─
 At first I had something to say. Then, I wanted to share. Then, I wanted to
 make things happen. Then, I wanted to inspire. Now, I can't stop. It's how I
 think.
 
 Maybe I should read my own work whenever I feel bad.
                                                            similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════┘

--- #31 fediverse/6351 ---
════════════════════════════════════════════════════════════════════════───────────
 "it's as if they didn't read you at all"
                                                           ──────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════──────────┘

--- #32 fediverse/4342 ---
═══════════════════════════════════════════════════════────────────────────────────
 @user-1268 
 
 keep it in the back of your mind and maybe it'll come to you
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════───────────────┴───────────┘

--- #33 fediverse/1092 ---
════════════════════════════════════════════───────────────────────────────────────
 if there's too much on your mind then you need more people thinking about
 those problems
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════──────────────────────────┴───────────┘