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
#cloud-config | |
packages: | |
- apt-transport-https | |
- ca-certificates | |
- curl | |
- gnupg-agent | |
- software-properties-common | |
- git | |
# create the docker 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
node_modules |
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
#cloud-config | |
packages: | |
- apt-transport-https | |
- ca-certificates | |
- curl | |
- gnupg-agent | |
- software-properties-common | |
- git | |
- docker.io # Lynsei prefers docker.io for security: https://bityl.co/9kNA |
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 | |
# shellcheck disable=1090,1091,2059 | |
# set ENV default value to 'dev'' | |
ENV="${1:-dev}" | |
# import (source) utility variables and functions | |
. "$DIR/bootstrap/utils" | |
# Terminal output to illustrate progress |
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
# this file contains a bunch of vue3 and nuxt starters that all use various CSS/ themeing and UI kits. | |
# work-in-progress use at YOUR OWN RISK! | |
# first add yeoman scaffold | |
yarn global add yo | |
# yo vue3-vite | |
pushd . ; mkdir -p vue3-vite; cd ./vue3-vite; | |
yarn global add generator-vue3-vite |
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
upstream my_nodejs_upstream { | |
server 127.0.0.1:3001; | |
keepalive 64; | |
} | |
server { | |
listen 443 ssl; | |
server_name www.my-website.com; | |
ssl_certificate_key /etc/ssl/main.key; |
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
{ | |
"dots": { | |
"interval": 80, | |
"frames": [ | |
"⠋", | |
"⠙", | |
"⠹", | |
"⠸", | |
"⠼", | |
"⠴", |
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
#!/usr/bin/bash | |
dialog \ | |
--title "Yeah!" \ | |
--msgbox "Test for dialog.\nPress OK." \ | |
7 60 | |
dialog \ | |
--title "Excuse me?" \ | |
--yesno "Are you still there?" \ |
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 - | |
# | |
# SCRIPT: aacpi | |
# AUTHOR: Luciano D. Cecere | |
# DATE: 2014 | |
# | |
######################################################################## | |
# | |
# acpi - show laptop battery information | |
# Copyright (C) 2014 Luciano D. Cecere <[email protected]> |
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
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/jimrennie/.oh-my-zsh" | |
ZSH_THEME="powerlevel9k/powerlevel9k" | |
POWERLEVEL9K_MODE="nerdfont-complete" | |
POWERLEVEL9K_PROMPT_ON_NEWLINE=false | |
POWERLEVEL9K_RPROMPT_ON_NEWLINE=false |