Skip to content

Instantly share code, notes, and snippets.

View cliqueengagements's full-sized avatar
🏠
Working from home

Sam-tlt.btc cliqueengagements

🏠
Working from home
View GitHub Profile
@mishmanners
mishmanners / GitKon2022.md
Last active October 13, 2022 18:07
GitKon 2022

GitKon 2022 - DreamTeam

This is a talk I gave at GitKon 2022.

Talk Title

Building the Dream Team: working effectively across multidisciplinary teams

Abstract

@cliqueengagements
cliqueengagements / myscript.sh
Last active July 17, 2022 18:03 — forked from bradtraversy/myscript.sh
Basic Shell Scripting
#! /usr/bin/bash
# echo Hello World!!
# sleep 3
# VARIABLE
# uPPERCASE BY CONVENTIONS
# LETTERS NUMBERS UNDERSCORES
@bradtraversy
bradtraversy / myscript.sh
Last active June 13, 2024 02:51
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"