• 3 Posts
  • 23 Comments
Joined 2 years ago
cake
Cake day: June 19th, 2023

help-circle




  • My account has not seen a single commit in years now, and yet I can let it go… I still “need” it for support on an old project of mine that I share with other people, and to submit changes for projects I care about which are only on GitHub.

    I also keep my account for name squatting purposes, and so people can find the link to my actual repo.

    I don’t think I’ll go all the way to delete my account, but my projects are definitely not reliant on it anymore.








  • You might not understand how to do it properly so here’s the idea:

    Tabs will let you reach the indentation level of the current block, then from here, you’ll use spaces to align stuff property. Here’s an example, where >••• are tabs (I’m exaggerating alignment for the sake of the example) :

    >•••if (condition1 == true
    >••• || condition2 != false)
    >•••{
    >•••>•••struct ident people[] = [
    >•••>•••>•••{
    >•••>•••>•••>•••.name   = "bob",
    >•••>•••>•••>•••.pubkey = "value1",
    >•••>•••>•••},
    >•••>•••>•••{
    >•••>•••>•••>•••.name   = "alice",
    >•••>•••>•••>•••.pubkey = "value2",
    >•••>•••>•••}
    >•••>•••];
    >•••>•••secureConnection(people[0].name, people[0].pubkey,
    >•••>•••                 people[1].name, people[1].pubkey,
    >•••>•••                 CRYPTO_ALGO_DEFAULT);
    >•••}
    

    As you can see, everything will stay correctly aligned as long as it’s within the same block.