On the internet, nobody knows you’re human.

  • 1 Post
  • 9 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle


  • Wilker@lemmy.blahaj.zoneto196@lemmy.blahaj.zonesurprising ruleazation
    link
    fedilink
    English
    arrow-up
    41
    ·
    edit-2
    4 months ago

    that’s an interesting read on the story though. writing in a medium in such a way as to pass one message disguised as the opposite isn’t a new concept, one such example being how a ton of popular music here in Brazil bypassed censors during the dictatorship from 1964-'85 to spread messages of resistance against the government.

    edit: missed some of the wording. fixed now.







  • have at it!

    taken from Gitlab’s manual page for creating a key, but i wonder what else could be done to expand on it.

    #~/.gitconfig
    [includeIf "hasconfig:remote.*.url:https://gitlab.com/**"]
    path = /path/to/gitlab.gitconfig
    [includeIf "hasconfig:remote.*.url:https://github.com/**"]
    path = /path/to/github.gitconfig
    

    #example gitlab gitconfig from the included path
    [user]
    name = Your Name
    email = [email protected]
    signingkey = 0000999988887777
    
    [commit]
    gpgsign = true
    

    if all works well, Git should be able to automatically use the selected key depending on the repo’s stated remote server.