Your cart is currently empty!
Author: Website Admin
-
Neovim: LSP Configuration
Install language server Configure the language server in Neovim. This can be done in 2 ways. First, by using vim.lsp.config[‘xxx’] in nvim/init.lua: Second, by creating a file in nvim/lsp/luals.lua directory: Enable the language server: Since we use vim.lsp.config[‘luals’] OR by creating a file called lsp/luals.lua we will enable it with vim.lsp.enable[‘luals’]. Check if the lsp…
-
Jujutsu
Initializing the repository Initializing from a remote Git repository: Initializing from inside Git repository Initializing a new repository based on existing Git repository Bookmark (Branch) List bookmarks Tracking remote a remote bookmark Working with the repository Making a new revision on top of current working directory Making a new revision on top of remote bookmark…
-
MySQL: Select From Where?
Select from table Select from another query Save query to a variable, and use that variable with another select Using the results of another query as a condition
-
SQLite: Formatting Query Results
Connect to database: Turn on headers (default: off) Select mode (default: list) Run your query
-
PostgreSQL: Remote Connection
Create user: Create a database: Grant user to database: Grant user to schema: Configure the server: Configure server access: Restart posgresql:
-
PostgreSQL
Connect to psql via console: Description Command List database \list \l List database with extra information \list+ \l+ Connect to a database \connect <database-name> <username> \c <database-name> <username> List tables \dt Describe a table \d Describe a table with extra information \d+ List schemas \dn List user and roles \du List functions \df List views…