Spotted this item on Ben Hutchingson's LinkedIN Feed. There may be IT's equivalent of LRQ worth looking into.
- Why did the payment system fail?
- Resource exhaustion event on a multi-tenant, distributed database cluster
- Why did the resource exhaustion occur?
- Team 1 executed a change for data clean up
- Why did Team 1 execute the data clean up?
- They were outside their service window and their tests showed no problem in lower environments
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
GRPC_DEFAULT_SSL_ROOTS_FILE_PATH=/Users/foo/Downloads/inspection-ca.cer | |
http_proxy=http://localhost:3128/ | |
https_proxy=http://localhost:3128/ | |
Additional variables for GRPC here: https://github.com/grpc/grpc/blob/master/doc/environment_variables.md |
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
What: Configure IntelliJ IDEA to use self-signed certificates for license servers | |
Background: Current employer hasan IntelliJ license server hosted at https://intellij.employer.domain and uses a proxy with self-signed inspection proxy(Pretty much MITM) | |
Solution: | |
1. Download the root CA, intermediate CA and inspection CA certificates from the employer's PKI registry | |
2. Go to `/Applications/IntelliJ\ IDEA.app/Contents/jbr/Contents/Home` (Tested for 2021.3 version) | |
3. Get an elevated prompt | |
4. Add root CA |
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
1. Check what is the state - git remote -v | |
2. If the upstream is missing add it - git remote add upstream https://github.com/apache/camel | |
3. Fetch from upstream - git fetch upstream | |
4. Checkout local working copy master/main - git checkout master | |
5. Merge upstream master into local - git merge upstream/master | |
6. Push upstream - git push origin |
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
# Session 1 | |
* Cargo new create a a ready to use git repository | |
* Where does cargo gets the author information? | |
If you have already set it for git you'd be OK. | |
For additional options, Look up: https://github.com/rust-lang/cargo/blob/rust-1.50.0/src/cargo/ops/cargo_new.rs#L798 | |
* |
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
yum install -y git libcgroup-tools |
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
Welcome to StackOverflow! Your question is not quite clear. | |
Perhaps its worth rephrasing it so that someone would be able to help you further. | |
It is a great idea to refer to [this article](https://stackoverflow.com/help/how-to-ask) on how to ask a good question. Thanks. |
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
/^[A-Za-z'\- ÇüÜéâÂäàÀåçêÊëËèèïÏîÎìÌÄÅÉôÔöòÒûÛùÙÖÜøØáÁóÓíÍúÚñÑß]+$/, |
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
Acquire::http:Proxy "http://10.0.2.2:3128/"; | |
Acquire::https:Proxy "http://10.0.2.2:3128/"; |
NewerOlder