Compile screensy:
gcc -O3 -I/usr/include/cairo/ -lX11 -lcairo screensy.cpp -o screensy
I have to run to be able to write brightness changes:
sudo setpci -v -H1 -s 00:01.00 BRIDGE_CONTROL=0
Then run:
Compile screensy:
gcc -O3 -I/usr/include/cairo/ -lX11 -lcairo screensy.cpp -o screensy
I have to run to be able to write brightness changes:
sudo setpci -v -H1 -s 00:01.00 BRIDGE_CONTROL=0
Then run:
| # Authors: Leonid R. and Pascal van Kooten | |
| from flask_admin.contrib.sqla import ModelView | |
| from flask_admin.contrib.sqla import tools | |
| from sqlalchemy import or_ | |
| from sqlalchemy.sql.expression import cast | |
| from sqlalchemy import Unicode | |
| class MyModelView(ModelView): | |
| # modifies existing _apply_search |
| import pandas as pd | |
| import seaborn as sns | |
| data = pd.read_json("results.jsonl", lines=True) | |
| sns.heatmap(data.pivot("astroid", "pylint", "testpd.py")) |