gpg --full-generate-key
gpg --list-secret-keys --keyid-format=long
gpg --armor --export <sec_key>
# Run this before if the command below fails: export GPG_TTY=$(tty)
git config --global user.signingkey <sec_key>
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
| -- Read the docs: https://www.lunarvim.org/docs/configuration | |
| -- Example configs: https://github.com/LunarVim/starter.lvim | |
| -- Video Tutorials: https://www.youtube.com/watch?v=sFA9kX-Ud_c&list=PLhoH5vyxr6QqGu0i7tt_XoVK9v-KvZ3m6 | |
| -- Forum: https://www.reddit.com/r/lunarvim/ | |
| -- Discord: https://discord.com/invite/Xb9B4Ny | |
| ---------------------- My stuff ---------------------- | |
| vim.opt.timeoutlen = 250 | |
| vim.opt.relativenumber = true | |
| -- lvim.lsp.installer.setup.automatic_installation = true |
/jsconfig.json
{
"include": [
"./src/**/*"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
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
| from fastapi import FastAPI | |
| from pydantic import BaseModel, Field | |
| Login = Field( | |
| ..., | |
| alias='login', | |
| description='Login', | |
| max_length=10 | |
| ) | |
| Name = Field( |
Just basic stuff about Rust I'm learning from "the book".
rustcis the Rust compiler (works kinda similar to C/C++ ones), so far.rustfmtformats Rust code.- Similar to C/C++, the first function to be run is named
main.
Steps created based on this video (in Portuguese).
- To configure the number of parallel downloads, open
/etc/pacman.confand addParalellDownloads = 5in a line below#VerbosePkgLists(5 is just an example, pick any number of paralell downloads you want).
- All Screen commands are prefixed by "Ctrl+A"
Ctrl+A, ?to bring up key bindingsCtrl+A, :to be able to write a screen commandCtrl+A, Dto detach from the sessionCtrl+A, Kto kill a screen of the session
Ctrl+A, Cto open a new window within session
"jest": {
"testEnvironment": "node",
"moduleDirectories": [
"<rootDir>/node_modules",
"<rootDir>/."
]
},heroku login - Log into the system
heroku config - List environment variables
heroku config <key>:<value> - Set an environment variable. Many key/value pairs may be set at once