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
| var queryResponse = await client.QueryAsync(query); | |
| var row = queryResponse.Items.Single(); |
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
| var customer = new { CustomerId = row["CustomerId"].S, Name = row["Name"].S }; |
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
| # Below content is in .zshrc file normally under ~/.zshrc | |
| # Do NOT replace your entire .zshrc with this content, but rather pick the pieces and APPEND to your existing .zshrc | |
| # DOTNET | |
| alias dri="dotnet restore --interactive" | |
| alias db="dotnet build" | |
| # K8S | |
| # Usage: kx <context> | |
| kx() { |
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
| " .ideavimrc is a configuration file for IdeaVim plugin. It uses | |
| " the same commands as the original .vimrc configuration. | |
| " You can find a list of commands here: https://jb.gg/h38q75 | |
| " Find more examples here: https://jb.gg/share-ideavimrc | |
| set relativenumber | |
| set guicursor=i:block | |
| "" -- Suggested options -- | |
| " Show a few lines of context around the cursor. Note that this makes the |
OlderNewer