This file contains hidden or 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
| -- View activity | |
| select datname,usename,pid,client_addr,waiting,query_start,query from pg_stat_activity; | |
| -- View locks | |
| select * from pg_locks where relation=(select oid from pg_class where relname='tablename_str'); | |
| select pg_cancel_backend(pid_int); -- ask nicely | |
| select pg_terminate_backend(pid_int); -- rude |
This file contains hidden or 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
| screen ionice -c3 rm -rv dir_to_delete/ | pv -l > /dev/null |
This file contains hidden or 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
| function r() { | |
| clear && printf '\033[3J' | |
| } |
This file contains hidden or 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
| import pandas as pd | |
| from collections import OrderedDict | |
| from pandas.core.indexes.multi import MultiIndex | |
| def multiindex_to_nested_dict(df: pd.DataFrame, value_only = False) -> OrderedDict: | |
| if isinstance(df.index, MultiIndex): | |
| return OrderedDict((k, multiindex_to_nested_dict(df.loc[k])) for k in df.index.remove_unused_levels().levels[0]) | |
| else: | |
| if value_only: | |
| return OrderedDict((k, df.loc[k].values[0]) for k in df.index) |
This file contains hidden or 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
| def error_handling(rollback_toggle=False): | |
| def wrap(func: C) -> C: | |
| @wraps(func) | |
| def func_wrapper(*args, **kwargs): | |
| try: | |
| return func(*args, **kwargs) | |
| except Exception as e: | |
| tb = sys.exc_info()[2] | |
| exception_locals = tb.tb_next.tb_frame.f_locals |
This file contains hidden or 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
| class AttrDict(dict): | |
| # access data by dot notation e.g. {'a': 1} -> d.a = 1 | |
| def __init__(self, *args, **kwargs): | |
| super().__init__(*args, **kwargs) | |
| self.__dict__ = self | |
| def __getattr__(self, name): | |
| return self.get(name, None) | |
This file contains hidden or 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
| echo killing | |
| # Get progress group id from pid | |
| PGID=$(ps opgid `cat ${PID_PATH}` | grep -o '[0-9]*') | |
| # Kill the process group | |
| kill -- -$PGID | |
| echo killed | |
| # Now that it's killed, don't forget to remove the PID file | |
| rm ${PID_PATH} |
This file contains hidden or 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
| # From https://stackoverflow.com/a/242531/2864129 | |
| # Put in pythonpath and 'import debug' | |
| import sys | |
| def info(type_, value, tb): | |
| if hasattr(sys, 'ps1') or not sys.stderr.isatty() or type_ is KeyboardInterrupt: | |
| # we are in interactive mode / we don't have a tty-like device / user-triggered, so we call the default hook | |
| sys.__excepthook__(type_, value, tb) | |
| else: |
This file contains hidden or 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
| import requests | |
| from requests.adapters import HTTPAdapter | |
| PROXIES = { | |
| 'http': 'http://proxy.example.com:3128', | |
| 'https': 'https://proxy.example.com:3128' | |
| } | |
| class ProxyUAAdapter(HTTPAdapter): |
This file contains hidden or 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
| import os | |
| import stat | |
| from paramiko import SSHClient, SFTPClient, AutoAddPolicy | |
| from tools.file_tools import make_775_dir, file_exists | |
| join = os.path.join | |
OlderNewer