Skip to content

Instantly share code, notes, and snippets.

@rje
rje / scores.txt
Created June 19, 2019 16:16
cfl scrabble scores
41 : Jean-Christophe Beaulieu FB
37 : McLeod Bethel-Thompson QB
37 : Max Zimmermann WR
36 : Andres Salgado Gómez WR
35 : Dominique Rhymes WR
34 : Jonathon Jennings QB
34 : Felix Faubert-Lussier WR
33 : James Wilder Jr. RB
33 : Kurleigh Gittens, Jr. WR
33 : Matthew Shiltz QB
@rje
rje / 1_sign_and_submit.sh
Last active July 3, 2021 10:49
This is a set of scripts that I'm using to sign and notarize a unity app that has native plugins included as .bundle files. It's a lot of steps! Hopefully this makes it a bit easier...
#!/bin/bash -x
# This script takes .app file generated by unity for OSX, signs any plugin bundles and the main app,
# zips the project, and submits it for notarization
# Required data -- You need to fill these out with useful values!
USERNAME=# username of your apple account, usually your email
PASSWORD=# a generated password from appleid.apple.com
ROOT_FOLDER=# path to where your build lives
APP_NAME=# name of the app file unity created for you
PLUGIN_DIR=Contents/Plugins # you should be able to leave this be