Description | Command |
---|---|
Start a new session with session name | screen -S <session_name> |
List running sessions / screens | screen -ls |
Attach to a running session | screen -x |
Attach to a running session with name | screen -r |
This file contains 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
asttokens==2.2.1 | |
backcall==0.2.0 | |
cachetools==5.3.1 | |
certifi==2023.7.22 | |
charset-normalizer==3.2.0 | |
decorator==5.1.1 | |
executing==1.2.0 | |
google-api-python-client==1.7.9 | |
google-auth==2.22.0 | |
google-auth-httplib2==0.0.3 |
This file contains 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 | |
echo "going to tar all dirs, in this path:" `pwd` | |
## TODO: ignore files, | |
## TODO: a flag for managing overwrites | |
for i in * | |
do | |
tar -czvf "$i.tar.gz" "$i" | |
done |
This file contains 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
const express = require('express'); | |
const httpProxy = require('http-proxy'); | |
const app = express(); | |
const proxy = httpProxy.createProxyServer(); | |
const port = 3001; | |
const serverBehindProxy = 'https://a.b.c'; | |
// const serverBehindProxy = 'http://localhost:3000'; | |
const pathsAvailableOnWebsite = { |