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
| JavaScript | 69.7% | |
|---|---|---|
| HTML/CSS | 62.4% | |
| SQL | 56.9% | |
| Python | 41.6% | |
| Java | 38.4% | |
| Bash/Shell/PowerShell | 34.8% | |
| C# | 32.3% | |
| TypeScript | 28.3% | |
| PHP | 25.8% | |
| C++ | 20.5% |
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
| x=Asin(at+δ),y=Bsin(bt),0≤t≤2π | |
| A=3,a=1,δ=5π/9,B=2,b=2 | |
| https://www.desmos.com/calculator/brasrdtssa |
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
| #!/bin/zsh | |
| # networksetup -getdnsservers Wi-Fi | |
| # 8.8.8.8 | |
| # 8.8.4.4 | |
| networksetup -setdnsservers Wi-Fi 192.168.29.1 |
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
| #!/bin/bash | |
| TOKEN=$(kubectl -n kube-system describe secret default| awk '$1=="token:"{print $2}') | |
| echo $TOKEN | |
| # kubectl config set-credentials kubernetes-admin --token="${TOKEN}" |
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
| https://programming-language-benchmarks.vercel.app/ | |
| https://benchmarksgame-team.pages.debian.net/benchmarksgame/ |
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
| #!/bin/bash | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash | |
| echo ' | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
| [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
| '>> ~/.zshrc |
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
| #!/bin/bash | |
| brew install jenv | |
| echo 'export PATH="$HOME/.jenv/bin:$PATH"' >> ~/.zshrc | |
| echo 'eval "$(jenv init -)"' >> ~/.zshrc | |
| source ~/.zshrc | |
| brew install AdoptOpenJDK/openjdk/adoptopenjdk8 | |
| brew install AdoptOpenJDK/openjdk/adoptopenjdk11 | |
| brew install AdoptOpenJDK/openjdk/adoptopenjdk14 | |
| java -version |