git clone https://sourceware.org/git/valgrind.git
cd valgrind
mkdir dist
./autogen.sh
./configure --prefix=$PWD/dist
bear -- make
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
| export REQUESTS_CA_BUNDLE= |
git clone https://github.com/openjdk/jdk.gitsudo apt install openjdk-21-jdk-headless
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
| new Date().toUTCString() | |
| new Date().toGMTString() | |
| // 'Wed, 11 Oct 2023 11:54:48 GMT' | |
| new Date().toLocaleString('ko-KR', {timeZone: 'Asia/Seoul', hour12: false, dateStyle: 'full', timeStyle: 'long'}) | |
| // '2023. 10. 11. 수요일 20시 47분 27초 GMT+9' | |
| new Date().toLocaleString('en-US', {timeZone: 'America/New_York', hour12: false, dateStyle: 'full', timeStyle: 'long'}) | |
| // 'Wednesday, October 11, 2023 at 07:48:56 EDT' |
export CC="ccache clang"git clone https://github.com/curl/curl.git- Bear: Install
git clone https://github.com/rizsotto/Bear.git
cd Bear
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
| sudo microk8s refresh-certs -c | |
| The CA certificate will expire in 3649 days. | |
| The server certificate will expire in 364 days. | |
| The front proxy client certificate will expire in 364 days. |
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
| curl-config | |
| curl-config --ca | |
| # mac | |
| /opt/local/share/curl/curl-ca-bundle.crt | |
| cp .crt .crt.origin | |
| cat my.crt >> .crt | |
| openssl x509 -inform DER -in cert.cer -out cert.crt |
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
| sleep `expr $(date -d '1 day 12:59' +%s) - $(date +%s)` |
NewerOlder