Skip to content

Instantly share code, notes, and snippets.

View WyattCast44's full-sized avatar
πŸ‘¨β€πŸš€
Space is the place πŸš€

Wyatt Castaneda WyattCast44

πŸ‘¨β€πŸš€
Space is the place πŸš€
View GitHub Profile
import time
import random
def getBaroAlts():
baroAlt1 = random.randint(0, 10)
baroAlt2 = random.randint(0, 10)
baroAlt3 = random.randint(0, 10)
@WyattCast44
WyattCast44 / robocopy.sh
Created October 29, 2020 17:30
Copy project folders while excluding node_modules, vendor, and .git directories
robocopy "source" "dest" //mir //xd node_modules vendor ".git"
Public Function getSheetByName(name)
Set getSheetByName = ActiveWorkbook.Sheets(name)
End Function
Public Function getCellBackgroundColor(sheet, cell)
getCellBackgroundColor = getSheetByName(sheet).Range(cell).Interior.Color
@WyattCast44
WyattCast44 / filesystem-create-folder.vba
Last active January 6, 2021 00:05
A collection of VBA for MS Access functions related to dealing with the filesystem
Option Compare Database
Option Explicit
''
'' Function: createFolder
'' ===========================================
''
'' Params
'' ===========================================
'' - path (string|required): The path to create the folder