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
brew update | |
brew upgrade | |
brew cleanup | |
brew doctor |
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
" Vim Initialization | |
" ------------------ | |
" This will set the cursor to be a solid shape | |
let $NVIM_TUI_ENABLE_CURSOR_SHAPE = 0 | |
" Tabs and Indents | |
" ---------------- |
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
import UIKit | |
enum Device { | |
case iPhoneSE | |
case iPhone8 | |
case iPhone8Plus | |
case iPhoneX | |
case iPad | |
} |
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
PROJECT_NAME=$1 | |
mkdir $PROJECT_NAME | |
mkdir $PROJECT_NAME/static/ | |
mkdir $PROJECT_NAME/static/javascript/ | |
mkdir $PROJECT_NAME/static/css/ | |
mkdir $PROJECT_NAME/templates/ | |
touch $PROJECT_NAME/__init__.py | |
touch $PROJECT_NAME/views.py |
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/sh | |
FOLDER_TARGET="/Users/robertcolin/Developer/Unity/rcolin_CampDiscovery_Workspace/Assets/StreamingAssets/Images/Objects/*" | |
for f in $FOLDER_TARGET | |
do | |
if [ -d "$f" ] | |
then | |
for ff in $f/*.png; do | |
echo "resizing $ff to half size" |