❯ ./ns3 build
You need to configure ns-3 first: try ./ns3 configure
❯ ./ns3 configure --build-profile=debug --enable-examples --enable-tests
CMake Error: Could not create named generator Visual Studio 17 2022
Generators
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
find /opt/homebrew -name "omp.h" | |
brew list libomp | |
clang -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -L/opt/homebrew/opt/libomp/lib -lomp omp_hello.c -o hello | |
./hello | |
or | |
/opt/homebrew/bin/gcc-14 -fopenmp omp_hello.c -o hello |
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
max virtual memory areas: Elasticsearch is failing a bootstrap check | |
sudo sysctl -w vm.max_map_count=262144 | |
Install sonarQube | |
```bash | |
docker pull sonarqube | |
``` |
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
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | |
sudo apt-key add - |
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
git config --global http.version HTTP/1.1 | |
git push | |
git config --global http.version HTTP/2 |
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
git config --global http.proxy http://10.50.225.222:3128 | |
git config --global https.proxy https://10.50.225.222:3128 | |
git config --global --unset http.proxy | |
git config --global --unset https.proxy |
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
npm config set https-proxy http://10.50.225.222:3128 | |
npm config set proxy http://10.50.225.222:3128 | |
npm config delete proxy | |
npm config delete https-proxy | |
vscode proxi | |
http://10.50.225.222:3128 |