Skip to content

Instantly share code, notes, and snippets.

View zinoviy23's full-sized avatar
👽

Aleksandr Izmailov zinoviy23

👽
View GitHub Profile
@samiraguiar
samiraguiar / MC Cheat Sheet
Last active November 10, 2024 16:02 — forked from maciakl/MC Cheat Sheet
Midnight Commander Cheat Sheet / Shortcuts
Note for newcomers:
In the shortcuts below, "C" stands for CTRL and "A" stands for "ALT". This is a convention
used in the Midnight Commander documentation and was kept here.
You can also use "ESC" instead of "ALT", which is useful on Macbooks.
Main View
---------------------------------------------------------------
- File/directory operations
@ruanbekker
ruanbekker / tree_style_tab_firefox.md
Created November 28, 2019 06:18
Hide Native Tabs with Tree Style Tabs for Firefox
@broadwaylamb
broadwaylamb / Either.kt
Last active February 2, 2024 18:13
Zero-cost Either type in Kotlin
import kotlin.contracts.ExperimentalContracts
import kotlin.contracts.contract
import kotlin.contracts.InvocationKind
/**
* Zero-cost union type.
*
* [Left] and [Right] must not be subtypes of one another, and must not be the same type.
*/
@JvmInline