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 / 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
@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 / 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 / json_dump_model.py
Created January 24, 2020 15:59
django model instance to json string
import json
from django.core.serializers.json import DjangoJSONEncoder
from django.forms.models import model_to_dict
def json_dump_model(instance) -> str:
"""Return string representation of JSON representation of data in ``instance``.
"""
return json.dumps(model_to_dict(instance), cls=DjangoJSONEncoder)
@letam
letam / json_friendly.py
Created January 24, 2020 16:09
Return json-friendly version of a data structure in Django project
import datetime
import decimal
import uuid
from django.utils.duration import duration_iso_string
from django.utils.functional import Promise
from django.utils.timezone import is_aware
def json_friendly(o):
@letam
letam / process.py
Created January 30, 2020 10:16
Utility to execute simple command-line programs through python, for use in python shell scripts.
#!/usr/bin/env python3
"""
Utility to execute "simple" (non-daemon) command-line programs through python,
for use in python shell scripts.
WARNING: As this script can trigger any command-line process,
please be careful not to ruin your system.
"""
from typing import List, Union
import os, shlex, sys
@letam
letam / functions.sh
Created February 8, 2020 09:33
bash functions
#!/usr/bin/env bash
# Utility functions to use in bash shell and scripts
# backup file
function bak() { mv $1 $1.bak && cp -p $1.bak $1 ;}
function su_bak() { sudo mv $1 $1.bak && sudo cp -p $1.bak $1 ;}
# backup file with date
@letam
letam / ftime.sh
Created February 9, 2020 08:11
List file time values (created, modified, accessed) on Debian/Ubuntu Linux
#!/usr/bin/env bash
# List file time values (created, modified, accessed) on Debian/Ubuntu Linux
## Reference: https://askubuntu.com/questions/470134/how-do-i-find-the-creation-time-of-a-file/470135#470135
file="$1"
if test "" = "$file"; then echo "Error: Argument for filepath required." ; exit ; fi
filename="`echo "$file" | sed -E 's|.*/([^/]+)|\1|'`"
parent="`echo $file | sed -E "s|(.*)/$filename|\1|"`"
@letam
letam / install-neovim-ubuntu.sh
Created March 22, 2020 18:31
Install Neovim on Ubuntu
#!/usr/bin/env bash
# Setup neovim on Ubuntu
# Install neovim
sudo snap install nvim --beta --classic
if ! echo "$PATH" | grep -q "/snap/bin"; then
file=~/.profile
cp -p $file $file.bak.$(date -u +%Y-%m-%d-%H%M%S)
@letam
letam / dump-table-data.sh
Created May 5, 2020 22:09
Dump data from PostgreSQL table
#!/usr/bin/env bash
db_user=postgres
db_name=postgres
db_table=users_user
pg_dump -U $db_user $db_name --column-inserts -a -t $db_table