Skip to content

Instantly share code, notes, and snippets.

View cmckni3's full-sized avatar

Chris McKnight cmckni3

View GitHub Profile
@cmckni3
cmckni3 / font-awesome-pro.scss
Created September 10, 2019 17:35
Font Awesome Pro SCSS
$fa-font-path: '~@fortawesome/fontawesome-pro/webfonts';
@import '~@fortawesome/fontawesome-pro/scss/fontawesome';
@import '~@fortawesome/fontawesome-pro/scss/solid';
@import '~@fortawesome/fontawesome-pro/scss/regular';
@import '~@fortawesome/fontawesome-pro/scss/brands';
@cmckni3
cmckni3 / setup-rubymotion.sh
Created January 3, 2024 20:14
Reset RubyMotion XCode and Clean build project
# Install XCode before running any commands below
# Setup RubyMotion and XCode
cp -r /usr/lib/swift/*.dylib /Applications/Xcode.app/Contents/Frameworks/
touch /Applications/Xcode.app/Contents/Frameworks/.swift-5-staged
sudo xcodebuild -license accept
sudo xcode-select --install
sudo xcode-select --reset
# In project directory run commands to build
@cmckni3
cmckni3 / deploy-github-pages.yml
Created January 31, 2024 04:49
GitHub Actions GitHub Pages template
name: Deploy presentation to GitHub pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch: