Navigate to Applications in Finder and drag "Docker" to the trash can
mv ~/.docker/config.json ~/.docker/old-config.json
| #!/bin/sh | |
| shuf /usr/share/dict/words | grep -E "^[a-z]{4,8}$" | head -4 |
| export NODE\_OPTIONS=--experimental-worker |
| import sys | |
| def read_binary_file_to_hex(filename): | |
| with open(filename, 'rb') as binary_file: | |
| data = binary_file.read() | |
| hex_data = data.hex() | |
| block_size = 32 | |
| offset = 0 | |
| for i in range(0, len(hex_data), block_size): | |
| block = hex_data[i:i + block_size] |
| import re | |
| import sys | |
| from pathlib import Path | |
| def parse_markdown_for_toc(markdown_content): | |
| heading_pattern = re.compile(r'^(#{1,})\s+(.+?)(\s*)$', re.MULTILINE) | |
| toc = [] | |
| for match in heading_pattern.finditer(markdown_content): |