I hereby claim:
- I am nevstokes on github.
- I am nevstokes (https://keybase.io/nevstokes) on keybase.
- I have a public key whose fingerprint is 5811 61D4 A932 29EF F3A0 9099 576C 815A F211 FC60
To claim this, I am signing this object:
| BEGIN MESSAGE. | |
| 12UZY9MkdOBCzm8 vmYDTM7T2E48Jw6 mx4DEizWS4LFFvO nncQFPhPf5xaz5P | |
| VSTBlpVPDDLnMsh wIRNkPWuzWsTCKq 6Xr2MZHgg6tRvTF uuGHhqecfR4eFVq | |
| xpuy5y6i6OHivHd 0PtVxx24rTnzpWu vSaNjADnlMWE6sq FQ6Ia1PQtg0XfXP | |
| fbqQv3R2P1Ji7pD Lz4uY5eqoSpvbut qRGsC29HFxl. | |
| END MESSAGE. |
| #!/usr/bin/env bash | |
| sudo apt update && sudo apt upgrade -y | |
| sudo apt install software-properties-common | |
| # Get up-to-date versions of ansible and git | |
| sudo apt-add-repository -y ppa:ansible/ansible | |
| sudo apt-add-repository -y ppa:git-core/ppa | |
| sudo apt update |
| #!/usr/bin/env bash | |
| if [[ "$#" -ne 1 ]]; then | |
| echo "Usage: $0 LOGFILE" >&2 | |
| exit 1 | |
| fi | |
| LOGFILE=$1 | |
| if ! [[ -f "${LOGFILE}" ]]; then |
| #!/usr/bin/env bash | |
| dockerfile=${1:-Dockerfile} | |
| if [[ ! -f ${dockerfile} ]]; then | |
| echo "${dockerfile} was not found" >&2 | |
| exit 1 | |
| fi | |
| while IFS="@" read image existing_hash; do |
| eslint: | |
| - node_modules/ | |
| - "*.d.ts" | |
| docker: | |
| - .env.dist | |
| - node_modules | |
| - README.md | |
| git: |
| function release() { | |
| wget -q https://github.com/$1/releases.atom -O - | xsltproc github-releases.xsl - | awk -F/ '{ print $NF; }' | |
| } |
| <?xml version="1.0" encoding="utf-8"?> | |
| <xsl:stylesheet version="1.0" | |
| xmlns:atom="http://www.w3.org/2005/Atom" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| > | |
| <xsl:output method="text"/> | |
| <xsl:template match="/atom:feed"> | |
| <xsl:apply-templates select="atom:entry"/> |
I hereby claim:
To claim this, I am signing this object:
| $regex = '/ | |
| (?= # Lookahead: | |
| <link # Open link tag | |
| (?:\s+[^>]*)? # Any leading data (non-capturing) | |
| \s+rel= # rel attribute preceded by one or more spaces | |
| ([\'"]) # Opening quote for attribute ($matches[1] for backreference) | |
| stylesheet # Match attribute value | |
| \1 # Backreference to match quotes | |
| .*? # Consume any subsequent data non-greedily | |
| \/? # Optionally self-close |