Skip to content

Instantly share code, notes, and snippets.

View rosskarchner's full-sized avatar
🤘
ROLLBACK_COMPLETE

Ross M Karchner rosskarchner

🤘
ROLLBACK_COMPLETE
View GitHub Profile
extends Node
@export var bpm:int
@export var nextLevel: PackedScene
var playerScene=preload("res://player.tscn")
@onready var playerNode: Node
# Called when the node enters the scene tree for the first time.
extends Node
class_name A
func name_func():
return "foo"
func say_hello():
name = name_func()
print("Hello " + name)
@rosskarchner
rosskarchner / Readme.txt
Created December 11, 2023 17:49 — forked from jcward/Readme.txt
Generating iOS P12 / certs without Mac OSX Keychain (on linux, windows, etc)
1) Generate a private key and certificate signing request:
openssl genrsa -out ios_distribution.key 2048
openssl req -new -key ios_distribution.key -out ios_distribution.csr -subj '/[email protected], CN=Example, C=US'
2) Upload CSR to apple at: https://developer.apple.com/account/ios/certificate/create
- choose Production -> App Store and Ad Hoc
3) Download the resulting ios_distribution.cer, and convert it to .pem format: