Skip to content

Instantly share code, notes, and snippets.

@winco-ricky-rain
winco-ricky-rain / update_provisioning_profile.sh
Created February 6, 2024 12:13 — forked from djromero/update_provisioning_profile.sh
Download and install a single iOS provisioning profile for Xcode
#!/bin/sh
#
# Download and install a single iOS provisioning profile
# Requires https://github.com/nomad/cupertino
#
# Usage
# - Login to your account once:
# ios login
# - Configure TEAM and PROFILE (instructions below)
# - Run update_provisioning_profile.sh at anytime, usually after adding/removing devices to the profile
@winco-ricky-rain
winco-ricky-rain / AsyncScreenCapture.cs
Created August 17, 2021 08:14 — forked from longod/AsyncScreenCapture.cs
Asynchronous Capture Screen on Unity 2019.3
// (c) longod, MIT License
using System;
using System.Collections;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using UnityEngine;
using UnityEngine.Experimental.Rendering;
using UnityEngine.Profiling;
using UnityEngine.Rendering;