create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| oh-my-posh init pwsh --config ~/lk.omp.json | Invoke-Expression | |
| Import-Module -Name Terminal-Icons | |
| Enable-PoshTooltips | |
| if ($host.Name -eq 'ConsoleHost') | |
| { | |
| Import-Module PSReadLine | |
| Set-PSReadLineOption -PredictionSource History | |
| Set-PSReadLineOption -PredictionViewStyle ListView # F2 to switch | |
| } |
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "version": 3, | |
| "console_title_template": "{{ .Shell }} in {{ .Folder }}", | |
| "palette": { | |
| "git-foreground": "#193549", | |
| "git-background": "#FFFB38", | |
| "git-modified": "#FF9248", | |
| "git-diverged": "#FF4500", | |
| "git-ahead": "#B388FF", |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "id": "Terminal.CopyToClipboard", | |
| "keys": "ctrl+c" | |
| }, | |
| { | |
| "id": "Terminal.SplitPane", |
| <script type='text/javascript'> | |
| function addAnchor(element) { | |
| element.insertAdjacentHTML('beforeend', `<a href="#${element.id}" class="hanchor" ariaLabel="Anchor"> #</a>` ) | |
| } | |
| document.addEventListener('DOMContentLoaded', function () { | |
| // Add anchor links to all headings | |
| var headers = document.querySelectorAll('.single-post h2[id], .single-post h3[id], .single-post h4[id]') | |
| if (headers) { | |
| headers.forEach(addAnchor) | |
| } |
| @echo off | |
| IF "%~1"=="" ( | |
| call ECHO No version specified. Call with '?' parameter to get a list of available versions | |
| ) ELSE ( | |
| IF "%~1"=="?" ( | |
| call ECHO Available versions: | |
| call ECHO ------------------- | |
| call dir %PROGRAMDATA%\chocolatey\lib /b | findstr /i "terraform" | |
| ) ELSE ( |
| @echo off | |
| IF "%~1"=="" ECHO No profile | |
| IF "%~1"=="-pgs" call az account set --subscription b*** | |
| IF "%~1"=="-private" call az account set --subscription 5*** | |
| call az account show |
| # my files | |
| *.orig | |
| .env | |
| .envrc | |
| appsettings.local.json | |
| *_override.tf | |
| lk.tf | |
| # ignore thumbnails created by windows | |
| Thumbs.db |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>CancellationToken</Title> | |
| <Shortcut>ctoken</Shortcut> | |
| <Description>Code snippet for CancellationToken</Description> | |
| <Author>Łukasz Kurzyniec</Author> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> |