Each of these examples assume the usage of --strict
mode in Typescript
Can be implemented using “Custom Types” https://guide.elm-lang.org/types/custom_types.html
Each of these examples assume the usage of --strict
mode in Typescript
Can be implemented using “Custom Types” https://guide.elm-lang.org/types/custom_types.html
Each of these examples assume the usage of --strict
mode in Typescript
Can be implemented using “Custom Types” https://guide.elm-lang.org/types/custom_types.html
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# | |
# MixinParent | |
# | | |
# Mixin A | |
# └--┐ | | |
# B | |
import os | |
import django | |
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myapp.settings") | |
django.setup() | |
################################################################################ |
\pset pager |
env TZ=Australia/Melbourne ls -al |
--- | |
- hosts: django | |
user: root | |
vars: | |
- runit_app_dir: /etc/sv | |
- runit_enabled_dir: /etc/service | |
- dj_manage_daemons: | |
- slug: "unique_name_slug_1" |
find . -name "*.pyc" -exec rm '{}' ';' |
awk '{ print $9, $7}' access.log | grep -C 10 '^500' |
find . -name '*.py' | xargs wc -l | sort -k1 -rg | less |