knox / MongoDB-1.sh
0 likes
0 forks
1 files
Last active
1 | $ ./mongod --help |
knox / RethinkDB-2.sh
0 likes
0 forks
1 files
Last active
1 | ./configure --allow-fetch |
2 | # or run ./configure --allow-fetch CXX=clang++ |
3 | |
4 | make -j4 |
5 | # or run make -j4 DEBUG=1 |
6 | |
7 | sudo make install |
8 | # or run ./build/debug_clang/rethinkdb |
knox / RethinkDB-1.sh
0 likes
0 forks
1 files
Last active
1 | sudo apt-get install build-essential protobuf-compiler \ |
2 | # python \ # for older distros |
3 | python3 python-is-python3 \ |
4 | libprotobuf-dev libcurl4-openssl-dev \ |
5 | libncurses5-dev libjemalloc-dev wget m4 g++ libssl-dev |
knox / ToolJet-2.md
0 likes
0 forks
1 files
Last active
knox / ToolJet-1.sh
0 likes
0 forks
1 files
Last active
1 | docker run \ |
2 | --name tooljet \ |
3 | --restart unless-stopped \ |
4 | -p 80:80 \ |
5 | --platform linux/amd64 \ |
6 | -v tooljet_data:/var/lib/postgresql/13/main \ |
7 | tooljet/try:EE-LTS-latest |
knox / Hasura-2.sh
0 likes
0 forks
1 files
Last active
1 | git clone --no-checkout https://github.com/hasura/graphql-engine.git --depth 1 |
2 | cd graphql-engine |
3 | git sparse-checkout init --cone |
4 | git sparse-checkout set v3 |
5 | git checkout @ |
knox / Hasura-1.sh
0 likes
0 forks
1 files
Last active
1 | git clone https://github.com/hasura/graphql-engine.git --depth 1 |
knox / sqlmap-3.sh
0 likes
0 forks
1 files
Last active
1 | python sqlmap.py -hh |
knox / sqlmap-2.sh
0 likes
0 forks
1 files
Last active
1 | python sqlmap.py -h |
knox / sqlmap-1.sh
0 likes
0 forks
1 files
Last active
1 | git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev |