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
CREATE EVENT SESSION [Long-Running Queries] ON SERVER | |
ADD EVENT sqlserver.rpc_completed ( | |
ACTION ( sqlserver.client_app_name, sqlserver.client_hostname, | |
sqlserver.database_id, sqlserver.database_name, sqlserver.nt_username, | |
sqlserver.query_hash, sqlserver.server_principal_name, | |
sqlserver.session_id, sqlserver.sql_text ) | |
WHERE ( ( ( package0.greater_than_uint64(sqlserver.database_id, ( 4 )) ) | |
AND ( package0.equal_boolean(sqlserver.is_system, ( 0 )) ) ) | |
AND ( duration >= ( 500000 ) ) | |
) ), |
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
set +e | |
set -o noglob | |
# | |
# Set Colors | |
# | |
bold=$(tput bold) | |
underline=$(tput sgr 0 1) | |
reset=$(tput sgr0) |
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
""" | |
Source: https://github.com/mitmproxy/mitmproxy/blob/main/mitmproxy/coretypes/multidict.py | |
""" | |
from abc import ABCMeta | |
from abc import abstractmethod | |
from collections.abc import Iterator | |
from collections.abc import MutableMapping | |
from collections.abc import Sequence | |
from typing import TypeVar |
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
{ | |
"[csharp]": { | |
"editor.defaultFormatter": "csharpier.csharpier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, |
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
class AfterFetchQuerySetMixin: | |
""" | |
QuerySet mixin to enable functions to run immediately | |
after records have been fetched from the DB. | |
""" | |
# This is most useful for registering 'prefetch_related' like operations | |
# or complex aggregations that need to be run after fetching, but while | |
# still allowing chaining of other QuerySet methods. | |
def __init__(self, *args, **kwargs): | |
super().__init__(*args, **kwargs) |
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
# source: https://stackoverflow.com/a/57325050/10504918 | |
import requests | |
import logging | |
from http.client import HTTPConnection # py3 | |
log = logging.getLogger('urllib3') | |
log.setLevel(logging.DEBUG) | |
# logging from urllib3 to 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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"description": "Amazon CloudWatch Agent JSON Schema", | |
"properties": { | |
"agent": { | |
"$ref": "#/definitions/agentDefinition" | |
}, | |
"metrics": { | |
"$ref": "#/definitions/metricsDefinition" |
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
sudo apt install libffi-dev libgdbm-dev libsqlite3-dev libssl-dev zlib1g-dev libncurses-dev libz-dev tk-dev libreadline-dev liblzma-dev |
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
CREATE OR REPLACE FUNCTION pseudo_encrypt(value int) returns int AS $$ | |
DECLARE | |
l1 int; | |
l2 int; | |
r1 int; | |
r2 int; | |
i int:=0; | |
BEGIN | |
l1:= (value >> 16) & 65535; | |
r1:= value & 65535; |
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
CREATE FUNCTION pseudo_encrypt_24(VALUE int) returns int AS $$ | |
DECLARE | |
l1 int; | |
l2 int; | |
r1 int; | |
r2 int; | |
i int:=0; | |
BEGIN | |
l1:= (VALUE >> 12) & (4096-1); | |
r1:= VALUE & (4096-1); |
NewerOlder