Skip to content

Instantly share code, notes, and snippets.

View muhammetozeski's full-sized avatar

Muhammet Mustafa Özeski muhammetozeski

View GitHub Profile
@pajecawav
pajecawav / ghloc.js
Last active February 14, 2026 14:59
User script for adding a direct link to GitHub repo's ghloc page: https://github.com/pajecawav/ghloc-web
// ==UserScript==
// @name ghloc
// @namespace http://tampermonkey.net/
// @version 0.0.8
// @description Add ghloc link to GitHub repos.
// @author pajecawav
// @source https://gist.github.com/pajecawav/70ffe72bf4aa0968aa9f97318976138f
// @updateURL https://gist.githubusercontent.com/pajecawav/70ffe72bf4aa0968aa9f97318976138f/raw
// @downloadURL https://gist.githubusercontent.com/pajecawav/70ffe72bf4aa0968aa9f97318976138f/raw
@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);