Skip to content

Instantly share code, notes, and snippets.

View okineadev's full-sized avatar
🥝

Okinea Dev okineadev

🥝
View GitHub Profile
@okineadev
okineadev / export-import-gpg-keys.md
Last active May 21, 2024 08:27 — forked from lysender/export-import-gpg-keys.md
Export and import GPG Keys

Export public key

gpg --export [email protected] > my_key.pub 

The file can then be shared to other people.

Export public key in armor ASCII format

@okineadev
okineadev / FIX.md
Created December 21, 2023 11:41
My solution to the problem of incorrect display of colors in vscode

My solution to the problem of incorrect display of colors in vscode

In order to activate sRGB color display in vscode, you need to do the following:

  1. Open the command palette and go to Preferences: Configure Runtime Arguments

Command palette

  1. Add this to the configuration: "force-color-profile": "srgb"

Configuration