- git
- programming: Javascript
- Web: html, css
- Backend:
- ruby (ruby on rails)
- or python
This file contains hidden or 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
hotKey: | |
# Hitting Shift-0 navigates to your pod view | |
shift-0: | |
shortCut: Shift-0 | |
description: Viewing pods | |
command: pods | |
shift-9: | |
shortCut: Shift-9 | |
description: View deployments | |
command: dp |
This file contains hidden or 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
locals { | |
key = "hello" | |
value = local.key | |
} | |
resource "null_resource" "example1" { | |
provisioner "local-exec" { | |
command = "echo ${local.value}" | |
} | |
} |
This file contains hidden or 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
FROM node:alpine | |
RUN apk add --no-cache --update python make g++ && \ | |
rm -rf /var/cache/apk/* | |
ENV HUBOT_USER hubot | |
ENV HUBOT_GROUP hubot | |
ENV HUBOT_HOME /hubot | |
RUN addgroup -g 501 $HUBOT_GROUP && \ |
This file contains hidden or 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
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: gitlab | |
namespace: kube-system | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: gitlab-admin |
This file contains hidden or 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/bash | |
meta_url='http://169.254.169.254' | |
AWS_REGION=$(curl --silent $meta_url/latest/dynamic/instance-identity/document | jq -r .region) | |
INSTANCE_ID=$(curl --silent $meta_url/latest/meta-data/instance-id) | |
ASG_NAME=$(aws autoscaling describe-auto-scaling-instances \ | |
--instance-ids $INSTANCE_ID \ | |
--region $AWS_REGION \ | |
| jq -r '.[] | .[] | .AutoScalingGroupName') |
This file contains hidden or 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
user: | |
create: true | |
email: "admin:P" | |
password: "superHardSecret" | |
mail: | |
backend: "smtp" | |
useTls: true | |
username: "username..." |
This file contains hidden or 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
;;; rigel-theme.el --- Custom face theme for Emacs | |
;; This theme was generated with vimco.el | |
;; You can get it from: | |
;; <https://github.com/UwUnyaa/vimco> | |
;;; Code: | |
(deftheme rigel) |
This file contains hidden or 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
created using: https://asciiflow.com | |
XXX | |
XXXXX XXX | |
XXXXX X +----------------------------------------------------------------------------------+ | |
XX XX | | | |
X D N S XX | +------------------------------------------------------+ | | |
X X | | | | | |
XX XXX | | | | | |
XXX XXXX | | | | |
TOPIC_DETAILS blah blah blah...
- topic content 1 Reference
- Renders actual, "native" React DOM elements
- Allows you to escape or skip HTML (try toggling the checkboxes above)
- If you escape or skip the HTML, no
dangerouslySetInnerHTML
is used! Yay!