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
1. pip install -r reqs.pip | |
2. server.py | |
3. open client.html in browser | |
4. redis-cli publish push '123456' | |
5. check browser console |
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
DROP TABLE ZNEW; | |
create table znew as (select * from ANY_TABLE_OR_VIEW where col='value'); | |
drop table ZMAIN; | |
alter table ZNEW rename to ZMAIN; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Axios Example</title> | |
</head> | |
<body> | |
</body> | |
<script src="https://unpkg.com/axios/dist/axios.min.js"></script> |
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
Airflow installation on Ubuntu 18.x (GCP) | |
https://www.anaconda.com/distribution/ | |
Latest installable : https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh | |
Create a GCP VM (Ubuntu 18x). Then proceed with the below commands on the ssh terminal | |
#Create install dirs | |
mkdir -p /app | |
sudo chown your_username -R /app |
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
Apache Airflow installation on Ubuntu 18.x (GCP) | |
https://www.anaconda.com/distribution/ | |
Latest installable : https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh | |
Create a GCP VM (Ubuntu 18x). Then proceed with the below commands on the ssh terminal | |
#Create install dirs | |
mkdir -p /app | |
sudo chown your_username -R /app |
OlderNewer