Skip to content

Instantly share code, notes, and snippets.

@Zex0n
Zex0n / MultiScreenshotCapture.cs
Created August 7, 2020 19:35 — forked from yasirkula/MultiScreenshotCapture.cs
Capture multiple screenshots with different resolutions simultaneously in Unity 3D
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using UnityEditor;
using UnityEngine;
namespace MultiScreenshotCaptureNamespace
{
internal static class ReflectionExtensions
@Zex0n
Zex0n / gist:f6de76c4d59470471e4f176c08905d00
Created April 11, 2018 12:55
How to kill a process on a port on ubuntu
sudo kill $(sudo lsof -t -i:9001)