Skip to content

Instantly share code, notes, and snippets.

View mf3129's full-sized avatar

Makan Fof mf3129

View GitHub Profile
@mf3129
mf3129 / ScreenRecorder.cs
Created November 27, 2021 06:55 — forked from DashW/ScreenRecorder.cs
ScreenRecorder - High Performance Unity Video Capture Script
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading;
class BitmapEncoder
{
public static void WriteBitmap(Stream stream, int width, int height, byte[] imageData)
from flask import Flask
from flask_restful import Api, Resource, reqparse
app = Flask(__name__)
api = Api(app)
users = [
{
"name": "Nicholas",
"age": 42,