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 / php-pools.md
Created June 10, 2020 02:00 — forked from holmberd/php-pools.md
Adjusting child processes for PHP-FPM (Nginx)

Adjusting child processes for PHP-FPM (Nginx)

When setting these options consider the following:

  • How long is your average request?
  • What is the maximum number of simultaneous visitors the site(s) get?
  • How much memory on average does each child process consume?

Determine if the max_children limit has been reached.

  • sudo grep max_children /var/log/php?.?-fpm.log.1 /var/log/php?.?-fpm.log
@letam
letam / zen-timer.sh
Created May 14, 2020 02:33
Break Timer using Zenity (requires Linux and GTK)
#!/usr/bin/env bash
# Break Timer using Zenity (requires Linux and GTK)
[[ $# != 1 ]] && >&2 echo "Usage: $0 MINUTES" && exit 1
minutes=$1
pyp() { python -c "print($1)"; }
if grep -q '\.' <<<$minutes; then
@letam
letam / .ctags
Created May 7, 2020 18:16 — forked from romainl/.ctags
My ctags config
--langdef=less
--langmap=less:.less
--regex-less=/^[ \t&]*#([A-Za-z0-9_-]+)/\1/i,id,ids/
--regex-less=/^[ \t&]*\.([A-Za-z0-9_-]+)/\1/c,class,classes/
--regex-less=/^[ \t]*(([A-Za-z0-9_-]+[ \t\n,]+)+)\{/\1/t,tag,tags/
--regex-less=/^[ \t]*@media\s+([A-Za-z0-9_-]+)/\1/m,media,medias/
--regex-less=/^[ \t]*(@[A-Za-z0-9_-]+):/\1/v,variable,variables/
--regex-less=/\/\/[ \t]*(FIXME|TODO)[ \t]*\:*(.*)/\1/T,Tag,Tags/
--langdef=scss
@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
@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 / 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 / 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 / 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 / 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 / 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)