Skip to content

Instantly share code, notes, and snippets.

View blenderfreaky's full-sized avatar
fast

blenderfreaky

fast
View GitHub Profile
@steven2358
steven2358 / ffmpeg.md
Last active May 27, 2024 19:15
FFmpeg cheat sheet
@JcBernack
JcBernack / BigDecimal.cs
Last active May 22, 2024 07:08
BigDecimal
using System;
using System.Numerics;
namespace Common
{
/// <summary>
/// Arbitrary precision decimal.
/// All operations are exact, except for division. Division never determines more digits than the given precision.
/// Source: https://gist.github.com/JcBernack/0b4eef59ca97ee931a2f45542b9ff06d
/// Based on https://stackoverflow.com/a/4524254