Inspired by dannyfritz/commit-message-emoji
And also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | π :tada: |
Version tag | π :bookmark: |
New feature | β¨ :sparkles: |
Bugfix | π :bug: |
# Opens files or directories in the appropriate IDE based on their type. | |
e() { | |
ITEM="${1:-.}" | |
if [ -d "$ITEM" ]; then | |
if [ $(find "$ITEM" -name "*.go" | wc -l) -gt 0 ]; then | |
goland "$ITEM" | |
elif [ $(find "$ITEM" -name "*.php" | wc -l) -gt 0 ]; then | |
phpstorm "$ITEM" | |
elif [ $(find "$ITEM" -name "*.js" | wc -l) -gt 0 ]; then | |
webstorm "$ITEM" |
repos: | |
- repo: https://github.com/pre-commit/pre-commit-hooks | |
rev: v4.5.0 | |
hooks: | |
- id: trailing-whitespace | |
- id: end-of-file-fixer | |
- id: check-yaml | |
- id: check-json | |
- id: check-added-large-files | |
- repo: https://github.com/tekwizely/pre-commit-golang |
# Getting the list of nodes and their memory size | |
kubectl get nodes -o json | \ | |
jq -r '.items | sort_by(.status.capacity.memory)[] | [.metadata.name,.status.capacity.memory] | @tsv' | |
# Getting the list of nodes and the number of pods running on them | |
kubectl get pods -o json --all-namespaces | \ | |
jq '.items | group_by(.spec.nodeName) | map({"nodeName": .[0].spec.nodeName, "count": length}) | sort_by(.count)' |
ARG GRPCURL_VERSION=1.4.0 | |
ARG GRPC_SHA256="71f121bb03d501adcd3c2f946b4914a87133f42ffd6e649b051a9be2cf33690e" | |
ENV GRPCURL_VERSION=$GRPCURL_VERSION | |
ENV GRPC_SHA256=$GRPC_SHA256 | |
# Install gRPCurl | |
RUN curl -L -o grpcurl.tar.gz https://github.com/fullstorydev/grpcurl/releases/download/v${GRPCURL_VERSION}/grpcurl_${GRPCURL_VERSION}_linux_x86_64.tar.gz \ | |
&& echo "$GRPC_SHA256 grpcurl.tar.gz" | sha256sum -c - \ | |
&& mkdir grpcurl \ | |
&& tar -xzf grpcurl.tar.gz -C grpcurl \ |
Inspired by dannyfritz/commit-message-emoji
And also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | π :tada: |
Version tag | π :bookmark: |
New feature | β¨ :sparkles: |
Bugfix | π :bug: |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
# --------------------------------------------------- | |
# Vimeo | |
# --------------------------------------------------- | |
104.156.85.217 vimeo.com | |
23.214.58.223 secure-c.vimeocdn.com | |
74.113.233.128 developer.vimeo.com | |
80.239.137.98 a.vimeocdn.com | |
104.156.81.217 player.vimeo.com | |
23.235.43.249 vimeo-hp-videos.global.ssl.fastly.net |