Skip to content

Instantly share code, notes, and snippets.

View letam's full-sized avatar
🐢
Sometimes remembering to breathe.

Tam Le letam

🐢
Sometimes remembering to breathe.
View GitHub Profile
@letam
letam / obj_to_dict.py
Created December 29, 2019 03:17
Utility to return the specified fields of an object as a dict with fields mapped to values. Handles nested attribues specified by '__' delimiter. For JSON and stuff.
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)
@letam
letam / request.js
Created November 28, 2019 01:54
Utility function to make http requests in nodejs.
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;
@letam
letam / shex.py
Last active January 30, 2020 05:28
All-in-one function to execute command-line programs through python
#!/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