I hereby claim:
- I am knikolla on github.
- I am knikolla (https://keybase.io/knikolla) on keybase.
- I have a public key ASBZ4jnfZNPLrMUgR7HcMwBs9LiDNAEzhmlX3bO_sTe7vQo
To claim this, I am signing this object:
| /usr/sbin/mysqld, Version: 8.0.34-0ubuntu0.22.04.1 ((Ubuntu)). started with: | |
| Tcp port: 3306 Unix socket: /var/run/mysqld/mysqld.sock | |
| Time Id Command Argument | |
| # Time: 2023-10-22T17:01:01.741022Z | |
| # User@Host: root[root] @ localhost [127.0.0.1] Id: 8 | |
| # Query_time: 0.000137 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 1 | |
| SET timestamp=1697994061; | |
| select @@version_comment limit 1; | |
| # Time: 2023-10-22T17:01:01.743559Z | |
| # User@Host: root[root] @ localhost [127.0.0.1] Id: 8 |
| import json | |
| import logging | |
| import requests | |
| from requests.auth import HTTPBasicAuth | |
| logger = logging.getLogger() | |
| def get_client_token(): | |
| client_token = None |
| alias kaizen="openstack --os-cloud kaizen" | |
| kaizen project show $1 | |
| kaizen project set --disable $1 | |
| echo "Servers for $1" | |
| kaizen server list --project $1 | |
| echo "Networks for $1" | |
| kaizen network list --project $1 |
| # This script finds and replaces a term in the urls of endpoints. | |
| # This is useful because you cannot install Devstack with a | |
| # hostname or domain name, so devstack gets installed with an ip | |
| # and then the script replaces that with a hostname. | |
| import openstack | |
| openstack.enable_logging(debug=False) | |
| cloud = openstack.connect(cloud='devstack') |
| http://brookline.wickedlocal.com/news?template=rss&mime=xml | |
| http://brookline.wickedlocal.com/business-news?template=rss&mime=xml | |
| http://brookline.wickedlocal.com/entertainment?template=rss&mime=xml | |
| http://brookline.wickedlocal.com/lifestyle?template=rss&mime=xml | |
| http://brookline.wickedlocal.com/opinion?template=rss&mime=xml |
| #!/usr/bin/env bash | |
| openssl genrsa -out my.key 2048 | |
| openssl req -new -x509 -days 1826 \ | |
| -key my.key -out my.crt \ | |
| -subj "/C=US/ST=Denial/L=Springfield/O=Dis/CN=www.example.com" |
| { | |
| "files.exclude": { | |
| "**/*.pyc": true, | |
| ".testrepository": true, | |
| ".tox": true, | |
| "*.egg-info": true, | |
| "__pycache__": true | |
| }, | |
| "workbench.iconTheme": "ayu", | |
| "workbench.colorTheme": "Ayu Mirage", |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # ENV variables required: | |
| # SSH_DEST: destination directory as would have been specified | |
| # to rsync or scp. ex. [email protected]:~ | |
| # Get the name of the target directory | |
| TARGET=$(basename `pwd`) | |
| # Clean up | |
| rm -rf .tox |