Skip to content

Instantly share code, notes, and snippets.

View abnerCrack's full-sized avatar
🏠
Working.

C abnerCrack

🏠
Working.
View GitHub Profile
### Keybase proof
I hereby claim:
* I am abnercrack on github.
* I am abnercrack (https://keybase.io/abnercrack) on keybase.
* I have a public key ASAytDTTleMxIxxC9fbBWJn8rX6MuAGrrhFjIU7Hvm34Dwo
To claim this, I am signing this object:
for i in ./*.js;
do mv "$i" "${i%.js}.ts";
done
@abnerCrack
abnerCrack / install-sonar-scanner.sh
Last active December 19, 2019 09:20 — forked from chetanppatil/install-sonar-scanner.sh
Install sonar-scanner in linux mint, ubuntu...
#!/bin/bash
cd /tmp || exit
echo "Downloading sonar-scanner....."
if [ -d "/tmp/sonar-scanner-cli-4.0.0.1744-linux.zip" ];then
sudo rm /tmp/sonar-scanner-cli-4.0.0.1744-linux.zip
fi
wget -q https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.0.0.1744-linux.zip
echo "Download completed."
@abnerCrack
abnerCrack / setup.sh
Last active September 10, 2021 09:42
# 解决阿里云、腾讯云无法git clone
# 镜像到阿里源
git config --global url."https://git.521000.best.cnpmjs.org/".insteadOf "https://github.com/"
git config --global protocol.http.allow always
# 备选
git config --global url."https://hub.fastgit.org/".insteadOf "https://github.com/"
git config --global protocol.http.allow always