graph LR
A[West African Traditional Music] --> B[Proto-Blues Rhythms]
A --> C[Afro-Caribbean Rhythms]
B --> D[Field Hollers & Spirituals]
D --> E[African American Work Songs]
E ---> F[[Blues]]
F --> G[Country Blues]
F --> H[Delta Blues]
F --> I[Chicago Blues]
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
<# | |
.SYNOPSIS | |
Enables and configures OpenSSH server on Windows 10 Pro. | |
.DESCRIPTION | |
Installs the OpenSSH.Server feature if needed, starts the sshd service, sets it to auto-start, | |
allows SSH traffic through the Windows Firewall, and ensures basic configuration is ready. | |
.AUTHOR | |
DJ Stomp <[email protected]> |
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
#!/usr/bin/env bash | |
poetry version patch && DISTWHL=`poetry build | awk -F " " -v x=3 '/[^ ]?\.whl/ {print $x}'`; pip install --no-cache-dir --force-reinstall "dist/$DISTWHL" |
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
// @Note: Redacted URLs, in the interest of prudence. | |
// By uncommenting the code below, you assume full responsibility for any potential harm caused. | |
// As such, I do not advise doing so. | |
// REDACTED_DOMAIN = "dearesthydrogen.com/" | |
// REDACTED_ROUTE = "ytc4qgjg9" | |
// REDACTED_QUERY = { | |
// key: "b05e412b22b0904a4fd90ce8391d5f37" | |
// } | |
// REDACTED = `https://${REDACTED_DOMAIN}${REDACTED_ROUTE}?key=${REDACTED_QUERY.key}` | |
// The remainder of the document is unmodified except where these URLs occur. |
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
#!/usr/bin/env python3 | |
import os | |
import re | |
import math | |
import json | |
import zlib | |
import base64 | |
import zipfile | |
import argparse |
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
#!/usr/bin/env python3 | |
from pwn import * | |
import argparse | |
import os | |
from time import sleep | |
REQS = ["./format-string-3", "libc.so.6", "ld-linux-x86-64.so.2"] | |
BIN, libc, _ = REQS | |
context.binary = ELF(BIN) |
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
#!/usr/bin/env python3 | |
from typing import Optional | |
import windows_tools.registry | |
import windows_tools.wmi_queries | |
def decode_key(rpk: str) -> str: | |
""" |
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
<# | |
.SYNOPSIS | |
Processes a Lua file by replacing certain characters. | |
.DESCRIPTION | |
The script checks if `v.l` or `vehicles.lua` exists. If `v.l` exists, it uses that for processing. Otherwise, it renames `vehicles.lua` to `v.l` and processes the file content to replace backticks with single quotes. | |
.AUTHOR | |
DJ Stomp <[email protected]> |
NewerOlder