Disclaimer: Несколько секций скопировано с презентации https://github.com/dlsniper/talks/tree/master/2017/go-anti-patterns-gdgnsk по причине готовых примеров. Все вещи, которые тут описаны, были встечены на настоящих code review.
FWIW: I didn't produce the content presented here (the outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
| { | |
| "sidebarBg":"#2F3136", | |
| "sidebarText":"#9ca0a4", | |
| "sidebarUnreadText":"#ffffff", | |
| "sidebarTextHoverBg":"#42464D", | |
| "sidebarTextActiveBorder":"#42464D", | |
| "sidebarTextActiveColor":"#ffffff", | |
| "sidebarHeaderBg":"#282B30", | |
| "sidebarHeaderTextColor":"#ffffff", | |
| "onlineIndicator":"#43B581", |
In your command-line run the following commands:
brew doctorbrew update
| ! model | |
| pc101 Generic 101-key PC | |
| pc102 Generic 102-key (Intl) PC | |
| pc104 Generic 104-key PC | |
| pc105 Generic 105-key (Intl) PC | |
| dell101 Dell 101-key PC | |
| latitude Dell Latitude series laptop | |
| dellm65 Dell Precision M65 | |
| everex Everex STEPnote | |
| flexpro Keytronic FlexPro |
| #!/bin/bash | |
| declare -a fonts=( | |
| "3270" | |
| Agave | |
| AnonymousPro | |
| Arimo | |
| AurulentSansMono | |
| BigBlueTerminal | |
| BitstreamVeraSansMono |
| {{define "content"}} | |
| <div id="results"> | |
| {{if or .Notice .Error}} | |
| {{if .Error}} | |
| <div | |
| class="alert flex rounded-lg border border-error px-4 py-4 text-error sm:px-5" | |
| > | |
| {{.Error}} | |
| </div> | |
| {{else}} |
If you encounter a problem where you cannot commit changes in Git – neither through the terminal nor via the GitHub Desktop application – the issue might be a freeze during the Git commit process. This is often caused by GPG lock issues. Below is a concise and step-by-step guide to resolve this problem.
Open your terminal and try to perform a GPG operation (like signing a test message). If you see repeated messages like gpg: waiting for lock (held by [process_id]) ..., it indicates a lock issue.