Django templates often contain text/media that doesn't affect application's functionality. These texts belong to product people, but because they are stored in template files, are modified by developers. Such editing is slow and continious delivery pipelines treat it the same way as code changes.
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 python | |
""" | |
Build locked requirements files for each of: | |
base.in | |
test.in | |
local.in | |
External dependencies are hard-pinned using == | |
Internal dependencies are soft-pinned using ~= | |
".post23423" version postfixes are truncated |
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
abiyuch | |
acerola | |
acorn | |
agave | |
agents | |
agutuk | |
alfalfa | |
amaranth | |
animal | |
apache |
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 bash | |
# bash history | |
export HISTFILESIZE=99999 | |
export HISTSIZE=99999 | |
# solarized | |
export TMUX="screen-256color" | |
# vim |
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
#!/bin/sh | |
DIARY_DIR=~/diary | |
DIARY_FILE=README.md | |
cd ${DIARY_DIR} | |
git pull -q | |
echo >> ${DIARY_FILE} | |
date >> ${DIARY_FILE} | |
echo >> ${DIARY_FILE} |
OlderNewer