Skip to content

Instantly share code, notes, and snippets.

View muhammetozeski's full-sized avatar

Muhammet Mustafa Özeski muhammetozeski

View GitHub Profile
@pnhoang
pnhoang / howto-download-youtube-videos.md
Last active June 2, 2025 05:38
How to download ALL videos of ANY YouTube Channel
@mjs3339
mjs3339 / BigIntegerHelper.cs
Created January 2, 2018 21:00
C# BigIntegerHelper Class
public static class BigIntegerHelper
{
private static readonly BigInteger Ten = new BigInteger(10);
public static BigInteger ToBigInteger(this ulong ul)
{
return new BigInteger(ul);
}
public static BigInteger ToBigInteger(this long ul)
{
return new BigInteger((ulong) ul);