Using GitHub with SSH Keys
Generate SSH Key on your system$ ssh-keygen -t ed25519 -C “your_email@example.com” View you new SSH Key$ ~/.ssh/id_ed25519.pub Open...
My notes on how to use git
1) create a local git repo $ git init 1.5) Save username and password for github $ git...
PHP Script to return random D&D Monster name
I wanted to have a quick an easy way to get a random name, from say a list...
Installing Visual Studio Code on RHEL
RHEL, Fedora, and CentOS based distributions We currently ship the stable 64-bit VS Code in a yum repository,...
Getting Started with CocoaPods
Installation make sure the ruby system is up to date $ sudo gem update --system install cocoapods $...
Connecting a second ViewContoller to another Swift file
Make sure the swift file looks like the default ViewContoller.swift file i.e. import UIKit, inherits from UIViewController, have...
Detecting iPad or iPhone in swift
To detect if the user is using an iPad or iPhone or something else in Swift do something...
How to record an App Preview
1. Connect your iPhone or iPad to you Mac 2. Open Quick Time Player 3. From the File...
Using a bigger Range of colours from code in Unity
Create a new C# script in your project called CSSColors.cs and then copy and paste the code...