Updated August 2025
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
<# | |
.SYNOPSIS | |
Script to Initialize my custom powershell setup. | |
.DESCRIPTION | |
Script uses scoop | |
.NOTES | |
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted. | |
Author: Mike Pruett | |
Date: October 18th, 2018 |
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
Command | Environment Variables (PowerShell) | |
---|---|---|
%ALLUSERSPROFILE% | $Env:ALLUSERSPROFILE | |
%APPDATA% | $Env:APPDATA | |
%CD% | $Env:CD | |
%CMDCMDLINE% | ||
%CMDEXTVERSION% | ||
%CommonProgramFiles% | $Env:CommonProgramFiles | |
%CommonProgramFiles(x86)% | $Env:CommonProgramFiles(x86) | |
%CommonProgramW6432% | $Env:CommonProgramW6432 | |
%COMPUTERNAME% | $Env:COMPUTERNAME |
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
# Install Linux and MacOS command-line tools | |
## Based off of the following list, https://medium.com/@pachoyan/suprising-list-of-linux-and-macos-command-line-tools-available-on-windows-29c20b2f4325 | |
## I have personally installed all options to use in testing envrinoments and they typically work as advertised | |
## Comment the following if you have already install Winget and scoop | |
# Installing scoop | |
# More info, https://scoop.sh/ | |
#Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser | |
#Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression |
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 | |
# NOTES: If ss and netstat return null, the script will say so | |
# Function to check a specific port using ss | |
chk-port() { | |
if [ -z "$1" ]; then | |
echo "Usage: chk-port <port-number>" | |
return 1 | |
fi |
- Mobiledoc - github.com/bustle/mobiledoc-kit - framework to build editors with a standardized JSON structure
- ShareDB - github.com/share/sharedb - framework to sync any JSON document using operational transforms, add real-time collaborative editing to anything else
- Bangle.dev - github.com/bangle-io/bangle.dev - toolkit built for building editors, based on prosemirror
These use separate document structures instead of HTML, some are more modular libraries than full editors
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
# Zsh Aliases Configuration | |
# by @jcanfield | |
# ============================================================================= | |
# SHORTENED COMMANDS | |
# ============================================================================= | |
alias ll='ls -l' | |
alias la='ls -a' | |
alias lc='ls -CF' | |
alias l='exa -l' # Removed $1 parameter for better zsh compatibility |
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
<!-- Add to screen.scss --> | |
@media only screen and (max-width: 767px) { | |
.container { | |
} | |
} | |
@media only screen and (max-width: 479px) { | |
.container {} | |
} |
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 | |
# | |
# Brady Shea - 18SEP2020 - conversion of system_update alias to bash script | |
# https://www.holylinux.net/ | |
# | |
# Place this script in "/usr/local/sbin/system_update" or similar location under your $PATH | |
# It needs root permissions (SUDO) to execute. | |
# | |
# Change these settings to your liking: | |
################################# |
NewerOlder