Skip to content

Instantly share code, notes, and snippets.

View MatthewNielsen27's full-sized avatar
caffeinated

Matthew Nielsen MatthewNielsen27

caffeinated
View GitHub Profile
@MatthewNielsen27
MatthewNielsen27 / gist:4d9e032874aeb3c338e0b5258d4fa9a1
Created January 24, 2022 23:40 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :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:

Keybase proof

I hereby claim:

  • I am matthewnielsen27 on github.
  • I am matthewnielsen (https://keybase.io/matthewnielsen) on keybase.
  • I have a public key ASDmzNOMJPzZMgVy0G0Gydgths3l7j8XUbR-1G57CW00Rgo

To claim this, I am signing this object:

import QtQuick 2.9
Rectangle {
property alias contentItem: contentArea.contentItem
Pane {
// ContentItem of Pane could be whatever you want, (as long as it is Item derrived)
@MatthewNielsen27
MatthewNielsen27 / klens.py
Created December 12, 2018 16:06
Wrapper around Kubectl
from subprocess import PIPE, Popen
import re
def get_k8s_pods(CLUSTER_QUERY, pattern):
std_out, _ = Popen(CLUSTER_QUERY, shell=True, executable='/bin/bash', stdout=PIPE).communicate()
decode_stdout = std_out.decode("utf-8")
data_ls = decode_stdout.strip().split()
res = ""
for data in data_ls:
@MatthewNielsen27
MatthewNielsen27 / strapped_config.yml
Last active December 18, 2018 19:25
My computer's configuration file which is consumed by Strapped.sh
strapped:
repo: https://raw.githubusercontent.com/azohra/strapped/master/straps
bash:
mkdir:
- { dir: ~/Development }
- { dir: ~/School }
git:
clone: