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
from typing import List, Union, Tuple, Dict, Any | |
def nestedattr(obj: object, field: str): | |
if "__" in field: | |
primary_field, remainder_field = field.split("__", 1) | |
primary_field_value = getattr(obj, primary_field) | |
if not primary_field_value: | |
return primary_field_value | |
return nestedattr(primary_field_value, remainder_field) |
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
const http = require("http"); | |
const https = require("https"); | |
function omitKey(object, key) { | |
const { [key]: _, ...objectWithoutSelectedKey } = object; | |
return objectWithoutSelectedKey; | |
} | |
const request = function(url, options = {}) { | |
const handler = url.startsWith("https") ? https : http; |
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
#!/usr/bin/env python3 | |
''' | |
Execute "simple" (non-daemon) command-line programs through python, for use in python shell scripts. | |
Rationale: Python scripting seems more fun than bash scripting. | |
WARNING: Use at your own risk. I am not liable for the destruction of your system. | |
''' | |
from typing import Tuple | |
import os, shlex | |
from subprocess import PIPE, Popen, CalledProcessError |
NewerOlder