git init
or
| <?php | |
| //open database connection | |
| $mysqli = new mysqli(<host>,<username>,<password>,<schema>); | |
| //Display error message | |
| if ($mysqli->connect_error) { | |
| die('Error : ('. $mysqli->connect_errno .') '. $mysqli->connect_error); | |
| } | |
| $sql="SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_SCHEMA = '<schema name>'"; |
| import pandas as pd | |
| from random import random | |
| flow = (list(range(1,10,1)) + list(range(10,1,-1)))*1000 | |
| pdata = pd.DataFrame({"a":flow, "b":flow}) | |
| pdata.b = pdata.b.shift(9) | |
| data = pdata.iloc[10:] * random() # some noise | |
| import numpy as np |
| #!/bin/bash | |
| cd | |
| wget https://01.org/sites/default/files/downloads/intelr-graphics-linux/sklgucver61.tar.bz2 && \ | |
| tar xvjf sklgucver61.tar.bz2 && cd skl_guc_ver6_1/ && sudo ./install.sh | |
| cd | |
| wget https://01.org/sites/default/files/downloads/intelr-graphics-linux/kbldmcver101.tar.bz2 && \ |
| name: Build and Deploy | |
| on: | |
| push: | |
| branches: | |
| - main # change to your desired branch name | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 |
See the new site: https://postgresisenough.dev